mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 03:54:33 +02:00
8011675: adding compilation level to replay data
Reviewed-by: kvn, vlivanov
This commit is contained in:
parent
5733943877
commit
0a434e425b
14 changed files with 587 additions and 29 deletions
|
@ -1164,13 +1164,15 @@ void ciEnv::dump_replay_data(outputStream* out) {
|
|||
for (int i = 0; i < objects->length(); i++) {
|
||||
objects->at(i)->dump_replay_data(out);
|
||||
}
|
||||
Method* method = task()->method();
|
||||
int entry_bci = task()->osr_bci();
|
||||
CompileTask* task = this->task();
|
||||
Method* method = task->method();
|
||||
int entry_bci = task->osr_bci();
|
||||
int comp_level = task->comp_level();
|
||||
// Klass holder = method->method_holder();
|
||||
out->print_cr("compile %s %s %s %d",
|
||||
out->print_cr("compile %s %s %s %d %d",
|
||||
method->klass_name()->as_quoted_ascii(),
|
||||
method->name()->as_quoted_ascii(),
|
||||
method->signature()->as_quoted_ascii(),
|
||||
entry_bci);
|
||||
entry_bci, comp_level);
|
||||
out->flush();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue