Home
last modified time | relevance | path

Searched refs:PPC_RAW_RLWINM (Results 1 – 2 of 2) sorted by relevance

/kernel/linux/linux-5.10/arch/powerpc/net/
Dbpf_jit_comp64.c244 EMIT(PPC_RAW_RLWINM(b2p_index, b2p_index, 0, 0, 31)); in bpf_jit_emit_tail_call()
599 EMIT(PPC_RAW_RLWINM(dst_reg, dst_reg, 0, 0, 31)); in bpf_jit_build_body()
616 EMIT(PPC_RAW_RLWINM(dst_reg, dst_reg, 0, 0, 31)); in bpf_jit_build_body()
634 EMIT(PPC_RAW_RLWINM(b2p[TMP_REG_1], dst_reg, 8, 16, 23)); in bpf_jit_build_body()
646 EMIT(PPC_RAW_RLWINM(b2p[TMP_REG_1], dst_reg, 8, 0, 31)); in bpf_jit_build_body()
/kernel/linux/linux-5.10/arch/powerpc/include/asm/
Dppc-opcode.h493 #define PPC_RAW_RLWINM(d, a, i, mb, me) (0x54000000 | ___PPC_RA(d) | ___PPC_RS(a) | __PPC_SH(i) | _… macro
501 #define PPC_RAW_SLWI(d, a, i) PPC_RAW_RLWINM(d, a, i, 0, 31-(i))
503 #define PPC_RAW_SRWI(d, a, i) PPC_RAW_RLWINM(d, a, 32-(i), i, 31)