Home
last modified time | relevance | path

Searched refs:PPC_RAW_ORI (Results 1 – 6 of 6) sorted by relevance

/Linux-v6.1/arch/powerpc/net/
Dbpf_jit.h59 EMIT(PPC_RAW_ORI(d, d, IMM_L(i))); \
74 EMIT(PPC_RAW_ORI(d, d, \
82 EMIT(PPC_RAW_ORI(d, d, (uintptr_t)(i) & \
Dbpf_jit_comp64.c535 EMIT(PPC_RAW_ORI(dst_reg, dst_reg, IMM_L(imm))); in bpf_jit_build_body()
723 EMIT(PPC_RAW_ORI(_R31, _R31, 0)); in bpf_jit_build_body()
Dbpf_jit_comp32.c202 EMIT(PPC_RAW_ORI(_R0, _R0, IMM_L(func))); in bpf_jit_emit_func_call_rel()
532 EMIT(PPC_RAW_ORI(dst_reg, dst_reg, IMM_L(imm))); in bpf_jit_build_body()
/Linux-v6.1/arch/powerpc/lib/
Dfeature-fixups.c144 instrs[i++] = PPC_RAW_ORI(_R31, _R31, 0); /* speculation barrier */ in do_stf_entry_barrier_fixups()
200 instrs[i++] = PPC_RAW_ORI(_R31, _R31, 0); /* speculation barrier */ in do_stf_exit_barrier_fixups()
296 instrs[i++] = PPC_RAW_ORI(_R31, _R31, 0); /* speculation barrier */ in do_uaccess_flush_fixups()
297 instrs[i++] = PPC_RAW_ORI(_R30, _R30, 0); /* L1d flush */ in do_uaccess_flush_fixups()
344 instrs[i++] = PPC_RAW_ORI(_R31, _R31, 0); /* speculation barrier */ in __do_entry_flush_fixups()
345 instrs[i++] = PPC_RAW_ORI(_R30, _R30, 0); /* L1d flush */ in __do_entry_flush_fixups()
458 instrs[i++] = PPC_RAW_ORI(_R31, _R31, 0); /* speculation barrier */ in __do_rfi_flush_fixups()
459 instrs[i++] = PPC_RAW_ORI(_R30, _R30, 0); /* L1d flush */ in __do_rfi_flush_fixups()
526 instr = PPC_RAW_ORI(_R31, _R31, 0); /* speculation barrier */ in do_barrier_nospec_fixups_range()
/Linux-v6.1/arch/powerpc/kernel/
Doptprobes.c130 patch_instruction(addr, ppc_inst(PPC_RAW_ORI(reg, reg, PPC_LO(val)))); in patch_imm32_load_insns()
140 patch_instruction(addr++, ppc_inst(PPC_RAW_ORI(reg, reg, PPC_HIGHER(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()
/Linux-v6.1/arch/powerpc/include/asm/
Dppc-opcode.h481 #define PPC_RAW_NOP() PPC_RAW_ORI(0, 0, 0)
537 #define PPC_RAW_ORI(d, a, i) (0x60000000 | ___PPC_RA(d) | ___PPC_RS(a) | IMM_L(i)) macro