Searched refs:args_off (Results 1 - 2 of 2) sorted by relevance

/linux-master/arch/arm64/net/
H A Dbpf_jit_comp.c1814 int args_off, int retval_off, int run_ctx_off,
1856 emit(A64_ADD_I(1, A64_R(0), A64_SP, args_off), ctx);
1881 int args_off, int retval_off, int run_ctx_off,
1891 invoke_bpf_prog(ctx, tl->links[i], args_off, retval_off,
1905 static void save_args(struct jit_ctx *ctx, int args_off, int nregs) argument
1910 emit(A64_STR64I(i, A64_SP, args_off), ctx);
1911 args_off += 8;
1915 static void restore_args(struct jit_ctx *ctx, int args_off, int nregs) argument
1920 emit(A64_LDR64I(i, A64_SP, args_off), ctx);
1921 args_off
1813 invoke_bpf_prog(struct jit_ctx *ctx, struct bpf_tramp_link *l, int args_off, int retval_off, int run_ctx_off, bool save_ret) argument
1880 invoke_bpf_mod_ret(struct jit_ctx *ctx, struct bpf_tramp_links *tl, int args_off, int retval_off, int run_ctx_off, __le32 **branches) argument
1945 int args_off; local
[all...]
/linux-master/arch/riscv/net/
H A Dbpf_jit_comp64.c683 static void store_args(int nregs, int args_off, struct rv_jit_context *ctx) argument
688 emit_sd(RV_REG_FP, -args_off, RV_REG_A0 + i, ctx);
689 args_off -= 8;
693 static void restore_args(int nregs, int args_off, struct rv_jit_context *ctx) argument
698 emit_ld(RV_REG_A0 + i, -args_off, RV_REG_FP, ctx);
699 args_off -= 8;
703 static int invoke_bpf_prog(struct bpf_tramp_link *l, int args_off, int retval_off, argument
735 /* arg1: &args_off */
736 emit_addi(RV_REG_A0, RV_REG_FP, -args_off, ctx);
776 int retval_off, args_off, nregs_of local
[all...]

Completed in 178 milliseconds