Examples of linearize()


Examples of org.jruby.compiler.ir.representations.CFG.linearize()

    public void run(IRScope s) {
        if (s instanceof IRExecutionScope) {
//            System.out.println("Linearizing cfg for " + s);
        CFG cfg = ((IRExecutionScope)s).getCFG();
            List<BasicBlock> bbs = cfg.linearize();
/*
            StringBuffer buf = new StringBuffer();
            for (BasicBlock b : bbs) {
                buf.append(b.toStringInstrs());
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.