Lines Matching defs:context

124   _LIBUNWIND_TRACE_UNWINDING("unwind_phase1: initial function-context=%p",
138 _LIBUNWIND_TRACE_UNWINDING("unwind_phase1: function-context=%p", (void *)c);
152 // stop search and remember function context
188 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2s(ex_ojb=%p): context=%p",
408 _Unwind_GetLanguageSpecificData(struct _Unwind_Context *context) {
409 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;
410 _LIBUNWIND_TRACE_API("_Unwind_GetLanguageSpecificData(context=%p) "
412 (void *)context, ufc->lsda);
418 _LIBUNWIND_EXPORT uintptr_t _Unwind_GetGR(struct _Unwind_Context *context,
420 _LIBUNWIND_TRACE_API("_Unwind_GetGR(context=%p, reg=%d)", (void *)context,
422 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;
428 _LIBUNWIND_EXPORT void _Unwind_SetGR(struct _Unwind_Context *context, int index,
430 _LIBUNWIND_TRACE_API("_Unwind_SetGR(context=%p, reg=%d, value=0x%" PRIxPTR
432 (void *)context, index, new_value);
433 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;
439 _LIBUNWIND_EXPORT uintptr_t _Unwind_GetIP(struct _Unwind_Context *context) {
440 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;
441 _LIBUNWIND_TRACE_API("_Unwind_GetIP(context=%p) => 0x%" PRIxPTR,
442 (void *)context, ufc->resumeLocation + 1);
450 _LIBUNWIND_EXPORT uintptr_t _Unwind_GetIPInfo(struct _Unwind_Context *context,
452 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;
454 _LIBUNWIND_TRACE_API("_Unwind_GetIPInfo(context=%p, %p) => 0x%" PRIxPTR,
455 (void *)context, (void *)ipBefore,
462 _LIBUNWIND_EXPORT void _Unwind_SetIP(struct _Unwind_Context *context,
464 _LIBUNWIND_TRACE_API("_Unwind_SetIP(context=%p, value=0x%" PRIxPTR ")",
465 (void *)context, new_value);
466 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;
474 _Unwind_GetRegionStart(struct _Unwind_Context *context) {
476 (void)context;
477 _LIBUNWIND_TRACE_API("_Unwind_GetRegionStart(context=%p)", (void *)context);
498 _Unwind_GetDataRelBase(struct _Unwind_Context *context) {
500 (void)context;
501 _LIBUNWIND_TRACE_API("_Unwind_GetDataRelBase(context=%p)", (void *)context);
509 _Unwind_GetTextRelBase(struct _Unwind_Context *context) {
511 (void)context;
512 _LIBUNWIND_TRACE_API("_Unwind_GetTextRelBase(context=%p)", (void *)context);
518 _LIBUNWIND_EXPORT uintptr_t _Unwind_GetCFA(struct _Unwind_Context *context) {
519 _LIBUNWIND_TRACE_API("_Unwind_GetCFA(context=%p)", (void *)context);
520 if (context != NULL) {
521 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;