Lines Matching refs:context

291 	struct _Unwind_Context context;  in _Unwind_RaiseException_Body()  local
292 struct _Unwind_Context *ctx = &context; in _Unwind_RaiseException_Body()
446 struct _Unwind_Context context; in _Unwind_ForcedUnwind() local
447 struct _Unwind_Context *ctx = &context; in _Unwind_ForcedUnwind()
458 struct _Unwind_Context context; in _Unwind_Resume() local
459 struct _Unwind_Context *ctx = &context; in _Unwind_Resume()
489 _Unwind_GetGR(struct _Unwind_Context *context, int index) in _Unwind_GetGR() argument
493 res = context->current_regs[index]; in _Unwind_GetGR()
495 res = context->ra; in _Unwind_GetGR()
502 _Unwind_SetGR(struct _Unwind_Context *context, int index, uint64_t new_value) in _Unwind_SetGR() argument
505 context->current_regs[index] = new_value; in _Unwind_SetGR()
507 context->ra = new_value; in _Unwind_SetGR()
513 _Unwind_GetIP(struct _Unwind_Context *context) in _Unwind_GetIP() argument
515 return (context->pc); in _Unwind_GetIP()
519 _Unwind_SetIP(struct _Unwind_Context *context, uint64_t new_value) in _Unwind_SetIP() argument
521 context->pc = new_value; in _Unwind_SetIP()
526 _Unwind_GetLanguageSpecificData(struct _Unwind_Context *context) in _Unwind_GetLanguageSpecificData() argument
528 return (context->lsda); in _Unwind_GetLanguageSpecificData()
533 _Unwind_GetRegionStart(struct _Unwind_Context *context) in _Unwind_GetRegionStart() argument
535 return (context->func); in _Unwind_GetRegionStart()
539 _Unwind_GetCFA(struct _Unwind_Context *context) in _Unwind_GetCFA() argument
541 return (context->cfa); in _Unwind_GetCFA()