Home | History | Annotate | Download | only in Unwind

Lines Matching defs:pc

114     uintptr_t pc = _Unwind_GetIP(context);
115 bool isInScope = (scopeStart <= pc) && (pc < scopeEnd);
480 unw_word_t pc;
481 unw_get_reg(&cursor1, UNW_REG_IP, &pc);
483 "unwind_phase1(ex_ojb=%p): pc=0x%llX, start_ip=0x%llX, func=%s, "
485 static_cast<void *>(exception_object), (long long)pc,
652 unw_word_t pc;
653 unw_get_reg(&cursor2, UNW_REG_IP, &pc);
658 (long long)pc, (long long)sp);
662 // EHABI #7.4.1 says we need to preserve pc for when _Unwind_Resume
664 unw_word_t pc;
665 unw_get_reg(&cursor2, UNW_REG_IP, &pc);
666 exception_object->unwinder_cache.reserved2 = (uint32_t)pc;