Skip to content

Commit e183f54

Browse files
committedJun 6, 2024
Merge
2 parents fe211bb + 054362a commit e183f54

File tree

26 files changed

+876
-88
lines changed

26 files changed

+876
-88
lines changed
 

‎make/langtools/src/classes/build/tools/symbolgenerator/CreateSymbols.java

+12-1
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,10 @@ public void createSymbols(String ctDescriptionFileExtra, String ctDescriptionFil
340340
"Ljdk/internal/javac/PreviewFeature;";
341341
private static final String PREVIEW_FEATURE_ANNOTATION_INTERNAL =
342342
"Ljdk/internal/PreviewFeature+Annotation;";
343+
private static final String RESTRICTED_ANNOTATION =
344+
"Ljdk/internal/javac/Restricted;";
345+
private static final String RESTRICTED_ANNOTATION_INTERNAL =
346+
"Ljdk/internal/javac/Restricted+Annotation;";
343347
private static final String VALUE_BASED_ANNOTATION =
344348
"Ljdk/internal/ValueBased;";
345349
private static final String VALUE_BASED_ANNOTATION_INTERNAL =
@@ -349,7 +353,8 @@ public void createSymbols(String ctDescriptionFileExtra, String ctDescriptionFil
349353
"Lsun/Proprietary+Annotation;",
350354
PREVIEW_FEATURE_ANNOTATION_OLD,
351355
PREVIEW_FEATURE_ANNOTATION_NEW,
352-
VALUE_BASED_ANNOTATION));
356+
VALUE_BASED_ANNOTATION,
357+
RESTRICTED_ANNOTATION));
353358

354359
private void stripNonExistentAnnotations(LoadDescriptions data) {
355360
Set<String> allClasses = data.classes.name2Class.keySet();
@@ -1247,6 +1252,12 @@ private Annotation createAnnotation(List<CPInfo> constantPool, AnnotationDescrip
12471252
annotationType = VALUE_BASED_ANNOTATION_INTERNAL;
12481253
}
12491254

1255+
if (RESTRICTED_ANNOTATION.equals(annotationType)) {
1256+
//the non-public Restricted annotation will not be available in ct.sym,
1257+
//replace with purely synthetic javac-internal annotation:
1258+
annotationType = RESTRICTED_ANNOTATION_INTERNAL;
1259+
}
1260+
12501261
return new Annotation(null,
12511262
addString(constantPool, annotationType),
12521263
createElementPairs(constantPool, values));

‎make/test/JtregNativeHotspot.gmk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1514,7 +1514,7 @@ else
15141514
BUILD_HOTSPOT_JTREG_EXECUTABLES_LIBS_exeGetCreatedJavaVMs := -lpthread
15151515
BUILD_HOTSPOT_JTREG_EXECUTABLES_JDK_LIBS_exeGetCreatedJavaVMs := java.base:libjvm
15161516

1517-
BUILD_HOTSPOT_JTREG_EXCLUDE += libNativeException.c
1517+
BUILD_HOTSPOT_JTREG_EXCLUDE += libNativeException.c exeGetProcessorInfo.c
15181518
endif
15191519

15201520
ifeq ($(ASAN_ENABLED), true)

‎src/hotspot/cpu/x86/relocInfo_x86.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,11 @@ address Relocation::pd_call_destination(address orig_addr) {
9898
if (ni->is_call()) {
9999
return nativeCall_at(addr())->destination() + adj;
100100
} else if (ni->is_jump()) {
101-
return nativeJump_at(addr())->jump_destination() + adj;
101+
address dest = nativeJump_at(addr())->jump_destination();
102+
if (dest == (address) -1) {
103+
return addr(); // jump to self
104+
}
105+
return dest + adj;
102106
} else if (ni->is_cond_jump()) {
103107
return nativeGeneralJump_at(addr())->jump_destination() + adj;
104108
} else if (ni->is_mov_literal64()) {

‎src/hotspot/os/windows/globals_windows.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
range, \
3636
constraint) \
3737
\
38+
product(bool, UseAllWindowsProcessorGroups, false, \
39+
"Use all processor groups on supported Windows versions") \
40+
\
3841
product(bool, UseOSErrorReporting, false, \
3942
"Let VM fatal error propagate to the OS (ie. WER on Windows)")
4043

0 commit comments

Comments
 (0)
Please sign in to comment.