/*
* Bytecode Analysis Framework
* Copyright (C) 2003,2004 University of Maryland
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package edu.umd.cs.findbugs.ba;
/**
* Dataflow analysis to compute dominator sets for a CFG.
*
* @author David Hovemeyer
* @see CFG
* @see AbstractDominatorsAnalysis
*/
public class DominatorsAnalysis extends AbstractDominatorsAnalysis {
private DepthFirstSearch dfs;
/**
* Constructor.
*
* @param cfg
* the CFG to compute dominator relationships for
* @param dfs
* the DepthFirstSearch on the CFG
* @param ignoreExceptionEdges
* true if exception edges should be ignored
*/
public DominatorsAnalysis(CFG cfg, DepthFirstSearch dfs, boolean ignoreExceptionEdges) {
super(cfg, ignoreExceptionEdges);
this.dfs = dfs;
}
public boolean isForwards() {
return true;
}
public BlockOrder getBlockOrder(CFG cfg) {
return new ReversePostOrder(cfg, dfs);
}
// public static void main(String[] argv) throws Exception {
// if (argv.length != 1) {
// System.err.println("Usage: " + DominatorsAnalysis.class.getName() +
// " <classfile>");
// System.exit(1);
// }
//
// DataflowTestDriver<BitSet, DominatorsAnalysis> driver =
// new DataflowTestDriver<BitSet, DominatorsAnalysis>() {
//
// /* (non-Javadoc)
// * @see
// edu.umd.cs.findbugs.ba.DataflowTestDriver#createDataflow(edu.umd.cs.findbugs.ba.ClassContext,
// org.apache.bcel.classfile.Method)
// */
// @Override
// public Dataflow<BitSet, DominatorsAnalysis> createDataflow(ClassContext
// classContext, Method method) throws CFGBuilderException,
// DataflowAnalysisException {
// CFG cfg = classContext.getCFG(method);
// DepthFirstSearch dfs = classContext.getDepthFirstSearch(method);
//
// DominatorsAnalysis analysis =
// new DominatorsAnalysis(cfg, dfs,
// SystemProperties.getBoolean("dominators.ignoreexceptionedges"));
//
// Dataflow<BitSet, DominatorsAnalysis> dataflow =
// new Dataflow<BitSet, DominatorsAnalysis>(cfg, analysis);
//
// dataflow.execute();
//
// return dataflow;
// }
//
// };
//
// driver.execute(argv[0]);
// }
}
// vim:ts=4