Lines Matching refs:uintptr_t
282 uintptr_t* out_return_pc, in GetMethodAndReturnPcAndSp()
283 uintptr_t* out_sp, in GetMethodAndReturnPcAndSp()
286 *out_sp = static_cast<uintptr_t>(uc->CTX_ESP); in GetMethodAndReturnPcAndSp()
294 uintptr_t* fault_addr = reinterpret_cast<uintptr_t*>(siginfo->si_addr); in GetMethodAndReturnPcAndSp()
295 uintptr_t* overflow_addr = reinterpret_cast<uintptr_t*>( in GetMethodAndReturnPcAndSp()
325 *out_return_pc = reinterpret_cast<uintptr_t>(pc + instr_size); in GetMethodAndReturnPcAndSp()
348 uintptr_t retaddr = reinterpret_cast<uintptr_t>(pc + instr_size); in Action()
349 uintptr_t* next_sp = reinterpret_cast<uintptr_t*>(sp - 2 * sizeof(uintptr_t)); in Action()
351 next_sp[0] = reinterpret_cast<uintptr_t>(sig->si_addr); in Action()
352 uc->CTX_ESP = reinterpret_cast<uintptr_t>(next_sp); in Action()
354 uc->CTX_EIP = reinterpret_cast<uintptr_t>( in Action()
420 uintptr_t retaddr = reinterpret_cast<uintptr_t>(pc + 2); in Action()
421 uintptr_t* next_sp = reinterpret_cast<uintptr_t*>(sp - sizeof(uintptr_t)); in Action()
423 uc->CTX_ESP = reinterpret_cast<uintptr_t>(next_sp); in Action()
425 uc->CTX_EIP = reinterpret_cast<uintptr_t>(art_quick_test_suspend); in Action()
445 uintptr_t sp = static_cast<uintptr_t>(uc->CTX_ESP); in Action()
447 uintptr_t fault_addr = reinterpret_cast<uintptr_t>(info->si_addr); in Action()
453 uintptr_t overflow_addr = sp - GetStackOverflowReservedBytes(InstructionSet::kX86_64); in Action()
455 uintptr_t overflow_addr = sp - GetStackOverflowReservedBytes(InstructionSet::kX86); in Action()
471 uc->CTX_EIP = reinterpret_cast<uintptr_t>(art_quick_throw_stack_overflow); in Action()