Lines Matching refs:uintptr_t

247   uc->CTX_JMP_BUF = reinterpret_cast<uintptr_t>(*self->GetNestedSignalState());  in HandleNestedSignal()
248 uc->CTX_EIP = reinterpret_cast<uintptr_t>(art_nested_signal_return); in HandleNestedSignal()
253 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp()
255 *out_sp = static_cast<uintptr_t>(uc->CTX_ESP); in GetMethodAndReturnPcAndSp()
263 uintptr_t* fault_addr = reinterpret_cast<uintptr_t*>(siginfo->si_addr); in GetMethodAndReturnPcAndSp()
264 uintptr_t* overflow_addr = reinterpret_cast<uintptr_t*>( in GetMethodAndReturnPcAndSp()
292 *out_return_pc = reinterpret_cast<uintptr_t>(pc + instr_size); in GetMethodAndReturnPcAndSp()
312 uintptr_t retaddr = reinterpret_cast<uintptr_t>(pc + instr_size); in Action()
313 uintptr_t* next_sp = reinterpret_cast<uintptr_t*>(sp - sizeof(uintptr_t)); in Action()
315 uc->CTX_ESP = reinterpret_cast<uintptr_t>(next_sp); in Action()
317 uc->CTX_EIP = reinterpret_cast<uintptr_t>(EXT_SYM(art_quick_throw_null_pointer_exception)); in Action()
386 uintptr_t retaddr = reinterpret_cast<uintptr_t>(pc + 2); in Action()
387 uintptr_t* next_sp = reinterpret_cast<uintptr_t*>(sp - sizeof(uintptr_t)); in Action()
389 uc->CTX_ESP = reinterpret_cast<uintptr_t>(next_sp); in Action()
391 uc->CTX_EIP = reinterpret_cast<uintptr_t>(EXT_SYM(art_quick_test_suspend)); in Action()
411 uintptr_t sp = static_cast<uintptr_t>(uc->CTX_ESP); in Action()
413 uintptr_t fault_addr = reinterpret_cast<uintptr_t>(info->si_addr); in Action()
419 uintptr_t overflow_addr = sp - GetStackOverflowReservedBytes(kX86_64); in Action()
421 uintptr_t overflow_addr = sp - GetStackOverflowReservedBytes(kX86); in Action()
437 uc->CTX_EIP = reinterpret_cast<uintptr_t>(EXT_SYM(art_quick_throw_stack_overflow)); in Action()