nested_calls      182 Zend/zend_compile.c 	CG(context).nested_calls = 0;
nested_calls     2009 Zend/zend_compile.c 	if (CG(context).nested_calls + 1 > CG(active_op_array)->nested_calls) {
nested_calls     2010 Zend/zend_compile.c 		CG(active_op_array)->nested_calls = CG(context).nested_calls + 1;
nested_calls     2048 Zend/zend_compile.c 		last_op->result.num = CG(context).nested_calls;
nested_calls     2053 Zend/zend_compile.c 		opline->result.num = CG(context).nested_calls;
nested_calls     2065 Zend/zend_compile.c 	if (++CG(context).nested_calls > CG(active_op_array)->nested_calls) {
nested_calls     2066 Zend/zend_compile.c 		CG(active_op_array)->nested_calls = CG(context).nested_calls;
nested_calls     2094 Zend/zend_compile.c 		opline->result.num = CG(context).nested_calls;
nested_calls     2101 Zend/zend_compile.c 		opline->result.num = CG(context).nested_calls;
nested_calls     2113 Zend/zend_compile.c 	if (++CG(context).nested_calls > CG(active_op_array)->nested_calls) {
nested_calls     2114 Zend/zend_compile.c 		CG(active_op_array)->nested_calls = CG(context).nested_calls;
nested_calls     2546 Zend/zend_compile.c 	opline->result.num = CG(context).nested_calls;
nested_calls     2568 Zend/zend_compile.c 	if (++CG(context).nested_calls > CG(active_op_array)->nested_calls) {
nested_calls     2569 Zend/zend_compile.c 		CG(active_op_array)->nested_calls = CG(context).nested_calls;
nested_calls     2594 Zend/zend_compile.c 			opline->op2.num = CG(context).nested_calls;
nested_calls     2601 Zend/zend_compile.c 			opline->op2.num = --CG(context).nested_calls;
nested_calls     2757 Zend/zend_compile.c 		opline->result.num = CG(context).nested_calls;
nested_calls     2763 Zend/zend_compile.c 		++CG(context).nested_calls;
nested_calls     5635 Zend/zend_compile.c 	opline->extended_value = CG(context).nested_calls;
nested_calls     5642 Zend/zend_compile.c 	if (++CG(context).nested_calls > CG(active_op_array)->nested_calls) {
nested_calls     5643 Zend/zend_compile.c 		CG(active_op_array)->nested_calls = CG(context).nested_calls;
nested_calls     5855 Zend/zend_compile.c 	opline->op2.num = CG(context).nested_calls;
nested_calls     5858 Zend/zend_compile.c 	if (CG(context).nested_calls + 1 > CG(active_op_array)->nested_calls) {
nested_calls     5859 Zend/zend_compile.c 		CG(active_op_array)->nested_calls = CG(context).nested_calls + 1;
nested_calls       63 Zend/zend_compile.h 	int        nested_calls;
nested_calls      289 Zend/zend_compile.h 	zend_uint nested_calls;
nested_calls     1628 Zend/zend_execute.c 	size_t call_slots_size = ZEND_MM_ALIGNED_SIZE(sizeof(call_slot)) * op_array->nested_calls;
nested_calls      267 Zend/zend_execute.h 		ZEND_MM_ALIGNED_SIZE(sizeof(call_slot)) * ex->op_array->nested_calls);
nested_calls       73 Zend/zend_opcode.c 	op_array->nested_calls = 0;
nested_calls       16 ext/opcache/Optimizer/optimize_func_calls.c 	optimizer_call_info *call_stack = ecalloc(op_array->nested_calls + 1, sizeof(optimizer_call_info));