EX               1552 Zend/zend_execute.c 	zval ***end = cv + EX(op_array)->last_var;
EX               1656 Zend/zend_execute.c 		EX(prev_execute_data) = (zend_execute_data*)((char*)ZEND_VM_STACK_ELEMETS(EG(argument_stack)) + args_size);
EX               1657 Zend/zend_execute.c 		memset(EX(prev_execute_data), 0, sizeof(zend_execute_data));
EX               1658 Zend/zend_execute.c 		EX(prev_execute_data)->function_state.function = (zend_function*)op_array;
EX               1659 Zend/zend_execute.c 		EX(prev_execute_data)->function_state.arguments = (void**)((char*)ZEND_VM_STACK_ELEMETS(EG(argument_stack)) + ZEND_MM_ALIGNED_SIZE(sizeof(zval*)) * args_count);
EX               1662 Zend/zend_execute.c 		*EX(prev_execute_data)->function_state.arguments = (void*)(zend_uintptr_t)args_count;
EX               1665 Zend/zend_execute.c 			zval **arg_dst = (zval**)zend_vm_stack_get_arg_ex(EX(prev_execute_data), 1);
EX               1676 Zend/zend_execute.c 		EX(prev_execute_data) = EG(current_execute_data);
EX               1681 Zend/zend_execute.c 	EX(call_slots) = (call_slot*)((char *)execute_data + execute_data_size + CVs_size);
EX               1684 Zend/zend_execute.c 	EX(op_array) = op_array;
EX               1688 Zend/zend_execute.c 	EX(object) = NULL;
EX               1689 Zend/zend_execute.c 	EX(current_this) = NULL;
EX               1690 Zend/zend_execute.c 	EX(old_error_reporting) = NULL;
EX               1691 Zend/zend_execute.c 	EX(symbol_table) = EG(active_symbol_table);
EX               1692 Zend/zend_execute.c 	EX(call) = NULL;
EX               1694 Zend/zend_execute.c 	EX(nested) = nested;
EX               1695 Zend/zend_execute.c 	EX(delayed_exception) = NULL;
EX               1713 Zend/zend_execute.c 	EX(opline) = UNEXPECTED((op_array->fn_flags & ZEND_ACC_INTERACTIVE) != 0) && EG(start_op) ? EG(start_op) : op_array->opcodes;
EX               1714 Zend/zend_execute.c 	EG(opline_ptr) = &EX(opline);
EX               1716 Zend/zend_execute.c 	EX(function_state).function = (zend_function *) op_array;
EX               1717 Zend/zend_execute.c 	EX(function_state).arguments = NULL;
EX                657 Zend/zend_execute_API.c 		EX(op_array) = NULL;
EX                658 Zend/zend_execute_API.c 		EX(opline) = NULL;
EX                659 Zend/zend_execute_API.c 		EX(object) = NULL;
EX                696 Zend/zend_execute_API.c 	EX(function_state).function = fci_cache->function_handler;
EX                700 Zend/zend_execute_API.c 	EX(object) = fci->object_ptr;
EX                706 Zend/zend_execute_API.c 	if (EX(function_state).function->common.fn_flags & (ZEND_ACC_ABSTRACT|ZEND_ACC_DEPRECATED)) {
EX                707 Zend/zend_execute_API.c 		if (EX(function_state).function->common.fn_flags & ZEND_ACC_ABSTRACT) {
EX                708 Zend/zend_execute_API.c 			zend_error_noreturn(E_ERROR, "Cannot call abstract method %s::%s()", EX(function_state).function->common.scope->name, EX(function_state).function->common.function_name);
EX                710 Zend/zend_execute_API.c 		if (EX(function_state).function->common.fn_flags & ZEND_ACC_DEPRECATED) {
EX                712 Zend/zend_execute_API.c 				EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name : "",
EX                713 Zend/zend_execute_API.c 				EX(function_state).function->common.scope ? "::" : "",
EX                714 Zend/zend_execute_API.c 				EX(function_state).function->common.function_name);
EX                723 Zend/zend_execute_API.c 		if (ARG_SHOULD_BE_SENT_BY_REF(EX(function_state).function, i + 1)) {
EX                728 Zend/zend_execute_API.c 				    !ARG_MAY_BE_SENT_BY_REF(EX(function_state).function, i + 1)) {
EX                737 Zend/zend_execute_API.c 						EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name : "",
EX                738 Zend/zend_execute_API.c 						EX(function_state).function->common.scope ? "::" : "",
EX                739 Zend/zend_execute_API.c 						EX(function_state).function->common.function_name);
EX                755 Zend/zend_execute_API.c 		           (EX(function_state).function->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) == 0 ) {
EX                771 Zend/zend_execute_API.c 	EX(function_state).arguments = zend_vm_stack_top(TSRMLS_C);
EX                782 Zend/zend_execute_API.c 	} else if (EX(function_state).function->type != ZEND_INTERNAL_FUNCTION) {
EX                787 Zend/zend_execute_API.c 		if ((EX(function_state).function->common.fn_flags & ZEND_ACC_STATIC)) {
EX                808 Zend/zend_execute_API.c 	EX(prev_execute_data) = EG(current_execute_data);
EX                811 Zend/zend_execute_API.c 	if (EX(function_state).function->type == ZEND_USER_FUNCTION) {
EX                813 Zend/zend_execute_API.c 		EG(scope) = EX(function_state).function->common.scope;
EX                823 Zend/zend_execute_API.c 		EG(active_op_array) = (zend_op_array *) EX(function_state).function;
EX                839 Zend/zend_execute_API.c 	} else if (EX(function_state).function->type == ZEND_INTERNAL_FUNCTION) {
EX                840 Zend/zend_execute_API.c 		int call_via_handler = (EX(function_state).function->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0;
EX                842 Zend/zend_execute_API.c 		if (EX(function_state).function->common.scope) {
EX                843 Zend/zend_execute_API.c 			EG(scope) = EX(function_state).function->common.scope;
EX                847 Zend/zend_execute_API.c 			EX(function_state).function->internal_function.handler(fci->param_count, *fci->retval_ptr_ptr, fci->retval_ptr_ptr, fci->object_ptr, 1 TSRMLS_CC);
EX                871 Zend/zend_execute_API.c 			Z_OBJ_HT_P(fci->object_ptr)->call_method(EX(function_state).function->common.function_name, fci->param_count, *fci->retval_ptr_ptr, fci->retval_ptr_ptr, fci->object_ptr, 1 TSRMLS_CC);
EX                876 Zend/zend_execute_API.c 		if (EX(function_state).function->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY) {
EX                877 Zend/zend_execute_API.c 			efree((char*)EX(function_state).function->common.function_name);
EX                879 Zend/zend_execute_API.c 		efree(EX(function_state).function);
EX                894 Zend/zend_execute_API.c 	EG(current_execute_data) = EX(prev_execute_data);
EX               1154 Zend/zend_vm_def.h 		zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC) ? BP_VAR_W : BP_VAR_R);
EX               1262 Zend/zend_vm_def.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               1498 Zend/zend_vm_def.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               1823 Zend/zend_vm_def.h 	zend_bool nested = EX(nested);
EX               1824 Zend/zend_vm_def.h 	zend_op_array *op_array = EX(op_array);
EX               1826 Zend/zend_vm_def.h 	EG(current_execute_data) = EX(prev_execute_data);
EX               1848 Zend/zend_vm_def.h 			EX(function_state).function = (zend_function *) EX(op_array);
EX               1849 Zend/zend_vm_def.h 			EX(function_state).arguments = NULL;
EX               1851 Zend/zend_vm_def.h 			EG(opline_ptr) = &EX(opline);
EX               1852 Zend/zend_vm_def.h 			EG(active_op_array) = EX(op_array);
EX               1853 Zend/zend_vm_def.h 			EG(return_value_ptr_ptr) = EX(original_return_value);
EX               1864 Zend/zend_vm_def.h 			EG(opline_ptr) = &EX(opline);
EX               1865 Zend/zend_vm_def.h 			EG(active_op_array) = EX(op_array);
EX               1866 Zend/zend_vm_def.h 			EG(return_value_ptr_ptr) = EX(original_return_value);
EX               1870 Zend/zend_vm_def.h 			EG(active_symbol_table) = EX(symbol_table);
EX               1872 Zend/zend_vm_def.h 			EX(function_state).function = (zend_function *) EX(op_array);
EX               1873 Zend/zend_vm_def.h 			EX(function_state).arguments = NULL;
EX               1876 Zend/zend_vm_def.h 				if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) {
EX               1877 Zend/zend_vm_def.h 					if (EX(call)->is_ctor_result_used) {
EX               1886 Zend/zend_vm_def.h 			EG(This) = EX(current_this);
EX               1887 Zend/zend_vm_def.h 			EG(scope) = EX(current_scope);
EX               1888 Zend/zend_vm_def.h 			EG(called_scope) = EX(current_called_scope);
EX               1890 Zend/zend_vm_def.h 			EX(call)--;
EX               1913 Zend/zend_vm_def.h 	zend_function *fbc = EX(function_state).function;
EX               1917 Zend/zend_vm_def.h 	EX(object) = EX(call)->object;
EX               1934 Zend/zend_vm_def.h 		!EX(object)) {
EX               1951 Zend/zend_vm_def.h 		EX(current_this) = EG(This);
EX               1952 Zend/zend_vm_def.h 		EX(current_scope) = EG(scope);
EX               1953 Zend/zend_vm_def.h 		EX(current_called_scope) = EG(called_scope);
EX               1954 Zend/zend_vm_def.h 		EG(This) = EX(object);
EX               1955 Zend/zend_vm_def.h 		EG(scope) = (fbc->type == ZEND_USER_FUNCTION || !EX(object)) ? fbc->common.scope : NULL;
EX               1956 Zend/zend_vm_def.h 		EG(called_scope) = EX(call)->called_scope;
EX               1959 Zend/zend_vm_def.h 	num_args = opline->extended_value + EX(call)->num_additional_args;
EX               1960 Zend/zend_vm_def.h 	if (EX(call)->num_additional_args) {
EX               1961 Zend/zend_vm_def.h 		EX(function_state).arguments = zend_vm_stack_push_args(num_args TSRMLS_CC);
EX               1963 Zend/zend_vm_def.h 		EX(function_state).arguments = zend_vm_stack_top(TSRMLS_C);
EX               1971 Zend/zend_vm_def.h 			void **p = EX(function_state).arguments - num_args;
EX               1988 Zend/zend_vm_def.h 				fbc->internal_function.handler(num_args, ret->var.ptr, &ret->var.ptr, EX(object), RETURN_VALUE_USED(opline) TSRMLS_CC);
EX               2001 Zend/zend_vm_def.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               2025 Zend/zend_vm_def.h 		EG(opline_ptr) = &EX(opline);
EX               2026 Zend/zend_vm_def.h 		EG(active_op_array) = EX(op_array);
EX               2027 Zend/zend_vm_def.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               2031 Zend/zend_vm_def.h 		EG(active_symbol_table) = EX(symbol_table);
EX               2037 Zend/zend_vm_def.h 		if (EXPECTED(EX(object) != NULL)) {
EX               2038 Zend/zend_vm_def.h 			Z_OBJ_HT_P(EX(object))->call_method(fbc->common.function_name, num_args, EX_T(opline->result.var).var.ptr, &EX_T(opline->result.var).var.ptr, EX(object), RETURN_VALUE_USED(opline) TSRMLS_CC);
EX               2058 Zend/zend_vm_def.h 	EX(function_state).function = (zend_function *) EX(op_array);
EX               2059 Zend/zend_vm_def.h 	EX(function_state).arguments = NULL;
EX               2063 Zend/zend_vm_def.h 			if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) {
EX               2064 Zend/zend_vm_def.h 				if (EX(call)->is_ctor_result_used) {
EX               2073 Zend/zend_vm_def.h 		EG(This) = EX(current_this);
EX               2074 Zend/zend_vm_def.h 		EG(scope) = EX(current_scope);
EX               2075 Zend/zend_vm_def.h 		EG(called_scope) = EX(current_called_scope);
EX               2078 Zend/zend_vm_def.h 	EX(call)--;
EX               2187 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               2193 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               2428 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               2495 Zend/zend_vm_def.h 	EX(call) = call;
EX               2509 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               2623 Zend/zend_vm_def.h 	EX(call) = call;
EX               2633 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               2650 Zend/zend_vm_def.h 		EX(call) = call;
EX               2681 Zend/zend_vm_def.h 			EX(call) = call;
EX               2702 Zend/zend_vm_def.h 			EX(call) = call;
EX               2772 Zend/zend_vm_def.h 			EX(call) = call;
EX               2792 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               2814 Zend/zend_vm_def.h 	EX(call) = call;
EX               2820 Zend/zend_vm_def.h 	EX(function_state).function = EX(call)->fbc;
EX               2829 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->op2.num;
EX               2832 Zend/zend_vm_def.h 		EX(function_state).function = CACHED_PTR(opline->op1.literal->cache_slot);
EX               2833 Zend/zend_vm_def.h 	} else if (UNEXPECTED(zend_hash_quick_find(EG(function_table), Z_STRVAL_P(fname), Z_STRLEN_P(fname)+1, Z_HASH_P(fname), (void **) &EX(function_state).function)==FAILURE)) {
EX               2837 Zend/zend_vm_def.h 		CACHE_PTR(opline->op1.literal->cache_slot, EX(function_state).function);
EX               2840 Zend/zend_vm_def.h 	call->fbc = EX(function_state).function;
EX               2845 Zend/zend_vm_def.h 	EX(call) = call;
EX               3020 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               3044 Zend/zend_vm_def.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               3054 Zend/zend_vm_def.h 		EX_CV(opline->op2.var) = (zval**)EX_CV_NUM(execute_data, EX(op_array)->last_var + opline->op2.var);
EX               3076 Zend/zend_vm_def.h 		if (ARG_MUST_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               3145 Zend/zend_vm_def.h 		if (!ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               3165 Zend/zend_vm_def.h 			!ARG_MAY_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               3202 Zend/zend_vm_def.h 	    EX(function_state).function->type == ZEND_INTERNAL_FUNCTION) { 
EX               3203 Zend/zend_vm_def.h 		if (!ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               3223 Zend/zend_vm_def.h 		if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               3240 Zend/zend_vm_def.h 	arg_num = opline->op2.num + EX(call)->num_additional_args + 1;
EX               3265 Zend/zend_vm_def.h 				if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, arg_num)) {
EX               3278 Zend/zend_vm_def.h 				EX(call)->num_additional_args++;
EX               3338 Zend/zend_vm_def.h 				if (ARG_MUST_BE_SENT_BY_REF(EX(call)->fbc, arg_num)) {
EX               3342 Zend/zend_vm_def.h 						EX(call)->fbc->common.scope ? EX(call)->fbc->common.scope->name : "",
EX               3343 Zend/zend_vm_def.h 						EX(call)->fbc->common.scope ? "::" : "",
EX               3344 Zend/zend_vm_def.h 						EX(call)->fbc->common.function_name
EX               3358 Zend/zend_vm_def.h 				EX(call)->num_additional_args++;
EX               3398 Zend/zend_vm_def.h 			ptr = EX(prev_execute_data);
EX               3513 Zend/zend_vm_def.h 	                   EX(op_array), execute_data TSRMLS_CC);
EX               3514 Zend/zend_vm_def.h 	ZEND_VM_JMP(EX(op_array)->opcodes + el->brk);
EX               3524 Zend/zend_vm_def.h 	                   EX(op_array), execute_data TSRMLS_CC);
EX               3525 Zend/zend_vm_def.h 	ZEND_VM_JMP(EX(op_array)->opcodes + el->cont);
EX               3536 Zend/zend_vm_def.h  	                   EX(op_array), execute_data TSRMLS_CC);
EX               3538 Zend/zend_vm_def.h 	brk_opline = EX(op_array)->opcodes + el->brk;
EX               3608 Zend/zend_vm_def.h 		ZEND_VM_JMP(EX(op_array)->opcodes + opline->op2.opline_num);
EX               3610 Zend/zend_vm_def.h 		call_slot *call = EX(call_slots) + opline->extended_value;
EX               3624 Zend/zend_vm_def.h 		EX(call) = call;
EX               4031 Zend/zend_vm_def.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               4040 Zend/zend_vm_def.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               4041 Zend/zend_vm_def.h 		EX(object) = NULL;
EX               4053 Zend/zend_vm_def.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               4055 Zend/zend_vm_def.h 		EG(opline_ptr) = &EX(opline);
EX               4056 Zend/zend_vm_def.h 		EG(active_op_array) = EX(op_array);
EX               4057 Zend/zend_vm_def.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               4090 Zend/zend_vm_def.h 			zend_delete_variable(EX(prev_execute_data), EG(active_symbol_table),  cv->name, cv->name_len+1, cv->hash_value TSRMLS_CC);
EX               4312 Zend/zend_vm_def.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4446 Zend/zend_vm_def.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4473 Zend/zend_vm_def.h 			ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4487 Zend/zend_vm_def.h 					ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4517 Zend/zend_vm_def.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4544 Zend/zend_vm_def.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4553 Zend/zend_vm_def.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4845 Zend/zend_vm_def.h 	if (EX(old_error_reporting) == NULL) {
EX               4846 Zend/zend_vm_def.h 		EX(old_error_reporting) = &EX_T(opline->result.var).tmp_var;
EX               4882 Zend/zend_vm_def.h 	zend_error_noreturn(E_ERROR, "Cannot call abstract method %s::%s()", EG(scope)->name, EX(op_array)->function_name);
EX               4908 Zend/zend_vm_def.h 	if (EX(old_error_reporting) == &EX_T(opline->op1.var).tmp_var) {
EX               4909 Zend/zend_vm_def.h 		EX(old_error_reporting) = NULL;
EX               5026 Zend/zend_vm_def.h 		zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_statement_handler, EX(op_array) TSRMLS_CC);
EX               5036 Zend/zend_vm_def.h 		zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_fcall_begin_handler, EX(op_array) TSRMLS_CC);
EX               5046 Zend/zend_vm_def.h 		zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_fcall_end_handler, EX(op_array) TSRMLS_CC);
EX               5057 Zend/zend_vm_def.h 	EX_T(opline->result.var).class_entry = do_bind_class(EX(op_array), opline, EG(class_table), 0 TSRMLS_CC);
EX               5067 Zend/zend_vm_def.h 	EX_T(opline->result.var).class_entry = do_bind_inherited_class(EX(op_array), opline, EG(class_table), EX_T(opline->extended_value).class_entry, 0 TSRMLS_CC);
EX               5081 Zend/zend_vm_def.h 		do_bind_inherited_class(EX(op_array), opline, EG(class_table), EX_T(opline->extended_value).class_entry, 0 TSRMLS_CC);
EX               5092 Zend/zend_vm_def.h 	do_bind_function(EX(op_array), opline, EG(function_table), 0);
EX               5235 Zend/zend_vm_def.h 			catch_op_num = EX(op_array)->try_catch_array[i].catch_op;
EX               5238 Zend/zend_vm_def.h 			finally_op_num = EX(op_array)->try_catch_array[i].finally_op;
EX               5246 Zend/zend_vm_def.h 	if (EX(call) >= EX(call_slots)) {
EX               5247 Zend/zend_vm_def.h 		call_slot *call = EX(call);
EX               5265 Zend/zend_vm_def.h 		} while (call >= EX(call_slots));
EX               5266 Zend/zend_vm_def.h 		EX(call) = NULL;
EX               5269 Zend/zend_vm_def.h 	for (i=0; i<EX(op_array)->last_brk_cont; i++) {
EX               5270 Zend/zend_vm_def.h 		if (EX(op_array)->brk_cont_array[i].start < 0) {
EX               5272 Zend/zend_vm_def.h 		} else if (EX(op_array)->brk_cont_array[i].start > op_num) {
EX               5275 Zend/zend_vm_def.h 		} else if (op_num < EX(op_array)->brk_cont_array[i].brk) {
EX               5277 Zend/zend_vm_def.h 			    catch_op_num >= EX(op_array)->brk_cont_array[i].brk) {
EX               5278 Zend/zend_vm_def.h 				zend_op *brk_opline = &EX(op_array)->opcodes[EX(op_array)->brk_cont_array[i].brk];
EX               5297 Zend/zend_vm_def.h 	if (!EG(error_reporting) && EX(old_error_reporting) != NULL && Z_LVAL_P(EX(old_error_reporting)) != 0) {
EX               5301 Zend/zend_vm_def.h 		Z_LVAL(restored_error_reporting) = Z_LVAL_P(EX(old_error_reporting));
EX               5306 Zend/zend_vm_def.h 	EX(old_error_reporting) = NULL;
EX               5309 Zend/zend_vm_def.h 		if (EX(delayed_exception)) {
EX               5310 Zend/zend_vm_def.h 			zend_exception_set_previous(EG(exception), EX(delayed_exception) TSRMLS_CC);
EX               5312 Zend/zend_vm_def.h 		EX(delayed_exception) = EG(exception);
EX               5314 Zend/zend_vm_def.h 		EX(fast_ret) = NULL;
EX               5315 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[finally_op_num]);
EX               5320 Zend/zend_vm_def.h 			if (EX(delayed_exception)) {
EX               5321 Zend/zend_vm_def.h 				zend_exception_set_previous(EG(exception), EX(delayed_exception) TSRMLS_CC);
EX               5322 Zend/zend_vm_def.h 				EX(delayed_exception) = NULL;
EX               5325 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[catch_op_num]);
EX               5328 Zend/zend_vm_def.h 		if (EX(delayed_exception)) {
EX               5329 Zend/zend_vm_def.h 			zend_exception_set_previous(EG(exception), EX(delayed_exception) TSRMLS_CC);
EX               5330 Zend/zend_vm_def.h 			EX(delayed_exception) = NULL;
EX               5332 Zend/zend_vm_def.h 		if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               5363 Zend/zend_vm_def.h 			if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               5439 Zend/zend_vm_def.h 			(EX(prev_execute_data) &&
EX               5440 Zend/zend_vm_def.h 			 EX(prev_execute_data)->function_state.function->common.fn_flags & ZEND_ACC_STATIC))) {
EX               5496 Zend/zend_vm_def.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               5634 Zend/zend_vm_def.h 	if (EX(delayed_exception) != NULL) {
EX               5636 Zend/zend_vm_def.h 		zval_ptr_dtor(&EX(delayed_exception));
EX               5637 Zend/zend_vm_def.h 		EX(delayed_exception) = NULL;
EX               5650 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               5653 Zend/zend_vm_def.h 	EX(fast_ret) = opline;
EX               5654 Zend/zend_vm_def.h 	EX(delayed_exception) = NULL;
EX               5661 Zend/zend_vm_def.h 	if (EX(fast_ret)) {
EX               5662 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(EX(fast_ret) + 1);
EX               5663 Zend/zend_vm_def.h 		if ((EX(fast_ret)->extended_value & ZEND_FAST_CALL_FROM_FINALLY)) {
EX               5664 Zend/zend_vm_def.h 			EX(fast_ret) = &EX(op_array)->opcodes[EX(fast_ret)->op2.opline_num];
EX               5672 Zend/zend_vm_def.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               5675 Zend/zend_vm_def.h 			EG(exception) = EX(delayed_exception);
EX               5676 Zend/zend_vm_def.h 			EX(delayed_exception) = NULL;
EX               5678 Zend/zend_vm_def.h 				ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               5680 Zend/zend_vm_def.h 			} else if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX                317 Zend/zend_vm_execute.h #define OPLINE EX(opline)
EX                319 Zend/zend_vm_execute.h #define USE_OPLINE zend_op *opline = EX(opline);
EX                393 Zend/zend_vm_execute.h 	zend_bool nested = EX(nested);
EX                394 Zend/zend_vm_execute.h 	zend_op_array *op_array = EX(op_array);
EX                396 Zend/zend_vm_execute.h 	EG(current_execute_data) = EX(prev_execute_data);
EX                418 Zend/zend_vm_execute.h 			EX(function_state).function = (zend_function *) EX(op_array);
EX                419 Zend/zend_vm_execute.h 			EX(function_state).arguments = NULL;
EX                421 Zend/zend_vm_execute.h 			EG(opline_ptr) = &EX(opline);
EX                422 Zend/zend_vm_execute.h 			EG(active_op_array) = EX(op_array);
EX                423 Zend/zend_vm_execute.h 			EG(return_value_ptr_ptr) = EX(original_return_value);
EX                434 Zend/zend_vm_execute.h 			EG(opline_ptr) = &EX(opline);
EX                435 Zend/zend_vm_execute.h 			EG(active_op_array) = EX(op_array);
EX                436 Zend/zend_vm_execute.h 			EG(return_value_ptr_ptr) = EX(original_return_value);
EX                440 Zend/zend_vm_execute.h 			EG(active_symbol_table) = EX(symbol_table);
EX                442 Zend/zend_vm_execute.h 			EX(function_state).function = (zend_function *) EX(op_array);
EX                443 Zend/zend_vm_execute.h 			EX(function_state).arguments = NULL;
EX                446 Zend/zend_vm_execute.h 				if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) {
EX                447 Zend/zend_vm_execute.h 					if (EX(call)->is_ctor_result_used) {
EX                456 Zend/zend_vm_execute.h 			EG(This) = EX(current_this);
EX                457 Zend/zend_vm_execute.h 			EG(scope) = EX(current_scope);
EX                458 Zend/zend_vm_execute.h 			EG(called_scope) = EX(current_called_scope);
EX                460 Zend/zend_vm_execute.h 			EX(call)--;
EX                483 Zend/zend_vm_execute.h 	zend_function *fbc = EX(function_state).function;
EX                487 Zend/zend_vm_execute.h 	EX(object) = EX(call)->object;
EX                504 Zend/zend_vm_execute.h 		!EX(object)) {
EX                521 Zend/zend_vm_execute.h 		EX(current_this) = EG(This);
EX                522 Zend/zend_vm_execute.h 		EX(current_scope) = EG(scope);
EX                523 Zend/zend_vm_execute.h 		EX(current_called_scope) = EG(called_scope);
EX                524 Zend/zend_vm_execute.h 		EG(This) = EX(object);
EX                525 Zend/zend_vm_execute.h 		EG(scope) = (fbc->type == ZEND_USER_FUNCTION || !EX(object)) ? fbc->common.scope : NULL;
EX                526 Zend/zend_vm_execute.h 		EG(called_scope) = EX(call)->called_scope;
EX                529 Zend/zend_vm_execute.h 	num_args = opline->extended_value + EX(call)->num_additional_args;
EX                530 Zend/zend_vm_execute.h 	if (EX(call)->num_additional_args) {
EX                531 Zend/zend_vm_execute.h 		EX(function_state).arguments = zend_vm_stack_push_args(num_args TSRMLS_CC);
EX                533 Zend/zend_vm_execute.h 		EX(function_state).arguments = zend_vm_stack_top(TSRMLS_C);
EX                541 Zend/zend_vm_execute.h 			void **p = EX(function_state).arguments - num_args;
EX                558 Zend/zend_vm_execute.h 				fbc->internal_function.handler(num_args, ret->var.ptr, &ret->var.ptr, EX(object), RETURN_VALUE_USED(opline) TSRMLS_CC);
EX                571 Zend/zend_vm_execute.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX                595 Zend/zend_vm_execute.h 		EG(opline_ptr) = &EX(opline);
EX                596 Zend/zend_vm_execute.h 		EG(active_op_array) = EX(op_array);
EX                597 Zend/zend_vm_execute.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX                601 Zend/zend_vm_execute.h 		EG(active_symbol_table) = EX(symbol_table);
EX                607 Zend/zend_vm_execute.h 		if (EXPECTED(EX(object) != NULL)) {
EX                608 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(EX(object))->call_method(fbc->common.function_name, num_args, EX_T(opline->result.var).var.ptr, &EX_T(opline->result.var).var.ptr, EX(object), RETURN_VALUE_USED(opline) TSRMLS_CC);
EX                628 Zend/zend_vm_execute.h 	EX(function_state).function = (zend_function *) EX(op_array);
EX                629 Zend/zend_vm_execute.h 	EX(function_state).arguments = NULL;
EX                633 Zend/zend_vm_execute.h 			if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) {
EX                634 Zend/zend_vm_execute.h 				if (EX(call)->is_ctor_result_used) {
EX                643 Zend/zend_vm_execute.h 		EG(This) = EX(current_this);
EX                644 Zend/zend_vm_execute.h 		EG(scope) = EX(current_scope);
EX                645 Zend/zend_vm_execute.h 		EG(called_scope) = EX(current_called_scope);
EX                648 Zend/zend_vm_execute.h 	EX(call)--;
EX                692 Zend/zend_vm_execute.h 	EX(function_state).function = EX(call)->fbc;
EX                717 Zend/zend_vm_execute.h 	arg_num = opline->op2.num + EX(call)->num_additional_args + 1;
EX                742 Zend/zend_vm_execute.h 				if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, arg_num)) {
EX                755 Zend/zend_vm_execute.h 				EX(call)->num_additional_args++;
EX                815 Zend/zend_vm_execute.h 				if (ARG_MUST_BE_SENT_BY_REF(EX(call)->fbc, arg_num)) {
EX                819 Zend/zend_vm_execute.h 						EX(call)->fbc->common.scope ? EX(call)->fbc->common.scope->name : "",
EX                820 Zend/zend_vm_execute.h 						EX(call)->fbc->common.scope ? "::" : "",
EX                821 Zend/zend_vm_execute.h 						EX(call)->fbc->common.function_name
EX                835 Zend/zend_vm_execute.h 				EX(call)->num_additional_args++;
EX                875 Zend/zend_vm_execute.h 			ptr = EX(prev_execute_data);
EX                956 Zend/zend_vm_execute.h 		ZEND_VM_JMP(EX(op_array)->opcodes + opline->op2.opline_num);
EX                958 Zend/zend_vm_execute.h 		call_slot *call = EX(call_slots) + opline->extended_value;
EX                972 Zend/zend_vm_execute.h 		EX(call) = call;
EX                986 Zend/zend_vm_execute.h 	if (EX(old_error_reporting) == NULL) {
EX                987 Zend/zend_vm_execute.h 		EX(old_error_reporting) = &EX_T(opline->result.var).tmp_var;
EX               1023 Zend/zend_vm_execute.h 	zend_error_noreturn(E_ERROR, "Cannot call abstract method %s::%s()", EG(scope)->name, EX(op_array)->function_name);
EX               1031 Zend/zend_vm_execute.h 		zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_statement_handler, EX(op_array) TSRMLS_CC);
EX               1041 Zend/zend_vm_execute.h 		zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_fcall_begin_handler, EX(op_array) TSRMLS_CC);
EX               1051 Zend/zend_vm_execute.h 		zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_fcall_end_handler, EX(op_array) TSRMLS_CC);
EX               1062 Zend/zend_vm_execute.h 	EX_T(opline->result.var).class_entry = do_bind_class(EX(op_array), opline, EG(class_table), 0 TSRMLS_CC);
EX               1072 Zend/zend_vm_execute.h 	EX_T(opline->result.var).class_entry = do_bind_inherited_class(EX(op_array), opline, EG(class_table), EX_T(opline->extended_value).class_entry, 0 TSRMLS_CC);
EX               1086 Zend/zend_vm_execute.h 		do_bind_inherited_class(EX(op_array), opline, EG(class_table), EX_T(opline->extended_value).class_entry, 0 TSRMLS_CC);
EX               1097 Zend/zend_vm_execute.h 	do_bind_function(EX(op_array), opline, EG(function_table), 0);
EX               1192 Zend/zend_vm_execute.h 			catch_op_num = EX(op_array)->try_catch_array[i].catch_op;
EX               1195 Zend/zend_vm_execute.h 			finally_op_num = EX(op_array)->try_catch_array[i].finally_op;
EX               1203 Zend/zend_vm_execute.h 	if (EX(call) >= EX(call_slots)) {
EX               1204 Zend/zend_vm_execute.h 		call_slot *call = EX(call);
EX               1222 Zend/zend_vm_execute.h 		} while (call >= EX(call_slots));
EX               1223 Zend/zend_vm_execute.h 		EX(call) = NULL;
EX               1226 Zend/zend_vm_execute.h 	for (i=0; i<EX(op_array)->last_brk_cont; i++) {
EX               1227 Zend/zend_vm_execute.h 		if (EX(op_array)->brk_cont_array[i].start < 0) {
EX               1229 Zend/zend_vm_execute.h 		} else if (EX(op_array)->brk_cont_array[i].start > op_num) {
EX               1232 Zend/zend_vm_execute.h 		} else if (op_num < EX(op_array)->brk_cont_array[i].brk) {
EX               1234 Zend/zend_vm_execute.h 			    catch_op_num >= EX(op_array)->brk_cont_array[i].brk) {
EX               1235 Zend/zend_vm_execute.h 				zend_op *brk_opline = &EX(op_array)->opcodes[EX(op_array)->brk_cont_array[i].brk];
EX               1254 Zend/zend_vm_execute.h 	if (!EG(error_reporting) && EX(old_error_reporting) != NULL && Z_LVAL_P(EX(old_error_reporting)) != 0) {
EX               1258 Zend/zend_vm_execute.h 		Z_LVAL(restored_error_reporting) = Z_LVAL_P(EX(old_error_reporting));
EX               1263 Zend/zend_vm_execute.h 	EX(old_error_reporting) = NULL;
EX               1266 Zend/zend_vm_execute.h 		if (EX(delayed_exception)) {
EX               1267 Zend/zend_vm_execute.h 			zend_exception_set_previous(EG(exception), EX(delayed_exception) TSRMLS_CC);
EX               1269 Zend/zend_vm_execute.h 		EX(delayed_exception) = EG(exception);
EX               1271 Zend/zend_vm_execute.h 		EX(fast_ret) = NULL;
EX               1272 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[finally_op_num]);
EX               1277 Zend/zend_vm_execute.h 			if (EX(delayed_exception)) {
EX               1278 Zend/zend_vm_execute.h 				zend_exception_set_previous(EG(exception), EX(delayed_exception) TSRMLS_CC);
EX               1279 Zend/zend_vm_execute.h 				EX(delayed_exception) = NULL;
EX               1282 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[catch_op_num]);
EX               1285 Zend/zend_vm_execute.h 		if (EX(delayed_exception)) {
EX               1286 Zend/zend_vm_execute.h 			zend_exception_set_previous(EG(exception), EX(delayed_exception) TSRMLS_CC);
EX               1287 Zend/zend_vm_execute.h 			EX(delayed_exception) = NULL;
EX               1289 Zend/zend_vm_execute.h 		if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               1320 Zend/zend_vm_execute.h 			if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               1338 Zend/zend_vm_execute.h 	if (EX(delayed_exception) != NULL) {
EX               1340 Zend/zend_vm_execute.h 		zval_ptr_dtor(&EX(delayed_exception));
EX               1341 Zend/zend_vm_execute.h 		EX(delayed_exception) = NULL;
EX               1354 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               1357 Zend/zend_vm_execute.h 	EX(fast_ret) = opline;
EX               1358 Zend/zend_vm_execute.h 	EX(delayed_exception) = NULL;
EX               1365 Zend/zend_vm_execute.h 	if (EX(fast_ret)) {
EX               1366 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(EX(fast_ret) + 1);
EX               1367 Zend/zend_vm_execute.h 		if ((EX(fast_ret)->extended_value & ZEND_FAST_CALL_FROM_FINALLY)) {
EX               1368 Zend/zend_vm_execute.h 			EX(fast_ret) = &EX(op_array)->opcodes[EX(fast_ret)->op2.opline_num];
EX               1376 Zend/zend_vm_execute.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               1379 Zend/zend_vm_execute.h 			EG(exception) = EX(delayed_exception);
EX               1380 Zend/zend_vm_execute.h 			EX(delayed_exception) = NULL;
EX               1382 Zend/zend_vm_execute.h 				ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               1384 Zend/zend_vm_execute.h 			} else if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               1436 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               1453 Zend/zend_vm_execute.h 		EX(call) = call;
EX               1483 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1504 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1574 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1593 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               1615 Zend/zend_vm_execute.h 	EX(call) = call;
EX               1666 Zend/zend_vm_execute.h 	                   EX(op_array), execute_data TSRMLS_CC);
EX               1667 Zend/zend_vm_execute.h 	ZEND_VM_JMP(EX(op_array)->opcodes + el->brk);
EX               1677 Zend/zend_vm_execute.h 	                   EX(op_array), execute_data TSRMLS_CC);
EX               1678 Zend/zend_vm_execute.h 	ZEND_VM_JMP(EX(op_array)->opcodes + el->cont);
EX               1689 Zend/zend_vm_execute.h  	                   EX(op_array), execute_data TSRMLS_CC);
EX               1691 Zend/zend_vm_execute.h 	brk_opline = EX(op_array)->opcodes + el->brk;
EX               1779 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               1796 Zend/zend_vm_execute.h 		EX(call) = call;
EX               1827 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1848 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1918 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1978 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               1995 Zend/zend_vm_execute.h 		EX(call) = call;
EX               2026 Zend/zend_vm_execute.h 			EX(call) = call;
EX               2047 Zend/zend_vm_execute.h 			EX(call) = call;
EX               2117 Zend/zend_vm_execute.h 			EX(call) = call;
EX               2215 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               2232 Zend/zend_vm_execute.h 		EX(call) = call;
EX               2262 Zend/zend_vm_execute.h 			EX(call) = call;
EX               2283 Zend/zend_vm_execute.h 			EX(call) = call;
EX               2353 Zend/zend_vm_execute.h 			EX(call) = call;
EX               2503 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               2509 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               2581 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->op2.num;
EX               2584 Zend/zend_vm_execute.h 		EX(function_state).function = CACHED_PTR(opline->op1.literal->cache_slot);
EX               2585 Zend/zend_vm_execute.h 	} else if (UNEXPECTED(zend_hash_quick_find(EG(function_table), Z_STRVAL_P(fname), Z_STRLEN_P(fname)+1, Z_HASH_P(fname), (void **) &EX(function_state).function)==FAILURE)) {
EX               2589 Zend/zend_vm_execute.h 		CACHE_PTR(opline->op1.literal->cache_slot, EX(function_state).function);
EX               2592 Zend/zend_vm_execute.h 	call->fbc = EX(function_state).function;
EX               2597 Zend/zend_vm_execute.h 	EX(call) = call;
EX               2753 Zend/zend_vm_execute.h 		if (ARG_MUST_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               3004 Zend/zend_vm_execute.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               3013 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               3014 Zend/zend_vm_execute.h 		EX(object) = NULL;
EX               3026 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               3028 Zend/zend_vm_execute.h 		EG(opline_ptr) = &EX(opline);
EX               3029 Zend/zend_vm_execute.h 		EG(active_op_array) = EX(op_array);
EX               3030 Zend/zend_vm_execute.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               3070 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               3204 Zend/zend_vm_execute.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               3762 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_CONST_CONST(zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC) ? BP_VAR_W : BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               3821 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               3935 Zend/zend_vm_execute.h 	EX(call) = call;
EX               4156 Zend/zend_vm_execute.h 			zend_delete_variable(EX(prev_execute_data), EG(active_symbol_table),  cv->name, cv->name_len+1, cv->hash_value TSRMLS_CC);
EX               4376 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               4823 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               4937 Zend/zend_vm_execute.h 	EX(call) = call;
EX               5078 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               5652 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_CONST_VAR(zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC) ? BP_VAR_W : BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               5687 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               5801 Zend/zend_vm_execute.h 	EX(call) = call;
EX               5931 Zend/zend_vm_execute.h 			zend_delete_variable(EX(prev_execute_data), EG(active_symbol_table),  cv->name, cv->name_len+1, cv->hash_value TSRMLS_CC);
EX               6105 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               6404 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_CONST_UNUSED(zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC) ? BP_VAR_W : BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               6422 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               6536 Zend/zend_vm_execute.h 	EX(call) = call;
EX               6651 Zend/zend_vm_execute.h 			zend_delete_variable(EX(prev_execute_data), EG(active_symbol_table),  cv->name, cv->name_len+1, cv->hash_value TSRMLS_CC);
EX               6813 Zend/zend_vm_execute.h 			(EX(prev_execute_data) &&
EX               6814 Zend/zend_vm_execute.h 			 EX(prev_execute_data)->function_state.function->common.fn_flags & ZEND_ACC_STATIC))) {
EX               6849 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               7281 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               7395 Zend/zend_vm_execute.h 	EX(call) = call;
EX               7411 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               7435 Zend/zend_vm_execute.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               7445 Zend/zend_vm_execute.h 		EX_CV(opline->op2.var) = (zval**)EX_CV_NUM(execute_data, EX(op_array)->last_var + opline->op2.var);
EX               7595 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               7880 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               7886 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               8118 Zend/zend_vm_execute.h 		if (ARG_MUST_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               8370 Zend/zend_vm_execute.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               8379 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               8380 Zend/zend_vm_execute.h 		EX(object) = NULL;
EX               8392 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               8394 Zend/zend_vm_execute.h 		EG(opline_ptr) = &EX(opline);
EX               8395 Zend/zend_vm_execute.h 		EG(active_op_array) = EX(op_array);
EX               8396 Zend/zend_vm_execute.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               8436 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               8570 Zend/zend_vm_execute.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               8621 Zend/zend_vm_execute.h 	if (EX(old_error_reporting) == &EX_T(opline->op1.var).tmp_var) {
EX               8622 Zend/zend_vm_execute.h 		EX(old_error_reporting) = NULL;
EX               9180 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_TMP_CONST(zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC) ? BP_VAR_W : BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               9287 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               9354 Zend/zend_vm_execute.h 	EX(call) = call;
EX               9484 Zend/zend_vm_execute.h 			zend_delete_variable(EX(prev_execute_data), EG(active_symbol_table),  cv->name, cv->name_len+1, cv->hash_value TSRMLS_CC);
EX               9658 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               10152 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               10219 Zend/zend_vm_execute.h 	EX(call) = call;
EX               10362 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               10936 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_TMP_VAR(zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC) ? BP_VAR_W : BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               11018 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               11085 Zend/zend_vm_execute.h 	EX(call) = call;
EX               11217 Zend/zend_vm_execute.h 			zend_delete_variable(EX(prev_execute_data), EG(active_symbol_table),  cv->name, cv->name_len+1, cv->hash_value TSRMLS_CC);
EX               11391 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               11690 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_TMP_UNUSED(zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC) ? BP_VAR_W : BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               11812 Zend/zend_vm_execute.h 			zend_delete_variable(EX(prev_execute_data), EG(active_symbol_table),  cv->name, cv->name_len+1, cv->hash_value TSRMLS_CC);
EX               11986 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               12464 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               12531 Zend/zend_vm_execute.h 	EX(call) = call;
EX               12672 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               13137 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               13143 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               13415 Zend/zend_vm_execute.h 		if (!ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               13435 Zend/zend_vm_execute.h 			!ARG_MAY_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               13472 Zend/zend_vm_execute.h 	    EX(function_state).function->type == ZEND_INTERNAL_FUNCTION) {
EX               13473 Zend/zend_vm_execute.h 		if (!ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               13493 Zend/zend_vm_execute.h 		if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               13739 Zend/zend_vm_execute.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               13748 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               13749 Zend/zend_vm_execute.h 		EX(object) = NULL;
EX               13761 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               13763 Zend/zend_vm_execute.h 		EG(opline_ptr) = &EX(opline);
EX               13764 Zend/zend_vm_execute.h 		EG(active_op_array) = EX(op_array);
EX               13765 Zend/zend_vm_execute.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               13805 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13939 Zend/zend_vm_execute.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13966 Zend/zend_vm_execute.h 			ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13980 Zend/zend_vm_execute.h 					ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               14010 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               14037 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               14046 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               15118 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_VAR_CONST(zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC) ? BP_VAR_W : BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               15226 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               15462 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               15712 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               15779 Zend/zend_vm_execute.h 	EX(call) = call;
EX               15792 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               15906 Zend/zend_vm_execute.h 	EX(call) = call;
EX               16127 Zend/zend_vm_execute.h 			zend_delete_variable(EX(prev_execute_data), EG(active_symbol_table),  cv->name, cv->name_len+1, cv->hash_value TSRMLS_CC);
EX               16585 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               17578 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               17814 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               18065 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               18132 Zend/zend_vm_execute.h 	EX(call) = call;
EX               18146 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               18260 Zend/zend_vm_execute.h 	EX(call) = call;
EX               18685 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               19732 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_VAR_VAR(zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC) ? BP_VAR_W : BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               19840 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               20076 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               20382 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               20449 Zend/zend_vm_execute.h 	EX(call) = call;
EX               20463 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               20577 Zend/zend_vm_execute.h 	EX(call) = call;
EX               20707 Zend/zend_vm_execute.h 			zend_delete_variable(EX(prev_execute_data), EG(active_symbol_table),  cv->name, cv->name_len+1, cv->hash_value TSRMLS_CC);
EX               21165 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               21724 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_VAR_UNUSED(zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC) ? BP_VAR_W : BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               21800 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               21911 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               22025 Zend/zend_vm_execute.h 	EX(call) = call;
EX               22140 Zend/zend_vm_execute.h 			zend_delete_variable(EX(prev_execute_data), EG(active_symbol_table),  cv->name, cv->name_len+1, cv->hash_value TSRMLS_CC);
EX               22335 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               23312 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               23548 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               23851 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               23918 Zend/zend_vm_execute.h 	EX(call) = call;
EX               23931 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               24045 Zend/zend_vm_execute.h 	EX(call) = call;
EX               24469 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               25343 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               25501 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               25568 Zend/zend_vm_execute.h 	EX(call) = call;
EX               25986 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               26757 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               26914 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               26981 Zend/zend_vm_execute.h 	EX(call) = call;
EX               27308 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               28079 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               28236 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               28303 Zend/zend_vm_execute.h 	EX(call) = call;
EX               28630 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               29062 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               29832 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               29988 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               30055 Zend/zend_vm_execute.h 	EX(call) = call;
EX               30381 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               30831 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               30837 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               31094 Zend/zend_vm_execute.h 		if (!ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               31114 Zend/zend_vm_execute.h 			!ARG_MAY_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               31151 Zend/zend_vm_execute.h 	    EX(function_state).function->type == ZEND_INTERNAL_FUNCTION) {
EX               31152 Zend/zend_vm_execute.h 		if (!ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               31171 Zend/zend_vm_execute.h 		if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.num)) {
EX               31406 Zend/zend_vm_execute.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               31415 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               31416 Zend/zend_vm_execute.h 		EX(object) = NULL;
EX               31428 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               31430 Zend/zend_vm_execute.h 		EG(opline_ptr) = &EX(opline);
EX               31431 Zend/zend_vm_execute.h 		EG(active_op_array) = EX(op_array);
EX               31432 Zend/zend_vm_execute.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               31472 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               31606 Zend/zend_vm_execute.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               32650 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_CV_CONST(zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC) ? BP_VAR_W : BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               32757 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               32990 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               33239 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               33306 Zend/zend_vm_execute.h 	EX(call) = call;
EX               33436 Zend/zend_vm_execute.h 			zend_delete_variable(EX(prev_execute_data), EG(active_symbol_table),  cv->name, cv->name_len+1, cv->hash_value TSRMLS_CC);
EX               33890 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               34880 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               35113 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               35363 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               35430 Zend/zend_vm_execute.h 	EX(call) = call;
EX               35853 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               36898 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_CV_VAR(zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC) ? BP_VAR_W : BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               37005 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               37238 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               37542 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               37609 Zend/zend_vm_execute.h 	EX(call) = call;
EX               37741 Zend/zend_vm_execute.h 			zend_delete_variable(EX(prev_execute_data), EG(active_symbol_table),  cv->name, cv->name_len+1, cv->hash_value TSRMLS_CC);
EX               38195 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               38752 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_CV_UNUSED(zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC) ? BP_VAR_W : BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               38827 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               39042 Zend/zend_vm_execute.h 			zend_delete_variable(EX(prev_execute_data), EG(active_symbol_table),  cv->name, cv->name_len+1, cv->hash_value TSRMLS_CC);
EX               39216 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               40190 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               40423 Zend/zend_vm_execute.h 	if (zend_is_by_ref_func_arg_fetch(opline, EX(call) TSRMLS_CC)) {
EX               40724 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               40791 Zend/zend_vm_execute.h 	EX(call) = call;
EX               41212 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX                295 ext/opcache/zend_accelerator_module.c #undef  EX
EX                296 ext/opcache/zend_accelerator_module.c #define EX(element) execute_data->element
EX                297 ext/opcache/zend_accelerator_module.c #define EX_T(offset) (*(temp_variable *)((char *) EX(Ts) + offset))
EX                303 ext/opcache/zend_accelerator_module.c 	if (zend_hash_find(EG(class_table), Z_STRVAL(EX(opline)->op2.u.constant), Z_STRLEN(EX(opline)->op2.u.constant) + 1, (void **)&pce) == FAILURE ||
EX                304 ext/opcache/zend_accelerator_module.c 	    (zend_hash_find(EG(class_table), Z_STRVAL(EX(opline)->op1.u.constant), Z_STRLEN(EX(opline)->op1.u.constant), (void**)&pce_orig) == SUCCESS &&
EX                306 ext/opcache/zend_accelerator_module.c 		do_bind_inherited_class(EX(opline), EG(class_table), EX_T(EX(opline)->extended_value).class_entry, 0 TSRMLS_CC);
EX                308 ext/opcache/zend_accelerator_module.c 	EX(opline)++;
EX               1128 sapi/cli/php_cli.c 					EX(function_state).function = pce->constructor;
EX               1095 sapi/phpdbg/phpdbg_prompt.c #define EX_CV(var) EX(CVs)[var]
EX               1097 sapi/phpdbg/phpdbg_prompt.c #define EX_CVs() EX(CVs)
EX               1099 sapi/phpdbg/phpdbg_prompt.c #define EX_T(offset) (*(temp_variable *)((char *) EX(Ts) + offset))
EX               1101 sapi/phpdbg/phpdbg_prompt.c #define EX_Ts() EX(Ts)
EX               1108 sapi/phpdbg/phpdbg_prompt.c 	EX(CVs) = (zval***)((char*)execute_data + ZEND_MM_ALIGNED_SIZE(sizeof(zend_execute_data)));
EX               1109 sapi/phpdbg/phpdbg_prompt.c 	memset(EX(CVs), 0, sizeof(zval**) * op_array->last_var);
EX               1110 sapi/phpdbg/phpdbg_prompt.c 	EX(Ts) = (temp_variable *)(((char*)EX(CVs)) + ZEND_MM_ALIGNED_SIZE(sizeof(zval**) * op_array->last_var * (EG(active_symbol_table) ? 1 : 2)));
EX               1111 sapi/phpdbg/phpdbg_prompt.c 	EX(fbc) = NULL;
EX               1112 sapi/phpdbg/phpdbg_prompt.c 	EX(called_scope) = NULL;
EX               1113 sapi/phpdbg/phpdbg_prompt.c 	EX(object) = NULL;
EX               1114 sapi/phpdbg/phpdbg_prompt.c 	EX(old_error_reporting) = NULL;
EX               1115 sapi/phpdbg/phpdbg_prompt.c 	EX(op_array) = op_array;
EX               1116 sapi/phpdbg/phpdbg_prompt.c 	EX(symbol_table) = EG(active_symbol_table);
EX               1117 sapi/phpdbg/phpdbg_prompt.c 	EX(prev_execute_data) = EG(current_execute_data);
EX               1119 sapi/phpdbg/phpdbg_prompt.c 	EX(nested) = nested;
EX               1137 sapi/phpdbg/phpdbg_prompt.c 	EX(opline) = UNEXPECTED((op_array->fn_flags & ZEND_ACC_INTERACTIVE) != 0) && EG(start_op) ? EG(start_op) : op_array->opcodes;
EX               1138 sapi/phpdbg/phpdbg_prompt.c 	EG(opline_ptr) = &EX(opline);
EX               1140 sapi/phpdbg/phpdbg_prompt.c 	EX(function_state).function = (zend_function *) op_array;
EX               1141 sapi/phpdbg/phpdbg_prompt.c 	EX(function_state).arguments = NULL;