OSDN Git Service

e058604f3ef62446c9bc7e352bb6b5f8115593b0
[uclinux-h8/uClibc.git] / libpthread / nptl / sysdeps / pthread / unwind-forcedunwind.c
1 /* Copyright (C) 2003, 2005, 2006, 2009 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; 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.  */
19
20 #include <dlfcn.h>
21 #include <stdio.h>
22 #include <unwind.h>
23 #include <pthreadP.h>
24 #include <sysdep.h>
25 #include <libgcc_s.h>
26
27 static void *libgcc_s_handle;
28 static void (*libgcc_s_resume) (struct _Unwind_Exception *exc);
29 static _Unwind_Reason_Code (*libgcc_s_personality)
30   (int, _Unwind_Action, _Unwind_Exception_Class, struct _Unwind_Exception *,
31    struct _Unwind_Context *);
32 static _Unwind_Reason_Code (*libgcc_s_forcedunwind)
33   (struct _Unwind_Exception *, _Unwind_Stop_Fn, void *);
34 static _Unwind_Word (*libgcc_s_getcfa) (struct _Unwind_Context *);
35
36 void
37 __attribute_noinline__
38 pthread_cancel_init (void)
39 {
40   void *resume;
41   void *personality;
42   void *forcedunwind;
43   void *getcfa;
44   void *handle;
45
46   if (__builtin_expect (libgcc_s_handle != NULL, 1))
47     {
48       /* Force gcc to reload all values.  */
49       __asm__ volatile ("" ::: "memory");
50       return;
51     }
52
53   handle = __libc_dlopen (LIBGCC_S_SO);
54
55   if (handle == NULL
56       || (resume = __libc_dlsym (handle, "_Unwind_Resume")) == NULL
57       || (personality = __libc_dlsym (handle, "__gcc_personality_v0")) == NULL
58       || (forcedunwind = __libc_dlsym (handle, "_Unwind_ForcedUnwind"))
59          == NULL
60       || (getcfa = __libc_dlsym (handle, "_Unwind_GetCFA")) == NULL
61 #ifdef ARCH_CANCEL_INIT
62       || ARCH_CANCEL_INIT (handle)
63 #endif
64       )
65   {
66     printf (LIBGCC_S_SO " must be installed for pthread_cancel to work\n");
67     abort();
68   }
69
70   PTR_MANGLE (resume);
71   libgcc_s_resume = resume;
72   PTR_MANGLE (personality);
73   libgcc_s_personality = personality;
74   PTR_MANGLE (forcedunwind);
75   libgcc_s_forcedunwind = forcedunwind;
76   PTR_MANGLE (getcfa);
77   libgcc_s_getcfa = getcfa;
78   /* Make sure libgcc_s_handle is written last.  Otherwise,
79      pthread_cancel_init might return early even when the pointer the
80      caller is interested in is not initialized yet.  */
81   atomic_write_barrier ();
82   libgcc_s_handle = handle;
83 }
84
85 void
86 __libc_freeres_fn_section
87 __unwind_freeres (void)
88 {
89   void *handle = libgcc_s_handle;
90   if (handle != NULL)
91     {
92       libgcc_s_handle = NULL;
93       __libc_dlclose (handle);
94     }
95 }
96
97 void
98 _Unwind_Resume (struct _Unwind_Exception *exc)
99 {
100   if (__builtin_expect (libgcc_s_handle == NULL, 0))
101     pthread_cancel_init ();
102
103   void (*resume) (struct _Unwind_Exception *exc) = libgcc_s_resume;
104   PTR_DEMANGLE (resume);
105   resume (exc);
106 }
107
108 _Unwind_Reason_Code
109 __gcc_personality_v0 (int version, _Unwind_Action actions,
110                       _Unwind_Exception_Class exception_class,
111                       struct _Unwind_Exception *ue_header,
112                       struct _Unwind_Context *context)
113 {
114   if (__builtin_expect (libgcc_s_handle == NULL, 0))
115     pthread_cancel_init ();
116
117   _Unwind_Reason_Code (*personality)
118     (int, _Unwind_Action, _Unwind_Exception_Class, struct _Unwind_Exception *,
119      struct _Unwind_Context *) = libgcc_s_personality;
120   PTR_DEMANGLE (personality);
121   return personality (version, actions, exception_class, ue_header, context);
122 }
123
124 _Unwind_Reason_Code
125 _Unwind_ForcedUnwind (struct _Unwind_Exception *exc, _Unwind_Stop_Fn stop,
126                       void *stop_argument)
127 {
128   if (__builtin_expect (libgcc_s_handle == NULL, 0))
129     pthread_cancel_init ();
130
131   _Unwind_Reason_Code (*forcedunwind)
132     (struct _Unwind_Exception *, _Unwind_Stop_Fn, void *)
133     = libgcc_s_forcedunwind;
134   PTR_DEMANGLE (forcedunwind);
135   return forcedunwind (exc, stop, stop_argument);
136 }
137
138 _Unwind_Word
139 _Unwind_GetCFA (struct _Unwind_Context *context)
140 {
141   if (__builtin_expect (libgcc_s_handle == NULL, 0))
142     pthread_cancel_init ();
143
144   _Unwind_Word (*getcfa) (struct _Unwind_Context *) = libgcc_s_getcfa;
145   PTR_DEMANGLE (getcfa);
146   return getcfa (context);
147 }