Home | History | Annotate | Download | only in ssa

Lines Matching refs:block

53     /** indexed by basic block index */
94 private BitSet getSuccs(SsaBasicBlock block) {
96 return block.getPredecessors();
98 return block.getSuccessors();
102 private BitSet getPreds(SsaBasicBlock block) {
104 return block.getSuccessors();
106 return block.getPredecessors();
113 * @param in Basic block whose DFS info we are path compressing.
252 * from the entry block or the exit block). Records the traversal order
274 * that our block's DFS info has been unioned to.