Lines Matching refs:depth
4474 int depth = 0, frame = 0, i, subprog_end; in check_max_stack_depth_subprog() local
4501 if (idx && subprog[idx].has_tail_call && depth >= 256) { in check_max_stack_depth_subprog()
4504 depth); in check_max_stack_depth_subprog()
4510 depth += round_up(max_t(u32, subprog[idx].stack_depth, 1), 32); in check_max_stack_depth_subprog()
4511 if (depth > MAX_BPF_STACK) { in check_max_stack_depth_subprog()
4513 frame + 1, depth); in check_max_stack_depth_subprog()
4574 depth -= round_up(max_t(u32, subprog[idx].stack_depth, 1), 32); in check_max_stack_depth_subprog()
14141 int i, depth; in fixup_call_args() local
14176 depth = get_callee_stack_depth(env, insn, i); in fixup_call_args()
14177 if (depth < 0) in fixup_call_args()
14178 return depth; in fixup_call_args()
14179 bpf_patch_call_args(insn, depth); in fixup_call_args()
15042 u32 depth = env->subprog_info[i].stack_depth; in print_verification_stats() local
15044 verbose(env, "%d", depth); in print_verification_stats()