Lines Matching refs:nested_calls

182 	CG(context).nested_calls = 0;  in zend_init_compiler_context()
1964 if (CG(context).nested_calls + 1 > CG(active_op_array)->nested_calls) { in zend_do_begin_function_call()
1965 CG(active_op_array)->nested_calls = CG(context).nested_calls + 1; in zend_do_begin_function_call()
2006 last_op->result.num = CG(context).nested_calls; in zend_do_begin_method_call()
2011 opline->result.num = CG(context).nested_calls; in zend_do_begin_method_call()
2023 if (++CG(context).nested_calls > CG(active_op_array)->nested_calls) { in zend_do_begin_method_call()
2024 CG(active_op_array)->nested_calls = CG(context).nested_calls; in zend_do_begin_method_call()
2053 opline->result.num = CG(context).nested_calls; in zend_do_begin_dynamic_function_call()
2060 opline->result.num = CG(context).nested_calls; in zend_do_begin_dynamic_function_call()
2072 if (++CG(context).nested_calls > CG(active_op_array)->nested_calls) { in zend_do_begin_dynamic_function_call()
2073 CG(active_op_array)->nested_calls = CG(context).nested_calls; in zend_do_begin_dynamic_function_call()
2476 opline->result.num = CG(context).nested_calls; in zend_do_begin_class_member_function_call()
2498 if (++CG(context).nested_calls > CG(active_op_array)->nested_calls) { in zend_do_begin_class_member_function_call()
2499 CG(active_op_array)->nested_calls = CG(context).nested_calls; in zend_do_begin_class_member_function_call()
2522 opline->op2.num = CG(context).nested_calls; in zend_do_end_function_call()
2529 opline->op2.num = --CG(context).nested_calls; in zend_do_end_function_call()
5504 opline->extended_value = CG(context).nested_calls; in zend_do_begin_new_object()
5511 if (++CG(context).nested_calls > CG(active_op_array)->nested_calls) { in zend_do_begin_new_object()
5512 CG(active_op_array)->nested_calls = CG(context).nested_calls; in zend_do_begin_new_object()
5725 opline->op2.num = CG(context).nested_calls; in zend_do_shell_exec()
5728 if (CG(context).nested_calls + 1 > CG(active_op_array)->nested_calls) { in zend_do_shell_exec()
5729 CG(active_op_array)->nested_calls = CG(context).nested_calls + 1; in zend_do_shell_exec()