Searched refs:INT3_INSN_SIZE (Results 1 – 4 of 4) sorted by relevance
/linux-6.1.9/arch/x86/kernel/kprobes/ |
D | opt.c | 195 regs->ip = (unsigned long)op->kp.addr + INT3_INSN_SIZE; in optimized_callback() 339 insn_jump_into_range(&insn, paddr + INT3_INSN_SIZE, in can_optimize() 493 memcpy(op->optinsn.copied_insn, op->kp.addr + INT3_INSN_SIZE, in arch_optimize_kprobes() 519 memcpy(new + INT3_INSN_SIZE, in arch_unoptimize_kprobe() 521 JMP32_INSN_SIZE - INT3_INSN_SIZE); in arch_unoptimize_kprobe() 523 text_poke(addr, new, INT3_INSN_SIZE); in arch_unoptimize_kprobe() 525 text_poke(addr + INT3_INSN_SIZE, in arch_unoptimize_kprobe() 526 new + INT3_INSN_SIZE, in arch_unoptimize_kprobe() 527 JMP32_INSN_SIZE - INT3_INSN_SIZE); in arch_unoptimize_kprobe()
|
D | core.c | 402 if (MAX_INSN_SIZE - len < INT3_INSN_SIZE) in prepare_singlestep() 406 len += INT3_INSN_SIZE; in prepare_singlestep() 455 regs->ip = regs->ip - INT3_INSN_SIZE + p->ainsn.size; in kprobe_emulate_ifmodifiers() 467 unsigned long func = regs->ip - INT3_INSN_SIZE + p->ainsn.size; in kprobe_emulate_call() 477 unsigned long ip = regs->ip - INT3_INSN_SIZE + p->ainsn.size; in __kprobe_emulate_jmp() 902 regs->ip += (orig_ip - copy_ip) - INT3_INSN_SIZE; in resume_singlestep()
|
/linux-6.1.9/arch/x86/kernel/ |
D | alternative.c | 856 if (regs->ip - INT3_INSN_SIZE != selftest) in int3_exception_notify() 1395 ip = (void *) regs->ip - INT3_INSN_SIZE; in poke_int3_handler() 1499 text_poke(text_poke_addr(&tp[i]), &int3, INT3_INSN_SIZE); in text_poke_bp_batch() 1511 if (len - INT3_INSN_SIZE > 0) { in text_poke_bp_batch() 1512 memcpy(old + INT3_INSN_SIZE, in text_poke_bp_batch() 1513 text_poke_addr(&tp[i]) + INT3_INSN_SIZE, in text_poke_bp_batch() 1514 len - INT3_INSN_SIZE); in text_poke_bp_batch() 1515 text_poke(text_poke_addr(&tp[i]) + INT3_INSN_SIZE, in text_poke_bp_batch() 1516 (const char *)tp[i].text + INT3_INSN_SIZE, in text_poke_bp_batch() 1517 len - INT3_INSN_SIZE); in text_poke_bp_batch() [all …]
|
/linux-6.1.9/arch/x86/include/asm/ |
D | text-patching.h | 55 #define INT3_INSN_SIZE 1 macro 176 int3_emulate_push(regs, regs->ip - INT3_INSN_SIZE + CALL_INSN_SIZE); in int3_emulate_call()
|