• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/llvm-project/libunwind/src/

Lines Matching refs:context

111   _LIBUNWIND_TRACE_UNWINDING("unwind_phase1: initial function-context=%p",
125 _LIBUNWIND_TRACE_UNWINDING("unwind_phase1: function-context=%p", (void *)c);
139 // stop search and remember function context
175 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2s(ex_ojb=%p): context=%p",
395 _Unwind_GetLanguageSpecificData(struct _Unwind_Context *context) {
396 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;
397 _LIBUNWIND_TRACE_API("_Unwind_GetLanguageSpecificData(context=%p) "
399 (void *)context, ufc->lsda);
405 _LIBUNWIND_EXPORT uintptr_t _Unwind_GetGR(struct _Unwind_Context *context,
407 _LIBUNWIND_TRACE_API("_Unwind_GetGR(context=%p, reg=%d)", (void *)context,
409 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;
415 _LIBUNWIND_EXPORT void _Unwind_SetGR(struct _Unwind_Context *context, int index,
417 _LIBUNWIND_TRACE_API("_Unwind_SetGR(context=%p, reg=%d, value=0x%" PRIuPTR
419 (void *)context, index, new_value);
420 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;
426 _LIBUNWIND_EXPORT uintptr_t _Unwind_GetIP(struct _Unwind_Context *context) {
427 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;
428 _LIBUNWIND_TRACE_API("_Unwind_GetIP(context=%p) => 0x%" PRIu32,
429 (void *)context, ufc->resumeLocation + 1);
437 _LIBUNWIND_EXPORT uintptr_t _Unwind_GetIPInfo(struct _Unwind_Context *context,
439 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;
441 _LIBUNWIND_TRACE_API("_Unwind_GetIPInfo(context=%p, %p) => 0x%" PRIu32,
442 (void *)context, (void *)ipBefore,
449 _LIBUNWIND_EXPORT void _Unwind_SetIP(struct _Unwind_Context *context,
451 _LIBUNWIND_TRACE_API("_Unwind_SetIP(context=%p, value=0x%" PRIuPTR ")",
452 (void *)context, new_value);
453 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;
461 _Unwind_GetRegionStart(struct _Unwind_Context *context) {
463 (void)context;
464 _LIBUNWIND_TRACE_API("_Unwind_GetRegionStart(context=%p)", (void *)context);
485 _Unwind_GetDataRelBase(struct _Unwind_Context *context) {
487 (void)context;
488 _LIBUNWIND_TRACE_API("_Unwind_GetDataRelBase(context=%p)", (void *)context);
496 _Unwind_GetTextRelBase(struct _Unwind_Context *context) {
498 (void)context;
499 _LIBUNWIND_TRACE_API("_Unwind_GetTextRelBase(context=%p)", (void *)context);
505 _LIBUNWIND_EXPORT uintptr_t _Unwind_GetCFA(struct _Unwind_Context *context) {
506 _LIBUNWIND_TRACE_API("_Unwind_GetCFA(context=%p)", (void *)context);
507 if (context != NULL) {
508 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;