Lines Matching refs:nregs
1799 static void save_args(struct jit_ctx *ctx, int args_off, int nregs) in save_args() argument
1803 for (i = 0; i < nregs; i++) { in save_args()
1809 static void restore_args(struct jit_ctx *ctx, int args_off, int nregs) in restore_args() argument
1813 for (i = 0; i < nregs; i++) { in restore_args()
1832 int nregs, u32 flags) in prepare_trampoline() argument
1890 stack_size += nregs * 8; in prepare_trampoline()
1934 emit(A64_MOVZ(1, A64_R(10), nregs, 0), ctx); in prepare_trampoline()
1938 save_args(ctx, args_off, nregs); in prepare_trampoline()
1965 restore_args(ctx, args_off, nregs); in prepare_trampoline()
1994 restore_args(ctx, args_off, nregs); in prepare_trampoline()
2035 int nregs = m->nr_args; in arch_prepare_bpf_trampoline() local
2046 nregs += (m->arg_size[i] + 7) / 8 - 1; in arch_prepare_bpf_trampoline()
2050 if (nregs > 8) in arch_prepare_bpf_trampoline()
2053 ret = prepare_trampoline(&ctx, im, tlinks, orig_call, nregs, flags); in arch_prepare_bpf_trampoline()
2064 ret = prepare_trampoline(&ctx, im, tlinks, orig_call, nregs, flags); in arch_prepare_bpf_trampoline()