Skip to content

Commit a487a27

Browse files
author
David Holmes
committedMar 16, 2023
8303150: DCmd framework unnecessarily creates a DCmd instance on registration
Reviewed-by: fparain, stuefe, kevinw
1 parent 2e987d7 commit a487a27

12 files changed

+45
-68
lines changed
 

‎src/hotspot/share/classfile/classLoaderHierarchyDCmd.cpp

-12
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,6 @@ ClassLoaderHierarchyDCmd::ClassLoaderHierarchyDCmd(outputStream* output, bool he
4545
_dcmdparser.add_dcmd_option(&_fold);
4646
}
4747

48-
49-
int ClassLoaderHierarchyDCmd::num_arguments() {
50-
ResourceMark rm;
51-
ClassLoaderHierarchyDCmd* dcmd = new ClassLoaderHierarchyDCmd(nullptr, false);
52-
if (dcmd != nullptr) {
53-
DCmdMark mark(dcmd);
54-
return dcmd->_dcmdparser.num_arguments();
55-
} else {
56-
return 0;
57-
}
58-
}
59-
6048
// Helper class for drawing the branches to the left of a node.
6149
class BranchTracker : public StackObj {
6250
// "<x>"

‎src/hotspot/share/classfile/classLoaderHierarchyDCmd.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class ClassLoaderHierarchyDCmd: public DCmdWithParser {
5151
"monitor", nullptr};
5252
return p;
5353
}
54-
static int num_arguments();
54+
static int num_arguments() { return 3; }
5555
virtual void execute(DCmdSource source, TRAPS);
5656

5757
};

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

+1-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2023, 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
@@ -447,16 +447,6 @@ void JfrConfigureFlightRecorderDCmd::print_help(const char* name) const {
447447
out->print_cr("");
448448
}
449449

450-
int JfrConfigureFlightRecorderDCmd::num_arguments() {
451-
ResourceMark rm;
452-
JfrConfigureFlightRecorderDCmd* dcmd = new JfrConfigureFlightRecorderDCmd(NULL, false);
453-
if (dcmd != NULL) {
454-
DCmdMark mark(dcmd);
455-
return dcmd->_dcmdparser.num_arguments();
456-
}
457-
return 0;
458-
}
459-
460450
void JfrConfigureFlightRecorderDCmd::execute(DCmdSource source, TRAPS) {
461451
DEBUG_ONLY(JfrJavaSupport::check_java_thread_in_vm(THREAD));
462452

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2023, 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
@@ -177,7 +177,7 @@ class JfrConfigureFlightRecorderDCmd : public DCmdWithParser {
177177
JavaPermission p = {"java.lang.management.ManagementPermission", "monitor", NULL};
178178
return p;
179179
}
180-
static int num_arguments();
180+
static int num_arguments() { return 9; }
181181
virtual void execute(DCmdSource source, TRAPS);
182182
virtual void print_help(const char* name) const;
183183
};

‎src/hotspot/share/logging/logDiagnosticCommand.cpp

-11
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,6 @@ LogDiagnosticCommand::LogDiagnosticCommand(outputStream* output, bool heap_alloc
4545
_dcmdparser.add_dcmd_option(&_rotate);
4646
}
4747

48-
int LogDiagnosticCommand::num_arguments() {
49-
ResourceMark rm;
50-
LogDiagnosticCommand* dcmd = new LogDiagnosticCommand(nullptr, false);
51-
if (dcmd != nullptr) {
52-
DCmdMark mark(dcmd);
53-
return dcmd->_dcmdparser.num_arguments();
54-
} else {
55-
return 0;
56-
}
57-
}
58-
5948
void LogDiagnosticCommand::registerCommand() {
6049
uint32_t full_visibility = DCmd_Source_Internal | DCmd_Source_AttachAPI | DCmd_Source_MBean;
6150
DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<LogDiagnosticCommand>(full_visibility, true, false));

