2 * Copyright 2012 David Chisnall. All rights reserved.
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to
6 * deal in the Software without restriction, including without limitation the
7 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8 * sell copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be
12 * included in all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 * ARM-specific unwind definitions. These are taken from the ARM EHABI
29 _URC_OK
= 0, /* operation completed successfully */
30 _URC_FOREIGN_EXCEPTION_CAUGHT
= 1,
31 _URC_END_OF_STACK
= 5,
32 _URC_HANDLER_FOUND
= 6,
33 _URC_INSTALL_CONTEXT
= 7,
34 _URC_CONTINUE_UNWIND
= 8,
35 _URC_FAILURE
= 9, /* unspecified failure of some kind */
36 _URC_FATAL_PHASE1_ERROR
= _URC_FAILURE
37 } _Unwind_Reason_Code
;
39 typedef uint32_t _Unwind_State
;
41 static const _Unwind_State _US_VIRTUAL_UNWIND_FRAME
= 0;
42 static const _Unwind_State _US_UNWIND_FRAME_STARTING
= 1;
43 static const _Unwind_State _US_UNWIND_FRAME_RESUME
= 2;
44 #else // GCC fails at knowing what a constant expression is
45 # define _US_VIRTUAL_UNWIND_FRAME 0
46 # define _US_UNWIND_FRAME_STARTING 1
47 # define _US_UNWIND_FRAME_RESUME 2
50 typedef struct _Unwind_Context _Unwind_Context
;
52 typedef uint32_t _Unwind_EHT_Header
;
54 struct _Unwind_Exception
56 uint64_t exception_class
;
57 void (*exception_cleanup
)(_Unwind_Reason_Code
, struct _Unwind_Exception
*);
58 /* Unwinder cache, private fields for the unwinder's use */
66 /* init reserved1 to 0, then don't touch */
68 /* Propagation barrier cache (valid after phase 1): */
72 uint32_t bitpattern
[5];
74 /* Cleanup cache (preserved over cleanup): */
77 uint32_t bitpattern
[4];
79 /* Pr cache (for pr's benefit): */
82 /** function start address */
84 /** pointer to EHT entry header word */
85 _Unwind_EHT_Header
*ehtp
;
86 /** additional data */
90 /** Force alignment of next item to 8-byte boundary */
94 /* Unwinding functions */
95 _Unwind_Reason_Code
_Unwind_RaiseException(struct _Unwind_Exception
*ucbp
);
96 void _Unwind_Resume(struct _Unwind_Exception
*ucbp
);
97 void _Unwind_Complete(struct _Unwind_Exception
*ucbp
);
98 void _Unwind_DeleteException(struct _Unwind_Exception
*ucbp
);
99 void *_Unwind_GetLanguageSpecificData(struct _Unwind_Context
*);
104 _UVRSR_NOT_IMPLEMENTED
= 1,
106 } _Unwind_VRS_Result
;
113 } _Unwind_VRS_RegClass
;
121 } _Unwind_VRS_DataRepresentation
;
123 _Unwind_VRS_Result
_Unwind_VRS_Get(_Unwind_Context
*context
,
124 _Unwind_VRS_RegClass regclass
,
126 _Unwind_VRS_DataRepresentation representation
,
128 _Unwind_VRS_Result
_Unwind_VRS_Set(_Unwind_Context
*context
,
129 _Unwind_VRS_RegClass regclass
,
131 _Unwind_VRS_DataRepresentation representation
,
134 /* Return the base-address for data references. */
135 extern unsigned long _Unwind_GetDataRelBase(struct _Unwind_Context
*);
137 /* Return the base-address for text references. */
138 extern unsigned long _Unwind_GetTextRelBase(struct _Unwind_Context
*);
139 extern unsigned long _Unwind_GetRegionStart(struct _Unwind_Context
*);
141 typedef _Unwind_Reason_Code (*_Unwind_Trace_Fn
) (struct _Unwind_Context
*,
143 extern _Unwind_Reason_Code
_Unwind_Backtrace (_Unwind_Trace_Fn
, void *);
144 extern _Unwind_Reason_Code
145 _Unwind_Resume_or_Rethrow (struct _Unwind_Exception
*);
148 * The next set of functions are compatibility extensions, implementing Itanium
149 * ABI functions on top of ARM ones.
152 #define _UA_SEARCH_PHASE 1
153 #define _UA_CLEANUP_PHASE 2
154 #define _UA_HANDLER_FRAME 4
155 #define _UA_FORCE_UNWIND 8
157 static inline unsigned long _Unwind_GetGR(struct _Unwind_Context
*context
, int reg
)
160 _Unwind_VRS_Get(context
, _UVRSC_CORE
, reg
, _UVRSD_UINT32
, &val
);
163 static inline void _Unwind_SetGR(struct _Unwind_Context
*context
, int reg
, unsigned long val
)
165 _Unwind_VRS_Set(context
, _UVRSC_CORE
, reg
, _UVRSD_UINT32
, &val
);
167 static inline unsigned long _Unwind_GetIP(_Unwind_Context
*context
)
169 // Low bit store the thumb state - discard it
170 return _Unwind_GetGR(context
, 15) & ~1;
172 static inline void _Unwind_SetIP(_Unwind_Context
*context
, unsigned long val
)
174 // The lowest bit of the instruction pointer indicates whether we're in
175 // thumb or ARM mode. This is assumed to be fixed throughout a function,
176 // so must be propagated when setting the program counter.
177 unsigned long thumbState
= _Unwind_GetGR(context
, 15) & 1;
178 _Unwind_SetGR(context
, 15, (val
| thumbState
));
181 /** GNU API function that unwinds the frame */
182 _Unwind_Reason_Code
__gnu_unwind_frame(struct _Unwind_Exception
*, struct _Unwind_Context
*);
185 #define DECLARE_PERSONALITY_FUNCTION(name) \
186 _Unwind_Reason_Code name(_Unwind_State state,\
187 struct _Unwind_Exception *exceptionObject,\
188 struct _Unwind_Context *context);
190 #define BEGIN_PERSONALITY_FUNCTION(name) \
191 _Unwind_Reason_Code name(_Unwind_State state,\
192 struct _Unwind_Exception *exceptionObject,\
193 struct _Unwind_Context *context)\
196 uint64_t exceptionClass = exceptionObject->exception_class;\
200 default: return _URC_FAILURE;\
201 case _US_VIRTUAL_UNWIND_FRAME:\
203 actions = _UA_SEARCH_PHASE;\
206 case _US_UNWIND_FRAME_STARTING:\
208 actions = _UA_CLEANUP_PHASE;\
209 if (exceptionObject->barrier_cache.sp == _Unwind_GetGR(context, 13))\
211 actions |= _UA_HANDLER_FRAME;\
215 case _US_UNWIND_FRAME_RESUME:\
217 return continueUnwinding(exceptionObject, context);\
221 _Unwind_SetGR (context, 12, reinterpret_cast<unsigned long>(exceptionObject));\
223 #define CALL_PERSONALITY_FUNCTION(name) name(state,exceptionObject,context)