Lines Matching refs:uintptr_t
49 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp()
52 *out_sp = static_cast<uintptr_t>(sc->arm_sp); in GetMethodAndReturnPcAndSp()
60 uintptr_t* fault_addr = reinterpret_cast<uintptr_t*>(sc->fault_address); in GetMethodAndReturnPcAndSp()
61 uintptr_t* overflow_addr = reinterpret_cast<uintptr_t*>( in GetMethodAndReturnPcAndSp()
67 *out_method = reinterpret_cast<ArtMethod*>(reinterpret_cast<uintptr_t*>(*out_sp)[0]); in GetMethodAndReturnPcAndSp()
105 uintptr_t gc_map_location = (sc->arm_pc + instr_size) | 1; in Action()
108 sc->arm_sp -= sizeof(uintptr_t); in Action()
109 *reinterpret_cast<uintptr_t*>(sc->arm_sp) = gc_map_location; in Action()
110 sc->arm_lr = reinterpret_cast<uintptr_t>(info->si_addr); in Action()
111 sc->arm_pc = reinterpret_cast<uintptr_t>(art_quick_throw_null_pointer_exception_from_signal); in Action()
172 sc->arm_pc = reinterpret_cast<uintptr_t>(art_quick_implicit_suspend); in Action()
204 uintptr_t sp = sc->arm_sp; in Action()
207 uintptr_t fault_addr = sc->fault_address; in Action()
212 uintptr_t overflow_addr = sp - GetStackOverflowReservedBytes(InstructionSet::kArm); in Action()
226 sc->arm_pc = reinterpret_cast<uintptr_t>(art_quick_throw_stack_overflow); in Action()