Home | History | Annotate | Download | only in Headers

Lines Matching refs:__context

153 _Unwind_VRS_Result _Unwind_VRS_Get(struct _Unwind_Context *__context,
159 _Unwind_VRS_Result _Unwind_VRS_Set(struct _Unwind_Context *__context,
166 _Unwind_Word _Unwind_GetGR(struct _Unwind_Context *__context, int __index) {
168 _Unwind_VRS_Get(__context, _UVRSC_CORE, __index, _UVRSD_UINT32, &__value);
173 void _Unwind_SetGR(struct _Unwind_Context *__context, int __index,
175 _Unwind_VRS_Set(__context, _UVRSC_CORE, __index, _UVRSD_UINT32, &__value);
179 _Unwind_Word _Unwind_GetIP(struct _Unwind_Context *__context) {
180 _Unwind_Word __ip = _Unwind_GetGR(__context, 15);
185 void _Unwind_SetIP(struct _Unwind_Context *__context, _Unwind_Word __value) {
186 _Unwind_Word __thumb_mode_bit = _Unwind_GetGR(__context, 15) & 0x1;
187 _Unwind_SetGR(__context, 15, __value | __thumb_mode_bit);