]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/unix/sysv/linux/arm/unwind-resume.c
Consolidate NPTL configury for ARM/Linux.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / arm / unwind-resume.c
1 /* Copyright (C) 2003-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Jakub Jelinek <jakub@redhat.com>.
4
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.
9
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.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library. If not, see
17 <http://www.gnu.org/licenses/>. */
18
19 #include <dlfcn.h>
20 #include <stdio.h>
21 #include <unwind.h>
22
23 static void (*libgcc_s_resume) (struct _Unwind_Exception *exc);
24 static _Unwind_Reason_Code (*libgcc_s_personality)
25 (_Unwind_State, struct _Unwind_Exception *, struct _Unwind_Context *);
26
27 static void init (void) __attribute_used__;
28
29 static void
30 init (void)
31 {
32 void *resume, *personality;
33 void *handle;
34
35 handle = __libc_dlopen ("libgcc_s.so.1");
36
37 if (handle == NULL
38 || (resume = __libc_dlsym (handle, "_Unwind_Resume")) == NULL
39 || (personality = __libc_dlsym (handle, "__gcc_personality_v0")) == NULL)
40 __libc_fatal ("libgcc_s.so.1 must be installed for pthread_cancel to work\n");
41
42 libgcc_s_resume = resume;
43 libgcc_s_personality = personality;
44 }
45
46 /* It's vitally important that _Unwind_Resume not have a stack frame; the
47 ARM unwinder relies on register state at entrance. So we write this in
48 assembly. */
49
50 #define STR1(S) #S
51 #define STR(S) STR1(S)
52
53 asm (
54 " .globl _Unwind_Resume\n"
55 " .type _Unwind_Resume, %function\n"
56 "_Unwind_Resume:\n"
57 " .cfi_sections .debug_frame\n"
58 " " CFI_STARTPROC "\n"
59 " push {r4, r5, r6, lr}\n"
60 " " CFI_ADJUST_CFA_OFFSET (16)" \n"
61 " " CFI_REL_OFFSET (r4, 0) "\n"
62 " " CFI_REL_OFFSET (r5, 4) "\n"
63 " " CFI_REL_OFFSET (r6, 8) "\n"
64 " " CFI_REL_OFFSET (lr, 12) "\n"
65 " " CFI_REMEMBER_STATE "\n"
66 " ldr r4, 1f\n"
67 " ldr r5, 2f\n"
68 "3: add r4, pc, r4\n"
69 " ldr r3, [r4, r5]\n"
70 " mov r6, r0\n"
71 " cmp r3, #0\n"
72 " beq 4f\n"
73 "5: mov r0, r6\n"
74 " pop {r4, r5, r6, lr}\n"
75 " " CFI_ADJUST_CFA_OFFSET (-16) "\n"
76 " " CFI_RESTORE (r4) "\n"
77 " " CFI_RESTORE (r5) "\n"
78 " " CFI_RESTORE (r6) "\n"
79 " " CFI_RESTORE (lr) "\n"
80 " bx r3\n"
81 " " CFI_RESTORE_STATE "\n"
82 "4: bl init\n"
83 " ldr r3, [r4, r5]\n"
84 " b 5b\n"
85 " " CFI_ENDPROC "\n"
86 " .align 2\n"
87 "1: .word _GLOBAL_OFFSET_TABLE_ - 3b - " STR (PC_OFS) "\n"
88 "2: .word libgcc_s_resume(GOTOFF)\n"
89 " .size _Unwind_Resume, .-_Unwind_Resume\n"
90 );
91
92 _Unwind_Reason_Code
93 __gcc_personality_v0 (_Unwind_State state,
94 struct _Unwind_Exception *ue_header,
95 struct _Unwind_Context *context)
96 {
97 if (__builtin_expect (libgcc_s_personality == NULL, 0))
98 init ();
99 return libgcc_s_personality (state, ue_header, context);
100 }