Home | History | Annotate | Download | only in clang-include

Lines Matching refs:_Unwind_Word

69 typedef uintptr_t _Unwind_Word;
109 _Unwind_Word private_1;
110 _Unwind_Word private_2;
166 _Unwind_Word _Unwind_GetGR(struct _Unwind_Context *__context, int __index) {
167 _Unwind_Word __value;
174 _Unwind_Word __value) {
179 _Unwind_Word _Unwind_GetIP(struct _Unwind_Context *__context) {
180 _Unwind_Word __ip = _Unwind_GetGR(__context, 15);
181 return __ip & ~(_Unwind_Word)(0x1); /* Remove thumb mode bit. */
185 void _Unwind_SetIP(struct _Unwind_Context *__context, _Unwind_Word __value) {
186 _Unwind_Word __thumb_mode_bit = _Unwind_GetGR(__context, 15) & 0x1;
190 _Unwind_Word _Unwind_GetGR(struct _Unwind_Context *, int);
191 void _Unwind_SetGR(struct _Unwind_Context *, int, _Unwind_Word);
193 _Unwind_Word _Unwind_GetIP(struct _Unwind_Context *);
194 void _Unwind_SetIP(struct _Unwind_Context *, _Unwind_Word);
198 _Unwind_Word _Unwind_GetIPInfo(struct _Unwind_Context *, int *);
200 _Unwind_Word _Unwind_GetCFA(struct _Unwind_Context *);
202 _Unwind_Word _Unwind_GetBSP(struct _Unwind_Context *);