Package avrora.core.ControlFlowGraph

Examples of avrora.core.ControlFlowGraph.Block


            //scan each basic block and fine the corresponding label, e.g. procedure
            Iterator it = program.getCFG().getSortedBlockIterator();
            int address;
            int size;
            while (it.hasNext()) {
                Block block = (Block)it.next();
                size = block.getSize();
                address = block.getAddress();
                if (size > 0 && program.readInstr(address) != null) {
                    labelLookup.put(new Integer(address), nearestLabel(address));
                    s.insertProbe(procedureProbe, address);
                }
            }
View Full Code Here

TOP

Related Classes of avrora.core.ControlFlowGraph.Block

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.