Skip to content

Commit f716711

Browse files
committedJun 10, 2021
8265271: JFR: Allow use of .jfc options when starting JFR
Reviewed-by: mgronlun
1 parent f677163 commit f716711

22 files changed

+1342
-610
lines changed
 

‎src/hotspot/share/jfr/dcmd/jfrDcmds.cpp

+114-378
Large diffs are not rendered by default.

‎src/hotspot/share/jfr/dcmd/jfrDcmds.hpp

+50-54
Original file line numberDiff line numberDiff line change
@@ -26,48 +26,56 @@
2626
#define SHARE_JFR_DCMD_JFRDCMDS_HPP
2727

2828
#include "services/diagnosticCommand.hpp"
29+
class JfrJavaArguments;
2930

30-
class JfrDumpFlightRecordingDCmd : public DCmdWithParser {
31+
class JfrDCmd : public DCmd {
32+
private:
33+
const char* _args;
34+
char _delimiter;
35+
public:
36+
JfrDCmd(outputStream* output, bool heap) : DCmd(output,heap), _args(NULL), _delimiter('\0') {}
37+
38+
virtual void execute(DCmdSource source, TRAPS);
39+
virtual void print_help(const char* name) const;
40+
virtual GrowableArray<const char*>* argument_name_array() const;
41+
virtual GrowableArray<DCmdArgumentInfo*>* argument_info_array() const;
42+
virtual void parse(CmdLine* line, char delim, TRAPS);
3143
protected:
32-
DCmdArgument<char*> _name;
33-
DCmdArgument<char*> _filename;
34-
DCmdArgument<NanoTimeArgument> _maxage;
35-
DCmdArgument<MemorySizeArgument> _maxsize;
36-
DCmdArgument<char*> _begin;
37-
DCmdArgument<char*> _end;
38-
DCmdArgument<bool> _path_to_gc_roots;
44+
virtual const char* javaClass() const = 0;
45+
void invoke(JfrJavaArguments& method, TRAPS) const;
46+
};
3947

48+
class JfrStartFlightRecordingDCmd : public JfrDCmd {
4049
public:
41-
JfrDumpFlightRecordingDCmd(outputStream* output, bool heap);
50+
JfrStartFlightRecordingDCmd(outputStream* output, bool heap) : JfrDCmd(output, heap) {}
51+
4252
static const char* name() {
43-
return "JFR.dump";
53+
return "JFR.start";
4454
}
4555
static const char* description() {
46-
return "Copies contents of a JFR recording to file. Either the name or the recording id must be specified.";
56+
return "Starts a new JFR recording";
4757
}
4858
static const char* impact() {
49-
return "Low";
59+
return "Medium: Depending on the settings for a recording, the impact can range from low to high.";
5060
}
5161
static const JavaPermission permission() {
5262
JavaPermission p = {"java.lang.management.ManagementPermission", "monitor", NULL};
5363
return p;
5464
}
55-
static int num_arguments();
56-
virtual void execute(DCmdSource source, TRAPS);
65+
virtual const char* javaClass() const {
66+
return "jdk/jfr/internal/dcmd/DCmdStart";
67+
}
5768
};
5869

59-
class JfrCheckFlightRecordingDCmd : public DCmdWithParser {
60-
protected:
61-
DCmdArgument<char*> _name;
62-
DCmdArgument<bool> _verbose;
63-
70+
class JfrDumpFlightRecordingDCmd : public JfrDCmd {
6471
public:
65-
JfrCheckFlightRecordingDCmd(outputStream* output, bool heap);
72+
JfrDumpFlightRecordingDCmd(outputStream* output, bool heap) : JfrDCmd(output, heap) {}
73+
6674
static const char* name() {
67-
return "JFR.check";
75+
return "JFR.dump";
6876
}
6977
static const char* description() {
70-
return "Checks running JFR recording(s)";
78+
return "Copies contents of a JFR recording to file. Either the name or the recording id must be specified.";
7179
}
7280
static const char* impact() {
7381
return "Low";
@@ -76,50 +84,37 @@ class JfrCheckFlightRecordingDCmd : public DCmdWithParser {
7684
JavaPermission p = {"java.lang.management.ManagementPermission", "monitor", NULL};
7785
return p;
7886
}
79-
static int num_arguments();
80-
virtual void execute(DCmdSource source, TRAPS);
87+
virtual const char* javaClass() const {
88+
return "jdk/jfr/internal/dcmd/DCmdDump";
89+
}
8190
};
8291

83-
class JfrStartFlightRecordingDCmd : public DCmdWithParser {
84-
protected:
85-
DCmdArgument<char*> _name;
86-
DCmdArgument<StringArrayArgument*> _settings;
87-
DCmdArgument<NanoTimeArgument> _delay;
88-
DCmdArgument<NanoTimeArgument> _duration;
89-
DCmdArgument<bool> _disk;
90-
DCmdArgument<char*> _filename;
91-
DCmdArgument<NanoTimeArgument> _maxage;
92-
DCmdArgument<MemorySizeArgument> _maxsize;
93-
DCmdArgument<NanoTimeArgument> _flush_interval;
94-
DCmdArgument<bool> _dump_on_exit;
95-
DCmdArgument<bool> _path_to_gc_roots;
96-
92+
class JfrCheckFlightRecordingDCmd : public JfrDCmd {
9793
public:
98-
JfrStartFlightRecordingDCmd(outputStream* output, bool heap);
94+
JfrCheckFlightRecordingDCmd(outputStream* output, bool heap) : JfrDCmd(output, heap) {}
95+
9996
static const char* name() {
100-
return "JFR.start";
97+
return "JFR.check";
10198
}
10299
static const char* description() {
103-
return "Starts a new JFR recording";
100+
return "Checks running JFR recording(s)";
104101
}
105102
static const char* impact() {
106-
return "Medium: Depending on the settings for a recording, the impact can range from low to high.";
103+
return "Low";
107104
}
108105
static const JavaPermission permission() {
109106
JavaPermission p = {"java.lang.management.ManagementPermission", "monitor", NULL};
110107
return p;
111108
}
112-
static int num_arguments();
113-
virtual void execute(DCmdSource source, TRAPS);
109+
virtual const char* javaClass() const {
110+
return "jdk/jfr/internal/dcmd/DCmdCheck";
111+
}
114112
};
115113

116-
class JfrStopFlightRecordingDCmd : public DCmdWithParser {
117-
protected:
118-
DCmdArgument<char*> _name;
119-
DCmdArgument<char*> _filename;
120-
114+
class JfrStopFlightRecordingDCmd : public JfrDCmd {
121115
public:
122-
JfrStopFlightRecordingDCmd(outputStream* output, bool heap);
116+
JfrStopFlightRecordingDCmd(outputStream* output, bool heap) : JfrDCmd(output, heap) {}
117+
123118
static const char* name() {
124119
return "JFR.stop";
125120
}
@@ -133,12 +128,11 @@ class JfrStopFlightRecordingDCmd : public DCmdWithParser {
133128
JavaPermission p = {"java.lang.management.ManagementPermission", "monitor", NULL};
134129
return p;
135130
}
136-
static int num_arguments();
137-
virtual void execute(DCmdSource source, TRAPS);
131+
virtual const char* javaClass() const {
132+
return "jdk/jfr/internal/dcmd/DCmdStop";
133+
}
138134
};
139135

140-
class JfrRuntimeOptions;
141-
142136
class JfrConfigureFlightRecorderDCmd : public DCmdWithParser {
143137
friend class JfrOptionSet;
144138
protected:
@@ -173,8 +167,10 @@ class JfrConfigureFlightRecorderDCmd : public DCmdWithParser {
173167
}
174168
static int num_arguments();
175169
virtual void execute(DCmdSource source, TRAPS);
170+
virtual void print_help(const char* name) const;
176171
};
177172

173+
178174
bool register_jfr_dcmds();
179175

180176
#endif // SHARE_JFR_DCMD_JFRDCMDS_HPP

‎src/hotspot/share/jfr/jni/jfrJavaSupport.cpp

+14-12
Original file line numberDiff line numberDiff line change
@@ -487,28 +487,30 @@ Klass* JfrJavaSupport::klass(const jobject handle) {
487487
return obj->klass();
488488
}
489489

490-
// caller needs ResourceMark
491-
const char* JfrJavaSupport::c_str(oop string, JavaThread* t) {
490+
static char* allocate_string(bool c_heap, int length, JavaThread* jt) {
491+
return c_heap ? NEW_C_HEAP_ARRAY(char, length, mtTracing) :
492+
NEW_RESOURCE_ARRAY_IN_THREAD(jt, char, length);
493+
}
494+
495+
const char* JfrJavaSupport::c_str(oop string, JavaThread* t, bool c_heap /* false */) {
492496
DEBUG_ONLY(check_java_thread_in_vm(t));
493-
char* resource_copy = NULL;
497+
char* str = NULL;
494498
const typeArrayOop value = java_lang_String::value(string);
495499
if (value != NULL) {
496500
const int length = java_lang_String::utf8_length(string, value);
497-
resource_copy = NEW_RESOURCE_ARRAY_IN_THREAD(t, char, (length + 1));
498-
if (resource_copy == NULL) {
499-
JfrJavaSupport::throw_out_of_memory_error("Unable to allocate thread local native memory", t);
501+
str = allocate_string(c_heap, length + 1, t);
502+
if (str == NULL) {
503+
JfrJavaSupport::throw_out_of_memory_error("Unable to allocate native memory", t);
500504
return NULL;
501505
}
502-
assert(resource_copy != NULL, "invariant");
503-
java_lang_String::as_utf8_string(string, value, resource_copy, length + 1);
506+
java_lang_String::as_utf8_string(string, value, str, length + 1);
504507
}
505-
return resource_copy;
508+
return str;
506509
}
507510

508-
// caller needs ResourceMark
509-
const char* JfrJavaSupport::c_str(jstring string, JavaThread* t) {
511+
const char* JfrJavaSupport::c_str(jstring string, JavaThread* t, bool c_heap /* false */) {
510512
DEBUG_ONLY(check_java_thread_in_vm(t));
511-
return string != NULL ? c_str(resolve_non_null(string), t) : NULL;
513+
return string != NULL ? c_str(resolve_non_null(string), t, c_heap) : NULL;
512514
}
513515

514516
/*

‎src/hotspot/share/jfr/jni/jfrJavaSupport.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,8 @@ class JfrJavaSupport : public AllStatic {
7575

7676
// misc
7777
static Klass* klass(const jobject handle);
78-
// caller needs ResourceMark
79-
static const char* c_str(jstring string, JavaThread* jt);
80-
static const char* c_str(oop string, JavaThread* t);
78+
static const char* c_str(jstring string, JavaThread* jt, bool c_heap = false);
79+
static const char* c_str(oop string, JavaThread* jt, bool c_heap = false);
8180

8281
// exceptions
8382
static void throw_illegal_state_exception(const char* message, TRAPS);

‎src/hotspot/share/jfr/utilities/jfrLogTagSets.hpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2021, 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
@@ -58,7 +58,8 @@
5858
JFR_LOG_TAG(jfr, metadata) \
5959
JFR_LOG_TAG(jfr, event) \
6060
JFR_LOG_TAG(jfr, setting) \
61-
JFR_LOG_TAG(jfr, dcmd)
61+
JFR_LOG_TAG(jfr, dcmd) \
62+
JFR_LOG_TAG(jfr, start)
6263
/* NEW TAGS, DONT FORGET TO UPDATE JAVA SIDE */
6364

6465
#endif // SHARE_JFR_UTILITIES_JFRLOGTAGSETS_HPP

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

+16
Original file line numberDiff line numberDiff line change
@@ -1757,6 +1757,22 @@ is needed.
17571757
.PP
17581758
You can specify values for multiple parameters by separating them with a
17591759
comma.
1760+
.PP
1761+
Event settings and .jfc options can also be specified using the following
1762+
syntax:
1763+
.TP
1764+
.B \f[CB]option=\f[R]\f[I]value\f[R]
1765+
Specifies the option value to modify. To list available options, use the
1766+
JAVA_HOME/bin/jfr tool.
1767+
.TP
1768+
.B \f[CB]event-setting=\f[R]\f[I]value\f[R]
1769+
Specifies the event setting value to modify. Use the form:
1770+
<event-name>#<setting-name>=<value>
1771+
To add a new event setting, prefix the event name with '+'.
1772+
.PP
1773+
In case of a conflict between a parameter and a .jfc option, the parameter
1774+
will take precedence. The whitespace delimiter can be omitted for timespan values, i.e. 20ms. For
1775+
more information about the settings syntax, see Javadoc of the jdk.jfr package.
17601776
.RE
17611777
.TP
17621778
.B \f[CB]\-XX:ThreadStackSize=\f[R]\f[I]size\f[R]

‎src/jdk.jcmd/share/man/jcmd.1

+16
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,22 @@ is needed.
562562
Use \f[CB]none\f[R] to start a recording without a predefined
563563
configuration file.
564564
(STRING, \f[CB]JAVA\-HOME\f[R]/lib/jfr/default.jfc)
565+
.PP
566+
Event settings and .jfc options can also be specified using the following
567+
syntax:
568+
.TP
569+
.B \f[CB]option=\f[R]\f[I]value\f[R]
570+
Specifies the option value to modify. To list available options, use the
571+
JAVA_HOME/bin/jfr tool.
572+
.TP
573+
.B \f[CB]event-setting=\f[R]\f[I]value\f[R]
574+
Specifies the event setting value to modify. Use the form:
575+
<event-name>#<setting-name>=<value>
576+
To add a new event setting, prefix the event name with '+'.
577+
.PP
578+
In case of a conflict between a parameter and a .jfc option, the parameter
579+
will take precedence. The whitespace delimiter can be omitted for timespan values, i.e. 20ms. For
580+
more information about the settings syntax, see Javadoc of the jdk.jfr package.
565581
.RE
566582
.TP
567583
.B \f[CB]JFR.stop\f[R] [\f[I]options\f[R]]

‎src/jdk.jfr/share/classes/jdk/jfr/internal/LogTag.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2021, 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
@@ -85,7 +85,11 @@ public enum LogTag {
8585
/**
8686
* Covers usage of jcmd with JFR
8787
*/
88-
JFR_DCMD(12);
88+
JFR_DCMD(12),
89+
/**
90+
* -XX:StartFlightRecording
91+
*/
92+
JFR_START(13);
8993

9094
/* set from native side */
9195
volatile int tagSetLevel = 100; // prevent logging if JVM log system has not been initialized

0 commit comments

Comments
 (0)
Please sign in to comment.