Lines Matching refs:uintptr_t
48 uintptr_t FaultManager::GetFaultPc(siginfo_t* siginfo ATTRIBUTE_UNUSED, void* context) { in GetFaultPc()
58 uintptr_t FaultManager::GetFaultSp(void* context) { in GetFaultSp()
65 uintptr_t fault_address = reinterpret_cast<uintptr_t>(info->si_addr); in Action()
93 uintptr_t return_pc = (mc->arm_pc + instr_size) | (in_thumb_mode ? 1 : 0); in Action()
96 mc->arm_sp -= sizeof(uintptr_t); in Action()
97 *reinterpret_cast<uintptr_t*>(mc->arm_sp) = return_pc; in Action()
101 mc->arm_pc = reinterpret_cast<uintptr_t>(art_quick_throw_null_pointer_exception_from_signal); in Action()
164 mc->arm_pc = reinterpret_cast<uintptr_t>(art_quick_implicit_suspend); in Action()
196 uintptr_t sp = mc->arm_sp; in Action()
199 uintptr_t fault_addr = mc->fault_address; in Action()
204 uintptr_t overflow_addr = sp - GetStackOverflowReservedBytes(InstructionSet::kArm); in Action()
218 mc->arm_pc = reinterpret_cast<uintptr_t>(art_quick_throw_stack_overflow); in Action()