Lines Matching refs:EG

188 	EG(vm_stack_page_size) = ZEND_VM_STACK_PAGE_SIZE;  in zend_vm_stack_init()
189 EG(vm_stack) = zend_vm_stack_new_page(ZEND_VM_STACK_PAGE_SIZE, NULL); in zend_vm_stack_init()
190 EG(vm_stack)->top++; in zend_vm_stack_init()
191 EG(vm_stack_top) = EG(vm_stack)->top; in zend_vm_stack_init()
192 EG(vm_stack_end) = EG(vm_stack)->end; in zend_vm_stack_init()
199 EG(vm_stack_page_size) = page_size; in zend_vm_stack_init_ex()
200 EG(vm_stack) = zend_vm_stack_new_page(page_size, NULL); in zend_vm_stack_init_ex()
201 EG(vm_stack_top) = EG(vm_stack)->top; in zend_vm_stack_init_ex()
202 EG(vm_stack_end) = EG(vm_stack)->end; in zend_vm_stack_init_ex()
207 zend_vm_stack stack = EG(vm_stack); in zend_vm_stack_destroy()
221 stack = EG(vm_stack); in zend_vm_stack_extend()
222 stack->top = EG(vm_stack_top); in zend_vm_stack_extend()
223 EG(vm_stack) = stack = zend_vm_stack_new_page( in zend_vm_stack_extend()
224 EXPECTED(size < EG(vm_stack_page_size) - (ZEND_VM_STACK_HEADER_SLOTS * sizeof(zval))) ? in zend_vm_stack_extend()
225 EG(vm_stack_page_size) : ZEND_VM_STACK_PAGE_ALIGNED_SIZE(size, EG(vm_stack_page_size)), in zend_vm_stack_extend()
228 EG(vm_stack_top) = (void*)(((char*)ptr) + size); in zend_vm_stack_extend()
229 EG(vm_stack_end) = stack->end; in zend_vm_stack_extend()
267 if (EXPECTED(EG(exception) == NULL)) { in zval_undefined_cv()
281 ptr = &EG(uninitialized_zval); in _get_zval_cv_lookup()
296 return &EG(uninitialized_zval); in _get_zval_cv_lookup_BP_VAR_R()
302 return &EG(uninitialized_zval); in _get_zval_cv_lookup_BP_VAR_UNSET()
627 if (UNEXPECTED(EG(exception) != NULL)) { in zend_wrong_assign_to_variable_reference()
791 zend_execute_data *ptr = EG(current_execute_data)->prev_execute_data; in zend_verify_arg_error()
976 EG(current_execute_data) = call->prev_execute_data; in zend_verify_internal_arg_types()
1221 if (UNEXPECTED(EG(exception) != NULL)) { in zend_wrong_string_offset()
1248 end = EG(current_execute_data)->func->op_array.opcodes + in zend_wrong_string_offset()
1249 EG(current_execute_data)->func->op_array.last; in zend_wrong_string_offset()
1447 if (UNEXPECTED(EG(exception))) { in zend_post_incdec_overloaded_property()
1490 if (UNEXPECTED(EG(exception))) { in zend_pre_incdec_overloaded_property()
1537 if (UNEXPECTED(EG(exception))) { in zend_assign_op_overloaded_property()
1599 ht = &EG(symbol_table); in zend_get_target_symbol_table()
1702 retval = &EG(uninitialized_zval); in zend_fetch_dimension_address_inner()
1706 retval = zend_hash_index_update(ht, hval, &EG(uninitialized_zval)); in zend_fetch_dimension_address_inner()
1709 retval = zend_hash_index_add_new(ht, hval, &EG(uninitialized_zval)); in zend_fetch_dimension_address_inner()
1732 retval = &EG(uninitialized_zval); in zend_fetch_dimension_address_inner()
1750 retval = &EG(uninitialized_zval); in zend_fetch_dimension_address_inner()
1754 retval = zend_hash_update(ht, offset_key, &EG(uninitialized_zval)); in zend_fetch_dimension_address_inner()
1757 retval = zend_hash_add_new(ht, offset_key, &EG(uninitialized_zval)); in zend_fetch_dimension_address_inner()
1788 NULL : &EG(uninitialized_zval); in zend_fetch_dimension_address_inner()
1823 retval = zend_hash_next_index_insert(Z_ARRVAL_P(container), &EG(uninitialized_zval)); in zend_fetch_dimension_address()
1855 dim = &EG(uninitialized_zval); in zend_fetch_dimension_address()
1866 if (UNEXPECTED(retval == &EG(uninitialized_zval))) { in zend_fetch_dimension_address()
2015 dim = &EG(uninitialized_zval); in zend_fetch_dimension_address_read()
2110 offset = &EG(uninitialized_zval); in zend_isset_dim_slow()
2155 offset = &EG(uninitialized_zval); in zend_isempty_dim_slow()
2306 zend_hash_apply(&EG(symbol_table), zend_check_symbol); \
2307 if (&EG(symbol_table)!=EX(symbol_table)) { \
2344 if (EG(symtable_cache_ptr) >= EG(symtable_cache_limit)) { in zend_clean_and_cache_symbol_table()
2350 *(++EG(symtable_cache_ptr)) = symbol_table; in zend_clean_and_cache_symbol_table()
2382 if (UNEXPECTED(EG(vm_interrupt))) { \
2388 if (UNEXPECTED(EG(vm_interrupt))) { \
2506 EG(current_execute_data) = execute_data; in i_init_func_execute_data()
2551 zval *zv = zend_hash_find(EG(function_table), name); in zend_fetch_function()
2566 zval *zv = zend_hash_str_find(EG(function_table), name, len); in zend_fetch_function_str()
2595 EG(current_execute_data) = execute_data; in i_init_code_execute_data()
2609 EX(prev_execute_data) = EG(current_execute_data); in zend_init_func_execute_data()
2625 EX(prev_execute_data) = EG(current_execute_data); in zend_init_code_execute_data()
2656 int used_stack = (EG(vm_stack_top) - (zval*)call) + additional_args; in zend_vm_stack_copy_call_frame()
2675 EG(vm_stack)->prev->top = (zval*)call; in zend_vm_stack_copy_call_frame()
2678 if (UNEXPECTED(EG(vm_stack)->prev->top == ZEND_VM_STACK_ELEMENTS(EG(vm_stack)->prev))) { in zend_vm_stack_copy_call_frame()
2679 zend_vm_stack r = EG(vm_stack)->prev; in zend_vm_stack_copy_call_frame()
2681 EG(vm_stack)->prev = r->prev; in zend_vm_stack_copy_call_frame()
2691 if (EXPECTED((uint32_t)(EG(vm_stack_end) - EG(vm_stack_top)) > additional_args)) { in zend_vm_stack_extend_call_frame()
2692 EG(vm_stack_top) += additional_args; in zend_vm_stack_extend_call_frame()
2893 if (!EG(error_reporting) && Z_LVAL_P(var) != 0) { in cleanup_live_vars()
2894 EG(error_reporting) = Z_LVAL_P(var); in cleanup_live_vars()
2954 if (EXPECTED(!EG(exception))) { in zend_init_dynamic_call_string()
2967 if (UNEXPECTED(EG(exception) != NULL)) { in zend_init_dynamic_call_string()
2981 if (UNEXPECTED((func = zend_hash_find(EG(function_table), lcname)) == NULL)) { in zend_init_dynamic_call_string()
3078 if (EXPECTED(!EG(exception))) { in zend_init_dynamic_call_array()
3085 if (UNEXPECTED(EG(exception) != NULL)) { in zend_init_dynamic_call_array()
3095 if (EXPECTED(!EG(exception))) { in zend_init_dynamic_call_array()
3143 if (zend_hash_exists(&EG(included_files), resolved_path)) { in zend_include_or_eval()
3162 if (zend_hash_add_empty_element(&EG(included_files), file_handle.opened_path)) { in zend_include_or_eval()
3233 EG(current_execute_data) = call; in zend_do_fcall_overloaded()
3235 EG(current_execute_data) = call->prev_execute_data; in zend_do_fcall_overloaded()
3254 if (UNEXPECTED(!iter) || UNEXPECTED(EG(exception))) { in zend_fe_reset_iterator()
3258 if (!EG(exception)) { in zend_fe_reset_iterator()
3268 if (UNEXPECTED(EG(exception) != NULL)) { in zend_fe_reset_iterator()
3277 if (UNEXPECTED(EG(exception) != NULL)) { in zend_fe_reset_iterator()
3298 zv = zend_hash_find_ex(EG(zend_constants), Z_STR_P(key), 1); in _zend_quick_get_constant()
3303 zv = zend_hash_find_ex(EG(zend_constants), Z_STR_P(key), 1); in _zend_quick_get_constant()
3309 zv = zend_hash_find_ex(EG(zend_constants), Z_STR_P(key), 1); in _zend_quick_get_constant()
3314 zv = zend_hash_find_ex(EG(zend_constants), Z_STR_P(key), 1); in _zend_quick_get_constant()
3442 if (check_exception && UNEXPECTED(EG(exception))) { \
3476 if ((_check) && UNEXPECTED(EG(exception))) { \
3488 if ((_check) && UNEXPECTED(EG(exception))) { \
3500 if ((_check) && UNEXPECTED(EG(exception))) { \