Home | History | Annotate | Download | only in include

Lines Matching refs:_Unwind_Word

69 typedef uintptr_t _Unwind_Word;
117 _Unwind_Word private_1;
118 _Unwind_Word private_2;
183 _Unwind_Word _Unwind_GetGR(struct _Unwind_Context *__context, int __index) {
184 _Unwind_Word __value;
191 _Unwind_Word __value) {
196 _Unwind_Word _Unwind_GetIP(struct _Unwind_Context *__context) {
197 _Unwind_Word __ip = _Unwind_GetGR(__context, 15);
198 return __ip & ~(_Unwind_Word)(0x1); /* Remove thumb mode bit. */
202 void _Unwind_SetIP(struct _Unwind_Context *__context, _Unwind_Word __value) {
203 _Unwind_Word __thumb_mode_bit = _Unwind_GetGR(__context, 15) & 0x1;
207 _Unwind_Word _Unwind_GetGR(struct _Unwind_Context *, int);
208 void _Unwind_SetGR(struct _Unwind_Context *, int, _Unwind_Word);
210 _Unwind_Word _Unwind_GetIP(struct _Unwind_Context *);
211 void _Unwind_SetIP(struct _Unwind_Context *, _Unwind_Word);
215 _Unwind_Word _Unwind_GetIPInfo(struct _Unwind_Context *, int *);
217 _Unwind_Word _Unwind_GetCFA(struct _Unwind_Context *);
219 _Unwind_Word _Unwind_GetBSP(struct _Unwind_Context *);