‎src/hotspot/share/logging/logDiagnosticCommand.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class LogDiagnosticCommand : public DCmdWithParser {
4949
LogDiagnosticCommand(outputStream* output, bool heap_allocated);
5050
void execute(DCmdSource source, TRAPS);
5151
static void registerCommand();
52-
static int num_arguments();
52+
static int num_arguments() { return 7; }
5353

5454
static const char* name() {
5555
return "VM.log";

‎src/hotspot/share/memory/metaspace/metaspaceDCmd.cpp

-11
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,6 @@ MetaspaceDCmd::MetaspaceDCmd(outputStream* output, bool heap) :
5858
_dcmdparser.add_dcmd_option(&_scale);
5959
}
6060

61-
int MetaspaceDCmd::num_arguments() {
62-
ResourceMark rm;
63-
MetaspaceDCmd* dcmd = new MetaspaceDCmd(nullptr, false);
64-
if (dcmd != nullptr) {
65-
DCmdMark mark(dcmd);
66-
return dcmd->_dcmdparser.num_arguments();
67-
} else {
68-
return 0;
69-
}
70-
}
71-
7261
void MetaspaceDCmd::execute(DCmdSource source, TRAPS) {
7362
// Parse scale value.
7463
const char* scale_value = _scale.value();

‎src/hotspot/share/memory/metaspace/metaspaceDCmd.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class MetaspaceDCmd : public DCmdWithParser {
5757
"monitor", nullptr};
5858
return p;
5959
}
60-
static int num_arguments();
60+
static int num_arguments() { return 8; }
6161
virtual void execute(DCmdSource source, TRAPS);
6262
};
6363

‎src/hotspot/share/services/diagnosticCommand.cpp

-11
Original file line numberDiff line numberDiff line change
@@ -1073,17 +1073,6 @@ ThreadDumpToFileDCmd::ThreadDumpToFileDCmd(outputStream* output, bool heap) :
10731073
_dcmdparser.add_dcmd_argument(&_filepath);
10741074
}
10751075

1076-
int ThreadDumpToFileDCmd::num_arguments() {
1077-
ResourceMark rm;
1078-
ThreadDumpToFileDCmd* dcmd = new ThreadDumpToFileDCmd(nullptr, false);
1079-
if (dcmd != nullptr) {
1080-
DCmdMark mark(dcmd);
1081-
return dcmd->_dcmdparser.num_arguments();
1082-
} else {
1083-
return 0;
1084-
}
1085-
}
1086-
10871076
void ThreadDumpToFileDCmd::execute(DCmdSource source, TRAPS) {
10881077
bool json = (_format.value() != nullptr) && (strcmp(_format.value(), "json") == 0);
10891078
char* path = _filepath.value();

‎src/hotspot/share/services/diagnosticCommand.hpp

+20-2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class HelpDCmd : public DCmdWithParser {
4444
DCmdArgument<bool> _all;
4545
DCmdArgument<char*> _cmd;
4646
public:
47+
static int num_arguments() { return 2; }
4748
HelpDCmd(outputStream* output, bool heap);
4849
static const char* name() { return "help"; }
4950
static const char* description() {
@@ -113,6 +114,7 @@ class PrintVMFlagsDCmd : public DCmdWithParser {
113114
protected:
114115
DCmdArgument<bool> _all;
115116
public:
117+
static int num_arguments() { return 1; }
116118
PrintVMFlagsDCmd(outputStream* output, bool heap);
117119
static const char* name() { return "VM.flags"; }
118120
static const char* description() {
@@ -135,6 +137,7 @@ class SetVMFlagDCmd : public DCmdWithParser {
135137
DCmdArgument<char*> _value;
136138

137139
public:
140+
static int num_arguments() { return 2; }
138141
SetVMFlagDCmd(outputStream* output, bool heap);
139142
static const char* name() { return "VM.set_flag"; }
140143
static const char* description() {
@@ -176,6 +179,7 @@ class JVMTIAgentLoadDCmd : public DCmdWithParser {
176179
DCmdArgument<char*> _libpath;
177180
DCmdArgument<char*> _option;
178181
public:
182+
static int num_arguments() { return 2; }
179183
JVMTIAgentLoadDCmd(outputStream* output, bool heap);
180184
static const char* name() { return "JVMTI.agent_load"; }
181185
static const char* description() {
@@ -216,6 +220,7 @@ class VMUptimeDCmd : public DCmdWithParser {
216220
protected:
217221
DCmdArgument<bool> _date;
218222
public:
223+
static int num_arguments() { return 1; }
219224
VMUptimeDCmd(outputStream* output, bool heap);
220225
static const char* name() { return "VM.uptime"; }
221226
static const char* description() {
@@ -316,6 +321,7 @@ class HeapDumpDCmd : public DCmdWithParser {
316321
DCmdArgument<jlong> _gzip;
317322
DCmdArgument<bool> _overwrite;
318323
public:
324+
static int num_arguments() { return 4; }
319325
HeapDumpDCmd(outputStream* output, bool heap);
320326
static const char* name() {
321327
return "GC.heap_dump";
@@ -342,6 +348,7 @@ class ClassHistogramDCmd : public DCmdWithParser {
342348
DCmdArgument<bool> _all;
343349
DCmdArgument<jlong> _parallel_thread_num;
344350
public:
351+
static int num_arguments() { return 2; }
345352
ClassHistogramDCmd(outputStream* output, bool heap);
346353
static const char* name() {
347354
return "GC.class_histogram";
@@ -366,6 +373,7 @@ class ClassHierarchyDCmd : public DCmdWithParser {
366373
DCmdArgument<bool> _print_subclasses; // true if subclasses of the specified classname should be printed.
367374
DCmdArgument<char*> _classname; // Optional single class name whose hierarchy should be printed.
368375
public:
376+
static int num_arguments() { return 3; }
369377
ClassHierarchyDCmd(outputStream* output, bool heap);
370378
static const char* name() {
371379
return "VM.class_hierarchy";
@@ -392,6 +400,7 @@ class DumpSharedArchiveDCmd: public DCmdWithParser {
392400
DCmdArgument<char*> _suboption; // option of VM.cds
393401
DCmdArgument<char*> _filename; // file name, optional
394402
public:
403+
static int num_arguments() { return 2; }
395404
DumpSharedArchiveDCmd(outputStream* output, bool heap);
396405
static const char* name() {
397406
return "VM.cds";
@@ -407,7 +416,6 @@ class DumpSharedArchiveDCmd: public DCmdWithParser {
407416
"monitor", nullptr};
408417
return p;
409418
}
410-
static int num_arguments();
411419
virtual void execute(DCmdSource source, TRAPS);
412420
};
413421
#endif // INCLUDE_CDS
@@ -418,6 +426,7 @@ class ThreadDumpDCmd : public DCmdWithParser {
418426
DCmdArgument<bool> _locks;
419427
DCmdArgument<bool> _extended;
420428
public:
429+
static int num_arguments() { return 2; }
421430
ThreadDumpDCmd(outputStream* output, bool heap);
422431
static const char* name() { return "Thread.print"; }
423432
static const char* description() {
@@ -469,6 +478,8 @@ class JMXStartRemoteDCmd : public DCmdWithParser {
469478
DCmdArgument<char *> _jdp_name;
470479

471480
public:
481+
static int num_arguments() { return 21; }
482+
472483
JMXStartRemoteDCmd(outputStream *output, bool heap_allocated);
473484

474485
static const char *name() {
@@ -632,6 +643,7 @@ class CodeHeapAnalyticsDCmd : public DCmdWithParser {
632643
DCmdArgument<char*> _function;
633644
DCmdArgument<jlong> _granularity;
634645
public:
646+
static int num_arguments() { return 2; }
635647
CodeHeapAnalyticsDCmd(outputStream* output, bool heap);
636648
static const char* name() {
637649
return "Compiler.CodeHeap_Analytics";
@@ -696,6 +708,7 @@ class CompilerDirectivesAddDCmd : public DCmdWithParser {
696708
protected:
697709
DCmdArgument<char*> _filename;
698710
public:
711+
static int num_arguments() { return 1; }
699712
CompilerDirectivesAddDCmd(outputStream* output, bool heap);
700713
static const char* name() {
701714
return "Compiler.directives_add";
@@ -781,6 +794,7 @@ class SymboltableDCmd : public DCmdWithParser {
781794
protected:
782795
DCmdArgument<bool> _verbose;
783796
public:
797+
static int num_arguments() { return 1; }
784798
SymboltableDCmd(outputStream* output, bool heap);
785799
static const char* name() {
786800
return "VM.symboltable";
@@ -803,6 +817,7 @@ class StringtableDCmd : public DCmdWithParser {
803817
protected:
804818
DCmdArgument<bool> _verbose;
805819
public:
820+
static int num_arguments() { return 1; }
806821
StringtableDCmd(outputStream* output, bool heap);
807822
static const char* name() {
808823
return "VM.stringtable";
@@ -825,6 +840,7 @@ class SystemDictionaryDCmd : public DCmdWithParser {
825840
protected:
826841
DCmdArgument<bool> _verbose;
827842
public:
843+
static int num_arguments() { return 1; }
828844
SystemDictionaryDCmd(outputStream* output, bool heap);
829845
static const char* name() {
830846
return "VM.systemdictionary";
@@ -847,6 +863,7 @@ class ClassesDCmd : public DCmdWithParser {
847863
protected:
848864
DCmdArgument<bool> _verbose;
849865
public:
866+
static int num_arguments() { return 1; }
850867
ClassesDCmd(outputStream* output, bool heap);
851868
static const char* name() {
852869
return "VM.classes";
@@ -891,6 +908,7 @@ class EventLogDCmd : public DCmdWithParser {
891908
DCmdArgument<char*> _log;
892909
DCmdArgument<char*> _max;
893910
public:
911+
static int num_arguments() { return 2; }
894912
EventLogDCmd(outputStream* output, bool heap);
895913
static const char* name() {
896914
return "VM.events";
@@ -917,6 +935,7 @@ class ThreadDumpToFileDCmd : public DCmdWithParser {
917935
DCmdArgument<char*> _format;
918936
DCmdArgument<char*> _filepath;
919937
public:
938+
static int num_arguments() { return 3; }
920939
ThreadDumpToFileDCmd(outputStream *output, bool heap);
921940
static const char *name() {
922941
return "Thread.dump_to_file";
@@ -931,7 +950,6 @@ class ThreadDumpToFileDCmd : public DCmdWithParser {
931950
JavaPermission p = {"java.lang.management.ManagementPermission", "monitor", nullptr};
932951
return p;
933952
}
934-
static int num_arguments();
935953
virtual void execute(DCmdSource source, TRAPS);
936954
};
937955

‎src/hotspot/share/services/diagnosticFramework.hpp

+18-5
Original file line numberDiff line numberDiff line change
@@ -276,9 +276,7 @@ class DCmd : public AnyObj {
276276
return p;
277277
}
278278
// num_arguments() is used by the DCmdFactoryImpl::get_num_arguments() template functions.
279-
// - For subclasses of DCmdWithParser, it's calculated by DCmdParser::num_arguments().
280-
// - Other subclasses of DCmd have zero arguments by default. You can change this
281-
// by defining your own version of MyDCmd::num_arguments().
279+
// All subclasses should override this to report the actual number of arguments.
282280
static int num_arguments() { return 0; }
283281
outputStream* output() const { return _output; }
284282
bool is_heap_allocated() const { return _is_heap_allocated; }
@@ -439,13 +437,14 @@ template <class DCmdClass> class DCmdFactoryImpl : public DCmdFactory {
439437
}
440438

441439
private:
440+
#ifdef ASSERT
442441
template <typename T, ENABLE_IF(!std::is_base_of<DCmdWithParser, T>::value)>
443-
static int get_num_arguments() {
442+
static int get_parsed_num_arguments() {
444443
return T::num_arguments();
445444
}
446445

447446
template <typename T, ENABLE_IF(std::is_base_of<DCmdWithParser, T>::value)>
448-
static int get_num_arguments() {
447+
static int get_parsed_num_arguments() {
449448
ResourceMark rm;
450449
DCmdClass* dcmd = new DCmdClass(nullptr, false);
451450
if (dcmd != nullptr) {
@@ -455,6 +454,20 @@ template <class DCmdClass> class DCmdFactoryImpl : public DCmdFactory {
455454
return 0;
456455
}
457456
}
457+
#endif
458+
459+
template <typename T, ENABLE_IF(std::is_convertible<T, DCmd>::value)>
460+
static int get_num_arguments() {
461+
int n_args = T::num_arguments();
462+
#ifdef ASSERT
463+
int n_parsed_args = get_parsed_num_arguments<T>();
464+
assert(n_args == n_parsed_args,
465+
"static argument count %d does not match parsed argument count %d",
466+
n_args, n_parsed_args);
467+
#endif
468+
return n_args;
469+
}
470+
458471
};
459472

460473
#endif // SHARE_SERVICES_DIAGNOSTICFRAMEWORK_HPP

‎src/hotspot/share/services/nmtDCmd.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class NMTDCmd: public DCmdWithParser {
4444
DCmdArgument<char*> _scale;
4545

4646
public:
47+
static int num_arguments() { return 7; }
4748
NMTDCmd(outputStream* output, bool heap);
4849
static const char* name() { return "VM.native_memory"; }
4950
static const char* description() {

0 commit comments

Comments
 (0)
Please sign in to comment.