Lines Matching refs:current_execute_data

955 	    !EG(current_execute_data) &&  in zend_get_file_handle_timestamp()
1263 if (EXPECTED(EG(current_execute_data)) && in accel_make_persistent_key()
1853 if (!EG(current_execute_data) || !EG(current_execute_data)->opline || in file_cache_compile_file()
1854 !EG(current_execute_data)->func || in file_cache_compile_file()
1855 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in file_cache_compile_file()
1856 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in file_cache_compile_file()
1857 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in file_cache_compile_file()
1858 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in file_cache_compile_file()
1952 ((!EG(current_execute_data) && in persistent_compile_file()
1955 (EG(current_execute_data) && in persistent_compile_file()
1956 EG(current_execute_data)->func && in persistent_compile_file()
1957 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_compile_file()
1958 ZCG(cache_opline) == EG(current_execute_data)->opline))) { in persistent_compile_file()
2174 if (!EG(current_execute_data) || !EG(current_execute_data)->opline || in persistent_compile_file()
2175 !EG(current_execute_data)->func || in persistent_compile_file()
2176 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in persistent_compile_file()
2177 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in persistent_compile_file()
2178 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in persistent_compile_file()
2179 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in persistent_compile_file()
2236 if ((!EG(current_execute_data) && in persistent_stream_open_function()
2239 (EG(current_execute_data) && in persistent_stream_open_function()
2240 EG(current_execute_data)->func && in persistent_stream_open_function()
2241 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_stream_open_function()
2242 ZCG(cache_opline) == EG(current_execute_data)->opline)) { in persistent_stream_open_function()
2262 if ((!EG(current_execute_data) && in persistent_zend_resolve_path()
2264 (EG(current_execute_data) && in persistent_zend_resolve_path()
2265 EG(current_execute_data)->func && in persistent_zend_resolve_path()
2266 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_zend_resolve_path()
2267 EG(current_execute_data)->opline->opcode == ZEND_INCLUDE_OR_EVAL && in persistent_zend_resolve_path()
2268 (EG(current_execute_data)->opline->extended_value == ZEND_INCLUDE_ONCE || in persistent_zend_resolve_path()
2269 EG(current_execute_data)->opline->extended_value == ZEND_REQUIRE_ONCE))) { in persistent_zend_resolve_path()
2284 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
2317 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
4300 old_execute_data = EG(current_execute_data); in preload_autoload()
4301 EG(current_execute_data) = NULL; in preload_autoload()
4318 EG(current_execute_data) = old_execute_data; in preload_autoload()
4533 zend_execute_data *orig_execute_data = EG(current_execute_data); in accel_preload()
4539 EG(current_execute_data) = &fake_execute_data; in accel_preload()
4543 EG(current_execute_data) = orig_execute_data; in accel_preload()