arm/nptl: Use the old C version of _Unwind_Resume in thumb mode.
[uclibc-ng.git] / libpthread / nptl / sysdeps / unix / sysv / linux / arm / unwind-resume.c
blobe35374d3430abc425f2487a3a002ff3544bb6d11
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>.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public License as
7 published by the Free Software Foundation; either version 2.1 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #include <dlfcn.h>
21 #include <stdio.h>
22 #include <unwind.h>
24 #define __libc_dlopen(x) dlopen(x, (RTLD_LOCAL | RTLD_LAZY))
25 #define __libc_dlsym dlsym
26 #define __libc_dlclose dlclose
27 #define __libc_fatal(x) {/*write(STDERR_FILENO, x, strlen(x));*/ abort();}
29 static void (*libgcc_s_resume) (struct _Unwind_Exception *exc);
30 static _Unwind_Reason_Code (*libgcc_s_personality)
31 (_Unwind_State, struct _Unwind_Exception *, struct _Unwind_Context *);
33 static void init (void) __attribute_used__;
35 static void
36 init (void)
38 void *resume, *personality;
39 void *handle;
41 handle = __libc_dlopen ("libgcc_s.so.1");
43 if (handle == NULL
44 || (resume = __libc_dlsym (handle, "_Unwind_Resume")) == NULL
45 || (personality = __libc_dlsym (handle, "__gcc_personality_v0")) == NULL)
46 __libc_fatal ("libgcc_s.so.1 must be installed for pthread_cancel to work\n");
48 libgcc_s_resume = resume;
49 libgcc_s_personality = personality;
51 #ifdef __thumb__
52 void
53 _Unwind_Resume (struct _Unwind_Exception *exc)
55 if (__builtin_expect (libgcc_s_resume == NULL, 0))
56 init ();
57 libgcc_s_resume (exc);
59 #else
60 /* It's vitally important that _Unwind_Resume not have a stack frame; the
61 ARM unwinder relies on register state at entrance. So we write this in
62 assembly. */
64 __asm__ (
65 " .globl _Unwind_Resume\n"
66 " .type _Unwind_Resume, %function\n"
67 "_Unwind_Resume:\n"
68 " .cfi_sections .debug_frame\n"
69 " " CFI_STARTPROC "\n"
70 " stmfd sp!, {r4, r5, r6, lr}\n"
71 " " CFI_ADJUST_CFA_OFFSET (16)" \n"
72 " " CFI_REL_OFFSET (r4, 0) "\n"
73 " " CFI_REL_OFFSET (r5, 4) "\n"
74 " " CFI_REL_OFFSET (r6, 8) "\n"
75 " " CFI_REL_OFFSET (lr, 12) "\n"
76 " " CFI_REMEMBER_STATE "\n"
77 " ldr r4, 1f\n"
78 " ldr r5, 2f\n"
79 "3: add r4, pc, r4\n"
80 " ldr r3, [r4, r5]\n"
81 " mov r6, r0\n"
82 " cmp r3, #0\n"
83 " beq 4f\n"
84 "5: mov r0, r6\n"
85 " ldmfd sp!, {r4, r5, r6, lr}\n"
86 " " CFI_ADJUST_CFA_OFFSET (-16) "\n"
87 " " CFI_RESTORE (r4) "\n"
88 " " CFI_RESTORE (r5) "\n"
89 " " CFI_RESTORE (r6) "\n"
90 " " CFI_RESTORE (lr) "\n"
91 " bx r3\n"
92 " " CFI_RESTORE_STATE "\n"
93 "4: bl init\n"
94 " ldr r3, [r4, r5]\n"
95 " b 5b\n"
96 " " CFI_ENDPROC "\n"
97 " .align 2\n"
98 #ifdef __thumb2__
99 "1: .word _GLOBAL_OFFSET_TABLE_ - 3b - 4\n"
100 #else
101 "1: .word _GLOBAL_OFFSET_TABLE_ - 3b - 8\n"
102 #endif
103 "2: .word libgcc_s_resume(GOTOFF)\n"
104 " .size _Unwind_Resume, .-_Unwind_Resume\n"
106 #endif
108 _Unwind_Reason_Code
109 __gcc_personality_v0 (_Unwind_State state,
110 struct _Unwind_Exception *ue_header,
111 struct _Unwind_Context *context)
113 if (__builtin_expect (libgcc_s_personality == NULL, 0))
114 init ();
115 return libgcc_s_personality (state, ue_header, context);