Skip to content

Commit 1e77896

Browse files
author
David Holmes
committedDec 16, 2020
8236225: Remove expired flags in JDK 17
8256717: Expire the long term obsoleted VM flags Reviewed-by: coleenp, kvn
1 parent 4d6f318 commit 1e77896

File tree

7 files changed

+128
-223
lines changed

7 files changed

+128
-223
lines changed
 

‎src/hotspot/share/include/jmm.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -84,7 +84,7 @@ typedef enum {
8484
JMM_INTERNAL_ATTRIBUTE_INDEX = 100,
8585
JMM_CLASS_LOADED_BYTES = 101, /* Number of bytes loaded instance classes */
8686
JMM_CLASS_UNLOADED_BYTES = 102, /* Number of bytes unloaded instance classes */
87-
JMM_TOTAL_CLASSLOAD_TIME_MS = 103, /* Accumulated VM class loader time (TraceClassLoadingTime) */
87+
JMM_TOTAL_CLASSLOAD_TIME_MS = 103, /* Accumulated VM class loader time */
8888
JMM_VM_GLOBAL_COUNT = 104, /* Number of VM internal flags */
8989
JMM_SAFEPOINT_COUNT = 105, /* Total number of safepoints */
9090
JMM_TOTAL_SAFEPOINTSYNC_TIME_MS = 106, /* Accumulated time spent getting to safepoints */

‎src/hotspot/share/runtime/arguments.cpp

+2-36
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,6 @@ static SpecialFlag const special_jvm_flags[] = {
518518
{ "MaxRAMFraction", JDK_Version::jdk(10), JDK_Version::undefined(), JDK_Version::undefined() },
519519
{ "MinRAMFraction", JDK_Version::jdk(10), JDK_Version::undefined(), JDK_Version::undefined() },
520520
{ "InitialRAMFraction", JDK_Version::jdk(10), JDK_Version::undefined(), JDK_Version::undefined() },
521-
{ "UseMembar", JDK_Version::jdk(10), JDK_Version::jdk(12), JDK_Version::undefined() },
522521
{ "AllowRedefinitionToAddDeleteMethods", JDK_Version::jdk(13), JDK_Version::undefined(), JDK_Version::undefined() },
523522
{ "FlightRecorder", JDK_Version::jdk(13), JDK_Version::undefined(), JDK_Version::undefined() },
524523
{ "CriticalJNINatives", JDK_Version::jdk(16), JDK_Version::jdk(17), JDK_Version::jdk(18) },
@@ -537,42 +536,9 @@ static SpecialFlag const special_jvm_flags[] = {
537536
{ "TLABStats", JDK_Version::jdk(12), JDK_Version::undefined(), JDK_Version::undefined() },
538537

539538
// -------------- Obsolete Flags - sorted by expired_in --------------
540-
{ "PermSize", JDK_Version::undefined(), JDK_Version::jdk(8), JDK_Version::undefined() },
541-
{ "MaxPermSize", JDK_Version::undefined(), JDK_Version::jdk(8), JDK_Version::undefined() },
542-
{ "SharedReadWriteSize", JDK_Version::undefined(), JDK_Version::jdk(10), JDK_Version::undefined() },
543-
{ "SharedReadOnlySize", JDK_Version::undefined(), JDK_Version::jdk(10), JDK_Version::undefined() },
544-
{ "SharedMiscDataSize", JDK_Version::undefined(), JDK_Version::jdk(10), JDK_Version::undefined() },
545-
{ "SharedMiscCodeSize", JDK_Version::undefined(), JDK_Version::jdk(10), JDK_Version::undefined() },
546-
#ifdef BSD
547-
{ "UseBsdPosixThreadCPUClocks", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
548-
{ "UseOprofile", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
539+
#ifdef ASSERT
540+
{ "DummyObsoleteTestFlag", JDK_Version::undefined(), JDK_Version::jdk(17), JDK_Version::undefined() },
549541
#endif
550-
{ "PrintVMQWaitTime", JDK_Version::jdk(15), JDK_Version::jdk(16), JDK_Version::jdk(17) },
551-
{ "UseNewFieldLayout", JDK_Version::jdk(15), JDK_Version::jdk(16), JDK_Version::jdk(17) },
552-
{ "UseSemaphoreGCThreadsSynchronization", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
553-
{ "ForceNUMA", JDK_Version::jdk(15), JDK_Version::jdk(16), JDK_Version::jdk(17) },
554-
{ "InitialBootClassLoaderMetaspaceSize", JDK_Version::jdk(15), JDK_Version::jdk(16), JDK_Version::jdk(17) },
555-
{ "UseLargePagesInMetaspace", JDK_Version::jdk(15), JDK_Version::jdk(16), JDK_Version::jdk(17) },
556-
{ "InsertMemBarAfterArraycopy", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
557-
{ "Debugging", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
558-
{ "UseRDPCForConstantTableBase", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
559-
{ "VerifyMergedCPBytecodes", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
560-
{ "PrintSharedSpaces", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
561-
{ "TraceBiasedLocking", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
562-
{ "TraceClassLoading", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
563-
{ "TraceClassLoadingPreorder", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
564-
{ "TraceClassPaths", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
565-
{ "TraceClassResolution", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
566-
{ "TraceClassUnloading", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
567-
{ "TraceExceptions", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
568-
{ "TraceInvokeDynamic", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
569-
{ "TraceLoaderConstraints", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
570-
{ "TraceMethodHandles", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
571-
{ "TraceMonitorInflation", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
572-
{ "TraceSafepointCleanupTime", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
573-
{ "TraceJVMTIObjectTagging", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
574-
{ "TraceRedefineClasses", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
575-
{ "PrintJNIResolving", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
576542

577543
#ifdef TEST_VERIFY_SPECIAL_JVM_FLAGS
578544
// These entries will generate build errors. Their purpose is to test the macros.

‎src/java.base/share/man/java.1

+117-120
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
.\"t
2323
.\" Automatically generated by Pandoc 2.3.1
2424
.\"
25-
.TH "JAVA" "1" "2020" "JDK 16" "JDK Commands"
25+
.TH "JAVA" "1" "2020" "JDK 17" "JDK Commands"
2626
.hy
2727
.SH NAME
2828
.PP
@@ -181,7 +181,7 @@ with new values added and old values removed.
181181
You\[aq]ll get an error message if you use a value of \f[I]N\f[R] that is
182182
no longer supported.
183183
The supported values of \f[I]N\f[R] are the current Java SE release
184-
(\f[CB]16\f[R]) and a limited number of previous releases, detailed in the
184+
(\f[CB]17\f[R]) and a limited number of previous releases, detailed in the
185185
command\-line help for \f[CB]javac\f[R], under the \f[CB]\-\-source\f[R] and
186186
\f[CB]\-\-release\f[R] options.
187187
.RE
@@ -1120,72 +1120,6 @@ Updates \f[I]module\f[R] to open \f[I]package\f[R] to
11201120
.RS
11211121
.RE
11221122
.TP
1123-
.B \f[CB]\-\-illegal\-access=\f[R]\f[I]parameter\f[R]
1124-
When present at run time, \f[CB]\-\-illegal\-access=\f[R] takes a keyword
1125-
\f[I]parameter\f[R] to specify a mode of operation:
1126-
.RS
1127-
.RS
1128-
.PP
1129-
\f[B]Note:\f[R] This option will be removed in a future release.
1130-
.RE
1131-
.IP \[bu] 2
1132-
\f[CB]permit\f[R]: This mode opens each package in each module in the
1133-
run\-time image to code in all unnamed modules ( such as code on the
1134-
class path), if that package existed in JDK 8.
1135-
This enables both static access, (for example, by compiled bytecode, and
1136-
deep reflective access) through the platform\[aq]s various reflection
1137-
APIs.
1138-
The first reflective\-access operation to any such package causes a
1139-
warning to be issued.
1140-
However, no warnings are issued after the first occurrence.
1141-
This single warning describes how to enable further warnings.
1142-
This mode is the default for the current JDK but will change in a future
1143-
release.
1144-
.IP \[bu] 2
1145-
\f[CB]warn\f[R]: This mode is identical to \f[CB]permit\f[R] except that a
1146-
warning message is issued for each illegal reflective\-access operation.
1147-
.IP \[bu] 2
1148-
\f[CB]debug\f[R]: This mode is identical to \f[CB]warn\f[R] except that both
1149-
a warning message and a stack trace are issued for each illegal
1150-
reflective\-access operation.
1151-
.IP \[bu] 2
1152-
\f[CB]deny\f[R]: This mode disables all illegal\-access operations except
1153-
for those enabled by other command\-line options, such as
1154-
\f[CB]\-\-add\-opens\f[R].
1155-
This mode will become the default in a future release.
1156-
.PP
1157-
The default mode, \f[CB]\-\-illegal\-access=permit\f[R], is intended to
1158-
make you aware of code on the class path that reflectively accesses any
1159-
JDK\-internal APIs at least once.
1160-
To learn about all such accesses, you can use the \f[CB]warn\f[R] or the
1161-
\f[CB]debug\f[R] modes.
1162-
For each library or framework on the class path that requires illegal
1163-
access, you have two options:
1164-
.IP \[bu] 2
1165-
If the component\[aq]s maintainers have already released a fixed version
1166-
that no longer uses JDK\-internal APIs then you can consider upgrading
1167-
to that version.
1168-
.IP \[bu] 2
1169-
If the component still needs to be fixed, then you can contact its
1170-
maintainers and ask them to replace their use of JDK\-internal APIs with
1171-
the proper exported APIs.
1172-
.PP
1173-
If you must continue to use a component that requires illegal access,
1174-
then you can eliminate the warning messages by using one or more
1175-
\f[CB]\-\-add\-opens\f[R] options to open only those internal packages to
1176-
which access is required.
1177-
.PP
1178-
To verify that your application is ready for a future version of the
1179-
JDK, run it with \f[CB]\-\-illegal\-access=deny\f[R] along with any
1180-
necessary \f[CB]\-\-add\-opens\f[R] options.
1181-
Any remaining illegal\-access errors will most likely be due to static
1182-
references from compiled code to JDK\-internal APIs.
1183-
You can identify those by running the \f[B]jdeps\f[R] tool with the
1184-
\f[CB]\-\-jdk\-internals\f[R] option.
1185-
For performance reasons, the current JDK does not issue warnings for
1186-
illegal static\-access operations.
1187-
.RE
1188-
.TP
11891123
.B \f[CB]\-\-limit\-modules\f[R] \f[I]module\f[R][\f[CB],\f[R]\f[I]module\f[R]...]
11901124
Specifies the limit of the universe of observable modules.
11911125
.RS
@@ -3937,6 +3871,68 @@ future JDK release.
39373871
They\[aq]re still accepted and acted upon, but a warning is issued when
39383872
they\[aq]re used.
39393873
.TP
3874+
.B \f[CB]\-\-illegal\-access=\f[R]\f[I]parameter\f[R]
3875+
When present at run time, \f[CB]\-\-illegal\-access=\f[R] takes a keyword
3876+
\f[I]parameter\f[R] to specify a mode of operation:
3877+
.RS
3878+
.RS
3879+
.PP
3880+
\f[B]Note:\f[R] This option will be removed in a future release.
3881+
.RE
3882+
.IP \[bu] 2
3883+
\f[CB]permit\f[R]: This mode opens each package in each module in the
3884+
run\-time image to code in all unnamed modules ( such as code on the
3885+
class path), if that package existed in JDK 8.
3886+
This enables both static access, (for example, by compiled bytecode, and
3887+
deep reflective access) through the platform\[aq]s various reflection
3888+
APIs.
3889+
The first reflective\-access operation to any such package causes a
3890+
warning to be issued.
3891+
However, no warnings are issued after the first occurrence.
3892+
This single warning describes how to enable further warnings.
3893+
.IP \[bu] 2
3894+
\f[CB]warn\f[R]: This mode is identical to \f[CB]permit\f[R] except that a
3895+
warning message is issued for each illegal reflective\-access operation.
3896+
.IP \[bu] 2
3897+
\f[CB]debug\f[R]: This mode is identical to \f[CB]warn\f[R] except that both
3898+
a warning message and a stack trace are issued for each illegal
3899+
reflective\-access operation.
3900+
.IP \[bu] 2
3901+
\f[CB]deny\f[R]: This mode disables all illegal\-access operations except
3902+
for those enabled by other command\-line options, such as
3903+
\f[CB]\-\-add\-opens\f[R].
3904+
This mode is the default.
3905+
.PP
3906+
If your application does not work with the default mode of
3907+
\f[CB]\-\-illegal\-access=deny\f[R] then you can learn more about what is
3908+
going on with the \f[CB]warn\f[R] and \f[CB]debug\f[R] modes.
3909+
For each library or framework on the class path that requires illegal
3910+
access, you have two options:
3911+
.IP \[bu] 2
3912+
If the component\[aq]s maintainers have already released a fixed version
3913+
that no longer uses JDK\-internal APIs then you can consider upgrading
3914+
to that version.
3915+
.IP \[bu] 2
3916+
If the component still needs to be fixed, then you can contact its
3917+
maintainers and ask them to replace their use of JDK\-internal APIs with
3918+
the proper exported APIs.
3919+
.PP
3920+
If you must continue to use a component that requires illegal access,
3921+
then you can eliminate the warning messages by using one or more
3922+
\f[CB]\-\-add\-opens\f[R] options to open only those internal packages to
3923+
which access is required.
3924+
.PP
3925+
To verify that your application is ready for a future version of the
3926+
JDK, run it with \f[CB]\-\-illegal\-access=deny\f[R] along with any
3927+
necessary \f[CB]\-\-add\-opens\f[R] options.
3928+
Any remaining illegal\-access errors will most likely be due to static
3929+
references from compiled code to JDK\-internal APIs.
3930+
You can identify those by running the \f[B]jdeps\f[R] tool with the
3931+
\f[CB]\-\-jdk\-internals\f[R] option.
3932+
For performance reasons, the current JDK does not issue warnings for
3933+
illegal static\-access operations.
3934+
.RE
3935+
.TP
39403936
.B \f[CB]\-Xfuture\f[R]
39413937
Enables strict class\-file format checks that enforce close conformance
39423938
to the class\-file format specification.
@@ -4006,6 +4002,52 @@ The default value is 2.
40064002
Use the option \f[CB]\-XX:MinRAMPercentage\f[R] instead.
40074003
.RE
40084004
.TP
4005+
.B \f[CB]\-XX:+UseBiasedLocking\f[R]
4006+
Enables the use of biased locking.
4007+
Some applications with significant amounts of uncontended
4008+
synchronization may attain significant speedups with this flag enabled,
4009+
but applications with certain patterns of locking may see slowdowns.
4010+
.RS
4011+
.PP
4012+
By default, this option is disabled.
4013+
.RE
4014+
.SH OBSOLETE JAVA OPTIONS
4015+
.PP
4016+
These \f[CB]java\f[R] options are still accepted but ignored, and a
4017+
warning is issued when they\[aq]re used.
4018+
.PP
4019+
None in JDK 17.
4020+
.SH REMOVED JAVA OPTIONS
4021+
.PP
4022+
These \f[CB]java\f[R] options have been removed in JDK 17 and using them
4023+
results in an error of:
4024+
.RS
4025+
.PP
4026+
\f[CB]Unrecognized\ VM\ option\f[R] \f[I]option\-name\f[R]
4027+
.RE
4028+
.TP
4029+
.B \f[CB]\-XX:+UseMembar\f[R]
4030+
Enabled issuing membars on thread\-state transitions.
4031+
This option was disabled by default on all platforms except ARM servers,
4032+
where it was enabled.
4033+
.RS
4034+
.RE
4035+
.TP
4036+
.B \f[CB]\-XX:MaxPermSize=\f[R]\f[I]size\f[R]
4037+
Sets the maximum permanent generation space size (in bytes).
4038+
This option was deprecated in JDK 8 and superseded by the
4039+
\f[CB]\-XX:MaxMetaspaceSize\f[R] option.
4040+
.RS
4041+
.RE
4042+
.TP
4043+
.B \f[CB]\-XX:PermSize=\f[R]\f[I]size\f[R]
4044+
Sets the space (in bytes) allocated to the permanent generation that
4045+
triggers a garbage collection if it\[aq]s exceeded.
4046+
This option was deprecated in JDK 8 and superseded by the
4047+
\f[CB]\-XX:MetaspaceSize\f[R] option.
4048+
.RS
4049+
.RE
4050+
.TP
40094051
.B \f[CB]\-XX:+TraceClassLoading\f[R]
40104052
Enables tracing of classes as they are loaded.
40114053
By default, this option is disabled and classes aren\[aq]t traced.
@@ -4053,62 +4095,13 @@ The replacement Unified Logging syntax is
40534095
\f[CB]\-Xlog:class+loader+constraints=info\f[R].
40544096
See \f[B]Enable Logging with the JVM Unified Logging Framework\f[R].
40554097
.RE
4056-
.TP
4057-
.B \f[CB]\-XX:+UseBiasedLocking\f[R]
4058-
Enables the use of biased locking.
4059-
Some applications with significant amounts of uncontended
4060-
synchronization may attain significant speedups with this flag enabled,
4061-
but applications with certain patterns of locking may see slowdowns.
4062-
.RS
4063-
.PP
4064-
By default, this option is disabled.
4065-
.RE
4066-
.SH OBSOLETE JAVA OPTIONS
4067-
.PP
4068-
These \f[CB]java\f[R] options are still accepted but ignored, and a
4069-
warning is issued when they\[aq]re used.
4070-
.TP
4071-
.B \f[CB]\-XX:+UseMembar\f[R]
4072-
Enabled issuing membars on thread\-state transitions.
4073-
This option was disabled by default on all platforms except ARM servers,
4074-
where it was enabled.
4075-
.RS
4076-
.RE
4077-
.TP
4078-
.B \f[CB]\-XX:MaxPermSize=\f[R]\f[I]size\f[R]
4079-
Sets the maximum permanent generation space size (in bytes).
4080-
This option was deprecated in JDK 8 and superseded by the
4081-
\f[CB]\-XX:MaxMetaspaceSize\f[R] option.
4082-
.RS
4083-
.RE
4084-
.TP
4085-
.B \f[CB]\-XX:PermSize=\f[R]\f[I]size\f[R]
4086-
Sets the space (in bytes) allocated to the permanent generation that
4087-
triggers a garbage collection if it\[aq]s exceeded.
4088-
This option was deprecated in JDK 8 and superseded by the
4089-
\f[CB]\-XX:MetaspaceSize\f[R] option.
4090-
.RS
4091-
.RE
4092-
.SH REMOVED JAVA OPTIONS
4093-
.PP
4094-
These \f[CB]java\f[R] options have been removed in JDK 15 and using them
4095-
results in an error of:
4096-
.RS
4097-
.PP
4098-
\f[CB]Unrecognized\ VM\ option\f[R] \f[I]option\-name\f[R]
4099-
.RE
4100-
.TP
4101-
.B \f[CB]\-XX:+UseParallelOldGC\f[R]
4102-
Enables the use of the parallel garbage collector for full GCs.
4103-
By default, this option is disabled.
4104-
Enabling it automatically enables the \f[CB]\-XX:+UseParallelGC\f[R]
4105-
option.
4106-
.RS
4107-
.RE
41084098
.PP
41094099
For the lists and descriptions of options removed in previous releases
41104100
see the \f[I]Removed Java Options\f[R] section in:
41114101
.IP \[bu] 2
4102+
\f[B]Java Platform, Standard Edition Tools Reference, Release 16\f[R]
4103+
[https://docs.oracle.com/en/java/javase/16/docs/specs/man/java.html]
4104+
.IP \[bu] 2
41124105
\f[B]Java Platform, Standard Edition Tools Reference, Release 15\f[R]
41134106
[https://docs.oracle.com/en/java/javase/15/docs/specs/man/java.html]
41144107
.IP \[bu] 2
@@ -4794,6 +4787,10 @@ T}
47944787
.TE
47954788
.SS Convert Runtime Logging Flags to Xlog
47964789
.PP
4790+
These legacy flags are no longer recognized and will cause an error if
4791+
used directly.
4792+
Use their unified logging equivalent instead.
4793+
.PP
47974794
.TS
47984795
tab(@);
47994796
lw(15.0n) lw(20.2n) lw(34.7n).

‎test/hotspot/jtreg/runtime/CommandLine/ObsoleteFlagErrorMessage.java

+7-4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* @summary Newly obsolete command line options should still give useful error messages when used improperly.
2828
* @modules java.base/jdk.internal.misc
2929
* @library /test/lib
30+
* @requires vm.debug == true
3031
* @run driver ObsoleteFlagErrorMessage
3132
*/
3233

@@ -36,20 +37,22 @@
3637
public class ObsoleteFlagErrorMessage {
3738
public static void main(String[] args) throws Exception {
3839

40+
String flag = "DummyObsoleteTestFlag";
41+
3942
// Case 1: Newly obsolete flags with extra junk appended should not be treated as newly obsolete (8060449)
4043
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
41-
"-XX:UseMembarPlusJunk", "-version");
44+
"-XX:" + flag + "PlusJunk", "-version");
4245

4346
OutputAnalyzer output = new OutputAnalyzer(pb.start());
44-
output.shouldContain("Unrecognized VM option 'UseMembarPlusJunk'"); // Must identify bad option.
47+
output.shouldContain("Unrecognized VM option '" + flag + "PlusJunk'"); // Must identify bad option.
4548
output.shouldHaveExitValue(1);
4649

4750
// Case 2: Newly obsolete flags should be recognized as newly obsolete (8073989)
4851
ProcessBuilder pb2 = ProcessTools.createJavaProcessBuilder(
49-
"-XX:+UseMembar", "-version");
52+
"-XX:+" + flag, "-version");
5053

5154
OutputAnalyzer output2 = new OutputAnalyzer(pb2.start());
5255
output2.shouldContain("Ignoring option").shouldContain("support was removed");
53-
output2.shouldContain("UseMembar");
56+
output2.shouldContain(flag);
5457
}
5558
}

‎test/hotspot/jtreg/runtime/CommandLine/PermGenFlagsTest.java

-51
This file was deleted.

‎test/hotspot/jtreg/runtime/cds/SpaceUtilizationCheck.java

-8
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,7 @@ public class SpaceUtilizationCheck {
4949
// [2] There must be no gap between two consecutive regions.
5050

5151
public static void main(String[] args) throws Exception {
52-
// (1) Default VM arguments
5352
test("-Xlog:cds=debug");
54-
55-
// (2) Use the now deprecated VM arguments. They should have no effect.
56-
test("-Xlog:cds=debug",
57-
"-XX:SharedReadWriteSize=128M",
58-
"-XX:SharedReadOnlySize=128M",
59-
"-XX:SharedMiscDataSize=128M",
60-
"-XX:SharedMiscCodeSize=128M");
6153
}
6254

6355
static void test(String... extra_options) throws Exception {

‎test/hotspot/jtreg/runtime/cds/appcds/javaldr/GCSharedStringsDuringDump.java

-2
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,9 @@ public static void main(String[] args) throws Throwable {
117117
"-XX:+UnlockDiagnosticVMOptions",
118118
extraOption,
119119
"-XX:+WhiteBoxAPI",
120-
"-XX:SharedReadOnlySize=30m",
121120
gcLog,
122121
GCSharedStringsDuringDumpWb.class.getName())
123122
.assertNormalExit();
124123
}
125124
}
126125
}
127-

0 commit comments

Comments
 (0)
Please sign in to comment.