Package org.mmtk.plan.marksweep

Examples of org.mmtk.plan.marksweep.MS


    public static final Plan get() throws InlinePragma
    {
        if (SelectedPlan.singleton == null)
        {
            SelectedPlan.singleton = new MS();
            //SelectedPlan.singleton = new SS();
            //SelectedPlan.singleton = new CopyMS();
            //SelectedPlan.singleton = new GenMS();
        }
        return singleton;
View Full Code Here


    static CollectorContext cc;
    public static void main(String[] args)
    {
        VM vm_init = new VM();
        //NoGC pl2 = (NoGC)SelectedPlan.get();
        MS pl2 = (MS)SelectedPlan.get();
        Plan pl = SelectedPlan.ap.global();

        pl2.boot();
        pl.fullyBooted();
        org.apache.HarmonyDRLVM.mm.mmtk.SynchronizedCounter.boot();
        // toss Mmapper.boot(Address.zero(), 0 );
        HeapGrowthManager.boot(Extent.fromInt(1024*1024*1), Extent.fromInt(1024*1024*1) ); //set the java heap very small to force collections

View Full Code Here

TOP

Related Classes of org.mmtk.plan.marksweep.MS

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.