• Home
  • Raw
  • Download

Lines Matching full:int3

868  * Self-test for the INT3 based CALL emulation code.
870 * This exercises int3_emulate_call() to make sure INT3 pt_regs are set up
871 * properly and that there is a stack gap between the INT3 frame and the
873 * stack would corrupt the INT3 IRET frame.
929 * Stick the address of the INT3 instruction into int3_selftest_ip, in int3_selftest()
930 * then trigger the INT3, padded with NOPs to match a CALL instruction in int3_selftest()
933 asm volatile ("1: int3; nop; nop; nop; nop\n\t" in int3_selftest()
1328 * Having observed our INT3 instruction, we now must observe in poke_int3_handler()
1331 * bp_desc = desc INT3 in poke_int3_handler()
1333 * write INT3 if (desc) in poke_int3_handler()
1342 * Discount the INT3. See text_poke_bp_batch(). in poke_int3_handler()
1366 * Someone poked an explicit INT3, they'll want to handle it, in poke_int3_handler()
1404 * Modify multi-byte instruction by using int3 breakpoint on SMP.
1406 * synchronization using int3 breakpoint.
1410 * - add a int3 trap to the address that will be patched
1416 * - replace the first byte (int3) by the first byte of
1427 unsigned char int3 = INT3_INSN_OPCODE; in text_poke_bp_batch() local
1436 * Corresponding read barrier in int3 notifier for making sure the in text_poke_bp_batch()
1442 * First step: add a int3 trap to the address that will be patched. in text_poke_bp_batch()
1446 text_poke(text_poke_addr(&tp[i]), &int3, INT3_INSN_SIZE); in text_poke_bp_batch()
1472 * - write INT3 byte in text_poke_bp_batch()
1476 * INT3 and handler and not hit the old or new instruction. in text_poke_bp_batch()
1477 * Intel PT outputs FUP/TIP packets for the INT3, so the flow in text_poke_bp_batch()
1484 * either the old instruction flow or FUP/TIP of INT3. After the in text_poke_bp_batch()
1486 * new instruction flow or FUP/TIP of INT3. Thus decoders can in text_poke_bp_batch()
1506 * Third step: replace the first byte (int3) by the first byte of in text_poke_bp_batch()
1552 * next instruction can be padded with INT3. in text_poke_loc_init()