/* * This file is part of the Jikes RVM project (http://jikesrvm.org). * * This file is licensed to You under the Eclipse Public License (EPL); * You may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.opensource.org/licenses/eclipse-1.0.php * * See the COPYRIGHT.txt file distributed with this work for information * regarding copyright ownership. */ package org.mmtk.plan.immix; import static org.mmtk.policy.immix.ImmixConstants.MARK_LINE_AT_SCAN_TIME; import org.mmtk.plan.TraceLocal; import org.mmtk.plan.Trace; import org.mmtk.policy.Space; import org.mmtk.utility.HeaderByte; import org.mmtk.utility.deque.ObjectReferenceDeque; import org.mmtk.vm.VM; import org.vmmagic.pragma.*; import org.vmmagic.unboxed.*; /** * This class implements the thread-local functionality for a transitive * closure over an immix space. */ @Uninterruptible public final class ImmixTraceLocal extends TraceLocal { /**************************************************************************** * * Instance fields */ private final ObjectReferenceDeque modBuffer; /** * Constructor * * @param trace The trace associated with this trace local. * @param modBuffer The modified objects buffer associated with this trace local. Possibly null. */ public ImmixTraceLocal(Trace trace, ObjectReferenceDeque modBuffer) { super(Immix.SCAN_IMMIX, trace); this.modBuffer = modBuffer; } /**************************************************************************** * * Externally visible Object processing and tracing */ /** * {@inheritDoc} */ @Override public boolean isLive(ObjectReference object) { if (object.isNull()) return false; if (Space.isInSpace(Immix.IMMIX, object)) { return Immix.immixSpace.fastIsLive(object); } return super.isLive(object); } /** * {@inheritDoc}<p> * * In this instance, we refer objects in the mark-sweep space to the * immixSpace for tracing, and defer to the superclass for all others. * * @param object The object to be traced. * @return The new reference to the same object instance. */ @Override @Inline public ObjectReference traceObject(ObjectReference object) { if (object.isNull()) return object; if (Space.isInSpace(Immix.IMMIX, object)) return Immix.immixSpace.fastTraceObject(this, object); return super.traceObject(object); } /** * Ensure that the referenced object will not move from this point through * to the end of the collection. This can involve forwarding the object * if necessary. */ @Inline @Override public boolean willNotMoveInCurrentCollection(ObjectReference object) { if (VM.VERIFY_ASSERTIONS) VM.assertions._assert(!Immix.immixSpace.inImmixDefragCollection()); return true; } @Inline @Override protected void scanObject(ObjectReference object) { super.scanObject(object); if (MARK_LINE_AT_SCAN_TIME && Space.isInSpace(Immix.IMMIX, object)) Immix.immixSpace.markLines(object); } /** * Process any remembered set entries. This means enumerating the * mod buffer and for each entry, marking the object as unlogged * (we don't enqueue for scanning since we're doing a full heap GC). */ @Override protected void processRememberedSets() { if (modBuffer != null) { logMessage(5, "clearing modBuffer"); while (!modBuffer.isEmpty()) { ObjectReference src = modBuffer.pop(); HeaderByte.markAsUnlogged(src); } } } }