Searched refs:PPC_RAW_RLWINM (Results 1 – 3 of 3) sorted by relevance
/linux/arch/powerpc/net/ |
A D | bpf_jit_comp32.c | 233 EMIT(PPC_RAW_RLWINM(_R3, b2p_index, 2, 0, 29)); in bpf_jit_emit_tail_call() 473 EMIT(PPC_RAW_RLWINM(dst_reg, dst_reg, 32 - imm, imm, 31)); in bpf_jit_build_body() 505 EMIT(PPC_RAW_RLWINM(dst_reg, dst_reg, 0, in bpf_jit_build_body() 582 EMIT(PPC_RAW_RLWINM(dst_reg, dst_reg, imm, 0, 31 - imm)); in bpf_jit_build_body() 616 EMIT(PPC_RAW_RLWINM(dst_reg, dst_reg, 32 - imm, imm, 31)); in bpf_jit_build_body() 637 EMIT(PPC_RAW_RLWINM(_R0, tmp_reg, 0, 26, 26)); in bpf_jit_build_body() 699 EMIT(PPC_RAW_RLWINM(dst_reg, dst_reg, 24, 16, 31)); in bpf_jit_build_body() 707 EMIT(PPC_RAW_RLWINM(_R0, dst_reg, 8, 0, 31)); in bpf_jit_build_body() 716 EMIT(PPC_RAW_RLWINM(tmp_reg, dst_reg, 8, 0, 31)); in bpf_jit_build_body() 717 EMIT(PPC_RAW_RLWINM(_R0, dst_reg_h, 8, 0, 31)); in bpf_jit_build_body() [all …]
|
A D | bpf_jit_comp64.c | 226 EMIT(PPC_RAW_RLWINM(b2p_index, b2p_index, 0, 0, 31)); in bpf_jit_emit_tail_call() 580 EMIT(PPC_RAW_RLWINM(dst_reg, dst_reg, 0, 0, 31)); in bpf_jit_build_body() 597 EMIT(PPC_RAW_RLWINM(dst_reg, dst_reg, 0, 0, 31)); in bpf_jit_build_body() 615 EMIT(PPC_RAW_RLWINM(b2p[TMP_REG_1], dst_reg, 8, 16, 23)); in bpf_jit_build_body() 627 EMIT(PPC_RAW_RLWINM(b2p[TMP_REG_1], dst_reg, 8, 0, 31)); in bpf_jit_build_body()
|
/linux/arch/powerpc/include/asm/ |
A D | ppc-opcode.h | 547 #define PPC_RAW_RLWINM(d, a, i, mb, me) (0x54000000 | ___PPC_RA(d) | ___PPC_RS(a) | __PPC_SH(i) | _… macro 555 #define PPC_RAW_SLWI(d, a, i) PPC_RAW_RLWINM(d, a, i, 0, 31-(i)) 557 #define PPC_RAW_SRWI(d, a, i) PPC_RAW_RLWINM(d, a, 32-(i), i, 31)
|
Completed in 11 milliseconds