Home
last modified time | relevance | path

Searched refs:PPC_RAW_LWZ (Results 1 – 4 of 4) sorted by relevance

/Linux-v5.10/arch/powerpc/net/
Dbpf_jit32.h83 #define PPC_LWZ_OFFS(r, base, i) do { if ((i) < 32768) EMIT(PPC_RAW_LWZ(r, base, i)); \
85 EMIT(PPC_RAW_LWZ(r, r, IMM_L(i))); } } while(0)
121 #define PPC_BPF_LL(r, base, i) do { EMIT(PPC_RAW_LWZ(r, base, i)); } while(0)
Dbpf_jit_comp64.c242 EMIT(PPC_RAW_LWZ(b2p[TMP_REG_1], b2p_bpf_array, offsetof(struct bpf_array, map.max_entries))); in bpf_jit_emit_tail_call()
729 EMIT(PPC_RAW_LWZ(dst_reg, src_reg, off)); in bpf_jit_build_body()
/Linux-v5.10/arch/powerpc/lib/
Dtest_emulate_step.c30 PPC_RAW_LWZ(r, base, i))
141 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_LWZ(5, 3, 0))); in test_lwz()
/Linux-v5.10/arch/powerpc/include/asm/
Dppc-opcode.h418 #define PPC_RAW_LWZ(r, base, i) (0x80000000 | ___PPC_RT(r) | ___PPC_RA(base) | IMM_L(i)) macro