Lines Matching refs:EG
652 ZEND_HASH_FOREACH_BUCKET(EG(zend_constants), p) { in accel_copy_permanent_strings()
686 ZEND_HASH_FOREACH_BUCKET(EG(ini_directives), p) { in accel_copy_permanent_strings()
885 er = EG(error_reporting); in zend_get_stream_timestamp()
886 EG(error_reporting) = 0; in zend_get_stream_timestamp()
892 EG(error_reporting) = er; in zend_get_stream_timestamp()
955 !EG(current_execute_data) && in zend_get_file_handle_timestamp()
1019 er = EG(error_reporting); in zend_get_file_handle_timestamp()
1020 EG(error_reporting) = 0; in zend_get_file_handle_timestamp()
1026 EG(error_reporting) = er; in zend_get_file_handle_timestamp()
1268 if (EXPECTED(EG(current_execute_data)) && in accel_make_persistent_key()
1642 if (zend_hash_exists(&EG(symbol_table), jit_auto_globals_str[i])) { in zend_accel_get_auto_globals()
1652 if (zend_hash_exists(&EG(symbol_table), jit_auto_globals_str[3])) { in zend_accel_get_auto_globals_no_jit()
1757 ZVAL_COPY_VALUE(&orig_user_error_handler, &EG(user_error_handler)); in opcache_compile_file()
1761 EG(class_table) = CG(class_table) = &new_persistent_script->script.class_table; in opcache_compile_file()
1762 ZVAL_UNDEF(&EG(user_error_handler)); in opcache_compile_file()
1786 EG(class_table) = CG(class_table) = orig_class_table; in opcache_compile_file()
1787 EG(user_error_handler) = orig_user_error_handler; in opcache_compile_file()
1872 if (!EG(current_execute_data) || !EG(current_execute_data)->opline || in file_cache_compile_file()
1873 !EG(current_execute_data)->func || in file_cache_compile_file()
1874 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in file_cache_compile_file()
1875 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in file_cache_compile_file()
1876 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in file_cache_compile_file()
1877 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in file_cache_compile_file()
1878 …if (zend_hash_add_empty_element(&EG(included_files), persistent_script->script.filename) != NULL) { in file_cache_compile_file()
1978 ((!EG(current_execute_data) && in persistent_compile_file()
1981 (EG(current_execute_data) && in persistent_compile_file()
1982 EG(current_execute_data)->func && in persistent_compile_file()
1983 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_compile_file()
1984 ZCG(cache_opline) == EG(current_execute_data)->opline))) { in persistent_compile_file()
2138 uint32_t old_const_num = zend_hash_next_free_element(EG(zend_constants)); in persistent_compile_file()
2180 uint32_t new_const_num = zend_hash_next_free_element(EG(zend_constants)); in persistent_compile_file()
2183 zend_hash_index_del(EG(zend_constants), new_const_num); in persistent_compile_file()
2202 if (!EG(current_execute_data) || !EG(current_execute_data)->opline || in persistent_compile_file()
2203 !EG(current_execute_data)->func || in persistent_compile_file()
2204 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in persistent_compile_file()
2205 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in persistent_compile_file()
2206 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in persistent_compile_file()
2207 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in persistent_compile_file()
2208 …if (zend_hash_add_empty_element(&EG(included_files), persistent_script->script.filename) != NULL) { in persistent_compile_file()
2244 if ((!EG(current_execute_data) && in persistent_stream_open_function()
2247 (EG(current_execute_data) && in persistent_stream_open_function()
2248 EG(current_execute_data)->func && in persistent_stream_open_function()
2249 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_stream_open_function()
2250 ZCG(cache_opline) == EG(current_execute_data)->opline)) { in persistent_stream_open_function()
2275 if ((!EG(current_execute_data) && in persistent_zend_resolve_path()
2277 (EG(current_execute_data) && in persistent_zend_resolve_path()
2278 EG(current_execute_data)->func && in persistent_zend_resolve_path()
2279 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_zend_resolve_path()
2280 EG(current_execute_data)->opline->opcode == ZEND_INCLUDE_OR_EVAL && in persistent_zend_resolve_path()
2281 (EG(current_execute_data)->opline->extended_value == ZEND_INCLUDE_ONCE || in persistent_zend_resolve_path()
2282 EG(current_execute_data)->opline->extended_value == ZEND_REQUIRE_ONCE))) { in persistent_zend_resolve_path()
2297 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
2330 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
3010 …if ((ini_entry = zend_hash_str_find_ptr(EG(ini_directives), "include_path", sizeof("include_path")…
3071 …if ((ini_entry = zend_hash_str_find_ptr(EG(ini_directives), "include_path", sizeof("include_path")…