Home
last modified time | relevance | path

Searched refs:INT3_INSN_OPCODE (Results 1 – 5 of 5) sorted by relevance

/openbmc/linux/arch/x86/kernel/kprobes/
H A Dcore.c291 if (insn.opcode.bytes[0] == INT3_INSN_OPCODE && in can_probe()
389 if (insn->opcode.bytes[0] == INT3_INSN_OPCODE) in __copy_instruction()
448 buf[len] = INT3_INSN_OPCODE; in prepare_singlestep()
779 u8 int3 = INT3_INSN_OPCODE; in arch_arm_kprobe()
788 u8 int3 = INT3_INSN_OPCODE; in arch_disarm_kprobe()
H A Dopt.c310 if (insn.opcode.bytes[0] == INT3_INSN_OPCODE && in can_optimize()
506 u8 new[JMP32_INSN_SIZE] = { INT3_INSN_OPCODE, }; in arch_unoptimize_kprobe()
/openbmc/linux/arch/x86/kernel/
H A Dalternative.c156 *instr = INT3_INSN_OPCODE; in add_nop()
382 memset(&buf[i+2], INT3_INSN_OPCODE, insn.length - 2); in apply_relocation()
654 bytes[i++] = INT3_INSN_OPCODE; in patch_retpoline()
738 bytes[i++] = INT3_INSN_OPCODE; in patch_return()
2125 case INT3_INSN_OPCODE: in poke_int3_handler()
2187 unsigned char int3 = INT3_INSN_OPCODE; in text_poke_bp_batch()
2301 if (byte == INT3_INSN_OPCODE) in text_poke_bp_batch()
2353 BUG_ON(tp->text[i] != INT3_INSN_OPCODE); in text_poke_loc_init()
2361 case INT3_INSN_OPCODE: in text_poke_loc_init()
H A Dftrace.c328 unsigned const char retq[] = { RET_INSN_OPCODE, INT3_INSN_OPCODE }; in create_trampoline()
/openbmc/linux/arch/x86/include/asm/
H A Dtext-patching.h57 #define INT3_INSN_OPCODE 0xCC macro