src/share/vm/gc_implementation/parallelScavenge/pcTasks.cpp

Tue, 23 Nov 2010 13:22:55 -0800

author
stefank
date
Tue, 23 Nov 2010 13:22:55 -0800
changeset 2314
f95d63e2154a
parent 2191
894b1d7c7e01
child 2497
3582bf76420e
permissions
-rw-r--r--

6989984: Use standard include model for Hospot
Summary: Replaced MakeDeps and the includeDB files with more standardized solutions.
Reviewed-by: coleenp, kvn, kamg

     1 /*
     2  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 #include "precompiled.hpp"
    26 #include "classfile/systemDictionary.hpp"
    27 #include "code/codeCache.hpp"
    28 #include "gc_implementation/parallelScavenge/pcTasks.hpp"
    29 #include "gc_implementation/parallelScavenge/psParallelCompact.hpp"
    30 #include "gc_interface/collectedHeap.hpp"
    31 #include "memory/universe.hpp"
    32 #include "oops/objArrayKlass.inline.hpp"
    33 #include "oops/oop.inline.hpp"
    34 #include "oops/oop.pcgc.inline.hpp"
    35 #include "prims/jvmtiExport.hpp"
    36 #include "runtime/fprofiler.hpp"
    37 #include "runtime/jniHandles.hpp"
    38 #include "runtime/thread.hpp"
    39 #include "runtime/vmThread.hpp"
    40 #include "services/management.hpp"
    42 //
    43 // ThreadRootsMarkingTask
    44 //
    46 void ThreadRootsMarkingTask::do_it(GCTaskManager* manager, uint which) {
    47   assert(Universe::heap()->is_gc_active(), "called outside gc");
    49   ResourceMark rm;
    51   NOT_PRODUCT(TraceTime tm("ThreadRootsMarkingTask",
    52     PrintGCDetails && TraceParallelOldGCTasks, true, gclog_or_tty));
    53   ParCompactionManager* cm =
    54     ParCompactionManager::gc_thread_compaction_manager(which);
    55   PSParallelCompact::MarkAndPushClosure mark_and_push_closure(cm);
    56   CodeBlobToOopClosure mark_and_push_in_blobs(&mark_and_push_closure, /*do_marking=*/ true);
    58   if (_java_thread != NULL)
    59     _java_thread->oops_do(&mark_and_push_closure, &mark_and_push_in_blobs);
    61   if (_vm_thread != NULL)
    62     _vm_thread->oops_do(&mark_and_push_closure, &mark_and_push_in_blobs);
    64   // Do the real work
    65   cm->follow_marking_stacks();
    66 }
    69 void MarkFromRootsTask::do_it(GCTaskManager* manager, uint which) {
    70   assert(Universe::heap()->is_gc_active(), "called outside gc");
    72   NOT_PRODUCT(TraceTime tm("MarkFromRootsTask",
    73     PrintGCDetails && TraceParallelOldGCTasks, true, gclog_or_tty));
    74   ParCompactionManager* cm =
    75     ParCompactionManager::gc_thread_compaction_manager(which);
    76   PSParallelCompact::MarkAndPushClosure mark_and_push_closure(cm);
    78   switch (_root_type) {
    79     case universe:
    80       Universe::oops_do(&mark_and_push_closure);
    81       break;
    83     case reference_processing:
    84       ReferenceProcessor::oops_do(&mark_and_push_closure);
    85       break;
    87     case jni_handles:
    88       JNIHandles::oops_do(&mark_and_push_closure);
    89       break;
    91     case threads:
    92     {
    93       ResourceMark rm;
    94       CodeBlobToOopClosure each_active_code_blob(&mark_and_push_closure, /*do_marking=*/ true);
    95       Threads::oops_do(&mark_and_push_closure, &each_active_code_blob);
    96     }
    97     break;
    99     case object_synchronizer:
   100       ObjectSynchronizer::oops_do(&mark_and_push_closure);
   101       break;
   103     case flat_profiler:
   104       FlatProfiler::oops_do(&mark_and_push_closure);
   105       break;
   107     case management:
   108       Management::oops_do(&mark_and_push_closure);
   109       break;
   111     case jvmti:
   112       JvmtiExport::oops_do(&mark_and_push_closure);
   113       break;
   115     case system_dictionary:
   116       SystemDictionary::always_strong_oops_do(&mark_and_push_closure);
   117       break;
   119     case vm_symbols:
   120       vmSymbols::oops_do(&mark_and_push_closure);
   121       break;
   123     case code_cache:
   124       // Do not treat nmethods as strong roots for mark/sweep, since we can unload them.
   125       //CodeCache::scavenge_root_nmethods_do(CodeBlobToOopClosure(&mark_and_push_closure));
   126       break;
   128     default:
   129       fatal("Unknown root type");
   130   }
   132   // Do the real work
   133   cm->follow_marking_stacks();
   134 }
   137 //
   138 // RefProcTaskProxy
   139 //
   141 void RefProcTaskProxy::do_it(GCTaskManager* manager, uint which)
   142 {
   143   assert(Universe::heap()->is_gc_active(), "called outside gc");
   145   NOT_PRODUCT(TraceTime tm("RefProcTask",
   146     PrintGCDetails && TraceParallelOldGCTasks, true, gclog_or_tty));
   147   ParCompactionManager* cm =
   148     ParCompactionManager::gc_thread_compaction_manager(which);
   149   PSParallelCompact::MarkAndPushClosure mark_and_push_closure(cm);
   150   PSParallelCompact::FollowStackClosure follow_stack_closure(cm);
   151   _rp_task.work(_work_id, *PSParallelCompact::is_alive_closure(),
   152                 mark_and_push_closure, follow_stack_closure);
   153 }
   155 //
   156 // RefProcTaskExecutor
   157 //
   159 void RefProcTaskExecutor::execute(ProcessTask& task)
   160 {
   161   ParallelScavengeHeap* heap = PSParallelCompact::gc_heap();
   162   uint parallel_gc_threads = heap->gc_task_manager()->workers();
   163   RegionTaskQueueSet* qset = ParCompactionManager::region_array();
   164   ParallelTaskTerminator terminator(parallel_gc_threads, qset);
   165   GCTaskQueue* q = GCTaskQueue::create();
   166   for(uint i=0; i<parallel_gc_threads; i++) {
   167     q->enqueue(new RefProcTaskProxy(task, i));
   168   }
   169   if (task.marks_oops_alive()) {
   170     if (parallel_gc_threads>1) {
   171       for (uint j=0; j<parallel_gc_threads; j++) {
   172         q->enqueue(new StealMarkingTask(&terminator));
   173       }
   174     }
   175   }
   176   PSParallelCompact::gc_task_manager()->execute_and_wait(q);
   177 }
   179 void RefProcTaskExecutor::execute(EnqueueTask& task)
   180 {
   181   ParallelScavengeHeap* heap = PSParallelCompact::gc_heap();
   182   uint parallel_gc_threads = heap->gc_task_manager()->workers();
   183   GCTaskQueue* q = GCTaskQueue::create();
   184   for(uint i=0; i<parallel_gc_threads; i++) {
   185     q->enqueue(new RefEnqueueTaskProxy(task, i));
   186   }
   187   PSParallelCompact::gc_task_manager()->execute_and_wait(q);
   188 }
   190 //
   191 // StealMarkingTask
   192 //
   194 StealMarkingTask::StealMarkingTask(ParallelTaskTerminator* t) :
   195   _terminator(t) {}
   197 void StealMarkingTask::do_it(GCTaskManager* manager, uint which) {
   198   assert(Universe::heap()->is_gc_active(), "called outside gc");
   200   NOT_PRODUCT(TraceTime tm("StealMarkingTask",
   201     PrintGCDetails && TraceParallelOldGCTasks, true, gclog_or_tty));
   203   ParCompactionManager* cm =
   204     ParCompactionManager::gc_thread_compaction_manager(which);
   205   PSParallelCompact::MarkAndPushClosure mark_and_push_closure(cm);
   207   oop obj = NULL;
   208   ObjArrayTask task;
   209   int random_seed = 17;
   210   do {
   211     while (ParCompactionManager::steal_objarray(which, &random_seed, task)) {
   212       objArrayKlass* const k = (objArrayKlass*)task.obj()->blueprint();
   213       k->oop_follow_contents(cm, task.obj(), task.index());
   214       cm->follow_marking_stacks();
   215     }
   216     while (ParCompactionManager::steal(which, &random_seed, obj)) {
   217       obj->follow_contents(cm);
   218       cm->follow_marking_stacks();
   219     }
   220   } while (!terminator()->offer_termination());
   221 }
   223 //
   224 // StealRegionCompactionTask
   225 //
   228 StealRegionCompactionTask::StealRegionCompactionTask(ParallelTaskTerminator* t):
   229   _terminator(t) {}
   231 void StealRegionCompactionTask::do_it(GCTaskManager* manager, uint which) {
   232   assert(Universe::heap()->is_gc_active(), "called outside gc");
   234   NOT_PRODUCT(TraceTime tm("StealRegionCompactionTask",
   235     PrintGCDetails && TraceParallelOldGCTasks, true, gclog_or_tty));
   237   ParCompactionManager* cm =
   238     ParCompactionManager::gc_thread_compaction_manager(which);
   240   // Has to drain stacks first because there may be regions on
   241   // preloaded onto the stack and this thread may never have
   242   // done a draining task.  Are the draining tasks needed?
   244   cm->drain_region_stacks();
   246   size_t region_index = 0;
   247   int random_seed = 17;
   249   // If we're the termination task, try 10 rounds of stealing before
   250   // setting the termination flag
   252   while(true) {
   253     if (ParCompactionManager::steal(which, &random_seed, region_index)) {
   254       PSParallelCompact::fill_and_update_region(cm, region_index);
   255       cm->drain_region_stacks();
   256     } else {
   257       if (terminator()->offer_termination()) {
   258         break;
   259       }
   260       // Go around again.
   261     }
   262   }
   263   return;
   264 }
   266 UpdateDensePrefixTask::UpdateDensePrefixTask(
   267                                    PSParallelCompact::SpaceId space_id,
   268                                    size_t region_index_start,
   269                                    size_t region_index_end) :
   270   _space_id(space_id), _region_index_start(region_index_start),
   271   _region_index_end(region_index_end) {}
   273 void UpdateDensePrefixTask::do_it(GCTaskManager* manager, uint which) {
   275   NOT_PRODUCT(TraceTime tm("UpdateDensePrefixTask",
   276     PrintGCDetails && TraceParallelOldGCTasks, true, gclog_or_tty));
   278   ParCompactionManager* cm =
   279     ParCompactionManager::gc_thread_compaction_manager(which);
   281   PSParallelCompact::update_and_deadwood_in_dense_prefix(cm,
   282                                                          _space_id,
   283                                                          _region_index_start,
   284                                                          _region_index_end);
   285 }
   287 void DrainStacksCompactionTask::do_it(GCTaskManager* manager, uint which) {
   288   assert(Universe::heap()->is_gc_active(), "called outside gc");
   290   NOT_PRODUCT(TraceTime tm("DrainStacksCompactionTask",
   291     PrintGCDetails && TraceParallelOldGCTasks, true, gclog_or_tty));
   293   ParCompactionManager* cm =
   294     ParCompactionManager::gc_thread_compaction_manager(which);
   296   // Process any regions already in the compaction managers stacks.
   297   cm->drain_region_stacks();
   298 }

mercurial