Lines Matching refs:EG

195 	EG(vm_stack_page_size) = ZEND_VM_STACK_PAGE_SIZE;  in zend_vm_stack_init()
196 EG(vm_stack) = zend_vm_stack_new_page(ZEND_VM_STACK_PAGE_SIZE, NULL); in zend_vm_stack_init()
197 EG(vm_stack_top) = EG(vm_stack)->top; in zend_vm_stack_init()
198 EG(vm_stack_end) = EG(vm_stack)->end; in zend_vm_stack_init()
205 EG(vm_stack_page_size) = page_size; in zend_vm_stack_init_ex()
206 EG(vm_stack) = zend_vm_stack_new_page(page_size, NULL); in zend_vm_stack_init_ex()
207 EG(vm_stack_top) = EG(vm_stack)->top; in zend_vm_stack_init_ex()
208 EG(vm_stack_end) = EG(vm_stack)->end; in zend_vm_stack_init_ex()
213 zend_vm_stack stack = EG(vm_stack); in zend_vm_stack_destroy()
227 stack = EG(vm_stack); in zend_vm_stack_extend()
228 stack->top = EG(vm_stack_top); in zend_vm_stack_extend()
229 EG(vm_stack) = stack = zend_vm_stack_new_page( in zend_vm_stack_extend()
230 EXPECTED(size < EG(vm_stack_page_size) - (ZEND_VM_STACK_HEADER_SLOTS * sizeof(zval))) ? in zend_vm_stack_extend()
231 EG(vm_stack_page_size) : ZEND_VM_STACK_PAGE_ALIGNED_SIZE(size, EG(vm_stack_page_size)), in zend_vm_stack_extend()
234 EG(vm_stack_top) = (void*)(((char*)ptr) + size); in zend_vm_stack_extend()
235 EG(vm_stack_end) = stack->end; in zend_vm_stack_extend()
273 if (EXPECTED(EG(exception) == NULL)) { in zval_undefined_cv()
277 return &EG(uninitialized_zval); in zval_undefined_cv()
301 ptr = &EG(uninitialized_zval); in _get_zval_cv_lookup()
578 return &EG(uninitialized_zval); in zend_assign_to_typed_property_reference()
591 if (UNEXPECTED(EG(exception) != NULL)) { in zend_wrong_assign_to_variable_reference()
592 return &EG(uninitialized_zval); in zend_wrong_assign_to_variable_reference()
786 zend_execute_data *ptr = EG(current_execute_data)->prev_execute_data; in zend_verify_arg_error()
790 if (EG(exception)) { in zend_verify_arg_error()
897 if (EG(exception)) { in zend_verify_property_type_error()
1003 return &EG(uninitialized_zval); in zend_assign_to_typed_prop()
1135 EG(current_execute_data) = call->prev_execute_data; in zend_verify_internal_arg_types()
1437 if (UNEXPECTED(EG(exception) != NULL)) { in zend_wrong_string_offset()
1456 end = EG(current_execute_data)->func->op_array.opcodes + in zend_wrong_string_offset()
1457 EG(current_execute_data)->func->op_array.last; in zend_wrong_string_offset()
1565 if (UNEXPECTED(EG(exception) != NULL)) { in zend_assign_to_string_offset()
1825 if (UNEXPECTED(EG(exception))) { in zend_post_incdec_overloaded_property()
1862 if (UNEXPECTED(EG(exception))) { in zend_pre_incdec_overloaded_property()
1902 if (UNEXPECTED(EG(exception))) { in zend_assign_op_overloaded_property()
1959 ht = &EG(symbol_table); in zend_get_target_symbol_table()
1993 if (EG(exception)) { in zend_undefined_offset_write()
2012 if (EG(exception)) { in zend_undefined_index_write()
2099 if (EG(exception)) { in slow_index_convert()
2145 retval = &EG(uninitialized_zval); in zend_fetch_dimension_address_inner()
2153 retval = zend_hash_index_add_new(ht, hval, &EG(uninitialized_zval)); in zend_fetch_dimension_address_inner()
2176 retval = &EG(uninitialized_zval); in zend_fetch_dimension_address_inner()
2196 retval = &EG(uninitialized_zval); in zend_fetch_dimension_address_inner()
2205 retval = zend_hash_add_new(ht, offset_key, &EG(uninitialized_zval)); in zend_fetch_dimension_address_inner()
2209 retval = zend_hash_add_new(ht, offset_key, &EG(uninitialized_zval)); in zend_fetch_dimension_address_inner()
2228 NULL : &EG(uninitialized_zval); in zend_fetch_dimension_address_inner()
2263 retval = zend_hash_next_index_insert(Z_ARRVAL_P(container), &EG(uninitialized_zval)); in zend_fetch_dimension_address()
2315 if (UNEXPECTED(retval == &EG(uninitialized_zval))) { in zend_fetch_dimension_address()
2894 if (UNEXPECTED(EG(exception))) { in zend_fetch_property_address()
2938 variable_ptr = &EG(uninitialized_zval); in zend_assign_to_property_reference()
2942 variable_ptr = &EG(uninitialized_zval); in zend_assign_to_property_reference()
2944 variable_ptr = &EG(uninitialized_zval); in zend_assign_to_property_reference()
3418 zend_hash_apply(&EG(symbol_table), zend_check_symbol); \
3419 if (&EG(symbol_table)!=EX(symbol_table)) { \
3460 if (EG(symtable_cache_ptr) >= EG(symtable_cache_limit)) { in zend_clean_and_cache_symbol_table()
3463 *(EG(symtable_cache_ptr)++) = symbol_table; in zend_clean_and_cache_symbol_table()
3495 if (UNEXPECTED(EG(vm_interrupt))) { \
3501 if (UNEXPECTED(EG(vm_interrupt))) { \
3628 EG(current_execute_data) = execute_data; in i_init_func_execute_data()
3651 zval *zv = zend_hash_find(EG(function_table), name); in zend_fetch_function()
3666 zval *zv = zend_hash_str_find(EG(function_table), name, len); in zend_fetch_function_str()
3708 EG(current_execute_data) = execute_data; in i_init_code_execute_data()
3726 EX(prev_execute_data) = EG(current_execute_data); in zend_init_func_execute_data()
3744 EX(prev_execute_data) = EG(current_execute_data); in zend_init_code_execute_data()
3762 int used_stack = (EG(vm_stack_top) - (zval*)call) + additional_args; in zend_vm_stack_copy_call_frame()
3781 EG(vm_stack)->prev->top = (zval*)call; in zend_vm_stack_copy_call_frame()
3784 if (UNEXPECTED(EG(vm_stack)->prev->top == ZEND_VM_STACK_ELEMENTS(EG(vm_stack)->prev))) { in zend_vm_stack_copy_call_frame()
3785 zend_vm_stack r = EG(vm_stack)->prev; in zend_vm_stack_copy_call_frame()
3787 EG(vm_stack)->prev = r->prev; in zend_vm_stack_copy_call_frame()
3797 if (EXPECTED((uint32_t)(EG(vm_stack_end) - EG(vm_stack_top)) > additional_args)) { in zend_vm_stack_extend_call_frame()
3798 EG(vm_stack_top) += additional_args; in zend_vm_stack_extend_call_frame()
3999 if (!EG(error_reporting) && Z_LVAL_P(var) != 0) { in cleanup_live_vars()
4000 EG(error_reporting) = Z_LVAL_P(var); in cleanup_live_vars()
4062 if (EXPECTED(!EG(exception))) { in zend_init_dynamic_call_string()
4075 if (UNEXPECTED(EG(exception) != NULL)) { in zend_init_dynamic_call_string()
4089 if (UNEXPECTED((func = zend_hash_find(EG(function_table), lcname)) == NULL)) { in zend_init_dynamic_call_string()
4192 if (EXPECTED(!EG(exception))) { in zend_init_dynamic_call_array()
4199 if (UNEXPECTED(EG(exception) != NULL)) { in zend_init_dynamic_call_array()
4209 if (EXPECTED(!EG(exception))) { in zend_init_dynamic_call_array()
4263 if (zend_hash_exists(&EG(included_files), resolved_path)) { in zend_include_or_eval()
4266 } else if (UNEXPECTED(EG(exception))) { in zend_include_or_eval()
4284 if (zend_hash_add_empty_element(&EG(included_files), file_handle.opened_path)) { in zend_include_or_eval()
4355 EG(current_execute_data) = call; in zend_do_fcall_overloaded()
4357 EG(current_execute_data) = call->prev_execute_data; in zend_do_fcall_overloaded()
4376 if (UNEXPECTED(!iter) || UNEXPECTED(EG(exception))) { in zend_fe_reset_iterator()
4380 if (!EG(exception)) { in zend_fe_reset_iterator()
4390 if (UNEXPECTED(EG(exception) != NULL)) { in zend_fe_reset_iterator()
4399 if (UNEXPECTED(EG(exception) != NULL)) { in zend_fe_reset_iterator()
4420 zv = zend_hash_find_ex(EG(zend_constants), Z_STR_P(key), 1); in _zend_quick_get_constant()
4425 zv = zend_hash_find_ex(EG(zend_constants), Z_STR_P(key), 1); in _zend_quick_get_constant()
4431 zv = zend_hash_find_ex(EG(zend_constants), Z_STR_P(key), 1); in _zend_quick_get_constant()
4436 zv = zend_hash_find_ex(EG(zend_constants), Z_STR_P(key), 1); in _zend_quick_get_constant()
4534 zend_execute_data *call = (zend_execute_data*)EG(vm_stack_top); in _zend_vm_stack_push_call_frame_ex()
4538 if (UNEXPECTED(used_stack > (size_t)(((char*)EG(vm_stack_end)) - (char*)call))) { in _zend_vm_stack_push_call_frame_ex()
4545 EG(vm_stack_top) = (zval*)((char*)call + used_stack); in _zend_vm_stack_push_call_frame_ex()
4574 ZEND_ASSERT(!EG(exception)); \
4598 if (check_exception && UNEXPECTED(EG(exception))) { \
4624 if ((_check) && UNEXPECTED(EG(exception))) { \
4645 if ((_check) && UNEXPECTED(EG(exception))) { \
4656 if ((_check) && UNEXPECTED(EG(exception))) { \