Lines Matching defs:instructions
2578 // emits no instructions after the call to __cxa_throw. This means
2698 // specific instructions (see below). Typically the trampoline comes from the
2717 auto *instructions = reinterpret_cast<const uint32_t *>(pc);
2718 // Look for instructions: mov x8, #0x8b; svc #0x0
2719 if (instructions[0] != 0xd2801168 || instructions[1] != 0xd4000001)
2772 const auto *instructions = reinterpret_cast<const uint32_t *>(pc);
2773 // Look for the two instructions used in the sigreturn trampoline
2778 if (instructions[0] != 0x08b00893 || instructions[1] != 0x00000073)