Lines Matching refs:EG

162 	EG(vm_stack) = zend_vm_stack_new_page(ZEND_VM_STACK_PAGE_SIZE(0 /* main stack */), NULL);  in zend_vm_stack_init()
163 EG(vm_stack)->top++; in zend_vm_stack_init()
164 EG(vm_stack_top) = EG(vm_stack)->top; in zend_vm_stack_init()
165 EG(vm_stack_end) = EG(vm_stack)->end; in zend_vm_stack_init()
170 zend_vm_stack stack = EG(vm_stack); in zend_vm_stack_destroy()
184 stack = EG(vm_stack); in zend_vm_stack_extend()
185 stack->top = EG(vm_stack_top); in zend_vm_stack_extend()
186 EG(vm_stack) = stack = zend_vm_stack_new_page( in zend_vm_stack_extend()
191 EG(vm_stack_top) = (void*)(((char*)ptr) + size); in zend_vm_stack_extend()
192 EG(vm_stack_end) = stack->end; in zend_vm_stack_extend()
243 ptr = &EG(uninitialized_zval); in _get_zval_cv_lookup()
258 return &EG(uninitialized_zval); in _get_zval_cv_lookup_BP_VAR_R()
264 return &EG(uninitialized_zval); in _get_zval_cv_lookup_BP_VAR_UNSET()
606 if (UNEXPECTED(object == &EG(error_zval))) { in make_real_object()
645 zend_execute_data *ptr = EG(current_execute_data)->prev_execute_data; in zend_verify_arg_error()
786 …scalar_type_hint(cur_arg_info->type_hint, arg, ZEND_CALL_USES_STRICT_TYPES(EG(current_execute_data… in zend_verify_internal_arg_type()
1096 if (object_op_type == IS_VAR && UNEXPECTED(object == &EG(error_zval))) { in zend_assign_to_object()
1150 if (retval && EXPECTED(!EG(exception))) { in zend_assign_to_object()
1236 if (retval && EXPECTED(!EG(exception))) { in zend_assign_to_object()
1270 if (retval && EXPECTED(!EG(exception))) { in zend_assign_to_object_dim()
1375 if (UNEXPECTED(EG(exception))) { in zend_post_incdec_overloaded_property()
1420 if (UNEXPECTED(EG(exception))) { in zend_pre_incdec_overloaded_property()
1465 if (UNEXPECTED(EG(exception))) { in zend_assign_op_overloaded_property()
1527 ht = &EG(symbol_table); in zend_get_target_symbol_table()
1565 retval = &EG(uninitialized_zval); in zend_fetch_dimension_address_inner()
1569 retval = zend_hash_index_update(ht, hval, &EG(uninitialized_zval)); in zend_fetch_dimension_address_inner()
1572 retval = zend_hash_index_add_new(ht, hval, &EG(uninitialized_zval)); in zend_fetch_dimension_address_inner()
1596 retval = &EG(uninitialized_zval); in zend_fetch_dimension_address_inner()
1614 retval = &EG(uninitialized_zval); in zend_fetch_dimension_address_inner()
1618 retval = zend_hash_update(ht, offset_key, &EG(uninitialized_zval)); in zend_fetch_dimension_address_inner()
1621 retval = zend_hash_add_new(ht, offset_key, &EG(uninitialized_zval)); in zend_fetch_dimension_address_inner()
1649 &EG(error_zval) : &EG(uninitialized_zval); in zend_fetch_dimension_address_inner()
1715 retval = zend_hash_next_index_insert(Z_ARRVAL_P(container), &EG(uninitialized_zval)); in zend_fetch_dimension_address()
1718 retval = &EG(error_zval); in zend_fetch_dimension_address()
1742 ZVAL_INDIRECT(result, &EG(error_zval)); in zend_fetch_dimension_address()
1750 retval = &EG(error_zval); in zend_fetch_dimension_address()
1754 if (UNEXPECTED(retval == &EG(uninitialized_zval))) { in zend_fetch_dimension_address()
1776 ZVAL_INDIRECT(result, &EG(error_zval)); in zend_fetch_dimension_address()
1780 if (UNEXPECTED(container == &EG(error_zval))) { in zend_fetch_dimension_address()
1781 ZVAL_INDIRECT(result, &EG(error_zval)); in zend_fetch_dimension_address()
1794 ZVAL_INDIRECT(result, &EG(error_zval)); in zend_fetch_dimension_address()
1929 if (container_op_type == IS_VAR && UNEXPECTED(container == &EG(error_zval))) { in zend_fetch_property_address()
1930 ZVAL_INDIRECT(result, &EG(error_zval)); in zend_fetch_property_address()
1949 ZVAL_INDIRECT(result, &EG(error_zval)); in zend_fetch_property_address()
1992 ZVAL_INDIRECT(result, &EG(error_zval)); in zend_fetch_property_address()
2006 ZVAL_INDIRECT(result, &EG(error_zval)); in zend_fetch_property_address()
2013 zend_hash_apply(&EG(symbol_table), zend_check_symbol); \
2014 if (&EG(symbol_table)!=EX(symbol_table)) { \
2051 if (EG(symtable_cache_ptr) >= EG(symtable_cache_limit)) { in zend_clean_and_cache_symbol_table()
2057 *(++EG(symtable_cache_ptr)) = symbol_table; in zend_clean_and_cache_symbol_table()
2089 if (EG(timed_out)) { \
2188 EG(current_execute_data) = execute_data; in i_init_func_execute_data()
2217 EG(current_execute_data) = execute_data; in i_init_code_execute_data()
2308 EG(current_execute_data) = execute_data; in i_init_execute_data()
2329 EG(vm_stack) = zend_vm_stack_new_page( in zend_create_generator_execute_data()
2334 EG(vm_stack_top) = EG(vm_stack)->top; in zend_create_generator_execute_data()
2335 EG(vm_stack_end) = EG(vm_stack)->end; in zend_create_generator_execute_data()
2373 EX(prev_execute_data) = EG(current_execute_data); in zend_init_execute_data()
2388 int used_stack = (EG(vm_stack_top) - (zval*)call) + additional_args; in zend_vm_stack_copy_call_frame()
2407 EG(vm_stack)->prev->top = (zval*)call; in zend_vm_stack_copy_call_frame()
2410 if (UNEXPECTED(EG(vm_stack)->prev->top == ZEND_VM_STACK_ELEMETS(EG(vm_stack)->prev))) { in zend_vm_stack_copy_call_frame()
2411 zend_vm_stack r = EG(vm_stack)->prev; in zend_vm_stack_copy_call_frame()
2413 EG(vm_stack)->prev = r->prev; in zend_vm_stack_copy_call_frame()
2423 if (EXPECTED((uint32_t)(EG(vm_stack_end) - EG(vm_stack_top)) > additional_args)) { in zend_vm_stack_extend_call_frame()
2424 EG(vm_stack_top) += additional_args; in zend_vm_stack_extend_call_frame()
2612 if (!EG(error_reporting) && Z_LVAL_P(EX_VAR(brk_opline->op1.var)) != 0) { in cleanup_live_vars()
2613 EG(error_reporting) = Z_LVAL_P(EX_VAR(brk_opline->op1.var)); in cleanup_live_vars()
2671 if (EXPECTED(!EG(exception))) { \
2702 if ((_check) && UNEXPECTED(EG(exception))) { \