Lines Matching refs:EG

59 # define GLOBAL_CONSTANTS_TABLE		EG(zend_constants)
101 EG(error_reporting) = E_ALL; in ZEND_INI_MH()
103 EG(error_reporting) = atoi(ZSTR_VAL(new_value)); in ZEND_INI_MH()
168 EG(exception_string_param_max_len) = i; in ZEND_INI_MH()
558 memset(EG(exception_op), 0, sizeof(EG(exception_op))); in zend_init_exception_op()
559 EG(exception_op)[0].opcode = ZEND_HANDLE_EXCEPTION; in zend_init_exception_op()
560 ZEND_VM_SET_OPCODE_HANDLER(EG(exception_op)); in zend_init_exception_op()
561 EG(exception_op)[1].opcode = ZEND_HANDLE_EXCEPTION; in zend_init_exception_op()
562 ZEND_VM_SET_OPCODE_HANDLER(EG(exception_op)+1); in zend_init_exception_op()
563 EG(exception_op)[2].opcode = ZEND_HANDLE_EXCEPTION; in zend_init_exception_op()
564 ZEND_VM_SET_OPCODE_HANDLER(EG(exception_op)+2); in zend_init_exception_op()
570 memset(&EG(call_trampoline_op), 0, sizeof(EG(call_trampoline_op))); in zend_init_call_trampoline_op()
571 EG(call_trampoline_op).opcode = ZEND_CALL_TRAMPOLINE; in zend_init_call_trampoline_op()
572 ZEND_VM_SET_OPCODE_HANDLER(&EG(call_trampoline_op)); in zend_init_call_trampoline_op()
808 ZVAL_ARR(&globals, &EG(symbol_table)); in php_auto_globals_create_globals()
811 zend_hash_update(&EG(symbol_table), name, &globals); in php_auto_globals_create_globals()
938 zend_get_windows_version_info(&EG(windows_version_info)); in zend_startup()
957 EG(error_reporting) = E_ALL & ~E_NOTICE; in zend_startup()
1060 zend_destroy_rsrc_list(&EG(persistent_list)); in zend_post_startup()
1075 free(EG(zend_constants)); in zend_post_startup()
1076 EG(zend_constants) = NULL; in zend_post_startup()
1079 global_persistent_list = &EG(persistent_list); in zend_post_startup()
1093 zend_destroy_rsrc_list(&EG(persistent_list)); in zend_shutdown()
1150 if (EG(exception)) { in zenderror()
1163 if (!EG(bailout)) { in BEGIN_EXTERN_C()
1171 EG(current_execute_data) = NULL; in BEGIN_EXTERN_C()
1172 LONGJMP(*EG(bailout), FAILURE); in BEGIN_EXTERN_C()
1232 EG(current_execute_data) = NULL; in zend_deactivate()
1249 zend_destroy_rsrc_list(&EG(regular_list)); in zend_deactivate()
1316 if (EG(exception)) { in zend_error_impl()
1321 ex = EG(current_execute_data); in zend_error_impl()
1327 EG(opline_before_exception)) { in zend_error_impl()
1328 opline = EG(opline_before_exception); in zend_error_impl()
1330 zend_exception_error(EG(exception), E_WARNING); in zend_error_impl()
1331 EG(exception) = NULL; in zend_error_impl()
1341 if (Z_TYPE(EG(user_error_handler)) == IS_UNDEF in zend_error_impl()
1342 || !(EG(user_error_handler_error_reporting) & type) in zend_error_impl()
1343 || EG(error_handling) != EH_NORMAL) { in zend_error_impl()
1368 ZVAL_COPY_VALUE(&orig_user_error_handler, &EG(user_error_handler)); in zend_error_impl()
1369 ZVAL_UNDEF(&EG(user_error_handler)); in zend_error_impl()
1392 } else if (!EG(exception)) { in zend_error_impl()
1407 if (Z_TYPE(EG(user_error_handler)) == IS_UNDEF) { in zend_error_impl()
1408 ZVAL_COPY_VALUE(&EG(user_error_handler), &orig_user_error_handler); in zend_error_impl()
1417 if (!(EG(current_execute_data) && in zend_error_impl()
1418 EG(current_execute_data)->func && in zend_error_impl()
1419 ZEND_USER_CODE(EG(current_execute_data)->func->type) && in zend_error_impl()
1420 EG(current_execute_data)->opline->opcode == ZEND_INCLUDE_OR_EVAL && in zend_error_impl()
1421 EG(current_execute_data)->opline->extended_value == ZEND_EVAL)) { in zend_error_impl()
1422 EG(exit_status) = 255; in zend_error_impl()
1557 if (EG(exception) == (void*)(uintptr_t)-1) { in zend_throw_error()
1565 if (EG(current_execute_data) && !CG(in_compilation)) { in zend_throw_error()
1645 if (zend_is_unwind_exit(EG(exception))) { in zend_user_exception_handler()
1649 old_exception = EG(exception); in zend_user_exception_handler()
1650 EG(exception) = NULL; in zend_user_exception_handler()
1652 ZVAL_COPY_VALUE(&orig_user_exception_handler, &EG(user_exception_handler)); in zend_user_exception_handler()
1656 if (EG(exception)) { in zend_user_exception_handler()
1657 OBJ_RELEASE(EG(exception)); in zend_user_exception_handler()
1658 EG(exception) = NULL; in zend_user_exception_handler()
1662 EG(exception) = old_exception; in zend_user_exception_handler()
1690 zend_hash_add_empty_element(&EG(included_files), file_handle->opened_path); in zend_execute_scripts()
1696 if (UNEXPECTED(EG(exception))) { in zend_execute_scripts()
1697 if (Z_TYPE(EG(user_exception_handler)) != IS_UNDEF) { in zend_execute_scripts()
1700 if (EG(exception)) { in zend_execute_scripts()
1701 ret = zend_exception_error(EG(exception), E_ERROR); in zend_execute_scripts()