Lines Matching defs:nr_arg_slots
890 static void store_args(int nr_arg_slots, int args_off, struct rv_jit_context *ctx)
894 for (i = 0; i < nr_arg_slots; i++) {
1001 int stack_size = 0, nr_arg_slots = 0;
1061 nr_arg_slots += round_up(m->arg_size[i], 8) / 8;
1071 stack_size += nr_arg_slots * 8;
1088 if ((flags & BPF_TRAMP_F_CALL_ORIG) && (nr_arg_slots - RV_MAX_REG_ARGS > 0))
1089 stack_size += (nr_arg_slots - RV_MAX_REG_ARGS) * 8;
1131 emit_li(RV_REG_T1, nr_arg_slots, ctx);
1134 store_args(nr_arg_slots, args_off, ctx);
1174 restore_args(min_t(int, nr_arg_slots, RV_MAX_REG_ARGS), args_off, ctx);
1175 restore_stack_args(nr_arg_slots - RV_MAX_REG_ARGS, args_off, stk_arg_off, ctx);
1210 restore_args(min_t(int, nr_arg_slots, RV_MAX_REG_ARGS), args_off, ctx);