Lines Matching refs:current_execute_data

981 	    !EG(current_execute_data) &&  in zend_get_file_handle_timestamp()
1295 if (EXPECTED(EG(current_execute_data)) && in accel_make_persistent_key()
1903 if (!EG(current_execute_data) || !EG(current_execute_data)->opline || in file_cache_compile_file()
1904 !EG(current_execute_data)->func || in file_cache_compile_file()
1905 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in file_cache_compile_file()
1906 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in file_cache_compile_file()
1907 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in file_cache_compile_file()
1908 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in file_cache_compile_file()
2000 ((!EG(current_execute_data) && in persistent_compile_file()
2003 (EG(current_execute_data) && in persistent_compile_file()
2004 EG(current_execute_data)->func && in persistent_compile_file()
2005 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_compile_file()
2006 ZCG(cache_opline) == EG(current_execute_data)->opline))) { in persistent_compile_file()
2222 if (!EG(current_execute_data) || in persistent_compile_file()
2223 !EG(current_execute_data)->func || in persistent_compile_file()
2224 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in persistent_compile_file()
2225 !EG(current_execute_data)->opline || in persistent_compile_file()
2226 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in persistent_compile_file()
2227 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in persistent_compile_file()
2228 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in persistent_compile_file()
2506 if ((!EG(current_execute_data) && in persistent_stream_open_function()
2509 (EG(current_execute_data) && in persistent_stream_open_function()
2510 EG(current_execute_data)->func && in persistent_stream_open_function()
2511 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_stream_open_function()
2512 ZCG(cache_opline) == EG(current_execute_data)->opline)) { in persistent_stream_open_function()
2531 if ((!EG(current_execute_data)) || in persistent_zend_resolve_path()
2532 (EG(current_execute_data) && in persistent_zend_resolve_path()
2533 EG(current_execute_data)->func && in persistent_zend_resolve_path()
2534 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_zend_resolve_path()
2535 EG(current_execute_data)->opline->opcode == ZEND_INCLUDE_OR_EVAL && in persistent_zend_resolve_path()
2536 (EG(current_execute_data)->opline->extended_value == ZEND_INCLUDE_ONCE || in persistent_zend_resolve_path()
2537 EG(current_execute_data)->opline->extended_value == ZEND_REQUIRE_ONCE))) { in persistent_zend_resolve_path()
2551 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
2584 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
4469 zend_execute_data *orig_execute_data = EG(current_execute_data);
4475 EG(current_execute_data) = &fake_execute_data;
4479 EG(current_execute_data) = orig_execute_data;