Package avrora.core.isdl.gen

Examples of avrora.core.isdl.gen.ConstantPropagator$ConstantEnvironment


        // canonicalize the statement lists
        // TODO: all code should be in canonical form CodeMapGenerator
        // stmts = new Canonicalizer().process(stmts);

        if (CONSTANT_PROPAGATION.get()) {
            stmts = new ConstantPropagator().process(stmts);
        }
        if (DEAD_CODE_ELIMINATION.get()) {
            stmts = new DeadCodeEliminator(globalMap.keySet()).process(stmts);
        }
View Full Code Here

TOP

Related Classes of avrora.core.isdl.gen.ConstantPropagator$ConstantEnvironment

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.