|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.mmtk.plan.Plan org.mmtk.plan.Simple org.mmtk.plan.StopTheWorld org.mmtk.plan.markcompact.MC
public class MC
This class implements the global state of a simple sliding mark-compact collector.
FIXME Need algorithmic overview and references.
All plans make a clear distinction between global and thread-local activities, and divides global and local state into separate class hierarchies. Global activities must be synchronized, whereas no synchronization is required for thread-local activities. There is a single instance of Plan (or the appropriate sub-class), and a 1:1 mapping of PlanLocal to "kernel threads" (aka CPUs). Thus instance methods of PlanLocal allow fast, unsychronized access to functions such as allocation and collection.
The global instance defines and manages static resources (such as memory and virtual memory resources). This mapping of threads to instances is crucial to understanding the correctness and performance properties of MMTk plans.
Field Summary | |
---|---|
static short |
CALCULATE_FP
Calculate forwarding pointers via a linear scan over the heap |
static short |
COMPACT
Perform compaction via a linear scan over the heap |
static short |
FORWARD_CLOSURE
|
Trace |
forwardTrace
This trace updates pointers with the forwarded references |
static int |
MARK_COMPACT
The space descriptor |
Trace |
markTrace
This trace sets the mark bit in live objects |
short |
mcCollection
This is the phase that is executed to perform a mark-compact collection. |
static MarkCompactSpace |
mcSpace
The mark compact space itself |
static short |
PREPARE_FORWARD
|
static short |
RELEASE_FORWARD
|
static int |
SCAN_FORWARD
Specialized method identifier for the FORWARD phase |
static int |
SCAN_MARK
Specialized method identifier for the MARK phase |
Fields inherited from class org.mmtk.plan.StopTheWorld |
---|
postSanityPhase, preSanityPhase |
Constructor Summary | |
---|---|
MC()
Constructor. |
Method Summary | |
---|---|
void |
collectionPhase(short phaseId)
Perform a (global) collection phase. |
int |
getPagesUsed()
Return the number of pages reserved for use given the pending allocation. |
protected void |
registerSpecializedMethods()
Register specialized methods. |
int |
sanityExpectedRC(ObjectReference object,
int sanityRootRC)
Return the expected reference count. |
boolean |
willNeverMove(ObjectReference object)
Can this object ever move. |
Methods inherited from class org.mmtk.plan.StopTheWorld |
---|
processOptions |
Methods inherited from class org.mmtk.plan.Simple |
---|
replacePhase, replacePlaceholderPhase, switchNurseryZeroingApproach |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final MarkCompactSpace mcSpace
public static final int MARK_COMPACT
public static final int SCAN_MARK
public static final int SCAN_FORWARD
public static final short PREPARE_FORWARD
public static final short FORWARD_CLOSURE
public static final short RELEASE_FORWARD
public static final short CALCULATE_FP
public static final short COMPACT
public short mcCollection
public final Trace markTrace
public final Trace forwardTrace
Constructor Detail |
---|
public MC()
Method Detail |
---|
public final void collectionPhase(short phaseId)
collectionPhase
in class Simple
phaseId
- The unique id of the phase to perform.public int getPagesUsed()
getPagesUsed
in class Plan
public boolean willNeverMove(ObjectReference object)
Plan
willNeverMove
in class Plan
object
- The object in question
true
if it is not possible that the object will ever move.public int sanityExpectedRC(ObjectReference object, int sanityRootRC)
Plan
true/false
relationship.
sanityExpectedRC
in class Plan
object
- The object to check.sanityRootRC
- The number of root references to the object.
protected void registerSpecializedMethods()
Plan
registerSpecializedMethods
in class Plan
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |