src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp
changeset 54669 ad45b3802d4e
parent 54465 c4f16445675a
child 54713 040bf087ae39
equal deleted inserted replaced
54668:0bda2308eded 54669:ad45b3802d4e
    58   _gc_par_phases[ObjectSynchronizerRoots] = new WorkerDataArray<double>(max_gc_threads, "ObjectSynchronizer Roots (ms):");
    58   _gc_par_phases[ObjectSynchronizerRoots] = new WorkerDataArray<double>(max_gc_threads, "ObjectSynchronizer Roots (ms):");
    59   _gc_par_phases[ManagementRoots] = new WorkerDataArray<double>(max_gc_threads, "Management Roots (ms):");
    59   _gc_par_phases[ManagementRoots] = new WorkerDataArray<double>(max_gc_threads, "Management Roots (ms):");
    60   _gc_par_phases[SystemDictionaryRoots] = new WorkerDataArray<double>(max_gc_threads, "SystemDictionary Roots (ms):");
    60   _gc_par_phases[SystemDictionaryRoots] = new WorkerDataArray<double>(max_gc_threads, "SystemDictionary Roots (ms):");
    61   _gc_par_phases[CLDGRoots] = new WorkerDataArray<double>(max_gc_threads, "CLDG Roots (ms):");
    61   _gc_par_phases[CLDGRoots] = new WorkerDataArray<double>(max_gc_threads, "CLDG Roots (ms):");
    62   _gc_par_phases[JVMTIRoots] = new WorkerDataArray<double>(max_gc_threads, "JVMTI Roots (ms):");
    62   _gc_par_phases[JVMTIRoots] = new WorkerDataArray<double>(max_gc_threads, "JVMTI Roots (ms):");
    63 #if INCLUDE_AOT
    63   AOT_ONLY(_gc_par_phases[AOTCodeRoots] = new WorkerDataArray<double>(max_gc_threads, "AOT Root Scan (ms):");)
    64   _gc_par_phases[AOTCodeRoots] = new WorkerDataArray<double>(max_gc_threads, "AOT Root Scan (ms):");
    64   JVMCI_ONLY(_gc_par_phases[JVMCIRoots] = new WorkerDataArray<double>(max_gc_threads, "JVMCI Root Scan (ms):");)
    65 #endif
       
    66   _gc_par_phases[CMRefRoots] = new WorkerDataArray<double>(max_gc_threads, "CM RefProcessor Roots (ms):");
    65   _gc_par_phases[CMRefRoots] = new WorkerDataArray<double>(max_gc_threads, "CM RefProcessor Roots (ms):");
    67   _gc_par_phases[WaitForStrongCLD] = new WorkerDataArray<double>(max_gc_threads, "Wait For Strong CLD (ms):");
    66   _gc_par_phases[WaitForStrongCLD] = new WorkerDataArray<double>(max_gc_threads, "Wait For Strong CLD (ms):");
    68   _gc_par_phases[WeakCLDRoots] = new WorkerDataArray<double>(max_gc_threads, "Weak CLD Roots (ms):");
    67   _gc_par_phases[WeakCLDRoots] = new WorkerDataArray<double>(max_gc_threads, "Weak CLD Roots (ms):");
    69   _gc_par_phases[SATBFiltering] = new WorkerDataArray<double>(max_gc_threads, "SATB Filtering (ms):");
    68   _gc_par_phases[SATBFiltering] = new WorkerDataArray<double>(max_gc_threads, "SATB Filtering (ms):");
    70 
    69 
   525       "ObjectSynchronizerRoots",
   524       "ObjectSynchronizerRoots",
   526       "ManagementRoots",
   525       "ManagementRoots",
   527       "SystemDictionaryRoots",
   526       "SystemDictionaryRoots",
   528       "CLDGRoots",
   527       "CLDGRoots",
   529       "JVMTIRoots",
   528       "JVMTIRoots",
   530 #if INCLUDE_AOT
   529       AOT_ONLY("AOTCodeRoots" COMMA)
   531       "AOTCodeRoots",
   530       JVMCI_ONLY("JVMCIRoots" COMMA)
   532 #endif
       
   533       "CMRefRoots",
   531       "CMRefRoots",
   534       "WaitForStrongCLD",
   532       "WaitForStrongCLD",
   535       "WeakCLDRoots",
   533       "WeakCLDRoots",
   536       "SATBFiltering",
   534       "SATBFiltering",
   537       "UpdateRS",
   535       "UpdateRS",