Package org.jakstab.cfa

Examples of org.jakstab.cfa.StateTransformer


    liveInSinks = new SetOfVariables();
    liveInSinks.addAll(program.getArchitecture().getRegisters());
  }

  private boolean isDeadEdge(CFAEdge edge) {
    StateTransformer t = edge.getTransformer();
    if (t instanceof RTLVariableAssignment) {
      RTLVariableAssignment a = (RTLVariableAssignment)edge.getTransformer();
      RTLVariable lhs = a.getLeftHandSide();
      if (!liveVars.get(edge.getTarget()).contains(lhs))
        return true;
View Full Code Here

TOP

Related Classes of org.jakstab.cfa.StateTransformer

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.