Lines Matching defs:recursion_depth
707 if (++state->recursion_depth > state->recursion_limit) {
810 state->recursion_depth--;
823 state->recursion_depth--;
870 if (++state->recursion_depth > state->recursion_limit) {
990 state->recursion_depth--;
1022 if (++state->recursion_depth > state->recursion_limit) {
1058 state->recursion_depth--;
1091 int recursion_depth = tstate->recursion_limit - tstate->recursion_remaining;
1092 starting_recursion_depth = (recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ?
1093 recursion_depth * COMPILER_STACK_FRAME_SCALE : recursion_depth;
1094 state->recursion_depth = starting_recursion_depth;
1102 if (ret && state->recursion_depth != starting_recursion_depth) {
1105 starting_recursion_depth, state->recursion_depth);