Uses of Class
org.mmtk.plan.StopTheWorld

Packages that use StopTheWorld
org.jikesrvm.mm.mminterface   
org.mmtk.plan   
org.mmtk.plan.copyms   
org.mmtk.plan.generational   
org.mmtk.plan.generational.copying   
org.mmtk.plan.generational.immix   
org.mmtk.plan.generational.marksweep   
org.mmtk.plan.immix   
org.mmtk.plan.markcompact   
org.mmtk.plan.marksweep   
org.mmtk.plan.poisoned   
org.mmtk.plan.refcount   
org.mmtk.plan.refcount.fullheap   
org.mmtk.plan.refcount.generational   
org.mmtk.plan.semispace   
org.mmtk.plan.semispace.gcspy   
org.mmtk.plan.semispace.gctrace   
org.mmtk.plan.semispace.usePrimitiveWriteBarriers   
org.mmtk.plan.stickyimmix   
org.mmtk.plan.stickyms   
 

Uses of StopTheWorld in org.jikesrvm.mm.mminterface
 

Subclasses of StopTheWorld in org.jikesrvm.mm.mminterface
static class Selected.Plan
           
 

Uses of StopTheWorld in org.mmtk.plan
 

Methods in org.mmtk.plan that return StopTheWorld
private static StopTheWorld StopTheWorldCollector.global()
           
 

Uses of StopTheWorld in org.mmtk.plan.copyms
 

Subclasses of StopTheWorld in org.mmtk.plan.copyms
 class CopyMS
          This class implements the global state of a full-heap collector with a copying nursery and mark-sweep mature space.
 

Uses of StopTheWorld in org.mmtk.plan.generational
 

Subclasses of StopTheWorld in org.mmtk.plan.generational
 class Gen
          This abstract class implements the core functionality of generic two-generation copying collectors.
 

Uses of StopTheWorld in org.mmtk.plan.generational.copying
 

Subclasses of StopTheWorld in org.mmtk.plan.generational.copying
 class GenCopy
          This class implements the functionality of a standard two-generation copying collector.
 

Uses of StopTheWorld in org.mmtk.plan.generational.immix
 

Subclasses of StopTheWorld in org.mmtk.plan.generational.immix
 class GenImmix
          This class implements the functionality of a two-generation copying collector where the higher generation is an immix space.
 

Uses of StopTheWorld in org.mmtk.plan.generational.marksweep
 

Subclasses of StopTheWorld in org.mmtk.plan.generational.marksweep
 class GenMS
          This class implements the functionality of a two-generation copying collector where the higher generation is a mark-sweep space (free list allocation, mark-sweep collection).
 

Uses of StopTheWorld in org.mmtk.plan.immix
 

Subclasses of StopTheWorld in org.mmtk.plan.immix
 class Immix
          This class implements the global state of an immix collector.
 

Uses of StopTheWorld in org.mmtk.plan.markcompact
 

Subclasses of StopTheWorld in org.mmtk.plan.markcompact
 class MC
          This class implements the global state of a simple sliding mark-compact collector.
 

Uses of StopTheWorld in org.mmtk.plan.marksweep
 

Subclasses of StopTheWorld in org.mmtk.plan.marksweep
 class MS
          This class implements the global state of a simple mark-sweep collector.
 

Uses of StopTheWorld in org.mmtk.plan.poisoned
 

Subclasses of StopTheWorld in org.mmtk.plan.poisoned
 class Poisoned
          This class implements a poisoned collector, that is essentially a test case for read and write barriers in the VM.
 

Uses of StopTheWorld in org.mmtk.plan.refcount
 

Subclasses of StopTheWorld in org.mmtk.plan.refcount
 class RCBase
          This class implements the global state of a reference counting collector.
 

Uses of StopTheWorld in org.mmtk.plan.refcount.fullheap
 

Subclasses of StopTheWorld in org.mmtk.plan.refcount.fullheap
 class RC
          This class implements the global state of a reference counting collector.
 

Uses of StopTheWorld in org.mmtk.plan.refcount.generational
 

Subclasses of StopTheWorld in org.mmtk.plan.refcount.generational
 class GenRC
          This class implements the global state of a a simple reference counting collector.
 

Uses of StopTheWorld in org.mmtk.plan.semispace
 

Subclasses of StopTheWorld in org.mmtk.plan.semispace
 class SS
          This class implements a simple semi-space collector.
 

Uses of StopTheWorld in org.mmtk.plan.semispace.gcspy
 

Subclasses of StopTheWorld in org.mmtk.plan.semispace.gcspy
 class SSGCspy
          This class extends a simple semi-space collector to instrument it for GCspy.
 

Uses of StopTheWorld in org.mmtk.plan.semispace.gctrace
 

Subclasses of StopTheWorld in org.mmtk.plan.semispace.gctrace
 class GCTrace
          This plan has been modified slightly to perform the processing necessary for GC trace generation.
 

Uses of StopTheWorld in org.mmtk.plan.semispace.usePrimitiveWriteBarriers
 

Subclasses of StopTheWorld in org.mmtk.plan.semispace.usePrimitiveWriteBarriers
 class UsePrimitiveWriteBarriers
          This class exercises primitive write barriers The write barriers contain no payloads but merely perform a write to the heap
 

Uses of StopTheWorld in org.mmtk.plan.stickyimmix
 

Subclasses of StopTheWorld in org.mmtk.plan.stickyimmix
 class StickyImmix
          This class implements the global state of a simple sticky mark bits collector, based on an immix collector.
 

Uses of StopTheWorld in org.mmtk.plan.stickyms
 

Subclasses of StopTheWorld in org.mmtk.plan.stickyms
 class StickyMS
          This class implements the global state of a simple sticky mark bits collector, based a simple on mark-sweep collector.