/linux-6.1.9/arch/powerpc/lib/ |
D | feature-fixups.c | 154 patch_instruction(dest, ppc_inst(instrs[0])); in do_stf_entry_barrier_fixups() 155 patch_instruction(dest + 2, ppc_inst(instrs[2])); in do_stf_entry_barrier_fixups() 159 patch_instruction(dest + 1, ppc_inst(instrs[1])); in do_stf_entry_barrier_fixups() 160 patch_instruction(dest + 2, ppc_inst(instrs[2])); in do_stf_entry_barrier_fixups() 161 patch_instruction(dest, ppc_inst(instrs[0])); in do_stf_entry_barrier_fixups() 214 patch_instruction(dest, ppc_inst(instrs[0])); in do_stf_exit_barrier_fixups() 215 patch_instruction(dest + 1, ppc_inst(instrs[1])); in do_stf_exit_barrier_fixups() 216 patch_instruction(dest + 2, ppc_inst(instrs[2])); in do_stf_exit_barrier_fixups() 217 patch_instruction(dest + 3, ppc_inst(instrs[3])); in do_stf_exit_barrier_fixups() 218 patch_instruction(dest + 4, ppc_inst(instrs[4])); in do_stf_exit_barrier_fixups() [all …]
|
D | code-patching.c | 205 int patch_instruction(u32 *addr, ppc_inst_t instr) in patch_instruction() function 213 NOKPROBE_SYMBOL(patch_instruction); 222 return patch_instruction(addr, instr); in patch_branch()
|
D | test-code-patching.c | 121 patch_instruction(iptr, instr); in test_create_function_call() 345 patch_instruction(iptr, inst); in test_prefixed_patching()
|
/linux-6.1.9/arch/powerpc/kernel/ |
D | optprobes.c | 129 patch_instruction(addr++, ppc_inst(PPC_RAW_LIS(reg, PPC_HI(val)))); in patch_imm32_load_insns() 130 patch_instruction(addr, ppc_inst(PPC_RAW_ORI(reg, reg, PPC_LO(val)))); in patch_imm32_load_insns() 139 patch_instruction(addr++, ppc_inst(PPC_RAW_LIS(reg, PPC_HIGHEST(val)))); in patch_imm64_load_insns() 140 patch_instruction(addr++, ppc_inst(PPC_RAW_ORI(reg, reg, PPC_HIGHER(val)))); in patch_imm64_load_insns() 141 patch_instruction(addr++, ppc_inst(PPC_RAW_SLDI(reg, reg, 32))); in patch_imm64_load_insns() 142 patch_instruction(addr++, ppc_inst(PPC_RAW_ORIS(reg, reg, PPC_HI(val)))); in patch_imm64_load_insns() 143 patch_instruction(addr, ppc_inst(PPC_RAW_ORI(reg, reg, PPC_LO(val)))); in patch_imm64_load_insns() 195 rc = patch_instruction(buff + i, ppc_inst(*(optprobe_template_entry + i))); in arch_prepare_optimized_kprobe() 225 patch_instruction(buff + TMPL_CALL_HDLR_IDX, branch_op_callback); in arch_prepare_optimized_kprobe() 226 patch_instruction(buff + TMPL_EMULATE_IDX, branch_emulate_step); in arch_prepare_optimized_kprobe() [all …]
|
D | static_call.c | 20 err = patch_instruction(tramp + PPC_SCT_DATA, ppc_inst(target)); in arch_static_call_transform() 26 err = patch_instruction(tramp, ppc_inst(PPC_RAW_BLR())); in arch_static_call_transform() 30 err = patch_instruction(tramp, ppc_inst(PPC_RAW_NOP())); in arch_static_call_transform()
|
D | module_32.c | 178 if (patch_instruction(&entry->jump[0], ppc_inst(PPC_RAW_LIS(_R12, PPC_HA(val))))) in do_plt_call() 180 if (patch_instruction(&entry->jump[1], ppc_inst(PPC_RAW_ADDI(_R12, _R12, PPC_LO(val))))) in do_plt_call() 182 if (patch_instruction(&entry->jump[2], ppc_inst(PPC_RAW_MTCTR(_R12)))) in do_plt_call() 184 if (patch_instruction(&entry->jump[3], ppc_inst(PPC_RAW_BCTR()))) in do_plt_call() 194 return patch_instruction(loc, ppc_inst((*loc & 0xffff0000) | value)); in patch_location_16() 262 if (patch_instruction(location, ppc_inst(value))) in apply_relocate_add()
|
D | epapr_paravirt.c | 41 patch_instruction(epapr_hypercall_start + i, inst); in early_init_dt_scan_epapr() 43 patch_instruction(epapr_ev_idle_start + i, inst); in early_init_dt_scan_epapr()
|
D | module_64.c | 426 if (patch_instruction(&entry->jump[i], in create_stub() 440 if (patch_instruction(&entry->jump[0], in create_stub() 444 if (patch_instruction(&entry->jump[1], in create_stub() 451 if (patch_instruction(((u32 *)&entry->funcdata) + i, in create_stub() 456 if (patch_instruction(&entry->magic, ppc_inst(STUB_MAGIC))) in create_stub() 514 if (patch_instruction(instruction, ppc_inst(PPC_INST_LD_TOC))) in restore_r2() 658 if (patch_instruction((u32 *)location, ppc_inst(value))) in apply_relocate_add()
|
D | jump_label.c | 19 patch_instruction(addr, ppc_inst(PPC_RAW_NOP())); in arch_jump_label_transform()
|
D | kprobes.c | 184 patch_instruction(p->ainsn.insn, insn); in arch_prepare_kprobe() 195 WARN_ON_ONCE(patch_instruction(p->addr, ppc_inst(BREAKPOINT_INSTRUCTION))); in arch_arm_kprobe() 201 WARN_ON_ONCE(patch_instruction(p->addr, ppc_inst(p->opcode))); in arch_disarm_kprobe()
|
D | crash_dump.c | 48 patch_instruction(p, ppc_inst(PPC_RAW_NOP())); in create_trampoline()
|
D | setup_32.c | 92 patch_instruction(addr, insn); /* replace b by bne cr0 */ in machine_init()
|
D | kgdb.c | 424 err = patch_instruction(addr, ppc_inst(BREAK_INSTR)); in kgdb_arch_set_breakpoint() 439 err = patch_instruction(addr, ppc_inst(instr)); in kgdb_arch_remove_breakpoint()
|
/linux-6.1.9/arch/powerpc/include/asm/ |
D | code-patching.h | 77 int patch_instruction(u32 *addr, ppc_inst_t instr); 87 return patch_instruction((u32 *)patch_site_addr(site), instr); in patch_instruction_site() 98 return patch_instruction(addr, ppc_inst((*addr & ~clr) | set)); in modify_instruction()
|
/linux-6.1.9/arch/powerpc/platforms/86xx/ |
D | mpc86xx_smp.c | 86 patch_instruction(vector, ppc_inst(save_vector)); in smp_86xx_kick_cpu()
|
/linux-6.1.9/arch/powerpc/kernel/trace/ |
D | ftrace.c | 78 return patch_instruction((u32 *)ip, new); in ftrace_modify_code() 203 if (patch_instruction((u32 *)ip, pop)) { in __ftrace_make_nop() 334 if (patch_instruction((u32 *)ip, ppc_inst(PPC_RAW_NOP()))) { in __ftrace_make_nop_kernel()
|
/linux-6.1.9/arch/powerpc/platforms/powermac/ |
D | smp.c | 828 patch_instruction(vector, ppc_inst(save_vector)); in smp_core99_kick_cpu()
|
/linux-6.1.9/arch/powerpc/xmon/ |
D | xmon.c | 952 patch_instruction(bp->instr, instr); in insert_bpts() 953 patch_instruction(ppc_inst_next(bp->instr, bp->instr), in insert_bpts() 957 if (patch_instruction((u32 *)bp->address, in insert_bpts() 998 && patch_instruction( in remove_bpts()
|