mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
8251505: Use of types in compiler shared code should be consistent.
Reviewed-by: phh
This commit is contained in:
parent
130cf46dcb
commit
b6935dfb86
10 changed files with 33 additions and 31 deletions
|
@ -222,7 +222,7 @@ class CompileBroker: AllStatic {
|
|||
static int _sum_standard_bytes_compiled;
|
||||
static int _sum_nmethod_size;
|
||||
static int _sum_nmethod_code_size;
|
||||
static long _peak_compilation_time;
|
||||
static jlong _peak_compilation_time;
|
||||
|
||||
static CompilerStatistics _stats_per_level[];
|
||||
|
||||
|
@ -411,8 +411,8 @@ public:
|
|||
static int get_sum_standard_bytes_compiled() { return _sum_standard_bytes_compiled; }
|
||||
static int get_sum_nmethod_size() { return _sum_nmethod_size;}
|
||||
static int get_sum_nmethod_code_size() { return _sum_nmethod_code_size; }
|
||||
static long get_peak_compilation_time() { return _peak_compilation_time; }
|
||||
static long get_total_compilation_time() { return _t_total_compilation.milliseconds(); }
|
||||
static jlong get_peak_compilation_time() { return _peak_compilation_time; }
|
||||
static jlong get_total_compilation_time() { return _t_total_compilation.milliseconds(); }
|
||||
|
||||
// Log that compilation profiling is skipped because metaspace is full.
|
||||
static void log_metaspace_failure();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue