Skip to content

Commit 8132548

Browse files
author
Nils Eliasson
committedApr 6, 2021
8264359: Compiler directives should enable DebugNonSafepoints when PrintAssembly is requested
Reviewed-by: kvn, thartmann
1 parent ec7b002 commit 8132548

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed
 

‎src/hotspot/share/compiler/compilerDirectives.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include "compiler/compilerOracle.hpp"
3131
#include "memory/allocation.inline.hpp"
3232
#include "memory/resourceArea.hpp"
33+
#include "runtime/globals_extension.hpp"
3334

3435
CompilerDirectives::CompilerDirectives() : _next(NULL), _match(NULL), _ref_count(0) {
3536
_c1_store = new DirectiveSet(this);
@@ -104,6 +105,10 @@ void DirectiveSet::finalize(outputStream* st) {
104105
if (LogOption && !LogCompilation) {
105106
st->print_cr("Warning: +LogCompilation must be set to enable compilation logging from directives");
106107
}
108+
if (PrintAssemblyOption && FLAG_IS_DEFAULT(DebugNonSafepoints)) {
109+
warning("printing of assembly code is enabled; turning on DebugNonSafepoints to gain additional output");
110+
DebugNonSafepoints = true;
111+
}
107112

108113
// if any flag has been modified - set directive as enabled
109114
// unless it already has been explicitly set.

‎src/hotspot/share/compiler/compilerOracle.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -911,9 +911,6 @@ void compilerOracle_init() {
911911
if (has_command(CompileCommand::Print)) {
912912
if (PrintAssembly) {
913913
warning("CompileCommand and/or %s file contains 'print' commands, but PrintAssembly is also enabled", default_cc_file);
914-
} else if (FLAG_IS_DEFAULT(DebugNonSafepoints)) {
915-
warning("printing of assembly code is enabled; turning on DebugNonSafepoints to gain additional output");
916-
DebugNonSafepoints = true;
917914
}
918915
}
919916
}

0 commit comments

Comments
 (0)
Please sign in to comment.