Move all files into ports/ subdirectory in preparation for merge with glibc
[jlayton/glibc.git] / ports / sysdeps / unix / sysv / linux / arm / nptl / unwind-resume.c
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
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 asm (
51 "       .globl  _Unwind_Resume\n"
52 "       .type   _Unwind_Resume, %function\n"
53 "_Unwind_Resume:\n"
54 "       .cfi_sections .debug_frame\n"
55 "       " CFI_STARTPROC "\n"
56 "       stmfd   sp!, {r4, r5, r6, lr}\n"
57 "       " CFI_ADJUST_CFA_OFFSET (16)" \n"
58 "       " CFI_REL_OFFSET (r4, 0) "\n"
59 "       " CFI_REL_OFFSET (r5, 4) "\n"
60 "       " CFI_REL_OFFSET (r6, 8) "\n"
61 "       " CFI_REL_OFFSET (lr, 12) "\n"
62 "       " CFI_REMEMBER_STATE "\n"
63 "       ldr     r4, 1f\n"
64 "       ldr     r5, 2f\n"
65 "3:     add     r4, pc, r4\n"
66 "       ldr     r3, [r4, r5]\n"
67 "       mov     r6, r0\n"
68 "       cmp     r3, #0\n"
69 "       beq     4f\n"
70 "5:     mov     r0, r6\n"
71 "       ldmfd   sp!, {r4, r5, r6, lr}\n"
72 "       " CFI_ADJUST_CFA_OFFSET (-16) "\n"
73 "       " CFI_RESTORE (r4) "\n"
74 "       " CFI_RESTORE (r5) "\n"
75 "       " CFI_RESTORE (r6) "\n"
76 "       " CFI_RESTORE (lr) "\n"
77 "       bx      r3\n"
78 "       " CFI_RESTORE_STATE "\n"
79 "4:     bl      init\n"
80 "       ldr     r3, [r4, r5]\n"
81 "       b       5b\n"
82 "       " CFI_ENDPROC "\n"
83 "       .align 2\n"
84 #ifdef __thumb2__
85 "1:     .word   _GLOBAL_OFFSET_TABLE_ - 3b - 4\n"
86 #else
87 "1:     .word   _GLOBAL_OFFSET_TABLE_ - 3b - 8\n"
88 #endif
89 "2:     .word   libgcc_s_resume(GOTOFF)\n"
90 "       .size   _Unwind_Resume, .-_Unwind_Resume\n"
91 );
92
93 _Unwind_Reason_Code
94 __gcc_personality_v0 (_Unwind_State state,
95                       struct _Unwind_Exception *ue_header,
96                       struct _Unwind_Context *context)
97 {
98   if (__builtin_expect (libgcc_s_personality == NULL, 0))
99     init ();
100   return libgcc_s_personality (state, ue_header, context);
101 }