Lines Matching refs:DST
10 #define BPF_ALU64_REG(OP, DST, SRC) \
13 .dst_reg = DST, \
18 #define BPF_ALU32_REG(OP, DST, SRC) \
21 .dst_reg = DST, \
28 #define BPF_ALU64_IMM(OP, DST, IMM) \
31 .dst_reg = DST, \
36 #define BPF_ALU32_IMM(OP, DST, IMM) \
39 .dst_reg = DST, \
46 #define BPF_MOV64_REG(DST, SRC) \
49 .dst_reg = DST, \
54 #define BPF_MOV32_REG(DST, SRC) \
57 .dst_reg = DST, \
64 #define BPF_MOV64_IMM(DST, IMM) \
67 .dst_reg = DST, \
72 #define BPF_MOV32_IMM(DST, IMM) \
75 .dst_reg = DST, \
81 #define BPF_LD_IMM64(DST, IMM) \
82 BPF_LD_IMM64_RAW(DST, 0, IMM)
84 #define BPF_LD_IMM64_RAW(DST, SRC, IMM) \
87 .dst_reg = DST, \
103 #define BPF_LD_MAP_FD(DST, MAP_FD) \
104 BPF_LD_IMM64_RAW(DST, BPF_PSEUDO_MAP_FD, MAP_FD)
119 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \
122 .dst_reg = DST, \
129 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \
132 .dst_reg = DST, \
139 #define BPF_STX_XADD(SIZE, DST, SRC, OFF) \
142 .dst_reg = DST, \
149 #define BPF_ST_MEM(SIZE, DST, OFF, IMM) \
152 .dst_reg = DST, \
159 #define BPF_JMP_REG(OP, DST, SRC, OFF) \
162 .dst_reg = DST, \
169 #define BPF_JMP32_REG(OP, DST, SRC, OFF) \
172 .dst_reg = DST, \
179 #define BPF_JMP_IMM(OP, DST, IMM, OFF) \
182 .dst_reg = DST, \
189 #define BPF_JMP32_IMM(OP, DST, IMM, OFF) \
192 .dst_reg = DST, \
199 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \
202 .dst_reg = DST, \