Lines Matching defs:recursion_depth
13 int recursion_depth; /* current recursion depth */
167 if (++state->recursion_depth > state->recursion_limit) {
196 --state->recursion_depth;
214 if (++state->recursion_depth > state->recursion_limit) {
394 state->recursion_depth--;
540 if (++state->recursion_depth > state->recursion_limit) {
686 state->recursion_depth--;
721 if (++state->recursion_depth > state->recursion_limit) {
929 state->recursion_depth--;
1005 int recursion_depth = tstate->recursion_limit - tstate->recursion_remaining;
1006 starting_recursion_depth = (recursion_depth< INT_MAX / COMPILER_STACK_FRAME_SCALE) ?
1007 recursion_depth * COMPILER_STACK_FRAME_SCALE : recursion_depth;
1008 state.recursion_depth = starting_recursion_depth;
1035 if (res && state.recursion_depth != starting_recursion_depth) {
1038 starting_recursion_depth, state.recursion_depth);