Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8293287 add ReplayReduce flag #10134

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/hotspot/share/ci/ciEnv.cpp
Original file line number Diff line number Diff line change
@@ -1647,6 +1647,12 @@ void ciEnv::find_dynamic_call_sites() {
void ciEnv::dump_compile_data(outputStream* out) {
CompileTask* task = this->task();
if (task) {
#ifdef COMPILER2
if (ReplayReduce && compiler_data() != NULL) {
// Dump C2 "reduced" inlining data.
((Compile*)compiler_data())->dump_inline_data_reduced(out);
}
#endif
Method* method = task->method();
int entry_bci = task->osr_bci();
int comp_level = task->comp_level();
10 changes: 2 additions & 8 deletions src/hotspot/share/ci/ciReplay.cpp
Original file line number Diff line number Diff line change
@@ -633,6 +633,7 @@ class CompileReplay : public StackObj {
}
line_no++;
}
reset();
}

void process_command(TRAPS) {
@@ -731,13 +732,7 @@ class CompileReplay : public StackObj {
Method* method = parse_method(CHECK);
if (had_error()) return;
int entry_bci = parse_int("entry_bci");
const char* comp_level_label = "comp_level";
int comp_level = parse_int(comp_level_label);
// old version w/o comp_level
if (had_error() && (error_message() == comp_level_label)) {
// use highest available tier
comp_level = CompilationPolicy::highest_compile_level();
}
int comp_level = parse_int("comp_level");
if (!is_valid_comp_level(comp_level)) {
return;
}
@@ -808,7 +803,6 @@ class CompileReplay : public StackObj {
CompileBroker::compile_method(methodHandle(THREAD, method), entry_bci, comp_level,
methodHandle(), 0, CompileTask::Reason_Replay, THREAD);
replay_state = NULL;
reset();
}

// ciMethod <klass> <name> <signature> <invocation_counter> <backedge_counter> <interpreter_invocation_count> <interpreter_throwout_count> <instructions_size>
3 changes: 3 additions & 0 deletions src/hotspot/share/compiler/compiler_globals.hpp
Original file line number Diff line number Diff line change
@@ -308,6 +308,9 @@
product(bool, ReplayCompiles, false, DIAGNOSTIC, \
"Enable replay of compilations from ReplayDataFile") \
\
product(bool, ReplayReduce, false, EXPERIMENTAL, \
"Enable features to facilitate replay file reduction") \
\
product(ccstr, ReplayDataFile, NULL, \
"File containing compilation replay information" \
"[default: ./replay_pid%p.log] (%p replaced with pid)") \
6 changes: 3 additions & 3 deletions src/hotspot/share/opto/bytecodeInfo.cpp
Original file line number Diff line number Diff line change
@@ -713,11 +713,11 @@ int InlineTree::count() const {
return result;
}

void InlineTree::dump_replay_data(outputStream* out) {
out->print(" %d %d %d ", inline_level(), caller_bci(), _late_inline);
void InlineTree::dump_replay_data(outputStream* out, int depth_adjust) {
out->print(" %d %d %d ", inline_level() + depth_adjust, caller_bci(), _late_inline);
method()->dump_name_as_ascii(out);
for (int i = 0 ; i < _subtrees.length(); i++) {
_subtrees.at(i)->dump_replay_data(out);
_subtrees.at(i)->dump_replay_data(out, depth_adjust);
}
}

29 changes: 29 additions & 0 deletions src/hotspot/share/opto/compile.cpp
Original file line number Diff line number Diff line change
@@ -4573,6 +4573,35 @@ void Compile::dump_inline_data(outputStream* out) {
}
}

void Compile::dump_inline_data_reduced(outputStream* out) {
assert(ReplayReduce, "");

InlineTree* inl_tree = ilt();
if (inl_tree == NULL) {
return;
}
// Enable iterative replay file reduction
// Output "compile" lines for depth 1 subtrees,
// simulating that those trees were compiled
// instead of inlined.
for (int i = 0; i < inl_tree->subtrees().length(); ++i) {
InlineTree* sub = inl_tree->subtrees().at(i);
if (sub->inline_level() != 1) {
continue;
}

ciMethod* method = sub->method();
int entry_bci = -1;
int comp_level = env()->task()->comp_level();
out->print("compile ");
method->dump_name_as_ascii(out);
out->print(" %d %d", entry_bci, comp_level);
out->print(" inline %d", sub->count());
sub->dump_replay_data(out, -1);
out->cr();
}
}

int Compile::cmp_expensive_nodes(Node* n1, Node* n2) {
if (n1->Opcode() < n2->Opcode()) return -1;
else if (n1->Opcode() > n2->Opcode()) return 1;
1 change: 1 addition & 0 deletions src/hotspot/share/opto/compile.hpp
Original file line number Diff line number Diff line change
@@ -506,6 +506,7 @@ class Compile : public Phase {

// Dump inlining replay data to the stream.
void dump_inline_data(outputStream* out);
void dump_inline_data_reduced(outputStream* out);

private:
// Matching, CFG layout, allocation, code generation
4 changes: 2 additions & 2 deletions src/hotspot/share/opto/parse.hpp
Original file line number Diff line number Diff line change
@@ -92,7 +92,6 @@ class InlineTree : public ResourceObj {

InlineTree* caller_tree() const { return _caller_tree; }
InlineTree* callee_at(int bci, ciMethod* m) const;
int inline_level() const { return stack_depth(); }
int stack_depth() const { return _caller_jvms ? _caller_jvms->depth() : 0; }
const char* msg() const { return _msg; }
void set_msg(const char* msg) { _msg = msg; }
@@ -124,6 +123,7 @@ class InlineTree : public ResourceObj {
ciMethod *method() const { return _method; }
int caller_bci() const { return _caller_jvms ? _caller_jvms->bci() : InvocationEntryBci; }
uint count_inline_bcs() const { return _count_inline_bcs; }
int inline_level() const { return stack_depth(); }

#ifndef PRODUCT
private:
@@ -141,7 +141,7 @@ class InlineTree : public ResourceObj {
// Count number of nodes in this subtree
int count() const;
// Dump inlining replay data to the stream.
void dump_replay_data(outputStream* out);
void dump_replay_data(outputStream* out, int depth_adjust = 0);
};


2 changes: 1 addition & 1 deletion src/hotspot/share/utilities/vmError.cpp
Original file line number Diff line number Diff line change
@@ -1698,7 +1698,7 @@ void VMError::report_and_die(int id, const char* message, const char* detail_fmt
MemTracker::final_report(&fds);
}

static bool skip_replay = ReplayCompiles; // Do not overwrite file during replay
static bool skip_replay = ReplayCompiles && !ReplayReduce; // Do not overwrite file during replay
if (DumpReplayDataOnError && _thread && _thread->is_Compiler_thread() && !skip_replay) {
skip_replay = true;
ciEnv* env = ciEnv::current();
80 changes: 0 additions & 80 deletions test/hotspot/jtreg/compiler/ciReplay/TestVMNoCompLevel.java

This file was deleted.