Lines Matching refs:regs
43 #define BPF_R0 regs[BPF_REG_0]
44 #define BPF_R1 regs[BPF_REG_1]
45 #define BPF_R2 regs[BPF_REG_2]
46 #define BPF_R3 regs[BPF_REG_3]
47 #define BPF_R4 regs[BPF_REG_4]
48 #define BPF_R5 regs[BPF_REG_5]
49 #define BPF_R6 regs[BPF_REG_6]
50 #define BPF_R7 regs[BPF_REG_7]
51 #define BPF_R8 regs[BPF_REG_8]
52 #define BPF_R9 regs[BPF_REG_9]
53 #define BPF_R10 regs[BPF_REG_10]
56 #define DST regs[insn->dst_reg]
57 #define SRC regs[insn->src_reg]
58 #define FP regs[BPF_REG_FP]
59 #define AX regs[BPF_REG_AX]
60 #define ARG1 regs[BPF_REG_ARG1]
61 #define CTX regs[BPF_REG_CTX]
1387 static u64 ___bpf_prog_run(u64 *regs, const struct bpf_insn *insn, u64 *stack) in ___bpf_prog_run() argument
1704 u64 regs[MAX_BPF_EXT_REG]; \
1708 return ___bpf_prog_run(regs, insn, stack); \
1717 u64 regs[MAX_BPF_EXT_REG]; \
1725 return ___bpf_prog_run(regs, insn, stack); \