Skip to content

Commit 4a85f6a

Browse files
committedNov 2, 2023
8317132: Prepare HotSpot for permissive-
Reviewed-by: dholmes, jvernee, djelinski
1 parent 5207443 commit 4a85f6a

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed
 

‎make/autoconf/flags-cflags.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ AC_DEFUN([FLAGS_SETUP_CFLAGS_HELPER],
562562
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then
563563
# The -utf-8 option sets source and execution character sets to UTF-8 to enable correct
564564
# compilation of all source files regardless of the active code page on Windows.
565-
TOOLCHAIN_CFLAGS_JVM="-nologo -MD -Zc:preprocessor -Zc:strictStrings -Zc:inline -utf-8 -MP"
565+
TOOLCHAIN_CFLAGS_JVM="-nologo -MD -Zc:preprocessor -Zc:strictStrings -Zc:inline -permissive- -utf-8 -MP"
566566
TOOLCHAIN_CFLAGS_JDK="-nologo -MD -Zc:preprocessor -Zc:strictStrings -Zc:inline -utf-8 -Zc:wchar_t-"
567567
fi
568568

‎src/hotspot/os/windows/os_windows.cpp

+12-11
Original file line numberDiff line numberDiff line change
@@ -2256,7 +2256,7 @@ void* os::win32::install_signal_handler(int sig, signal_handler_t handler) {
22562256
sigbreakHandler = handler;
22572257
return oldHandler;
22582258
} else {
2259-
return ::signal(sig, handler);
2259+
return CAST_FROM_FN_PTR(void*, ::signal(sig, handler));
22602260
}
22612261
}
22622262

@@ -2909,22 +2909,23 @@ LONG WINAPI topLevelVectoredExceptionFilter(struct _EXCEPTION_POINTERS* exceptio
29092909

29102910
#if defined(USE_VECTORED_EXCEPTION_HANDLING)
29112911
LONG WINAPI topLevelUnhandledExceptionFilter(struct _EXCEPTION_POINTERS* exceptionInfo) {
2912-
if (InterceptOSException) goto exit;
2913-
DWORD exception_code = exceptionInfo->ExceptionRecord->ExceptionCode;
2912+
if (!InterceptOSException) {
2913+
DWORD exceptionCode = exceptionInfo->ExceptionRecord->ExceptionCode;
29142914
#if defined(_M_ARM64)
2915-
address pc = (address)exceptionInfo->ContextRecord->Pc;
2915+
address pc = (address) exceptionInfo->ContextRecord->Pc;
29162916
#elif defined(_M_AMD64)
2917-
address pc = (address) exceptionInfo->ContextRecord->Rip;
2917+
address pc = (address) exceptionInfo->ContextRecord->Rip;
29182918
#else
2919-
address pc = (address) exceptionInfo->ContextRecord->Eip;
2919+
address pc = (address) exceptionInfo->ContextRecord->Eip;
29202920
#endif
2921-
Thread* t = Thread::current_or_null_safe();
2921+
Thread* thread = Thread::current_or_null_safe();
29222922

2923-
if (exception_code != EXCEPTION_BREAKPOINT) {
2924-
report_error(t, exception_code, pc, exceptionInfo->ExceptionRecord,
2925-
exceptionInfo->ContextRecord);
2923+
if (exceptionCode != EXCEPTION_BREAKPOINT) {
2924+
report_error(thread, exceptionCode, pc, exceptionInfo->ExceptionRecord,
2925+
exceptionInfo->ContextRecord);
2926+
}
29262927
}
2927-
exit:
2928+
29282929
return previousUnhandledExceptionFilter ? previousUnhandledExceptionFilter(exceptionInfo) : EXCEPTION_CONTINUE_SEARCH;
29292930
}
29302931
#endif

‎src/hotspot/os/windows/symbolengine.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class SimpleBufferWithFallback {
111111
_p = _fallback_buffer;
112112
_capacity = (int)(sizeof(_fallback_buffer) / sizeof(T));
113113
}
114-
_p[0] = '\0';
114+
_p[0] = 0;
115115
imprint_sentinel();
116116
}
117117

@@ -123,7 +123,7 @@ class SimpleBufferWithFallback {
123123
}
124124
_p = _fallback_buffer;
125125
_capacity = (int)(sizeof(_fallback_buffer) / sizeof(T));
126-
_p[0] = '\0';
126+
_p[0] = 0;
127127
imprint_sentinel();
128128
}
129129

‎src/hotspot/share/memory/allocation.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ void* ArenaObj::operator new(size_t size, Arena *arena) throw() {
111111
// AnyObj
112112
//
113113

114-
void* AnyObj::operator new(size_t size, Arena *arena) throw() {
114+
void* AnyObj::operator new(size_t size, Arena *arena) {
115115
address res = (address)arena->Amalloc(size);
116116
DEBUG_ONLY(set_allocation_type(res, ARENA);)
117117
return res;

0 commit comments

Comments
 (0)
Please sign in to comment.