Package org.xmlvm.refcount.optimizations

Examples of org.xmlvm.refcount.optimizations.DeferredNullingOptimization


    setWillFree(curRun.beenTo);

    // Start going through optimizations before generating change
    RefCountOptimization.ReturnValue ret= new RegisterSizeAndNullingOptimization().Process(curRun.allCodePaths, curRun.beenTo, codeElement);

    new DeferredNullingOptimization().Process(curRun.allCodePaths, curRun.beenTo, codeElement);

    // TODO fix this optimization
    // new ExcessRetainsOptimization().Process(curRun.allCodePaths,
    // curRun.beenTo, codeElement);
    toProcess.addAll(0, ret.functionInit);
View Full Code Here

TOP

Related Classes of org.xmlvm.refcount.optimizations.DeferredNullingOptimization

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.