Lines Matching refs:uintptr_t
262 uintptr_t FaultManager::GetFaultPc(siginfo_t* siginfo ATTRIBUTE_UNUSED, void* context) { in GetFaultPc()
271 uintptr_t FaultManager::GetFaultSp(void* context) { in GetFaultSp()
277 uintptr_t fault_address = reinterpret_cast<uintptr_t>(sig->si_addr); in Action()
299 uintptr_t pc = uc->CTX_EIP; in Action()
316 uintptr_t return_pc = reinterpret_cast<uintptr_t>(pc + instr_size); in Action()
322 uintptr_t* next_sp = reinterpret_cast<uintptr_t*>(sp) - 2; in Action()
325 uc->CTX_ESP = reinterpret_cast<uintptr_t>(next_sp); in Action()
328 uc->CTX_EIP = reinterpret_cast<uintptr_t>( in Action()
394 uintptr_t retaddr = reinterpret_cast<uintptr_t>(pc + 2); in Action()
395 uintptr_t* next_sp = reinterpret_cast<uintptr_t*>(sp - sizeof(uintptr_t)); in Action()
397 uc->CTX_ESP = reinterpret_cast<uintptr_t>(next_sp); in Action()
399 uc->CTX_EIP = reinterpret_cast<uintptr_t>(art_quick_test_suspend); in Action()
419 uintptr_t sp = static_cast<uintptr_t>(uc->CTX_ESP); in Action()
421 uintptr_t fault_addr = reinterpret_cast<uintptr_t>(info->si_addr); in Action()
427 uintptr_t overflow_addr = sp - GetStackOverflowReservedBytes(InstructionSet::kX86_64); in Action()
429 uintptr_t overflow_addr = sp - GetStackOverflowReservedBytes(InstructionSet::kX86); in Action()
445 uc->CTX_EIP = reinterpret_cast<uintptr_t>(art_quick_throw_stack_overflow); in Action()