Skip to content

Commit 67077a0

Browse files
eme64David Holmes
authored and
David Holmes
committedFeb 12, 2022
8278423: ExtendedDTraceProbes should be deprecated
Reviewed-by: dholmes, hseigel, kvn, thartmann
1 parent 58dae60 commit 67077a0

File tree

5 files changed

+36
-10
lines changed

5 files changed

+36
-10
lines changed
 

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

+3
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,7 @@ static SpecialFlag const special_jvm_flags[] = {
537537
#ifdef PRODUCT
538538
{ "UseHeavyMonitors", JDK_Version::jdk(18), JDK_Version::jdk(19), JDK_Version::jdk(20) },
539539
#endif
540+
{ "ExtendedDTraceProbes", JDK_Version::jdk(19), JDK_Version::jdk(20), JDK_Version::jdk(21) },
540541

541542
// --- Deprecated alias flags (see also aliased_jvm_flags) - sorted by obsolete_in then expired_in:
542543
{ "DefaultMaxRAMFraction", JDK_Version::jdk(8), JDK_Version::undefined(), JDK_Version::undefined() },
@@ -2886,6 +2887,8 @@ jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args, bool* patch_m
28862887
}
28872888
} else if (match_option(option, "-XX:+ExtendedDTraceProbes")) {
28882889
#if defined(DTRACE_ENABLED)
2890+
warning("Option ExtendedDTraceProbes was deprecated in version 19 and will likely be removed in a future release.");
2891+
warning("Use the combination of -XX:+DTraceMethodProbes, -XX:+DTraceAllocProbes and -XX:+DTraceMonitorProbes instead.");
28892892
if (FLAG_SET_CMDLINE(ExtendedDTraceProbes, true) != JVMFlag::SUCCESS) {
28902893
return JNI_EINVAL;
28912894
}

‎src/hotspot/share/runtime/globals.hpp

+6-4
Original file line numberDiff line numberDiff line change
@@ -1858,16 +1858,18 @@ const intx ObjectAlignmentInBytes = 8;
18581858
"Pause and wait for keypress on exit if a debugger is attached") \
18591859
\
18601860
product(bool, ExtendedDTraceProbes, false, \
1861-
"Enable performance-impacting dtrace probes") \
1861+
"(Deprecated) Enable performance-impacting dtrace probes. " \
1862+
"Use the combination of -XX:+DTraceMethodProbes, " \
1863+
"-XX:+DTraceAllocProbes and -XX:+DTraceMonitorProbes instead.") \
18621864
\
18631865
product(bool, DTraceMethodProbes, false, \
1864-
"Enable dtrace probes for method-entry and method-exit") \
1866+
"Enable dtrace tool probes for method-entry and method-exit") \
18651867
\
18661868
product(bool, DTraceAllocProbes, false, \
1867-
"Enable dtrace probes for object allocation") \
1869+
"Enable dtrace tool probes for object allocation") \
18681870
\
18691871
product(bool, DTraceMonitorProbes, false, \
1870-
"Enable dtrace probes for monitor events") \
1872+
"Enable dtrace tool probes for monitor events") \
18711873
\
18721874
product(bool, RelaxAccessControlCheck, false, \
18731875
"Relax the access control checks in the verifier") \

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

+23-5
Original file line numberDiff line numberDiff line change
@@ -2977,11 +2977,19 @@ different JDK version.
29772977
.RE
29782978
.RE
29792979
.TP
2980-
.B \f[CB]\-XX:+ExtendedDTraceProbes\f[R]
2981-
\f[B]Linux and macOS:\f[R] Enables additional \f[CB]dtrace\f[R] tool probes
2982-
that affect the performance.
2983-
By default, this option is disabled and \f[CB]dtrace\f[R] performs only
2984-
standard probes.
2980+
.B \f[CB]\-XX:+DTraceAllocProbes\f[R]
2981+
\f[B]Linux and macOS:\f[R] Enable \f[CB]dtrace\f[R] tool probes for object allocation.
2982+
.RS
2983+
.RE
2984+
.TP
2985+
.B \f[CB]\-XX:+DTraceMethodProbes\f[R]
2986+
\f[B]Linux and macOS:\f[R] Enable \f[CB]dtrace\f[R] tool probes for method-entry
2987+
and method-exit.
2988+
.RS
2989+
.RE
2990+
.TP
2991+
.B \f[CB]\-XX:+DTraceMonitorProbes\f[R]
2992+
\f[B]Linux and macOS:\f[R] Enable \f[CB]dtrace\f[R] tool probes for monitor events.
29852993
.RS
29862994
.RE
29872995
.TP
@@ -4008,6 +4016,16 @@ Example:
40084016
\f[CB]\-Xlog:gc:garbage\-collection.log\f[R]
40094017
.RE
40104018
.TP
4019+
.B \f[CB]\-XX:+ExtendedDTraceProbes\f[R]
4020+
\f[B]Linux and macOS:\f[R] Enables additional \f[CB]dtrace\f[R] tool probes
4021+
that affect performance.
4022+
By default, this option is disabled and \f[CB]dtrace\f[R] performs only
4023+
standard probes.
4024+
Use the combination of these flags instead: \f[CB]\-XX:+DTraceMethodProbes\f[R],
4025+
\f[CB]\-XX:+DTraceAllocProbes\f[R], \f[CB]\-XX:+DTraceMonitorProbes\f[R].
4026+
.RS
4027+
.RE
4028+
.TP
40114029
.B \f[CB]\-XX:+FlightRecorder\f[R]
40124030
Enables the use of Java Flight Recorder (JFR) during the runtime of the
40134031
application.

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

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ public class VMDeprecatedOptions {
5454
{"InitialRAMFraction", "64"},
5555
{"TLABStats", "false"},
5656
{"AllowRedefinitionToAddDeleteMethods", "true"},
57+
{"ExtendedDTraceProbes", "true"},
5758

5859
// deprecated alias flags (see also aliased_jvm_flags):
5960
{"DefaultMaxRAMFraction", "4"},

‎test/hotspot/jtreg/serviceability/7170638/SDTProbesGNULinuxTest.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ public class SDTProbesGNULinuxTest {
4646
public static void main(String[] args) throws Throwable {
4747
{
4848
var pb = ProcessTools.createJavaProcessBuilder(
49-
"-XX:+ExtendedDTraceProbes",
49+
"-XX:+DTraceMethodProbes",
50+
"-XX:+DTraceAllocProbes",
51+
"-XX:+DTraceMonitorProbes",
5052
"-version");
5153
var oa = new OutputAnalyzer(pb.start());
5254
// This test only matters when build with DTRACE_ENABLED.

0 commit comments

Comments
 (0)
Please sign in to comment.