Lines Matching refs:current_execute_data

1024 	    !EG(current_execute_data) &&  in zend_get_file_handle_timestamp()
1338 if (EXPECTED(EG(current_execute_data)) && in accel_make_persistent_key()
1925 if (!EG(current_execute_data) || !EG(current_execute_data)->opline || in file_cache_compile_file()
1926 !EG(current_execute_data)->func || in file_cache_compile_file()
1927 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in file_cache_compile_file()
1928 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in file_cache_compile_file()
1929 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in file_cache_compile_file()
1930 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in file_cache_compile_file()
2020 ((!EG(current_execute_data) && in persistent_compile_file()
2023 (EG(current_execute_data) && in persistent_compile_file()
2024 EG(current_execute_data)->func && in persistent_compile_file()
2025 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_compile_file()
2026 ZCG(cache_opline) == EG(current_execute_data)->opline))) { in persistent_compile_file()
2221 if (!EG(current_execute_data) || in persistent_compile_file()
2222 !EG(current_execute_data)->func || in persistent_compile_file()
2223 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in persistent_compile_file()
2224 !EG(current_execute_data)->opline || in persistent_compile_file()
2225 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in persistent_compile_file()
2226 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in persistent_compile_file()
2227 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in persistent_compile_file()
2505 if ((!EG(current_execute_data) && in persistent_stream_open_function()
2508 (EG(current_execute_data) && in persistent_stream_open_function()
2509 EG(current_execute_data)->func && in persistent_stream_open_function()
2510 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_stream_open_function()
2511 ZCG(cache_opline) == EG(current_execute_data)->opline)) { in persistent_stream_open_function()
2530 if ((!EG(current_execute_data)) || in persistent_zend_resolve_path()
2531 (EG(current_execute_data) && in persistent_zend_resolve_path()
2532 EG(current_execute_data)->func && in persistent_zend_resolve_path()
2533 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_zend_resolve_path()
2534 EG(current_execute_data)->opline->opcode == ZEND_INCLUDE_OR_EVAL && in persistent_zend_resolve_path()
2535 (EG(current_execute_data)->opline->extended_value == ZEND_INCLUDE_ONCE || in persistent_zend_resolve_path()
2536 EG(current_execute_data)->opline->extended_value == ZEND_REQUIRE_ONCE))) { in persistent_zend_resolve_path()
2550 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
2583 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
4437 zend_execute_data *orig_execute_data = EG(current_execute_data);
4443 EG(current_execute_data) = &fake_execute_data;
4447 EG(current_execute_data) = orig_execute_data;