Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/arch/powerpc/net/
H A 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)
H A Dbpf_jit_comp64.c243 EMIT(PPC_RAW_LWZ(b2p[TMP_REG_1], b2p_bpf_array, offsetof(struct bpf_array, map.max_entries))); in bpf_jit_emit_tail_call()
802 EMIT(PPC_RAW_LWZ(dst_reg, src_reg, off)); in bpf_jit_build_body()
/OK3568_Linux_fs/kernel/arch/powerpc/lib/
H A 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()
/OK3568_Linux_fs/kernel/arch/powerpc/include/asm/
H A Dppc-opcode.h419 #define PPC_RAW_LWZ(r, base, i) (0x80000000 | ___PPC_RT(r) | ___PPC_RA(base) | IMM_L(i)) macro