Lines Matching refs:current_execute_data
1022 !EG(current_execute_data) && in zend_get_file_handle_timestamp()
1334 if (EXPECTED(EG(current_execute_data)) && in accel_make_persistent_key()
1924 if (!EG(current_execute_data) || !EG(current_execute_data)->opline || in file_cache_compile_file()
1925 !EG(current_execute_data)->func || in file_cache_compile_file()
1926 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in file_cache_compile_file()
1927 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in file_cache_compile_file()
1928 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in file_cache_compile_file()
1929 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in file_cache_compile_file()
2019 ((!EG(current_execute_data) && in persistent_compile_file()
2022 (EG(current_execute_data) && in persistent_compile_file()
2023 EG(current_execute_data)->func && in persistent_compile_file()
2024 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_compile_file()
2025 ZCG(cache_opline) == EG(current_execute_data)->opline))) { in persistent_compile_file()
2206 if (!EG(current_execute_data) || in persistent_compile_file()
2207 !EG(current_execute_data)->func || in persistent_compile_file()
2208 !ZEND_USER_CODE(EG(current_execute_data)->func->common.type) || in persistent_compile_file()
2209 !EG(current_execute_data)->opline || in persistent_compile_file()
2210 EG(current_execute_data)->opline->opcode != ZEND_INCLUDE_OR_EVAL || in persistent_compile_file()
2211 (EG(current_execute_data)->opline->extended_value != ZEND_INCLUDE_ONCE && in persistent_compile_file()
2212 EG(current_execute_data)->opline->extended_value != ZEND_REQUIRE_ONCE)) { in persistent_compile_file()
2503 if ((!EG(current_execute_data) && in persistent_stream_open_function()
2506 (EG(current_execute_data) && in persistent_stream_open_function()
2507 EG(current_execute_data)->func && in persistent_stream_open_function()
2508 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_stream_open_function()
2509 ZCG(cache_opline) == EG(current_execute_data)->opline)) { in persistent_stream_open_function()
2528 if ((!EG(current_execute_data)) || in persistent_zend_resolve_path()
2529 (EG(current_execute_data) && in persistent_zend_resolve_path()
2530 EG(current_execute_data)->func && in persistent_zend_resolve_path()
2531 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in persistent_zend_resolve_path()
2532 EG(current_execute_data)->opline->opcode == ZEND_INCLUDE_OR_EVAL && in persistent_zend_resolve_path()
2533 (EG(current_execute_data)->opline->extended_value == ZEND_INCLUDE_ONCE || in persistent_zend_resolve_path()
2534 EG(current_execute_data)->opline->extended_value == ZEND_REQUIRE_ONCE))) { in persistent_zend_resolve_path()
2548 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
2581 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
4440 zend_execute_data *orig_execute_data = EG(current_execute_data);
4446 EG(current_execute_data) = &fake_execute_data;
4450 EG(current_execute_data) = orig_execute_data;