Lines Matching refs:EG

595 	for (idx = 0; idx < EG(zend_constants)->nNumUsed; idx++) {  in accel_use_shm_interned_strings()
596 p = EG(zend_constants)->arData + idx; in accel_use_shm_interned_strings()
729 er = EG(error_reporting); in zend_get_stream_timestamp()
730 EG(error_reporting) = 0; in zend_get_stream_timestamp()
736 EG(error_reporting) = er; in zend_get_stream_timestamp()
799 !EG(current_execute_data) && in zend_get_file_handle_timestamp()
863 er = EG(error_reporting); in zend_get_file_handle_timestamp()
864 EG(error_reporting) = 0; in zend_get_file_handle_timestamp()
870 EG(error_reporting) = er; in zend_get_file_handle_timestamp()
1106 if (EXPECTED(EG(current_execute_data)) && in accel_make_persistent_key()
1408 if (zend_hash_exists(&EG(symbol_table), jit_auto_globals_str[i])) { in zend_accel_get_auto_globals()
1418 if (zend_hash_exists(&EG(symbol_table), jit_auto_globals_str[3])) { in zend_accel_get_auto_globals_no_jit()
1524 ZVAL_COPY_VALUE(&orig_user_error_handler, &EG(user_error_handler)); in opcache_compile_file()
1528 EG(class_table) = CG(class_table) = &new_persistent_script->class_table; in opcache_compile_file()
1529 ZVAL_UNDEF(&EG(user_error_handler)); in opcache_compile_file()
1548 EG(class_table) = CG(class_table) = orig_class_table; in opcache_compile_file()
1549 EG(user_error_handler) = orig_user_error_handler; in opcache_compile_file()
1628 if (!EG(current_execute_data) || !EG(current_execute_data)->opline || in file_cache_compile_file()
1629 !EG(current_execute_data)->func || in file_cache_compile_file()
1630 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in file_cache_compile_file()
1631 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in file_cache_compile_file()
1632 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in file_cache_compile_file()
1633 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in file_cache_compile_file()
1634 if (zend_hash_add_empty_element(&EG(included_files), persistent_script->full_path) != NULL) { in file_cache_compile_file()
1698 ((!EG(current_execute_data) && in persistent_compile_file()
1701 (EG(current_execute_data) && in persistent_compile_file()
1702 EG(current_execute_data)->func && in persistent_compile_file()
1703 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_compile_file()
1704 ZCG(cache_opline) == EG(current_execute_data)->opline))) { in persistent_compile_file()
1851 uint32_t old_const_num = zend_hash_next_free_element(EG(zend_constants)); in persistent_compile_file()
1881 uint32_t new_const_num = zend_hash_next_free_element(EG(zend_constants)); in persistent_compile_file()
1884 zend_hash_index_del(EG(zend_constants), new_const_num); in persistent_compile_file()
1903 if (!EG(current_execute_data) || !EG(current_execute_data)->opline || in persistent_compile_file()
1904 !EG(current_execute_data)->func || in persistent_compile_file()
1905 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in persistent_compile_file()
1906 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in persistent_compile_file()
1907 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in persistent_compile_file()
1908 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in persistent_compile_file()
1909 if (zend_hash_add_empty_element(&EG(included_files), persistent_script->full_path) != NULL) { in persistent_compile_file()
1944 if ((!EG(current_execute_data) && in persistent_stream_open_function()
1947 (EG(current_execute_data) && in persistent_stream_open_function()
1948 EG(current_execute_data)->func && in persistent_stream_open_function()
1949 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_stream_open_function()
1950 ZCG(cache_opline) == EG(current_execute_data)->opline)) { in persistent_stream_open_function()
1973 if ((!EG(current_execute_data) && in persistent_zend_resolve_path()
1975 (EG(current_execute_data) && in persistent_zend_resolve_path()
1976 EG(current_execute_data)->func && in persistent_zend_resolve_path()
1977 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_zend_resolve_path()
1978 EG(current_execute_data)->opline->opcode == ZEND_INCLUDE_OR_EVAL && in persistent_zend_resolve_path()
1979 (EG(current_execute_data)->opline->extended_value == ZEND_INCLUDE_ONCE || in persistent_zend_resolve_path()
1980 EG(current_execute_data)->opline->extended_value == ZEND_REQUIRE_ONCE))) { in persistent_zend_resolve_path()
1995 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
2026 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
2212 if (Z_ARR_P(zvalue) != &EG(symbol_table)) { in accel_fast_zval_dtor()
2271 if (EG(full_tables_cleanup)) { in zend_accel_fast_shutdown()
2275 if (EG(objects_store).top > 1 || zend_hash_num_elements(&EG(regular_list)) > 0) { in zend_accel_fast_shutdown()
2278 ZEND_HASH_REVERSE_FOREACH(&EG(symbol_table), 0) { in zend_accel_fast_shutdown()
2282 zend_accel_fast_del_bucket(&EG(symbol_table), HT_IDX_TO_HASH(_idx-1), _p); in zend_accel_fast_shutdown()
2285 zend_hash_init(&EG(symbol_table), 8, NULL, NULL, 0); in zend_accel_fast_shutdown()
2287 ZEND_HASH_REVERSE_FOREACH(EG(function_table), 0) { in zend_accel_fast_shutdown()
2300 zend_accel_fast_del_bucket(EG(function_table), HT_IDX_TO_HASH(_idx-1), _p); in zend_accel_fast_shutdown()
2304 ZEND_HASH_REVERSE_FOREACH(EG(class_table), 0) { in zend_accel_fast_shutdown()
2338 zend_accel_fast_del_bucket(EG(class_table), HT_IDX_TO_HASH(_idx-1), _p); in zend_accel_fast_shutdown()
2344 zend_hash_init(&EG(symbol_table), 8, NULL, NULL, 0); in zend_accel_fast_shutdown()
2346 ZEND_HASH_REVERSE_FOREACH(EG(function_table), 0) { in zend_accel_fast_shutdown()
2352 zend_accel_fast_del_bucket(EG(function_table), HT_IDX_TO_HASH(_idx-1), _p); in zend_accel_fast_shutdown()
2356 ZEND_HASH_REVERSE_FOREACH(EG(class_table), 0) { in zend_accel_fast_shutdown()
2362 zend_accel_fast_del_bucket(EG(class_table), HT_IDX_TO_HASH(_idx-1), _p); in zend_accel_fast_shutdown()
2367 ZEND_HASH_REVERSE_FOREACH(EG(zend_constants), 0) { in zend_accel_fast_shutdown()
2373 zend_accel_fast_del_bucket(EG(zend_constants), HT_IDX_TO_HASH(_idx-1), _p); in zend_accel_fast_shutdown()
2376 EG(function_table)->nNumUsed = EG(function_table)->nNumOfElements; in zend_accel_fast_shutdown()
2377 EG(class_table)->nNumUsed = EG(class_table)->nNumOfElements; in zend_accel_fast_shutdown()
2378 EG(zend_constants)->nNumUsed = EG(zend_constants)->nNumOfElements; in zend_accel_fast_shutdown()
2866 …if ((ini_entry = zend_hash_str_find_ptr(EG(ini_directives), "include_path", sizeof("include_path")…
2915 zend_hash_clean(EG(zend_constants));
2936 …if ((ini_entry = zend_hash_str_find_ptr(EG(ini_directives), "include_path", sizeof("include_path")…