Lines Matching defs:dst
857 s64 dst, src;
859 dst = value(di, db, sgn[k][0]);
863 dst, src);
875 s64 dst, src;
877 dst = value(bt % dbits, db, sgn[k][0]);
880 dst, src);
917 struct bpf_insn *insns, s64 dst, s64 imm)
926 if (__bpf_alu_result(&res, dst, (s32)imm, op)) {
927 i += __bpf_ld_imm64(&insns[i], R1, dst);
938 struct bpf_insn *insns, s64 dst, s64 imm)
947 if (__bpf_alu_result(&res, (u32)dst, (u32)imm, op)) {
948 i += __bpf_ld_imm64(&insns[i], R1, dst);
959 struct bpf_insn *insns, s64 dst, s64 src)
968 if (__bpf_alu_result(&res, dst, src, op)) {
969 i += __bpf_ld_imm64(&insns[i], R1, dst);
981 struct bpf_insn *insns, s64 dst, s64 src)
990 if (__bpf_alu_result(&res, (u32)dst, (u32)src, op)) {
991 i += __bpf_ld_imm64(&insns[i], R1, dst);
1222 u64 dst, res;
1233 dst = 0x76543210U;
1235 dst = 0x7edcba9876543210ULL;
1241 __bpf_alu_result(&res, dst, imm, op);
1248 i += __bpf_ld_imm64(&insns[i], rd, dst);
1404 u64 dst, src, res, same;
1415 dst = 0x76543210U;
1418 dst = 0x7edcba9876543210ULL;
1425 __bpf_alu_result(&res, dst, src, op);
1438 i += __bpf_ld_imm64(&insns[i], rd, dst);
1595 struct bpf_insn *insns, s64 dst, s64 src)
1609 __bpf_alu_result(&res, dst, src, BPF_OP(op));
1614 fetch = dst;
1619 i += __bpf_ld_imm64(&insns[i], R1, dst);
1642 struct bpf_insn *insns, s64 dst, s64 src)
1656 __bpf_alu_result(&res, (u32)dst, (u32)src, BPF_OP(op));
1661 fetch = (u32)dst;
1666 i += __bpf_ld_imm64(&insns[i], R1, (u32)dst);
1689 struct bpf_insn *insns, s64 dst, s64 src)
1696 i += __bpf_ld_imm64(&insns[i], R0, ~dst);
1697 i += __bpf_ld_imm64(&insns[i], R1, dst);
1729 struct bpf_insn *insns, s64 dst, s64 src)
1736 i += __bpf_ld_imm64(&insns[i], R0, ~dst);
1737 i += __bpf_ld_imm64(&insns[i], R1, (u32)dst);
1755 i += __bpf_ld_imm64(&insns[i], R0, dst);
2303 struct bpf_insn *insns, s64 dst, s64 imm)
2308 bool match = __bpf_match_jmp_cond(dst, (s32)imm, op);
2313 i += __bpf_ld_imm64(&insns[i], R1, dst);
2326 struct bpf_insn *insns, s64 dst, s64 imm)
2331 bool match = __bpf_match_jmp_cond((s32)dst, (s32)imm, op);
2334 i += __bpf_ld_imm64(&insns[i], R1, dst);
2347 struct bpf_insn *insns, s64 dst, s64 src)
2352 bool match = __bpf_match_jmp_cond(dst, src, op);
2355 i += __bpf_ld_imm64(&insns[i], R1, dst);
2369 struct bpf_insn *insns, s64 dst, s64 src)
2374 bool match = __bpf_match_jmp_cond((s32)dst, (s32)src, op);
2377 i += __bpf_ld_imm64(&insns[i], R1, dst);
3636 0x0a, 0x01, 0x02, 0x0a, /* ip dst */
3638 0x00, 0x16 /* dst port */ },
3689 0x0a, 0x01, 0x02, 0x0a, /* ip dst */
3691 0x00, 0x16 /* dst port */ },
4898 "ALU_MOV_X: dst = 2",
4909 "ALU_MOV_X: dst = 4294967295",
4920 "ALU64_MOV_X: dst = 2",
4931 "ALU64_MOV_X: dst = 4294967295",
4943 "ALU_MOV_K: dst = 2",
4953 "ALU_MOV_K: dst = 4294967295",
5021 "ALU64_MOV_K: dst = 2",
5031 "ALU64_MOV_K: dst = 2147483647",
5041 "ALU64_OR_K: dst = 0x0",
5057 "ALU64_MOV_K: dst = -1",
11559 #define BPF_TEST_CLOBBER_ALU(alu, op, dst, src) \
11561 #alu "_" #op " to " #dst ": no clobbering", \
11573 BPF_##alu(BPF_ ##op, dst, src), \
11574 BPF_ALU32_IMM(BPF_MOV, dst, dst), \
11851 /* Checking that JMP32 dst & src are not zero extended in place */
13692 "JMP_JEQ_X: dst = src -> always taken",
13704 "JMP_JGE_X: dst = src -> always taken",
13716 "JMP_JLE_X: dst = src -> always taken",
13728 "JMP_JSGE_X: dst = src -> always taken",
13740 "JMP_JSLE_X: dst = src -> always taken",
13752 "JMP_JNE_X: dst = src -> never taken",
13764 "JMP_JGT_X: dst = src -> never taken",
13776 "JMP_JLT_X: dst = src -> never taken",
13788 "JMP_JSGT_X: dst = src -> never taken",
13800 "JMP_JSLT_X: dst = src -> never taken",