예제 #1
0
 static jlong unloaded_class_bytes() {
   if (UsePerfData) {
     return _classbytes_unloaded->get_value() + _shared_classbytes_unloaded->get_value();
   } else {
     return -1;
   }
 }
예제 #2
0
 static jlong get_total_thread_count()       { return _total_threads_count->get_value(); }
예제 #3
0
 static jlong unloaded_shared_class_count() {
   return _shared_classes_unloaded_count->get_value();
 }
예제 #4
0
 static jlong loaded_class_count() {
   return _classes_loaded_count->get_value() + _shared_classes_loaded_count->get_value();
 }
예제 #5
0
 // Return total compilation ticks
 static jlong total_compilation_ticks() {
   return _perf_total_compilation != NULL ? _perf_total_compilation->get_value() : 0;
 }