Searched refs:checkinst1 (Results 1 – 3 of 3) sorted by relevance
/art/runtime/arch/x86/ |
D | fault_handler_x86.cc | 346 uint8_t checkinst1[] = {0x65, 0x48, 0x8b, 0x04, 0x25, static_cast<uint8_t>(trigger & 0xff), in Action() local 349 uint8_t checkinst1[] = {0x64, 0x8b, 0x05, static_cast<uint8_t>(trigger & 0xff), in Action() local 367 uint8_t* ptr = pc - sizeof(checkinst1); in Action() 370 if (memcmp(ptr, checkinst1, sizeof(checkinst1)) == 0) { in Action()
|
/art/runtime/arch/arm64/ |
D | fault_handler_arm64.cc | 115 uint32_t checkinst1 = 0xf9400240 | (Thread::ThreadSuspendTriggerOffset<8>().Int32Value() << 7); in Action() local 137 VLOG(signals) << "inst1: " << std::hex << inst1 << " checkinst1: " << checkinst1; in Action() 138 if (inst1 == checkinst1) { in Action()
|
/art/runtime/arch/arm/ |
D | fault_handler_arm.cc | 142 uint32_t checkinst1 = 0xf8d90000 + Thread::ThreadSuspendTriggerOffset<4>().Int32Value(); in Action() local 164 VLOG(signals) << "inst1: " << std::hex << inst1 << " checkinst1: " << checkinst1; in Action() 165 if (inst1 == checkinst1) { in Action()
|