mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 05:45:11 +02:00
6978355: renaming for 6961697
This is the renaming part of 6961697 to keep the actual changes small for review. Reviewed-by: kvn, never
This commit is contained in:
parent
3756a7daa9
commit
a4b2fe3b1c
66 changed files with 613 additions and 658 deletions
|
@ -399,7 +399,7 @@ void CompileTask::log_task_done(CompileLog* log) {
|
|||
// <task_done ... stamp='1.234'> </task>
|
||||
nmethod* nm = code();
|
||||
log->begin_elem("task_done success='%d' nmsize='%d' count='%d'",
|
||||
_is_success, nm == NULL ? 0 : nm->instructions_size(),
|
||||
_is_success, nm == NULL ? 0 : nm->content_size(),
|
||||
method->invocation_count());
|
||||
int bec = method->backedge_count();
|
||||
if (bec != 0) log->print(" backedge_count='%d'", bec);
|
||||
|
@ -1847,13 +1847,13 @@ void CompileBroker::collect_statistics(CompilerThread* thread, elapsedTimer time
|
|||
}
|
||||
|
||||
// Collect counts of successful compilations
|
||||
_sum_nmethod_size += code->total_size();
|
||||
_sum_nmethod_code_size += code->code_size();
|
||||
_sum_nmethod_size += code->total_size();
|
||||
_sum_nmethod_code_size += code->insts_size();
|
||||
_total_compile_count++;
|
||||
|
||||
if (UsePerfData) {
|
||||
_perf_sum_nmethod_size->inc(code->total_size());
|
||||
_perf_sum_nmethod_code_size->inc(code->code_size());
|
||||
_perf_sum_nmethod_size->inc( code->total_size());
|
||||
_perf_sum_nmethod_code_size->inc(code->insts_size());
|
||||
_perf_total_compile_count->inc();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue