unwind-resume.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* Copyright (C) 2003, 2005, 2010 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Jakub Jelinek <jakub@redhat.com>.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public License as
  6. published by the Free Software Foundation; either version 2.1 of the
  7. License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; see the file COPYING.LIB. If not,
  14. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 02111-1307, USA. */
  16. #include <dlfcn.h>
  17. #include <stdio.h>
  18. #include <unwind.h>
  19. static void (*libgcc_s_resume) (struct _Unwind_Exception *exc);
  20. static _Unwind_Reason_Code (*libgcc_s_personality)
  21. (_Unwind_State, struct _Unwind_Exception *, struct _Unwind_Context *);
  22. static void init (void) __attribute_used__;
  23. static void
  24. init (void)
  25. {
  26. void *resume, *personality;
  27. void *handle;
  28. handle = __libc_dlopen ("libgcc_s.so.1");
  29. if (handle == NULL
  30. || (resume = __libc_dlsym (handle, "_Unwind_Resume")) == NULL
  31. || (personality = __libc_dlsym (handle, "__gcc_personality_v0")) == NULL)
  32. __libc_fatal ("libgcc_s.so.1 must be installed for pthread_cancel to work\n");
  33. libgcc_s_resume = resume;
  34. libgcc_s_personality = personality;
  35. }
  36. /* It's vitally important that _Unwind_Resume not have a stack frame; the
  37. ARM unwinder relies on register state at entrance. So we write this in
  38. assembly. */
  39. __asm__ (
  40. " .globl _Unwind_Resume\n"
  41. " .type _Unwind_Resume, %function\n"
  42. "_Unwind_Resume:\n"
  43. " .cfi_sections .debug_frame\n"
  44. " " CFI_STARTPROC "\n"
  45. " stmfd sp!, {r4, r5, r6, lr}\n"
  46. " " CFI_ADJUST_CFA_OFFSET (16)" \n"
  47. " " CFI_REL_OFFSET (r4, 0) "\n"
  48. " " CFI_REL_OFFSET (r5, 4) "\n"
  49. " " CFI_REL_OFFSET (r6, 8) "\n"
  50. " " CFI_REL_OFFSET (lr, 12) "\n"
  51. " " CFI_REMEMBER_STATE "\n"
  52. " ldr r4, 1f\n"
  53. " ldr r5, 2f\n"
  54. "3: add r4, pc, r4\n"
  55. " ldr r3, [r4, r5]\n"
  56. " mov r6, r0\n"
  57. " cmp r3, #0\n"
  58. " beq 4f\n"
  59. "5: mov r0, r6\n"
  60. " ldmfd sp!, {r4, r5, r6, lr}\n"
  61. " " CFI_ADJUST_CFA_OFFSET (-16) "\n"
  62. " " CFI_RESTORE (r4) "\n"
  63. " " CFI_RESTORE (r5) "\n"
  64. " " CFI_RESTORE (r6) "\n"
  65. " " CFI_RESTORE (lr) "\n"
  66. " bx r3\n"
  67. " " CFI_RESTORE_STATE "\n"
  68. "4: bl init\n"
  69. " ldr r3, [r4, r5]\n"
  70. " b 5b\n"
  71. " " CFI_ENDPROC "\n"
  72. " .align 2\n"
  73. #ifdef __thumb2__
  74. "1: .word _GLOBAL_OFFSET_TABLE_ - 3b - 4\n"
  75. #else
  76. "1: .word _GLOBAL_OFFSET_TABLE_ - 3b - 8\n"
  77. #endif
  78. "2: .word libgcc_s_resume(GOTOFF)\n"
  79. " .size _Unwind_Resume, .-_Unwind_Resume\n"
  80. );
  81. _Unwind_Reason_Code
  82. __gcc_personality_v0 (_Unwind_State state,
  83. struct _Unwind_Exception *ue_header,
  84. struct _Unwind_Context *context)
  85. {
  86. if (__builtin_expect (libgcc_s_personality == NULL, 0))
  87. init ();
  88. return libgcc_s_personality (state, ue_header, context);
  89. }