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                762 Zend/zend_execute_API.c 		EX(op_array) = NULL;
EX                763 Zend/zend_execute_API.c 		EX(opline) = NULL;
EX                764 Zend/zend_execute_API.c 		EX(object) = NULL;
EX                801 Zend/zend_execute_API.c 	EX(function_state).function = fci_cache->function_handler;
EX                805 Zend/zend_execute_API.c 	EX(object) = fci->object_ptr;
EX                811 Zend/zend_execute_API.c 	if (EX(function_state).function->common.fn_flags & (ZEND_ACC_ABSTRACT|ZEND_ACC_DEPRECATED)) {
EX                812 Zend/zend_execute_API.c 		if (EX(function_state).function->common.fn_flags & ZEND_ACC_ABSTRACT) {
EX                813 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                815 Zend/zend_execute_API.c 		if (EX(function_state).function->common.fn_flags & ZEND_ACC_DEPRECATED) {
EX                817 Zend/zend_execute_API.c 				EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name : "",
EX                818 Zend/zend_execute_API.c 				EX(function_state).function->common.scope ? "::" : "",
EX                819 Zend/zend_execute_API.c 				EX(function_state).function->common.function_name);
EX                828 Zend/zend_execute_API.c 		if (ARG_SHOULD_BE_SENT_BY_REF(EX(function_state).function, i + 1)) {
EX                833 Zend/zend_execute_API.c 				    !ARG_MAY_BE_SENT_BY_REF(EX(function_state).function, i + 1)) {
EX                842 Zend/zend_execute_API.c 						EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name : "",
EX                843 Zend/zend_execute_API.c 						EX(function_state).function->common.scope ? "::" : "",
EX                844 Zend/zend_execute_API.c 						EX(function_state).function->common.function_name);
EX                860 Zend/zend_execute_API.c 		           (EX(function_state).function->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) == 0 ) {
EX                876 Zend/zend_execute_API.c 	EX(function_state).arguments = zend_vm_stack_top(TSRMLS_C);
EX                887 Zend/zend_execute_API.c 	} else if (EX(function_state).function->type != ZEND_INTERNAL_FUNCTION) {
EX                892 Zend/zend_execute_API.c 		if ((EX(function_state).function->common.fn_flags & ZEND_ACC_STATIC)) {
EX                913 Zend/zend_execute_API.c 	EX(prev_execute_data) = EG(current_execute_data);
EX                916 Zend/zend_execute_API.c 	if (EX(function_state).function->type == ZEND_USER_FUNCTION) {
EX                918 Zend/zend_execute_API.c 		EG(scope) = EX(function_state).function->common.scope;
EX                928 Zend/zend_execute_API.c 		EG(active_op_array) = (zend_op_array *) EX(function_state).function;
EX                944 Zend/zend_execute_API.c 	} else if (EX(function_state).function->type == ZEND_INTERNAL_FUNCTION) {
EX                945 Zend/zend_execute_API.c 		int call_via_handler = (EX(function_state).function->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0;
EX                947 Zend/zend_execute_API.c 		if (EX(function_state).function->common.scope) {
EX                948 Zend/zend_execute_API.c 			EG(scope) = EX(function_state).function->common.scope;
EX                952 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                976 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                981 Zend/zend_execute_API.c 		if (EX(function_state).function->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY) {
EX                982 Zend/zend_execute_API.c 			efree((char*)EX(function_state).function->common.function_name);
EX                984 Zend/zend_execute_API.c 		efree(EX(function_state).function);
EX                999 Zend/zend_execute_API.c 	EG(current_execute_data) = EX(prev_execute_data);
EX               1160 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               1270 Zend/zend_vm_def.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               1507 Zend/zend_vm_def.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               1832 Zend/zend_vm_def.h 	zend_bool nested = EX(nested);
EX               1833 Zend/zend_vm_def.h 	zend_op_array *op_array = EX(op_array);
EX               1835 Zend/zend_vm_def.h 	EG(current_execute_data) = EX(prev_execute_data);
EX               1857 Zend/zend_vm_def.h 			EX(function_state).function = (zend_function *) EX(op_array);
EX               1858 Zend/zend_vm_def.h 			EX(function_state).arguments = NULL;
EX               1860 Zend/zend_vm_def.h 			EG(opline_ptr) = &EX(opline);
EX               1861 Zend/zend_vm_def.h 			EG(active_op_array) = EX(op_array);
EX               1862 Zend/zend_vm_def.h 			EG(return_value_ptr_ptr) = EX(original_return_value);
EX               1873 Zend/zend_vm_def.h 			EG(opline_ptr) = &EX(opline);
EX               1874 Zend/zend_vm_def.h 			EG(active_op_array) = EX(op_array);
EX               1875 Zend/zend_vm_def.h 			EG(return_value_ptr_ptr) = EX(original_return_value);
EX               1879 Zend/zend_vm_def.h 			EG(active_symbol_table) = EX(symbol_table);
EX               1881 Zend/zend_vm_def.h 			EX(function_state).function = (zend_function *) EX(op_array);
EX               1882 Zend/zend_vm_def.h 			EX(function_state).arguments = NULL;
EX               1885 Zend/zend_vm_def.h 				if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) {
EX               1886 Zend/zend_vm_def.h 					if (EX(call)->is_ctor_result_used) {
EX               1895 Zend/zend_vm_def.h 			EG(This) = EX(current_this);
EX               1896 Zend/zend_vm_def.h 			EG(scope) = EX(current_scope);
EX               1897 Zend/zend_vm_def.h 			EG(called_scope) = EX(current_called_scope);
EX               1899 Zend/zend_vm_def.h 			EX(call)--;
EX               1922 Zend/zend_vm_def.h 	zend_function *fbc = EX(function_state).function;
EX               1925 Zend/zend_vm_def.h 	EX(object) = EX(call)->object;
EX               1941 Zend/zend_vm_def.h 		!EX(object)) {
EX               1955 Zend/zend_vm_def.h 		EX(current_this) = EG(This);
EX               1956 Zend/zend_vm_def.h 		EX(current_scope) = EG(scope);
EX               1957 Zend/zend_vm_def.h 		EX(current_called_scope) = EG(called_scope);
EX               1958 Zend/zend_vm_def.h 		EG(This) = EX(object);
EX               1959 Zend/zend_vm_def.h 		EG(scope) = (fbc->type == ZEND_USER_FUNCTION || !EX(object)) ? fbc->common.scope : NULL;
EX               1960 Zend/zend_vm_def.h 		EG(called_scope) = EX(call)->called_scope;
EX               1963 Zend/zend_vm_def.h 	EX(function_state).arguments = zend_vm_stack_top(TSRMLS_C);
EX               1970 Zend/zend_vm_def.h 			zval **p = (zval**)EX(function_state).arguments;
EX               1989 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               2002 Zend/zend_vm_def.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               2026 Zend/zend_vm_def.h 		EG(opline_ptr) = &EX(opline);
EX               2027 Zend/zend_vm_def.h 		EG(active_op_array) = EX(op_array);
EX               2028 Zend/zend_vm_def.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               2032 Zend/zend_vm_def.h 		EG(active_symbol_table) = EX(symbol_table);
EX               2038 Zend/zend_vm_def.h 		if (EXPECTED(EX(object) != NULL)) {
EX               2039 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               2059 Zend/zend_vm_def.h 	EX(function_state).function = (zend_function *) EX(op_array);
EX               2060 Zend/zend_vm_def.h 	EX(function_state).arguments = NULL;
EX               2064 Zend/zend_vm_def.h 			if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) {
EX               2065 Zend/zend_vm_def.h 				if (EX(call)->is_ctor_result_used) {
EX               2074 Zend/zend_vm_def.h 		EG(This) = EX(current_this);
EX               2075 Zend/zend_vm_def.h 		EG(scope) = EX(current_scope);
EX               2076 Zend/zend_vm_def.h 		EG(called_scope) = EX(current_called_scope);
EX               2079 Zend/zend_vm_def.h 	EX(call)--;
EX               2188 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               2194 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               2429 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               2494 Zend/zend_vm_def.h 	EX(call) = call;
EX               2508 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               2620 Zend/zend_vm_def.h 	EX(call) = call;
EX               2630 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               2645 Zend/zend_vm_def.h 		EX(call) = call;
EX               2673 Zend/zend_vm_def.h 			EX(call) = call;
EX               2691 Zend/zend_vm_def.h 			EX(call) = call;
EX               2758 Zend/zend_vm_def.h 			EX(call) = call;
EX               2777 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               2797 Zend/zend_vm_def.h 	EX(call) = call;
EX               2803 Zend/zend_vm_def.h 	EX(function_state).function = EX(call)->fbc;
EX               2812 Zend/zend_vm_def.h 	call_slot *call = EX(call_slots) + opline->op2.num;
EX               2815 Zend/zend_vm_def.h 		EX(function_state).function = CACHED_PTR(opline->op1.literal->cache_slot);
EX               2816 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               2820 Zend/zend_vm_def.h 		CACHE_PTR(opline->op1.literal->cache_slot, EX(function_state).function);
EX               2822 Zend/zend_vm_def.h 	call->fbc = EX(function_state).function;
EX               2826 Zend/zend_vm_def.h 	EX(call) = call;
EX               2997 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               3021 Zend/zend_vm_def.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               3031 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               3053 Zend/zend_vm_def.h 		&& ARG_MUST_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               3114 Zend/zend_vm_def.h 	} else if (!ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               3140 Zend/zend_vm_def.h 			!ARG_MAY_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               3177 Zend/zend_vm_def.h 	    EX(function_state).function->type == ZEND_INTERNAL_FUNCTION &&
EX               3178 Zend/zend_vm_def.h 	    !ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               3197 Zend/zend_vm_def.h 		&& ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               3223 Zend/zend_vm_def.h 			ptr = EX(prev_execute_data);
EX               3301 Zend/zend_vm_def.h 	                   EX(op_array), execute_data TSRMLS_CC);
EX               3302 Zend/zend_vm_def.h 	ZEND_VM_JMP(EX(op_array)->opcodes + el->brk);
EX               3312 Zend/zend_vm_def.h 	                   EX(op_array), execute_data TSRMLS_CC);
EX               3313 Zend/zend_vm_def.h 	ZEND_VM_JMP(EX(op_array)->opcodes + el->cont);
EX               3324 Zend/zend_vm_def.h  	                   EX(op_array), execute_data TSRMLS_CC);
EX               3326 Zend/zend_vm_def.h 	brk_opline = EX(op_array)->opcodes + el->brk;
EX               3399 Zend/zend_vm_def.h 		ZEND_VM_JMP(EX(op_array)->opcodes + opline->op2.opline_num);
EX               3401 Zend/zend_vm_def.h 		call_slot *call = EX(call_slots) + opline->extended_value;
EX               3414 Zend/zend_vm_def.h 		EX(call) = call;
EX               3831 Zend/zend_vm_def.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               3841 Zend/zend_vm_def.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               3842 Zend/zend_vm_def.h 		EX(object) = NULL;
EX               3854 Zend/zend_vm_def.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               3856 Zend/zend_vm_def.h 		EG(opline_ptr) = &EX(opline);
EX               3857 Zend/zend_vm_def.h 		EG(active_op_array) = EX(op_array);
EX               3858 Zend/zend_vm_def.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               3891 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               4117 Zend/zend_vm_def.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4232 Zend/zend_vm_def.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4259 Zend/zend_vm_def.h 			ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4273 Zend/zend_vm_def.h 					ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4303 Zend/zend_vm_def.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4330 Zend/zend_vm_def.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4339 Zend/zend_vm_def.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               4636 Zend/zend_vm_def.h 	if (EX(old_error_reporting) == NULL) {
EX               4637 Zend/zend_vm_def.h 		EX(old_error_reporting) = &EX_T(opline->result.var).tmp_var;
EX               4673 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               4699 Zend/zend_vm_def.h 	if (EX(old_error_reporting) == &EX_T(opline->op1.var).tmp_var) {
EX               4700 Zend/zend_vm_def.h 		EX(old_error_reporting) = NULL;
EX               4817 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               4827 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               4837 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               4848 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               4858 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               4872 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               4883 Zend/zend_vm_def.h 	do_bind_function(EX(op_array), opline, EG(function_table), 0);
EX               5026 Zend/zend_vm_def.h 			catch_op_num = EX(op_array)->try_catch_array[i].catch_op;
EX               5029 Zend/zend_vm_def.h 			finally_op_num = EX(op_array)->try_catch_array[i].finally_op;
EX               5033 Zend/zend_vm_def.h 	if (EX(call) >= EX(call_slots)) {
EX               5034 Zend/zend_vm_def.h 		call_slot *call = EX(call);
EX               5052 Zend/zend_vm_def.h 		} while (call >= EX(call_slots));
EX               5053 Zend/zend_vm_def.h 		EX(call) = NULL;
EX               5056 Zend/zend_vm_def.h 	for (i=0; i<EX(op_array)->last_brk_cont; i++) {
EX               5057 Zend/zend_vm_def.h 		if (EX(op_array)->brk_cont_array[i].start < 0) {
EX               5059 Zend/zend_vm_def.h 		} else if (EX(op_array)->brk_cont_array[i].start > op_num) {
EX               5062 Zend/zend_vm_def.h 		} else if (op_num < EX(op_array)->brk_cont_array[i].brk) {
EX               5064 Zend/zend_vm_def.h 			    catch_op_num >= EX(op_array)->brk_cont_array[i].brk) {
EX               5065 Zend/zend_vm_def.h 				zend_op *brk_opline = &EX(op_array)->opcodes[EX(op_array)->brk_cont_array[i].brk];
EX               5084 Zend/zend_vm_def.h 	if (!EG(error_reporting) && EX(old_error_reporting) != NULL && Z_LVAL_P(EX(old_error_reporting)) != 0) {
EX               5088 Zend/zend_vm_def.h 		Z_LVAL(restored_error_reporting) = Z_LVAL_P(EX(old_error_reporting));
EX               5093 Zend/zend_vm_def.h 	EX(old_error_reporting) = NULL;
EX               5097 Zend/zend_vm_def.h 		EX(fast_ret) = NULL;
EX               5098 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[finally_op_num]);
EX               5101 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[catch_op_num]);
EX               5104 Zend/zend_vm_def.h 		if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               5135 Zend/zend_vm_def.h 			if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               5205 Zend/zend_vm_def.h 			(EX(prev_execute_data) &&
EX               5206 Zend/zend_vm_def.h 			 EX(prev_execute_data)->function_state.function->common.fn_flags & ZEND_ACC_STATIC))) {
EX               5262 Zend/zend_vm_def.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               5415 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               5418 Zend/zend_vm_def.h 	EX(fast_ret) = opline;
EX               5425 Zend/zend_vm_def.h 	if (EX(fast_ret)) {
EX               5426 Zend/zend_vm_def.h 		ZEND_VM_SET_OPCODE(EX(fast_ret) + 1);
EX               5427 Zend/zend_vm_def.h 		if ((EX(fast_ret)->extended_value & ZEND_FAST_CALL_FROM_FINALLY)) {
EX               5428 Zend/zend_vm_def.h 			EX(fast_ret) = &EX(op_array)->opcodes[EX(fast_ret)->op2.opline_num];
EX               5436 Zend/zend_vm_def.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               5440 Zend/zend_vm_def.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               5442 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                563 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               1030 Zend/zend_vm_execute.h 		} while (call >= EX(call_slots));
EX               1031 Zend/zend_vm_execute.h 		EX(call) = NULL;
EX               1034 Zend/zend_vm_execute.h 	for (i=0; i<EX(op_array)->last_brk_cont; i++) {
EX               1035 Zend/zend_vm_execute.h 		if (EX(op_array)->brk_cont_array[i].start < 0) {
EX               1037 Zend/zend_vm_execute.h 		} else if (EX(op_array)->brk_cont_array[i].start > op_num) {
EX               1040 Zend/zend_vm_execute.h 		} else if (op_num < EX(op_array)->brk_cont_array[i].brk) {
EX               1042 Zend/zend_vm_execute.h 			    catch_op_num >= EX(op_array)->brk_cont_array[i].brk) {
EX               1043 Zend/zend_vm_execute.h 				zend_op *brk_opline = &EX(op_array)->opcodes[EX(op_array)->brk_cont_array[i].brk];
EX               1062 Zend/zend_vm_execute.h 	if (!EG(error_reporting) && EX(old_error_reporting) != NULL && Z_LVAL_P(EX(old_error_reporting)) != 0) {
EX               1066 Zend/zend_vm_execute.h 		Z_LVAL(restored_error_reporting) = Z_LVAL_P(EX(old_error_reporting));
EX               1071 Zend/zend_vm_execute.h 	EX(old_error_reporting) = NULL;
EX               1075 Zend/zend_vm_execute.h 		EX(fast_ret) = NULL;
EX               1076 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[finally_op_num]);
EX               1079 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[catch_op_num]);
EX               1082 Zend/zend_vm_execute.h 		if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               1113 Zend/zend_vm_execute.h 			if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               1147 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               1150 Zend/zend_vm_execute.h 	EX(fast_ret) = opline;
EX               1157 Zend/zend_vm_execute.h 	if (EX(fast_ret)) {
EX               1158 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(EX(fast_ret) + 1);
EX               1159 Zend/zend_vm_execute.h 		if ((EX(fast_ret)->extended_value & ZEND_FAST_CALL_FROM_FINALLY)) {
EX               1160 Zend/zend_vm_execute.h 			EX(fast_ret) = &EX(op_array)->opcodes[EX(fast_ret)->op2.opline_num];
EX               1168 Zend/zend_vm_execute.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               1172 Zend/zend_vm_execute.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               1174 Zend/zend_vm_execute.h 		} else if (UNEXPECTED((EX(op_array)->fn_flags & ZEND_ACC_GENERATOR) != 0)) {
EX               1227 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               1242 Zend/zend_vm_execute.h 		EX(call) = call;
EX               1270 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1288 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1355 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1374 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               1394 Zend/zend_vm_execute.h 	EX(call) = call;
EX               1439 Zend/zend_vm_execute.h 	                   EX(op_array), execute_data TSRMLS_CC);
EX               1440 Zend/zend_vm_execute.h 	ZEND_VM_JMP(EX(op_array)->opcodes + el->brk);
EX               1450 Zend/zend_vm_execute.h 	                   EX(op_array), execute_data TSRMLS_CC);
EX               1451 Zend/zend_vm_execute.h 	ZEND_VM_JMP(EX(op_array)->opcodes + el->cont);
EX               1462 Zend/zend_vm_execute.h  	                   EX(op_array), execute_data TSRMLS_CC);
EX               1464 Zend/zend_vm_execute.h 	brk_opline = EX(op_array)->opcodes + el->brk;
EX               1552 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               1567 Zend/zend_vm_execute.h 		EX(call) = call;
EX               1595 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1613 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1680 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1739 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               1754 Zend/zend_vm_execute.h 		EX(call) = call;
EX               1782 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1800 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1867 Zend/zend_vm_execute.h 			EX(call) = call;
EX               1964 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               1979 Zend/zend_vm_execute.h 		EX(call) = call;
EX               2007 Zend/zend_vm_execute.h 			EX(call) = call;
EX               2025 Zend/zend_vm_execute.h 			EX(call) = call;
EX               2092 Zend/zend_vm_execute.h 			EX(call) = call;
EX               2242 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               2248 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               2320 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->op2.num;
EX               2323 Zend/zend_vm_execute.h 		EX(function_state).function = CACHED_PTR(opline->op1.literal->cache_slot);
EX               2324 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               2328 Zend/zend_vm_execute.h 		CACHE_PTR(opline->op1.literal->cache_slot, EX(function_state).function);
EX               2330 Zend/zend_vm_execute.h 	call->fbc = EX(function_state).function;
EX               2334 Zend/zend_vm_execute.h 	EX(call) = call;
EX               2486 Zend/zend_vm_execute.h 		&& ARG_MUST_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               2735 Zend/zend_vm_execute.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               2745 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               2746 Zend/zend_vm_execute.h 		EX(object) = NULL;
EX               2758 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               2760 Zend/zend_vm_execute.h 		EG(opline_ptr) = &EX(opline);
EX               2761 Zend/zend_vm_execute.h 		EG(active_op_array) = EX(op_array);
EX               2762 Zend/zend_vm_execute.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               2802 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               2916 Zend/zend_vm_execute.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               3476 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               3537 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               3649 Zend/zend_vm_execute.h 	EX(call) = call;
EX               3883 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               4097 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               4529 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               4641 Zend/zend_vm_execute.h 	EX(call) = call;
EX               4790 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               5349 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               5386 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               5498 Zend/zend_vm_execute.h 	EX(call) = call;
EX               5636 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               5810 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               6094 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               6112 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               6224 Zend/zend_vm_execute.h 	EX(call) = call;
EX               6344 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               6506 Zend/zend_vm_execute.h 			(EX(prev_execute_data) &&
EX               6507 Zend/zend_vm_execute.h 			 EX(prev_execute_data)->function_state.function->common.fn_flags & ZEND_ACC_STATIC))) {
EX               6542 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               6974 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               7086 Zend/zend_vm_execute.h 	EX(call) = call;
EX               7102 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               7126 Zend/zend_vm_execute.h 			ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               7136 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               7294 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               7562 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               7568 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               7796 Zend/zend_vm_execute.h 		&& ARG_MUST_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               8046 Zend/zend_vm_execute.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               8056 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               8057 Zend/zend_vm_execute.h 		EX(object) = NULL;
EX               8069 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               8071 Zend/zend_vm_execute.h 		EG(opline_ptr) = &EX(opline);
EX               8072 Zend/zend_vm_execute.h 		EG(active_op_array) = EX(op_array);
EX               8073 Zend/zend_vm_execute.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               8113 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               8227 Zend/zend_vm_execute.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               8278 Zend/zend_vm_execute.h 	if (EX(old_error_reporting) == &EX_T(opline->op1.var).tmp_var) {
EX               8279 Zend/zend_vm_execute.h 		EX(old_error_reporting) = NULL;
EX               8839 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               8948 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               9013 Zend/zend_vm_execute.h 	EX(call) = call;
EX               9151 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               9325 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               9804 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               9869 Zend/zend_vm_execute.h 	EX(call) = call;
EX               10020 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               10579 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               10663 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               10728 Zend/zend_vm_execute.h 	EX(call) = call;
EX               10868 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               11042 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               11326 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               11453 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               11627 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               12105 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               12170 Zend/zend_vm_execute.h 	EX(call) = call;
EX               12319 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               12767 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               12773 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               13035 Zend/zend_vm_execute.h 	} else if (!ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               13061 Zend/zend_vm_execute.h 			!ARG_MAY_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               13098 Zend/zend_vm_execute.h 	    EX(function_state).function->type == ZEND_INTERNAL_FUNCTION &&
EX               13099 Zend/zend_vm_execute.h 	    !ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               13118 Zend/zend_vm_execute.h 		&& ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               13363 Zend/zend_vm_execute.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               13373 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               13374 Zend/zend_vm_execute.h 		EX(object) = NULL;
EX               13386 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               13388 Zend/zend_vm_execute.h 		EG(opline_ptr) = &EX(opline);
EX               13389 Zend/zend_vm_execute.h 		EG(active_op_array) = EX(op_array);
EX               13390 Zend/zend_vm_execute.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               13430 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13545 Zend/zend_vm_execute.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13572 Zend/zend_vm_execute.h 			ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13586 Zend/zend_vm_execute.h 					ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13616 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13643 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               13652 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               14730 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               14840 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               15077 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               15327 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               15392 Zend/zend_vm_execute.h 	EX(call) = call;
EX               15405 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               15517 Zend/zend_vm_execute.h 	EX(call) = call;
EX               15751 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               16218 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               17196 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               17433 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               17684 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               17749 Zend/zend_vm_execute.h 	EX(call) = call;
EX               17763 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               17875 Zend/zend_vm_execute.h 	EX(call) = call;
EX               18317 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               19349 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               19459 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               19696 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               20002 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               20067 Zend/zend_vm_execute.h 	EX(call) = call;
EX               20081 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               20193 Zend/zend_vm_execute.h 	EX(call) = call;
EX               20331 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               20798 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               21342 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               21418 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               21530 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               21642 Zend/zend_vm_execute.h 	EX(call) = call;
EX               21762 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               21957 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               22934 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               23171 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               23474 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               23539 Zend/zend_vm_execute.h 	EX(call) = call;
EX               23552 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               23664 Zend/zend_vm_execute.h 	EX(call) = call;
EX               24105 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               24962 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               25120 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               25185 Zend/zend_vm_execute.h 	EX(call) = call;
EX               25617 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               26385 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               26542 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               26607 Zend/zend_vm_execute.h 	EX(call) = call;
EX               26943 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               27711 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               27868 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               27933 Zend/zend_vm_execute.h 	EX(call) = call;
EX               28269 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               28698 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               29465 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               29621 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               29686 Zend/zend_vm_execute.h 	EX(call) = call;
EX               30021 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               30464 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->extended_value]);
EX               30470 Zend/zend_vm_execute.h 		ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[opline->op2.opline_num]);
EX               30717 Zend/zend_vm_execute.h 	} else if (!ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               30743 Zend/zend_vm_execute.h 			!ARG_MAY_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               30780 Zend/zend_vm_execute.h 	    EX(function_state).function->type == ZEND_INTERNAL_FUNCTION &&
EX               30781 Zend/zend_vm_execute.h 	    !ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               30799 Zend/zend_vm_execute.h 		&& ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, opline->op2.opline_num)) {
EX               31033 Zend/zend_vm_execute.h 		EX(original_return_value) = EG(return_value_ptr_ptr);
EX               31043 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
EX               31044 Zend/zend_vm_execute.h 		EX(object) = NULL;
EX               31056 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
EX               31058 Zend/zend_vm_execute.h 		EG(opline_ptr) = &EX(opline);
EX               31059 Zend/zend_vm_execute.h 		EG(active_op_array) = EX(op_array);
EX               31060 Zend/zend_vm_execute.h 		EG(return_value_ptr_ptr) = EX(original_return_value);
EX               31100 Zend/zend_vm_execute.h 				ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               31214 Zend/zend_vm_execute.h 		ZEND_VM_JMP(EX(op_array)->opcodes+opline->op2.opline_num);
EX               32264 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               32373 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               32607 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               32856 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               32921 Zend/zend_vm_execute.h 	EX(call) = call;
EX               33059 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               33522 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               34496 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               34730 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               34980 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               35045 Zend/zend_vm_execute.h 	EX(call) = call;
EX               35485 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               36514 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               36623 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               36857 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               37161 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               37226 Zend/zend_vm_execute.h 	EX(call) = call;
EX               37366 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               37829 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               38370 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               38445 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               38666 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               38840 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX               39813 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               40047 Zend/zend_vm_execute.h 	if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) {
EX               40348 Zend/zend_vm_execute.h 	call_slot *call = EX(call_slots) + opline->result.num;
EX               40413 Zend/zend_vm_execute.h 	EX(call) = call;
EX               40851 Zend/zend_vm_execute.h 		if (EX(op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) {
EX                291 ext/opcache/zend_accelerator_module.c #undef  EX
EX                292 ext/opcache/zend_accelerator_module.c #define EX(element) execute_data->element
EX                293 ext/opcache/zend_accelerator_module.c #define EX_T(offset) (*(temp_variable *)((char *) EX(Ts) + offset))
EX                299 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                300 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                302 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                304 ext/opcache/zend_accelerator_module.c 	EX(opline)++;
EX               1128 sapi/cli/php_cli.c 					EX(function_state).function = pce->constructor;