Lines Matching refs:current_execute_data

1018 	    !EG(current_execute_data) &&  in zend_get_file_handle_timestamp()
1330 if (EXPECTED(EG(current_execute_data)) && in accel_make_persistent_key()
1913 if (!EG(current_execute_data) || !EG(current_execute_data)->opline || in file_cache_compile_file()
1914 !EG(current_execute_data)->func || in file_cache_compile_file()
1915 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in file_cache_compile_file()
1916 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in file_cache_compile_file()
1917 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in file_cache_compile_file()
1918 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in file_cache_compile_file()
2008 ((!EG(current_execute_data) && in persistent_compile_file()
2011 (EG(current_execute_data) && in persistent_compile_file()
2012 EG(current_execute_data)->func && in persistent_compile_file()
2013 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_compile_file()
2014 ZCG(cache_opline) == EG(current_execute_data)->opline))) { in persistent_compile_file()
2195 if (!EG(current_execute_data) || in persistent_compile_file()
2196 !EG(current_execute_data)->func || in persistent_compile_file()
2197 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in persistent_compile_file()
2198 !EG(current_execute_data)->opline || in persistent_compile_file()
2199 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in persistent_compile_file()
2200 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in persistent_compile_file()
2201 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in persistent_compile_file()
2479 if ((!EG(current_execute_data) && in persistent_stream_open_function()
2482 (EG(current_execute_data) && in persistent_stream_open_function()
2483 EG(current_execute_data)->func && in persistent_stream_open_function()
2484 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_stream_open_function()
2485 ZCG(cache_opline) == EG(current_execute_data)->opline)) { in persistent_stream_open_function()
2504 if ((!EG(current_execute_data)) || in persistent_zend_resolve_path()
2505 (EG(current_execute_data) && in persistent_zend_resolve_path()
2506 EG(current_execute_data)->func && in persistent_zend_resolve_path()
2507 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_zend_resolve_path()
2508 EG(current_execute_data)->opline->opcode == ZEND_INCLUDE_OR_EVAL && in persistent_zend_resolve_path()
2509 (EG(current_execute_data)->opline->extended_value == ZEND_INCLUDE_ONCE || in persistent_zend_resolve_path()
2510 EG(current_execute_data)->opline->extended_value == ZEND_REQUIRE_ONCE))) { in persistent_zend_resolve_path()
2524 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
2557 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
4411 zend_execute_data *orig_execute_data = EG(current_execute_data);
4417 EG(current_execute_data) = &fake_execute_data;
4421 EG(current_execute_data) = orig_execute_data;