/linux-6.12.1/arch/powerpc/net/ |
D | bpf_jit_comp64.c | 420 u32 dst_reg = bpf_to_ppc(insn[i].dst_reg); in bpf_jit_build_body() local 452 if (dst_reg >= BPF_PPC_NVR_MIN && dst_reg < 32) in bpf_jit_build_body() 453 bpf_set_seen_register(ctx, dst_reg); in bpf_jit_build_body() 463 EMIT(PPC_RAW_ADD(dst_reg, dst_reg, src_reg)); in bpf_jit_build_body() 467 EMIT(PPC_RAW_SUB(dst_reg, dst_reg, src_reg)); in bpf_jit_build_body() 474 EMIT(PPC_RAW_ADDI(dst_reg, dst_reg, IMM_L(imm))); in bpf_jit_build_body() 477 EMIT(PPC_RAW_ADD(dst_reg, dst_reg, tmp1_reg)); in bpf_jit_build_body() 485 EMIT(PPC_RAW_ADDI(dst_reg, dst_reg, IMM_L(-imm))); in bpf_jit_build_body() 488 EMIT(PPC_RAW_SUB(dst_reg, dst_reg, tmp1_reg)); in bpf_jit_build_body() 494 EMIT(PPC_RAW_MULW(dst_reg, dst_reg, src_reg)); in bpf_jit_build_body() [all …]
|
D | bpf_jit_comp32.c | 295 u32 dst_reg = bpf_to_ppc(insn[i].dst_reg); in bpf_jit_build_body() local 296 u32 dst_reg_h = dst_reg - 1; in bpf_jit_build_body() 299 u32 src2_reg = dst_reg; in bpf_jit_build_body() 316 insn[i - 1].dst_reg == insn[i].dst_reg && insn[i - 1].imm != 1) { in bpf_jit_build_body() 339 if (dst_reg >= 3 && dst_reg < 32) { in bpf_jit_build_body() 340 bpf_set_seen_register(ctx, dst_reg); in bpf_jit_build_body() 354 EMIT(PPC_RAW_ADD(dst_reg, src2_reg, src_reg)); in bpf_jit_build_body() 357 EMIT(PPC_RAW_ADDC(dst_reg, src2_reg, src_reg)); in bpf_jit_build_body() 361 EMIT(PPC_RAW_SUB(dst_reg, src2_reg, src_reg)); in bpf_jit_build_body() 364 EMIT(PPC_RAW_SUBFC(dst_reg, src_reg, src2_reg)); in bpf_jit_build_body() [all …]
|
D | bpf_jit_comp.c | 259 int dst_reg) in bpf_add_extable_entry() argument 287 fixup[0] = PPC_RAW_LI(dst_reg, 0); in bpf_add_extable_entry() 289 fixup[1] = PPC_RAW_LI(dst_reg - 1, 0); /* clear higher 32-bit register too */ in bpf_add_extable_entry()
|
/linux-6.12.1/tools/include/linux/ |
D | filter.h | 37 .dst_reg = DST, \ 45 .dst_reg = DST, \ 55 .dst_reg = DST, \ 63 .dst_reg = DST, \ 73 .dst_reg = DST, \ 83 .dst_reg = DST, \ 91 .dst_reg = DST, \ 101 .dst_reg = DST, \ 109 .dst_reg = DST, \ 119 .dst_reg = DST, \ [all …]
|
/linux-6.12.1/arch/x86/net/ |
D | bpf_jit_comp.c | 273 static u8 add_1reg(u8 byte, u32 dst_reg) in add_1reg() argument 275 return byte + reg2hex[dst_reg]; in add_1reg() 279 static u8 add_2reg(u8 byte, u32 dst_reg, u32 src_reg) in add_2reg() argument 281 return byte + reg2hex[dst_reg] + (reg2hex[src_reg] << 3); in add_2reg() 872 u32 dst_reg, const u32 imm32) in emit_mov_imm32() argument 883 b1 = add_1mod(0x48, dst_reg); in emit_mov_imm32() 886 EMIT3_off32(b1, b2, add_1reg(b3, dst_reg), imm32); in emit_mov_imm32() 895 if (is_ereg(dst_reg)) in emit_mov_imm32() 896 EMIT1(add_2mod(0x40, dst_reg, dst_reg)); in emit_mov_imm32() 899 EMIT2(b2, add_2reg(b3, dst_reg, dst_reg)); in emit_mov_imm32() [all …]
|
/linux-6.12.1/arch/s390/net/ |
D | bpf_jit_comp.c | 112 static inline u32 reg(u32 dst_reg, u32 src_reg) in reg() argument 114 return reg2hex[dst_reg] << 4 | reg2hex[src_reg]; in reg() 746 probe->reg = reg2hex[insn->dst_reg]; in bpf_jit_probe_load_pre() 771 EMIT4(0xb9080000, REG_W1, insn->dst_reg); in bpf_jit_probe_atomic_pre() 863 u32 dst_reg = insn->dst_reg; in bpf_jit_insn() local 883 EMIT4(0xb9160000, dst_reg, src_reg); in bpf_jit_insn() 889 EMIT4(0xb9260000, dst_reg, src_reg); in bpf_jit_insn() 891 EMIT4(0xb9160000, dst_reg, dst_reg); in bpf_jit_insn() 895 EMIT4(0xb9270000, dst_reg, src_reg); in bpf_jit_insn() 897 EMIT4(0xb9160000, dst_reg, dst_reg); in bpf_jit_insn() [all …]
|
/linux-6.12.1/samples/bpf/ |
D | bpf_insn.h | 13 .dst_reg = DST, \ 21 .dst_reg = DST, \ 31 .dst_reg = DST, \ 39 .dst_reg = DST, \ 49 .dst_reg = DST, \ 57 .dst_reg = DST, \ 67 .dst_reg = DST, \ 75 .dst_reg = DST, \ 87 .dst_reg = DST, \ 93 .dst_reg = 0, \ [all …]
|
/linux-6.12.1/tools/testing/selftests/bpf/ |
D | disasm.c | 143 insn->code, insn->dst_reg, in print_bpf_end_insn() 145 insn->imm, insn->dst_reg); in print_bpf_end_insn() 153 insn->code, insn->dst_reg, in print_bpf_bswap_insn() 154 insn->imm, insn->dst_reg); in print_bpf_bswap_insn() 202 insn->dst_reg, class == BPF_ALU ? 'w' : 'r', in print_bpf_insn() 203 insn->dst_reg); in print_bpf_insn() 206 insn->code, insn->dst_reg, in print_bpf_insn() 210 insn->code, insn->dst_reg, insn->src_reg); in print_bpf_insn() 214 insn->dst_reg, in print_bpf_insn() 223 insn->dst_reg, in print_bpf_insn() [all …]
|
/linux-6.12.1/kernel/bpf/ |
D | disasm.c | 143 insn->code, insn->dst_reg, in print_bpf_end_insn() 145 insn->imm, insn->dst_reg); in print_bpf_end_insn() 153 insn->code, insn->dst_reg, in print_bpf_bswap_insn() 154 insn->imm, insn->dst_reg); in print_bpf_bswap_insn() 202 insn->dst_reg, class == BPF_ALU ? 'w' : 'r', in print_bpf_insn() 203 insn->dst_reg); in print_bpf_insn() 206 insn->code, insn->dst_reg, in print_bpf_insn() 210 insn->code, insn->dst_reg, insn->src_reg); in print_bpf_insn() 214 insn->dst_reg, in print_bpf_insn() 223 insn->dst_reg, in print_bpf_insn() [all …]
|
D | verifier.c | 3291 return insn->dst_reg; in insn_def_regno() 3298 int dst_reg = insn_def_regno(insn); in insn_has_def32() local 3300 if (dst_reg == -1) in insn_has_def32() 3303 return !is_reg64(env, insn, dst_reg, NULL, DST_OP); in insn_has_def32() 3786 u32 dreg = insn->dst_reg; in backtrack_insn() 7188 err = check_reg_arg(env, insn->dst_reg, SRC_OP); in check_atomic() 7211 if (is_ctx_reg(env, insn->dst_reg) || in check_atomic() 7212 is_pkt_reg(env, insn->dst_reg) || in check_atomic() 7213 is_flow_key_reg(env, insn->dst_reg) || in check_atomic() 7214 is_sk_reg(env, insn->dst_reg) || in check_atomic() [all …]
|
D | cgroup.c | 2250 BPF_SIZE(si->code), si->dst_reg, si->src_reg, in sysctl_convert_ctx_access() 2265 if (si->src_reg == treg || si->dst_reg == treg) in sysctl_convert_ctx_access() 2267 if (si->src_reg == treg || si->dst_reg == treg) in sysctl_convert_ctx_access() 2270 BPF_DW, si->dst_reg, treg, in sysctl_convert_ctx_access() 2274 treg, si->dst_reg, in sysctl_convert_ctx_access() 2283 BPF_DW, treg, si->dst_reg, in sysctl_convert_ctx_access() 2288 si->dst_reg, si->src_reg, in sysctl_convert_ctx_access() 2292 BPF_SIZE(si->code), si->dst_reg, si->dst_reg, in sysctl_convert_ctx_access() 2433 si->dst_reg, si->src_reg, \ 2439 si->dst_reg, si->src_reg, \ [all …]
|
/linux-6.12.1/net/core/ |
D | filter.c | 302 static u32 convert_skb_access(int skb_field, int dst_reg, int src_reg, in convert_skb_access() argument 311 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg, in convert_skb_access() 316 *insn++ = BPF_LDX_MEM(BPF_B, dst_reg, src_reg, PKT_TYPE_OFFSET); in convert_skb_access() 317 *insn++ = BPF_ALU32_IMM(BPF_AND, dst_reg, PKT_TYPE_MAX); in convert_skb_access() 319 *insn++ = BPF_ALU32_IMM(BPF_RSH, dst_reg, 5); in convert_skb_access() 326 *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg, in convert_skb_access() 334 *insn++ = BPF_LDX_MEM(BPF_H, dst_reg, src_reg, in convert_skb_access() 339 *insn++ = BPF_LDX_MEM(BPF_W, dst_reg, src_reg, in convert_skb_access() 341 *insn++ = BPF_JMP_IMM(BPF_JEQ, dst_reg, 0, 1); in convert_skb_access() 342 *insn++ = BPF_ALU32_IMM(BPF_MOV, dst_reg, 1); in convert_skb_access() [all …]
|
/linux-6.12.1/include/linux/ |
D | filter.h | 105 .dst_reg = DST, \ 116 .dst_reg = DST, \ 129 .dst_reg = DST, \ 139 .dst_reg = DST, \ 151 .dst_reg = DST, \ 161 .dst_reg = DST, \ 171 .dst_reg = DST, \ 179 .dst_reg = DST, \ 193 .dst_reg = DST, \ 208 .dst_reg = DST, \ [all …]
|
/linux-6.12.1/drivers/net/ethernet/netronome/nfp/bpf/ |
D | jit.c | 770 reg_a(meta->paired_st->dst_reg * 2), off, len - 1, in nfp_cpp_memcpy() 775 reg_a(meta->paired_st->dst_reg * 2), off, xfer_num - 1, in nfp_cpp_memcpy() 782 reg_a(meta->paired_st->dst_reg * 2), off, in nfp_cpp_memcpy() 789 reg_a(meta->paired_st->dst_reg * 2), off, in nfp_cpp_memcpy() 796 reg_a(meta->paired_st->dst_reg * 2), off, 7, in nfp_cpp_memcpy() 802 reg_a(meta->paired_st->dst_reg * 2), off, len - 33, in nfp_cpp_memcpy() 813 reg_a(meta->paired_st->dst_reg * 2), off, in nfp_cpp_memcpy() 818 xfer_num - 1, reg_a(meta->paired_st->dst_reg * 2), off, in nfp_cpp_memcpy() 841 wrp_reg_subpart(nfp_prog, reg_both(meta->insn.dst_reg * 2), in nfp_cpp_memcpy() 846 wrp_reg_subpart(nfp_prog, reg_both(meta->insn.dst_reg * 2), in nfp_cpp_memcpy() [all …]
|
D | verifier.c | 505 const struct bpf_reg_state *reg = cur_regs(env) + meta->insn.dst_reg; in nfp_bpf_check_store() 522 return nfp_bpf_check_ptr(nfp_prog, meta, env, meta->insn.dst_reg); in nfp_bpf_check_store() 530 const struct bpf_reg_state *dreg = cur_regs(env) + meta->insn.dst_reg; in nfp_bpf_check_atomic() 552 return nfp_bpf_check_ptr(nfp_prog, meta, env, meta->insn.dst_reg); in nfp_bpf_check_atomic() 562 cur_regs(env) + meta->insn.dst_reg; in nfp_bpf_check_alu() 647 meta->insn.dst_reg >= MAX_BPF_REG) { in nfp_verify_insn() 684 if (meta->insn.dst_reg >= BPF_REG_6 && in nfp_assign_subprog_idx_and_regs() 685 meta->insn.dst_reg <= BPF_REG_9) in nfp_assign_subprog_idx_and_regs()
|
/linux-6.12.1/tools/testing/selftests/bpf/verifier/ |
D | atomic_fetch.c | 95 #define __ATOMIC_FETCH_OP_TEST(src_reg, dst_reg, operand1, op, operand2, expect) \ argument 97 "atomic fetch " #op ", src=" #dst_reg " dst=" #dst_reg, \ 102 BPF_MOV64_REG(dst_reg, BPF_REG_10), \ 105 dst_reg, src_reg, -8), \
|
/linux-6.12.1/arch/arm/crypto/ |
D | crct10dif-ce-core.S | 137 .macro fold_16_bytes, src_reg, dst_reg, load_next_consts 143 veor.8 \dst_reg, \dst_reg, q8 144 veor.8 \dst_reg, \dst_reg, \src_reg
|
/linux-6.12.1/arch/x86/crypto/ |
D | crct10dif-pcl-asm_64.S | 83 # Fold src_reg into dst_reg. 84 .macro fold_16_bytes src_reg, dst_reg argument 88 pxor %xmm8, \dst_reg 89 xorps \src_reg, \dst_reg
|
/linux-6.12.1/drivers/scsi/ |
D | script_asm.pl | 553 $dst_reg = "\U$1\E"; 581 print STDERR "source = $src_reg, data = $data8 , destination = $dst_reg\n" 585 if (($src_reg eq undef) || ($src_reg eq $dst_reg)) { 587 ($registers{$dst_reg} << 16); 588 } elsif ($dst_reg =~ /SFBR/i) { 593 ($registers{$dst_reg} << 16);
|
/linux-6.12.1/drivers/gpu/drm/i915/gem/ |
D | i915_gem_ttm_move.c | 318 struct intel_memory_region *dst_reg, *src_reg; in i915_ttm_memcpy_init() local 320 dst_reg = i915_ttm_region(bo->bdev, dst_mem->mem_type); in i915_ttm_memcpy_init() 322 GEM_BUG_ON(!dst_reg || !src_reg); in i915_ttm_memcpy_init() 326 ttm_kmap_iter_iomap_init(&arg->_dst_iter.io, &dst_reg->iomap, in i915_ttm_memcpy_init() 327 &dst_rsgt->table, dst_reg->region.start); in i915_ttm_memcpy_init()
|
/linux-6.12.1/arch/arm64/crypto/ |
D | crct10dif-ce-core.S | 240 .macro fold_16_bytes, p, src_reg, dst_reg, load_next_consts 247 eor \dst_reg\().16b, \dst_reg\().16b, v8.16b 248 eor \dst_reg\().16b, \dst_reg\().16b, \src_reg\().16b
|
/linux-6.12.1/tools/testing/selftests/bpf/progs/ |
D | netif_receive_skb.c | 241 {.code = (__u8)1,.dst_reg = (__u8)0x2,.src_reg = (__u8)0x3,.off = (__s16)4,.imm = (__s32)5,}); in BPF_PROG() 243 {.code = 1, .dst_reg = 0x2, .src_reg = 0x3, .off = 4, in BPF_PROG()
|
/linux-6.12.1/arch/arm64/net/ |
D | bpf_jit_comp.c | 344 if (insn->dst_reg == BPF_REG_6 || insn->src_reg == BPF_REG_6) in find_used_callee_regs() 347 if (insn->dst_reg == BPF_REG_7 || insn->src_reg == BPF_REG_7) in find_used_callee_regs() 350 if (insn->dst_reg == BPF_REG_8 || insn->src_reg == BPF_REG_8) in find_used_callee_regs() 353 if (insn->dst_reg == BPF_REG_9 || insn->src_reg == BPF_REG_9) in find_used_callee_regs() 356 if (insn->dst_reg == BPF_REG_FP || insn->src_reg == BPF_REG_FP) { in find_used_callee_regs() 642 const u8 dst = bpf2a64[insn->dst_reg]; in emit_lse_atomic() 717 const u8 dst = bpf2a64[insn->dst_reg]; in emit_ll_sc_atomic() 894 int dst_reg = FIELD_GET(BPF_FIXUP_REG_MASK, ex->fixup); in ex_handler_bpf() local 896 if (dst_reg != DONT_CLEAR) in ex_handler_bpf() 897 regs->regs[dst_reg] = 0; in ex_handler_bpf() [all …]
|
/linux-6.12.1/tools/testing/selftests/bpf/prog_tests/ |
D | btf_dump.c | 724 {.code = (__u8)1,.dst_reg = (__u8)0x2,.src_reg = (__u8)0x3,.off = (__s16)4,.imm = (__s32)5,}); in test_btf_dump_struct_data() 728 { .code = 1, .dst_reg = 0x2, .src_reg = 0x3, .off = 4, in test_btf_dump_struct_data() 738 {.code = 1, .dst_reg = 2, .src_reg = 3, .off = 4, .imm = 5}); in test_btf_dump_struct_data() 743 { .code = 0, .dst_reg = 1}); in test_btf_dump_struct_data()
|
/linux-6.12.1/Documentation/bpf/ |
D | classic_vs_extended.rst | 212 op:16, jt:8, jf:8, k:32 ==> op:8, dst_reg:4, src_reg:4, off:16, imm:32 325 In eBPF it means dst_reg = (u32) dst_reg + (u32) src_reg; similarly, 334 dst_reg = dst_reg + src_reg
|