1 /* Backward compatibility unwind routines.
2 Copyright (C) 2004, 2005
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 In addition to the permissions in the GNU General Public License, the
13 Free Software Foundation gives you unlimited permission to link the
14 compiled version of this file into combinations with other programs,
15 and to distribute those combinations without any restriction coming
16 from the use of this file. (The General Public License restrictions
17 do apply in other respects; for example, they cover modification of
18 the file, and distribution when not linked into a combined
21 GCC is distributed in the hope that it will be useful, but WITHOUT
22 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
23 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
24 License for more details.
26 You should have received a copy of the GNU General Public License
27 along with GCC; see the file COPYING. If not, write to the Free
28 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
31 #if defined (USE_GAS_SYMVER) && defined (USE_LIBUNWIND_EXCEPTIONS)
35 #include "unwind-dw2-fde.h"
36 #include "unwind-compat.h"
38 extern _Unwind_Reason_Code __libunwind_Unwind_Backtrace
39 (_Unwind_Trace_Fn
, void *);
42 _Unwind_Backtrace (_Unwind_Trace_Fn trace
, void *trace_argument
)
44 return __libunwind_Unwind_Backtrace (trace
, trace_argument
);
46 symver (_Unwind_Backtrace
, GCC_3
.3
);
48 extern void __libunwind_Unwind_DeleteException
49 (struct _Unwind_Exception
*);
52 _Unwind_DeleteException (struct _Unwind_Exception
*exc
)
54 return __libunwind_Unwind_DeleteException (exc
);
56 symver (_Unwind_DeleteException
, GCC_3
.0
);
58 extern void * __libunwind_Unwind_FindEnclosingFunction (void *);
61 _Unwind_FindEnclosingFunction (void *pc
)
63 return __libunwind_Unwind_FindEnclosingFunction (pc
);
65 symver (_Unwind_FindEnclosingFunction
, GCC_3
.3
);
67 extern _Unwind_Reason_Code __libunwind_Unwind_ForcedUnwind
68 (struct _Unwind_Exception
*, _Unwind_Stop_Fn
, void *);
71 _Unwind_ForcedUnwind (struct _Unwind_Exception
*exc
,
72 _Unwind_Stop_Fn stop
, void * stop_argument
)
74 return __libunwind_Unwind_ForcedUnwind (exc
, stop
, stop_argument
);
76 symver (_Unwind_ForcedUnwind
, GCC_3
.0
);
78 extern _Unwind_Word __libunwind_Unwind_GetCFA
79 (struct _Unwind_Context
*);
82 _Unwind_GetCFA (struct _Unwind_Context
*context
)
84 return __libunwind_Unwind_GetCFA (context
);
86 symver (_Unwind_GetCFA
, GCC_3
.3
);
89 extern _Unwind_Word __libunwind_Unwind_GetBSP
90 (struct _Unwind_Context
*);
93 _Unwind_GetBSP (struct _Unwind_Context
* context
)
95 return __libunwind_Unwind_GetBSP (context
);
97 symver (_Unwind_GetBSP
, GCC_3
.3
.2);
99 extern _Unwind_Ptr __libunwind_Unwind_GetDataRelBase
100 (struct _Unwind_Context
*);
103 _Unwind_GetDataRelBase (struct _Unwind_Context
*context
)
105 return __libunwind_Unwind_GetDataRelBase (context
);
107 symver (_Unwind_GetDataRelBase
, GCC_3
.0
);
109 extern _Unwind_Ptr __libunwind_Unwind_GetTextRelBase
110 (struct _Unwind_Context
*);
113 _Unwind_GetTextRelBase (struct _Unwind_Context
*context
)
115 return __libunwind_Unwind_GetTextRelBase (context
);
117 symver (_Unwind_GetTextRelBase
, GCC_3
.0
);
120 extern _Unwind_Word __libunwind_Unwind_GetGR
121 (struct _Unwind_Context
*, int );
124 _Unwind_GetGR (struct _Unwind_Context
*context
, int index
)
126 return __libunwind_Unwind_GetGR (context
, index
);
128 symver (_Unwind_GetGR
, GCC_3
.0
);
130 extern _Unwind_Ptr
__libunwind_Unwind_GetIP (struct _Unwind_Context
*);
133 _Unwind_GetIP (struct _Unwind_Context
*context
)
135 return __libunwind_Unwind_GetIP (context
);
137 symver (_Unwind_GetIP
, GCC_3
.0
);
139 extern void *__libunwind_Unwind_GetLanguageSpecificData
140 (struct _Unwind_Context
*);
143 _Unwind_GetLanguageSpecificData (struct _Unwind_Context
*context
)
145 return __libunwind_Unwind_GetLanguageSpecificData (context
);
147 symver (_Unwind_GetLanguageSpecificData
, GCC_3
.0
);
149 extern _Unwind_Ptr __libunwind_Unwind_GetRegionStart
150 (struct _Unwind_Context
*);
153 _Unwind_GetRegionStart (struct _Unwind_Context
*context
)
155 return __libunwind_Unwind_GetRegionStart (context
);
157 symver (_Unwind_GetRegionStart
, GCC_3
.0
);
159 extern _Unwind_Reason_Code __libunwind_Unwind_RaiseException
160 (struct _Unwind_Exception
*);
163 _Unwind_RaiseException(struct _Unwind_Exception
*exc
)
165 return __libunwind_Unwind_RaiseException (exc
);
167 symver (_Unwind_RaiseException
, GCC_3
.0
);
169 extern void __libunwind_Unwind_Resume (struct _Unwind_Exception
*);
172 _Unwind_Resume (struct _Unwind_Exception
*exc
)
174 __libunwind_Unwind_Resume (exc
);
176 symver (_Unwind_Resume
, GCC_3
.0
);
178 extern _Unwind_Reason_Code __libunwind_Unwind_Resume_or_Rethrow
179 (struct _Unwind_Exception
*);
182 _Unwind_Resume_or_Rethrow (struct _Unwind_Exception
*exc
)
184 return __libunwind_Unwind_Resume_or_Rethrow (exc
);
186 symver (_Unwind_Resume_or_Rethrow
, GCC_3
.3
);
188 extern void __libunwind_Unwind_SetGR
189 (struct _Unwind_Context
*, int, _Unwind_Word
);
192 _Unwind_SetGR (struct _Unwind_Context
*context
, int index
,
195 __libunwind_Unwind_SetGR (context
, index
, val
);
197 symver (_Unwind_SetGR
, GCC_3
.0
);
199 extern void __libunwind_Unwind_SetIP
200 (struct _Unwind_Context
*, _Unwind_Ptr
);
203 _Unwind_SetIP (struct _Unwind_Context
*context
, _Unwind_Ptr val
)
205 return __libunwind_Unwind_SetIP (context
, val
);
207 symver (_Unwind_SetIP
, GCC_3
.0
);