Package org.jakstab.analysis.location

Examples of org.jakstab.analysis.location.BackwardLocationAnalysis


   *
   * @param program The program object
   * @param cpas The list of backward analyses to be performed 
   */
  public static CPAAlgorithm createBackwardAlgorithm(Program program, ConfigurableProgramAnalysis... cpas) {
    ConfigurableProgramAnalysis cpa = new CompositeProgramAnalysis(new BackwardLocationAnalysis(), cpas);
    return new CPAAlgorithm(program, cpa, new ReverseCFATransformerFactory(program.getCFA()), new FastSet<AbstractState>());
  }
View Full Code Here

TOP

Related Classes of org.jakstab.analysis.location.BackwardLocationAnalysis

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.