soot.toolkits.graph
Class ZonedBlockGraph

java.lang.Object
  extended by soot.toolkits.graph.BlockGraph
      extended by soot.toolkits.graph.ZonedBlockGraph
All Implemented Interfaces:
Iterable<Block>, DirectedGraph<Block>

public class ZonedBlockGraph
extends BlockGraph

A CFG where the nodes are Block instances, and where exception boundaries are taken into account when finding the Blocks for the provided Body. Any Unit which is the first Unit to be convered by some exception handler will start a new Block, and any which is the last Unit to be covered a some exception handler, will end the block it is part of. These ``zones'', however, are not split up to indicate the possibility that an exception will lead to control exiting the zone before it is completed.


Field Summary
 
Fields inherited from class soot.toolkits.graph.BlockGraph
mBlocks, mBody, mHeads, mTails, mUnits
 
Constructor Summary
ZonedBlockGraph(Body body)
          Constructs a ZonedBlockGraph for the Units comprising the passed Body.
ZonedBlockGraph(BriefUnitGraph unitGraph)
          Constructs a ZonedBlockGraph corresponding to the Unit-level control flow represented by the passed BriefUnitGraph.
 
Method Summary
protected  Set<Unit> computeLeaders(UnitGraph unitGraph)
          Utility method for computing the basic block leaders for a Body, given its UnitGraph (i.e., the instructions which begin new basic blocks).
 
Methods inherited from class soot.toolkits.graph.BlockGraph
buildBlocks, getBlocks, getBody, getHeads, getPredsOf, getSuccsOf, getTails, iterator, size, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ZonedBlockGraph

public ZonedBlockGraph(Body body)

Constructs a ZonedBlockGraph for the Units comprising the passed Body.

Note that this constructor builds a BriefUnitGraph internally when splitting body's Units into Blocks. Callers who need both a BriefUnitGraph and a ZonedBlockGraph can use the constructor taking the BriefUnitGraph as a parameter, as a minor optimization.

Parameters:
body - The Body for which to produce a ZonedBlockGraph.

ZonedBlockGraph

public ZonedBlockGraph(BriefUnitGraph unitGraph)
Constructs a ZonedBlockGraph corresponding to the Unit-level control flow represented by the passed BriefUnitGraph.

Parameters:
unitGraph - The BriefUnitGraph for which to produce a ZonedBlockGraph.
Method Detail

computeLeaders

protected Set<Unit> computeLeaders(UnitGraph unitGraph)

Utility method for computing the basic block leaders for a Body, given its UnitGraph (i.e., the instructions which begin new basic blocks).

This implementation chooses as block leaders all the Units that BlockGraph.computerLeaders(), and adds:

Overrides:
computeLeaders in class BlockGraph
Parameters:
unitGraph - is the Unit-level CFG which is to be split into basic blocks.
Returns:
the Set of Units in unitGraph which are block leaders.