Lines Matching refs:EG
596 ZEND_HASH_FOREACH_BUCKET(EG(zend_constants), p) { in accel_copy_permanent_strings()
789 er = EG(error_reporting); in zend_get_stream_timestamp()
790 EG(error_reporting) = 0; in zend_get_stream_timestamp()
796 EG(error_reporting) = er; in zend_get_stream_timestamp()
859 !EG(current_execute_data) && in zend_get_file_handle_timestamp()
923 er = EG(error_reporting); in zend_get_file_handle_timestamp()
924 EG(error_reporting) = 0; in zend_get_file_handle_timestamp()
930 EG(error_reporting) = er; in zend_get_file_handle_timestamp()
1174 if (EXPECTED(EG(current_execute_data)) && in accel_make_persistent_key()
1505 if (zend_hash_exists(&EG(symbol_table), jit_auto_globals_str[i])) { in zend_accel_get_auto_globals()
1515 if (zend_hash_exists(&EG(symbol_table), jit_auto_globals_str[3])) { in zend_accel_get_auto_globals_no_jit()
1620 ZVAL_COPY_VALUE(&orig_user_error_handler, &EG(user_error_handler)); in opcache_compile_file()
1624 EG(class_table) = CG(class_table) = &new_persistent_script->script.class_table; in opcache_compile_file()
1625 ZVAL_UNDEF(&EG(user_error_handler)); in opcache_compile_file()
1644 EG(class_table) = CG(class_table) = orig_class_table; in opcache_compile_file()
1645 EG(user_error_handler) = orig_user_error_handler; in opcache_compile_file()
1726 if (!EG(current_execute_data) || !EG(current_execute_data)->opline || in file_cache_compile_file()
1727 !EG(current_execute_data)->func || in file_cache_compile_file()
1728 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in file_cache_compile_file()
1729 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in file_cache_compile_file()
1730 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in file_cache_compile_file()
1731 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in file_cache_compile_file()
1732 …if (zend_hash_add_empty_element(&EG(included_files), persistent_script->script.filename) != NULL) { in file_cache_compile_file()
1832 ((!EG(current_execute_data) && in persistent_compile_file()
1835 (EG(current_execute_data) && in persistent_compile_file()
1836 EG(current_execute_data)->func && in persistent_compile_file()
1837 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_compile_file()
1838 ZCG(cache_opline) == EG(current_execute_data)->opline))) { in persistent_compile_file()
1992 uint32_t old_const_num = zend_hash_next_free_element(EG(zend_constants)); in persistent_compile_file()
2034 uint32_t new_const_num = zend_hash_next_free_element(EG(zend_constants)); in persistent_compile_file()
2037 zend_hash_index_del(EG(zend_constants), new_const_num); in persistent_compile_file()
2056 if (!EG(current_execute_data) || !EG(current_execute_data)->opline || in persistent_compile_file()
2057 !EG(current_execute_data)->func || in persistent_compile_file()
2058 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in persistent_compile_file()
2059 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in persistent_compile_file()
2060 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in persistent_compile_file()
2061 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in persistent_compile_file()
2062 …if (zend_hash_add_empty_element(&EG(included_files), persistent_script->script.filename) != NULL) { in persistent_compile_file()
2098 if ((!EG(current_execute_data) && in persistent_stream_open_function()
2101 (EG(current_execute_data) && in persistent_stream_open_function()
2102 EG(current_execute_data)->func && in persistent_stream_open_function()
2103 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_stream_open_function()
2104 ZCG(cache_opline) == EG(current_execute_data)->opline)) { in persistent_stream_open_function()
2129 if ((!EG(current_execute_data) && in persistent_zend_resolve_path()
2131 (EG(current_execute_data) && in persistent_zend_resolve_path()
2132 EG(current_execute_data)->func && in persistent_zend_resolve_path()
2133 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_zend_resolve_path()
2134 EG(current_execute_data)->opline->opcode == ZEND_INCLUDE_OR_EVAL && in persistent_zend_resolve_path()
2135 (EG(current_execute_data)->opline->extended_value == ZEND_INCLUDE_ONCE || in persistent_zend_resolve_path()
2136 EG(current_execute_data)->opline->extended_value == ZEND_REQUIRE_ONCE))) { in persistent_zend_resolve_path()
2151 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
2184 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
2816 …if ((ini_entry = zend_hash_str_find_ptr(EG(ini_directives), "include_path", sizeof("include_path")…
2881 …if ((ini_entry = zend_hash_str_find_ptr(EG(ini_directives), "include_path", sizeof("include_path")…