EX               1507 Zend/zend_execute.c 	zval ***end = cv + EX(op_array)->last_var;
EX               1611 Zend/zend_execute.c 		EX(prev_execute_data) = (zend_execute_data*)((char*)ZEND_VM_STACK_ELEMETS(EG(argument_stack)) + args_size);
EX               1612 Zend/zend_execute.c 		memset(EX(prev_execute_data), 0, sizeof(zend_execute_data));
EX               1613 Zend/zend_execute.c 		EX(prev_execute_data)->function_state.function = (zend_function*)op_array;
EX               1614 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               1617 Zend/zend_execute.c 		*EX(prev_execute_data)->function_state.arguments = (void*)(zend_uintptr_t)args_count;
EX               1620 Zend/zend_execute.c 			zval **arg_dst = (zval**)zend_vm_stack_get_arg_ex(EX(prev_execute_data), 1);
EX               1631 Zend/zend_execute.c 		EX(prev_execute_data) = EG(current_execute_data);
EX               1636 Zend/zend_execute.c 	EX(call_slots) = (call_slot*)((char *)execute_data + execute_data_size + CVs_size);
EX               1639 Zend/zend_execute.c 	EX(op_array) = op_array;
EX               1643 Zend/zend_execute.c 	EX(object) = NULL;
EX               1644 Zend/zend_execute.c 	EX(current_this) = NULL;
EX               1645 Zend/zend_execute.c 	EX(old_error_reporting) = NULL;
EX               1646 Zend/zend_execute.c 	EX(symbol_table) = EG(active_symbol_table);
EX               1647 Zend/zend_execute.c 	EX(call) = NULL;
EX               1649 Zend/zend_execute.c 	EX(nested) = nested;
EX               1667 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               1668 Zend/zend_execute.c 	EG(opline_ptr) = &EX(opline);
EX               1670 Zend/zend_execute.c 	EX(function_state).function = (zend_function *) op_array;
EX               1671 Zend/zend_execute.c 	EX(function_state).arguments = NULL;
EX                767 Zend/zend_execute_API.c 		EX(op_array) = NULL;
EX                768 Zend/zend_execute_API.c 		EX(opline) = NULL;
EX                769 Zend/zend_execute_API.c 		EX(object) = NULL;
EX                806 Zend/zend_execute_API.c 	EX(function_state).function = fci_cache->function_handler;
EX                810 Zend/zend_execute_API.c 	EX(object) = fci->object_ptr;
EX                816 Zend/zend_execute_API.c 	if (EX(function_state).function->common.fn_flags & (ZEND_ACC_ABSTRACT|ZEND_ACC_DEPRECATED)) {
EX                817 Zend/zend_execute_API.c 		if (EX(function_state).function->common.fn_flags & ZEND_ACC_ABSTRACT) {
EX                818 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                820 Zend/zend_execute_API.c 		if (EX(function_state).function->common.fn_flags & ZEND_ACC_DEPRECATED) {
EX                822 Zend/zend_execute_API.c 				EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name : "",
EX                823 Zend/zend_execute_API.c 				EX(function_state).function->common.scope ? "::" : "",
EX                824 Zend/zend_execute_API.c 				EX(function_state).function->common.function_name);
EX                833 Zend/zend_execute_API.c 		if (ARG_SHOULD_BE_SENT_BY_REF(EX(function_state).function, i + 1)) {
EX                838 Zend/zend_execute_API.c 				    !ARG_MAY_BE_SENT_BY_REF(EX(function_state).function, i + 1)) {
EX                847 Zend/zend_execute_API.c 						EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name : "",
EX                848 Zend/zend_execute_API.c 						EX(function_state).function->common.scope ? "::" : "",
EX                849 Zend/zend_execute_API.c 						EX(function_state).function->common.function_name);
EX                865 Zend/zend_execute_API.c 		           (EX(function_state).function->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) == 0 ) {
EX                881 Zend/zend_execute_API.c 	EX(function_state).arguments = zend_vm_stack_top(TSRMLS_C);
EX                892 Zend/zend_execute_API.c 	} else if (EX(function_state).function->type != ZEND_INTERNAL_FUNCTION) {
EX                897 Zend/zend_execute_API.c 		if ((EX(function_state).function->common.fn_flags & ZEND_ACC_STATIC)) {
EX                918 Zend/zend_execute_API.c 	EX(prev_execute_data) = EG(current_execute_data);
EX                921 Zend/zend_execute_API.c 	if (EX(function_state).function->type == ZEND_USER_FUNCTION) {
EX                923 Zend/zend_execute_API.c 		EG(scope) = EX(function_state).function->common.scope;
EX                933 Zend/zend_execute_API.c 		EG(active_op_array) = (zend_op_array *) EX(function_state).function;
EX                949 Zend/zend_execute_API.c 	} else if (EX(function_state).function->type == ZEND_INTERNAL_FUNCTION) {
EX                950 Zend/zend_execute_API.c 		int call_via_handler = (EX(function_state).function->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0;
EX                952 Zend/zend_execute_API.c 		if (EX(function_state).function->common.scope) {
EX                953 Zend/zend_execute_API.c 			EG(scope) = EX(function_state).function->common.scope;
EX                957 Zend/zend_execute_API.c 			((zend_internal_function *) EX(function_state).function)->handler(fci->param_count, *fci->retval_ptr_ptr, fci->retval_ptr_ptr, fci->object_ptr, 1 TSRMLS_CC);
EX                981 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                986 Zend/zend_execute_API.c 		if (EX(function_state).function->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY) {
EX                987 Zend/zend_execute_API.c 			efree((char*)EX(function_state).function->common.function_name);
EX                989 Zend/zend_execute_API.c 		efree(EX(function_state).function);
EX               1004 Zend/zend_execute_API.c 	EG(current_execute_data) = EX(prev_execute_data);
EX               1152 Zend/zend_vm_def.h 		ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))?BP_VAR_W:BP_VAR_R);
EX               1262 Zend/zend_vm_def.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               1499 Zend/zend_vm_def.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               1822 Zend/zend_vm_def.h 	zend_bool nested = EX(nested);
EX               1823 Zend/zend_vm_def.h 	zend_op_array *op_array = EX(op_array);
EX               1825 Zend/zend_vm_def.h 	EG(current_execute_data) = EX(prev_execute_data);
EX               1847 Zend/zend_vm_def.h 			EX(function_state).function = (zend_function *) EX(op_array);
EX               1848 Zend/zend_vm_def.h 			EX(function_state).arguments = NULL;
EX               1850 Zend/zend_vm_def.h 			EG(opline_ptr) = &EX(opline);
EX               1851 Zend/zend_vm_def.h 			EG(active_op_array) = EX(op_array);
EX               1852 Zend/zend_vm_def.h 			EG(return_value_ptr_ptr) = EX(original_return_value);
EX               1863 Zend/zend_vm_def.h 			EG(opline_ptr) = &EX(opline);
EX               1864 Zend/zend_vm_def.h 			EG(active_op_array) = EX(op_array);
EX               1865 Zend/zend_vm_def.h 			EG(return_value_ptr_ptr) = EX(original_return_value);
EX               1869 Zend/zend_vm_def.h 			EG(active_symbol_table) = EX(symbol_table);
EX               1871 Zend/zend_vm_def.h 			EX(function_state).function = (zend_function *) EX(op_array);
EX               1872 Zend/zend_vm_def.h 			EX(function_state).arguments = NULL;
EX               1875 Zend/zend_vm_def.h 				if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) {
EX               1876 Zend/zend_vm_def.h 					if (EX(call)->is_ctor_result_used) {
EX               1885 Zend/zend_vm_def.h 			EG(This) = EX(current_this);
EX               1886 Zend/zend_vm_def.h 			EG(scope) = EX(current_scope);
EX               1887 Zend/zend_vm_def.h 			EG(called_scope) = EX(current_called_scope);
EX               1889 Zend/zend_vm_def.h 			EX(call)--;
EX               1912 Zend/zend_vm_def.h 	zend_function *fbc = EX(function_state).function;
EX               1915 Zend/zend_vm_def.h 	EX(object) = EX(call)->object;
EX               1931 Zend/zend_vm_def.h 		!EX(object)) {
EX               1945 Zend/zend_vm_def.h 		EX(current_this) = EG(This);
EX               1946 Zend/zend_vm_def.h 		EX(current_scope) = EG(scope);
EX               1947 Zend/zend_vm_def.h 		EX(current_called_scope) = EG(called_scope);
EX               1948 Zend/zend_vm_def.h 		EG(This) = EX(object);
EX               1949 Zend/zend_vm_def.h 		EG(scope) = (fbc->type == ZEND_USER_FUNCTION || !EX(object)) ? fbc->common.scope : NULL;
EX               1950 Zend/zend_vm_def.h 		EG(called_scope) = EX(call)->called_scope;
EX               1953 Zend/zend_vm_def.h 	EX(function_state).arguments = zend_vm_stack_top(TSRMLS_C);
EX               1960 Zend/zend_vm_def.h 			zval **p = (zval**)EX(function_state).arguments;
EX               1979 Zend/zend_vm_def.h 				fbc->internal_function.handler(opline->extended_value, ret->var.ptr, (fbc->common.fn_flags & ZEND_ACC_RETURN_REFERENCE) ? &ret->var.ptr : NULL, EX(object), RETURN_VALUE_USED(opline) TSRMLS_CC);
EX               1991 Zend/zend_vm_def.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               2016 Zend/zend_vm_def.h 		EG(opline_ptr) = &EX(opline);
EX               2017 Zend/zend_vm_def.h 		EG(active_op_array) = EX(op_array);
EX               2018 Zend/zend_vm_def.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               2022 Zend/zend_vm_def.h 		EG(active_symbol_table) = EX(symbol_table);
EX               2028 Zend/zend_vm_def.h 		if (EXPECTED(EX(object) != NULL)) {
EX               2029 Zend/zend_vm_def.h 			Z_OBJ_HT_P(EX(object))->call_method(fbc->common.function_name, opline->extended_value, EX_T(opline->result.var).var.ptr, &EX_T(opline->result.var).var.ptr, EX(object), RETURN_VALUE_USED(opline) TSRMLS_CC);
EX               2049 Zend/zend_vm_def.h 	EX(function_state).function = (zend_function *) EX(op_array);
EX               2050 Zend/zend_vm_def.h 	EX(function_state).arguments = NULL;
EX               2054 Zend/zend_vm_def.h 			if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) {
EX               2055 Zend/zend_vm_def.h 				if (EX(call)->is_ctor_result_used) {
EX               2064 Zend/zend_vm_def.h 		EG(This) = EX(current_this);
EX               2065 Zend/zend_vm_def.h 		EG(scope) = EX(current_scope);
EX               2066 Zend/zend_vm_def.h 		EG(called_scope) = EX(current_called_scope);
EX               2069 Zend/zend_vm_def.h 	EX(call)--;
EX               2178 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               2184 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               2419 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               2484 Zend/zend_vm_def.h 	EX(call) = call;
EX               2498 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               2610 Zend/zend_vm_def.h 	EX(call) = call;
EX               2620 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               2635 Zend/zend_vm_def.h 		EX(call) = call;
EX               2663 Zend/zend_vm_def.h 			EX(call) = call;
EX               2681 Zend/zend_vm_def.h 			EX(call) = call;
EX               2748 Zend/zend_vm_def.h 			EX(call) = call;
EX               2767 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               2787 Zend/zend_vm_def.h 	EX(call) = call;
EX               2793 Zend/zend_vm_def.h 	EX(function_state).function = EX(call)->fbc;
EX               2802 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->op2.num;
EX               2805 Zend/zend_vm_def.h 		EX(function_state).function = CACHED_PTR(opline->op1.literal->cache_slot);
EX               2806 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               2810 Zend/zend_vm_def.h 		CACHE_PTR(opline->op1.literal->cache_slot, EX(function_state).function);
EX               2812 Zend/zend_vm_def.h 	call->fbc = EX(function_state).function;
EX               2816 Zend/zend_vm_def.h 	EX(call) = call;
EX               2987 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               3011 Zend/zend_vm_def.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               3021 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               3043 Zend/zend_vm_def.h 		&& ARG_MUST_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               3104 Zend/zend_vm_def.h 	} else if (!ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               3130 Zend/zend_vm_def.h 			!ARG_MAY_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               3167 Zend/zend_vm_def.h 	    EX(function_state).function->type == ZEND_INTERNAL_FUNCTION &&
EX               3168 Zend/zend_vm_def.h 	    !ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               3187 Zend/zend_vm_def.h 		&& ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               3213 Zend/zend_vm_def.h 			ptr = EX(prev_execute_data);
EX               3291 Zend/zend_vm_def.h 	                   EX(op_array), execute_data TSRMLS_CC);
EX               3292 Zend/zend_vm_def.h 	ZEND_VM_JMP(EX(op_array)->opcodes + el->brk);
EX               3302 Zend/zend_vm_def.h 	                   EX(op_array), execute_data TSRMLS_CC);
EX               3303 Zend/zend_vm_def.h 	ZEND_VM_JMP(EX(op_array)->opcodes + el->cont);
EX               3314 Zend/zend_vm_def.h  	                   EX(op_array), execute_data TSRMLS_CC);
EX               3316 Zend/zend_vm_def.h 	brk_opline = EX(op_array)->opcodes + el->brk;
EX               3389 Zend/zend_vm_def.h 		ZEND_VM_JMP(EX(op_array)->opcodes + opline->op2.opline_num);
EX               3391 Zend/zend_vm_def.h 		call_slot *call = EX(call_slots) + opline->extended_value;
EX               3404 Zend/zend_vm_def.h 		EX(call) = call;
EX               3821 Zend/zend_vm_def.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               3831 Zend/zend_vm_def.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               3832 Zend/zend_vm_def.h 		EX(object) = NULL;
EX               3844 Zend/zend_vm_def.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               3846 Zend/zend_vm_def.h 		EG(opline_ptr) = &EX(opline);
EX               3847 Zend/zend_vm_def.h 		EG(active_op_array) = EX(op_array);
EX               3848 Zend/zend_vm_def.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               3881 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               4107 Zend/zend_vm_def.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4222 Zend/zend_vm_def.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4249 Zend/zend_vm_def.h 			ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4263 Zend/zend_vm_def.h 					ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4293 Zend/zend_vm_def.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4320 Zend/zend_vm_def.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4329 Zend/zend_vm_def.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4626 Zend/zend_vm_def.h 	if (EX(old_error_reporting) == NULL) {
EX               4627 Zend/zend_vm_def.h 		EX(old_error_reporting) = &EX_T(opline->result.var).tmp_var;
EX               4663 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               4689 Zend/zend_vm_def.h 	if (EX(old_error_reporting) == &EX_T(opline->op1.var).tmp_var) {
EX               4690 Zend/zend_vm_def.h 		EX(old_error_reporting) = NULL;
EX               4807 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               4817 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               4827 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               4838 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               4848 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               4862 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               4873 Zend/zend_vm_def.h 	do_bind_function(EX(op_array), opline, EG(function_table), 0);
EX               5016 Zend/zend_vm_def.h 			catch_op_num = EX(op_array)->try_catch_array[i].catch_op;
EX               5019 Zend/zend_vm_def.h 			finally_op_num = EX(op_array)->try_catch_array[i].finally_op;
EX               5023 Zend/zend_vm_def.h 	if (EX(call) >= EX(call_slots)) {
EX               5024 Zend/zend_vm_def.h 		call_slot *call = EX(call);
EX               5038 Zend/zend_vm_def.h 		} while (call >= EX(call_slots));
EX               5039 Zend/zend_vm_def.h 		EX(call) = NULL;
EX               5042 Zend/zend_vm_def.h 	for (i=0; i<EX(op_array)->last_brk_cont; i++) {
EX               5043 Zend/zend_vm_def.h 		if (EX(op_array)->brk_cont_array[i].start < 0) {
EX               5045 Zend/zend_vm_def.h 		} else if (EX(op_array)->brk_cont_array[i].start > op_num) {
EX               5048 Zend/zend_vm_def.h 		} else if (op_num < EX(op_array)->brk_cont_array[i].brk) {
EX               5050 Zend/zend_vm_def.h 			    catch_op_num >= EX(op_array)->brk_cont_array[i].brk) {
EX               5051 Zend/zend_vm_def.h 				zend_op *brk_opline = &EX(op_array)->opcodes[EX(op_array)->brk_cont_array[i].brk];
EX               5070 Zend/zend_vm_def.h 	if (!EG(error_reporting) && EX(old_error_reporting) != NULL && Z_LVAL_P(EX(old_error_reporting)) != 0) {
EX               5074 Zend/zend_vm_def.h 		Z_LVAL(restored_error_reporting) = Z_LVAL_P(EX(old_error_reporting));
EX               5079 Zend/zend_vm_def.h 	EX(old_error_reporting) = NULL;
EX               5083 Zend/zend_vm_def.h 		EX(fast_ret) = NULL;
EX               5084 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[finally_op_num]);
EX               5087 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[catch_op_num]);
EX               5090 Zend/zend_vm_def.h 		if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               5121 Zend/zend_vm_def.h 			if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               5242 Zend/zend_vm_def.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               5395 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               5398 Zend/zend_vm_def.h 	EX(fast_ret) = opline + 1;
EX               5405 Zend/zend_vm_def.h 	if (EX(fast_ret)) {
EX               5406 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(EX(fast_ret));
EX               5413 Zend/zend_vm_def.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               5417 Zend/zend_vm_def.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               5419 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                486 Zend/zend_vm_execute.h 	EX(object) = EX(call)->object;
EX                502 Zend/zend_vm_execute.h 		!EX(object)) {
EX                516 Zend/zend_vm_execute.h 		EX(current_this) = EG(This);
EX                517 Zend/zend_vm_execute.h 		EX(current_scope) = EG(scope);
EX                518 Zend/zend_vm_execute.h 		EX(current_called_scope) = EG(called_scope);
EX                519 Zend/zend_vm_execute.h 		EG(This) = EX(object);
EX                520 Zend/zend_vm_execute.h 		EG(scope) = (fbc->type == ZEND_USER_FUNCTION || !EX(object)) ? fbc->common.scope : NULL;
EX                521 Zend/zend_vm_execute.h 		EG(called_scope) = EX(call)->called_scope;
EX                524 Zend/zend_vm_execute.h 	EX(function_state).arguments = zend_vm_stack_top(TSRMLS_C);
EX                531 Zend/zend_vm_execute.h 			zval **p = (zval**)EX(function_state).arguments;
EX                550 Zend/zend_vm_execute.h 				fbc->internal_function.handler(opline->extended_value, ret->var.ptr, (fbc->common.fn_flags & ZEND_ACC_RETURN_REFERENCE) ? &ret->var.ptr : NULL, EX(object), RETURN_VALUE_USED(opline) TSRMLS_CC);
EX                562 Zend/zend_vm_execute.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX                587 Zend/zend_vm_execute.h 		EG(opline_ptr) = &EX(opline);
EX                588 Zend/zend_vm_execute.h 		EG(active_op_array) = EX(op_array);
EX                589 Zend/zend_vm_execute.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX                593 Zend/zend_vm_execute.h 		EG(active_symbol_table) = EX(symbol_table);
EX                599 Zend/zend_vm_execute.h 		if (EXPECTED(EX(object) != NULL)) {
EX                600 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(EX(object))->call_method(fbc->common.function_name, opline->extended_value, EX_T(opline->result.var).var.ptr, &EX_T(opline->result.var).var.ptr, EX(object), RETURN_VALUE_USED(opline) TSRMLS_CC);
EX                620 Zend/zend_vm_execute.h 	EX(function_state).function = (zend_function *) EX(op_array);
EX                621 Zend/zend_vm_execute.h 	EX(function_state).arguments = NULL;
EX                625 Zend/zend_vm_execute.h 			if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) {
EX                626 Zend/zend_vm_execute.h 				if (EX(call)->is_ctor_result_used) {
EX                635 Zend/zend_vm_execute.h 		EG(This) = EX(current_this);
EX                636 Zend/zend_vm_execute.h 		EG(scope) = EX(current_scope);
EX                637 Zend/zend_vm_execute.h 		EG(called_scope) = EX(current_called_scope);
EX                640 Zend/zend_vm_execute.h 	EX(call)--;
EX                684 Zend/zend_vm_execute.h 	EX(function_state).function = EX(call)->fbc;
EX                719 Zend/zend_vm_execute.h 			ptr = EX(prev_execute_data);
EX                769 Zend/zend_vm_execute.h 		ZEND_VM_JMP(EX(op_array)->opcodes + opline->op2.opline_num);
EX                771 Zend/zend_vm_execute.h 		call_slot *call = EX(call_slots) + opline->extended_value;
EX                784 Zend/zend_vm_execute.h 		EX(call) = call;
EX                798 Zend/zend_vm_execute.h 	if (EX(old_error_reporting) == NULL) {
EX                799 Zend/zend_vm_execute.h 		EX(old_error_reporting) = &EX_T(opline->result.var).tmp_var;
EX                835 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                843 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                853 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                863 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                874 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                884 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                898 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                909 Zend/zend_vm_execute.h 	do_bind_function(EX(op_array), opline, EG(function_table), 0);
EX               1004 Zend/zend_vm_execute.h 			catch_op_num = EX(op_array)->try_catch_array[i].catch_op;
EX               1007 Zend/zend_vm_execute.h 			finally_op_num = EX(op_array)->try_catch_array[i].finally_op;
EX               1011 Zend/zend_vm_execute.h 	if (EX(call) >= EX(call_slots)) {
EX               1012 Zend/zend_vm_execute.h 		call_slot *call = EX(call);
EX               1026 Zend/zend_vm_execute.h 		} while (call >= EX(call_slots));
EX               1027 Zend/zend_vm_execute.h 		EX(call) = NULL;
EX               1030 Zend/zend_vm_execute.h 	for (i=0; i<EX(op_array)->last_brk_cont; i++) {
EX               1031 Zend/zend_vm_execute.h 		if (EX(op_array)->brk_cont_array[i].start < 0) {
EX               1033 Zend/zend_vm_execute.h 		} else if (EX(op_array)->brk_cont_array[i].start > op_num) {
EX               1036 Zend/zend_vm_execute.h 		} else if (op_num < EX(op_array)->brk_cont_array[i].brk) {
EX               1038 Zend/zend_vm_execute.h 			    catch_op_num >= EX(op_array)->brk_cont_array[i].brk) {
EX               1039 Zend/zend_vm_execute.h 				zend_op *brk_opline = &EX(op_array)->opcodes[EX(op_array)->brk_cont_array[i].brk];
EX               1058 Zend/zend_vm_execute.h 	if (!EG(error_reporting) && EX(old_error_reporting) != NULL && Z_LVAL_P(EX(old_error_reporting)) != 0) {
EX               1062 Zend/zend_vm_execute.h 		Z_LVAL(restored_error_reporting) = Z_LVAL_P(EX(old_error_reporting));
EX               1067 Zend/zend_vm_execute.h 	EX(old_error_reporting) = NULL;
EX               1071 Zend/zend_vm_execute.h 		EX(fast_ret) = NULL;
EX               1072 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[finally_op_num]);
EX               1075 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[catch_op_num]);
EX               1078 Zend/zend_vm_execute.h 		if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               1109 Zend/zend_vm_execute.h 			if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               1143 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               1146 Zend/zend_vm_execute.h 	EX(fast_ret) = opline + 1;
EX               1153 Zend/zend_vm_execute.h 	if (EX(fast_ret)) {
EX               1154 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(EX(fast_ret));
EX               1161 Zend/zend_vm_execute.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               1165 Zend/zend_vm_execute.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               1167 Zend/zend_vm_execute.h 		} else if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               1220 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               1235 Zend/zend_vm_execute.h 		EX(call) = call;
EX               1263 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1281 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1348 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1367 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               1387 Zend/zend_vm_execute.h 	EX(call) = call;
EX               1432 Zend/zend_vm_execute.h 	                   EX(op_array), execute_data TSRMLS_CC);
EX               1433 Zend/zend_vm_execute.h 	ZEND_VM_JMP(EX(op_array)->opcodes + el->brk);
EX               1443 Zend/zend_vm_execute.h 	                   EX(op_array), execute_data TSRMLS_CC);
EX               1444 Zend/zend_vm_execute.h 	ZEND_VM_JMP(EX(op_array)->opcodes + el->cont);
EX               1455 Zend/zend_vm_execute.h  	                   EX(op_array), execute_data TSRMLS_CC);
EX               1457 Zend/zend_vm_execute.h 	brk_opline = EX(op_array)->opcodes + el->brk;
EX               1545 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               1560 Zend/zend_vm_execute.h 		EX(call) = call;
EX               1588 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1606 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1673 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1732 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               1747 Zend/zend_vm_execute.h 		EX(call) = call;
EX               1775 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1793 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1860 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1957 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               1972 Zend/zend_vm_execute.h 		EX(call) = call;
EX               2000 Zend/zend_vm_execute.h 			EX(call) = call;
EX               2018 Zend/zend_vm_execute.h 			EX(call) = call;
EX               2085 Zend/zend_vm_execute.h 			EX(call) = call;
EX               2235 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               2241 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               2313 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->op2.num;
EX               2316 Zend/zend_vm_execute.h 		EX(function_state).function = CACHED_PTR(opline->op1.literal->cache_slot);
EX               2317 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               2321 Zend/zend_vm_execute.h 		CACHE_PTR(opline->op1.literal->cache_slot, EX(function_state).function);
EX               2323 Zend/zend_vm_execute.h 	call->fbc = EX(function_state).function;
EX               2327 Zend/zend_vm_execute.h 	EX(call) = call;
EX               2479 Zend/zend_vm_execute.h 		&& ARG_MUST_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               2728 Zend/zend_vm_execute.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               2738 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               2739 Zend/zend_vm_execute.h 		EX(object) = NULL;
EX               2751 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               2753 Zend/zend_vm_execute.h 		EG(opline_ptr) = &EX(opline);
EX               2754 Zend/zend_vm_execute.h 		EG(active_op_array) = EX(op_array);
EX               2755 Zend/zend_vm_execute.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               2795 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               2909 Zend/zend_vm_execute.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               3469 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_CONST_CONST(ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))?BP_VAR_W:BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               3530 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               3642 Zend/zend_vm_execute.h 	EX(call) = call;
EX               3876 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               4090 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               4522 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               4634 Zend/zend_vm_execute.h 	EX(call) = call;
EX               4783 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               5342 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_CONST_VAR(ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))?BP_VAR_W:BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               5379 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               5491 Zend/zend_vm_execute.h 	EX(call) = call;
EX               5629 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               5803 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               6087 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_CONST_UNUSED(ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))?BP_VAR_W:BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               6105 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               6217 Zend/zend_vm_execute.h 	EX(call) = call;
EX               6337 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               6529 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               6961 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               7073 Zend/zend_vm_execute.h 	EX(call) = call;
EX               7089 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               7113 Zend/zend_vm_execute.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               7123 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               7281 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               7549 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               7555 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               7783 Zend/zend_vm_execute.h 		&& ARG_MUST_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               8033 Zend/zend_vm_execute.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               8043 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               8044 Zend/zend_vm_execute.h 		EX(object) = NULL;
EX               8056 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               8058 Zend/zend_vm_execute.h 		EG(opline_ptr) = &EX(opline);
EX               8059 Zend/zend_vm_execute.h 		EG(active_op_array) = EX(op_array);
EX               8060 Zend/zend_vm_execute.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               8100 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               8214 Zend/zend_vm_execute.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               8265 Zend/zend_vm_execute.h 	if (EX(old_error_reporting) == &EX_T(opline->op1.var).tmp_var) {
EX               8266 Zend/zend_vm_execute.h 		EX(old_error_reporting) = NULL;
EX               8826 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_TMP_CONST(ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))?BP_VAR_W:BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               8935 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               9000 Zend/zend_vm_execute.h 	EX(call) = call;
EX               9138 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               9312 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               9791 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               9856 Zend/zend_vm_execute.h 	EX(call) = call;
EX               10007 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               10566 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_TMP_VAR(ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))?BP_VAR_W:BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               10650 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               10715 Zend/zend_vm_execute.h 	EX(call) = call;
EX               10855 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               11029 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               11313 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_TMP_UNUSED(ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))?BP_VAR_W:BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               11440 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               11614 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               12092 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               12157 Zend/zend_vm_execute.h 	EX(call) = call;
EX               12306 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               12754 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               12760 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               13022 Zend/zend_vm_execute.h 	} else if (!ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               13048 Zend/zend_vm_execute.h 			!ARG_MAY_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               13085 Zend/zend_vm_execute.h 	    EX(function_state).function->type == ZEND_INTERNAL_FUNCTION &&
EX               13086 Zend/zend_vm_execute.h 	    !ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               13105 Zend/zend_vm_execute.h 		&& ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               13350 Zend/zend_vm_execute.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               13360 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               13361 Zend/zend_vm_execute.h 		EX(object) = NULL;
EX               13373 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               13375 Zend/zend_vm_execute.h 		EG(opline_ptr) = &EX(opline);
EX               13376 Zend/zend_vm_execute.h 		EG(active_op_array) = EX(op_array);
EX               13377 Zend/zend_vm_execute.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               13417 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13532 Zend/zend_vm_execute.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13559 Zend/zend_vm_execute.h 			ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13573 Zend/zend_vm_execute.h 					ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13603 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13630 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13639 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               14709 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_VAR_CONST(ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))?BP_VAR_W:BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               14819 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               15056 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               15304 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               15369 Zend/zend_vm_execute.h 	EX(call) = call;
EX               15382 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               15494 Zend/zend_vm_execute.h 	EX(call) = call;
EX               15728 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               16195 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               17165 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               17402 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               17651 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               17716 Zend/zend_vm_execute.h 	EX(call) = call;
EX               17730 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               17842 Zend/zend_vm_execute.h 	EX(call) = call;
EX               18284 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               19308 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_VAR_VAR(ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))?BP_VAR_W:BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               19418 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               19655 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               19959 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               20024 Zend/zend_vm_execute.h 	EX(call) = call;
EX               20038 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               20150 Zend/zend_vm_execute.h 	EX(call) = call;
EX               20288 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               20755 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               21297 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_VAR_UNUSED(ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))?BP_VAR_W:BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               21373 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               21485 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               21597 Zend/zend_vm_execute.h 	EX(call) = call;
EX               21717 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               21912 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               22881 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               23118 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               23419 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               23484 Zend/zend_vm_execute.h 	EX(call) = call;
EX               23497 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               23609 Zend/zend_vm_execute.h 	EX(call) = call;
EX               24050 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               24899 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               25057 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               25122 Zend/zend_vm_execute.h 	EX(call) = call;
EX               25554 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               26314 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               26471 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               26536 Zend/zend_vm_execute.h 	EX(call) = call;
EX               26872 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               27632 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               27789 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               27854 Zend/zend_vm_execute.h 	EX(call) = call;
EX               28190 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               28617 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               29376 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               29532 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               29597 Zend/zend_vm_execute.h 	EX(call) = call;
EX               29932 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               30375 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               30381 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               30628 Zend/zend_vm_execute.h 	} else if (!ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               30654 Zend/zend_vm_execute.h 			!ARG_MAY_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               30691 Zend/zend_vm_execute.h 	    EX(function_state).function->type == ZEND_INTERNAL_FUNCTION &&
EX               30692 Zend/zend_vm_execute.h 	    !ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               30710 Zend/zend_vm_execute.h 		&& ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               30944 Zend/zend_vm_execute.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               30954 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               30955 Zend/zend_vm_execute.h 		EX(object) = NULL;
EX               30967 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               30969 Zend/zend_vm_execute.h 		EG(opline_ptr) = &EX(opline);
EX               30970 Zend/zend_vm_execute.h 		EG(active_op_array) = EX(op_array);
EX               30971 Zend/zend_vm_execute.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               31011 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               31125 Zend/zend_vm_execute.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               32167 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_CV_CONST(ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))?BP_VAR_W:BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               32276 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               32510 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               32755 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               32820 Zend/zend_vm_execute.h 	EX(call) = call;
EX               32958 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               33421 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               34387 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               34621 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               34867 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               34932 Zend/zend_vm_execute.h 	EX(call) = call;
EX               35372 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               36393 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_CV_VAR(ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))?BP_VAR_W:BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               36502 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               36736 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               37036 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               37101 Zend/zend_vm_execute.h 	EX(call) = call;
EX               37241 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               37704 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               38243 Zend/zend_vm_execute.h 	return zend_fetch_var_address_helper_SPEC_CV_UNUSED(ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))?BP_VAR_W:BP_VAR_R, ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
EX               38318 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               38539 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               38713 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               39678 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               39912 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               40209 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               40274 Zend/zend_vm_execute.h 	EX(call) = call;
EX               40712 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX                285 ext/opcache/zend_accelerator_module.c #undef  EX
EX                286 ext/opcache/zend_accelerator_module.c #define EX(element) execute_data->element
EX                287 ext/opcache/zend_accelerator_module.c #define EX_T(offset) (*(temp_variable *)((char *) EX(Ts) + offset))
EX                293 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                294 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                296 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                298 ext/opcache/zend_accelerator_module.c 	EX(opline)++;
EX               1128 sapi/cli/php_cli.c 					EX(function_state).function = pce->constructor;