Package soot

Examples of soot.Unit


      }
    }
  }

  public Unit unitClone(Unit input){
    Unit output = (Unit) input.clone();
    List<UnitBox> input_boxes = input.getUnitBoxes();
    List<UnitBox> output_boxes = output.getUnitBoxes();
    for(int i = 0; i < input_boxes.size(); ++i){
      UnitBox input_box = input_boxes.get(i);
      UnitBox output_box = output_boxes.get(i);
      try {
        int j = findTarget(input_box.getUnit());
View Full Code Here


    return false;
  }

  int findTarget(Unit target){
    for(int i = 0; i < m_inputUnits.size(); ++i){
      Unit curr = m_inputUnits.get(i);
      if(unitEquals(target, curr))
        return i;
    }
    throw new RuntimeException("Cannot find target while assembling units: " + target.toString());
  }
View Full Code Here

  }

  public void addIf(Value condition, String target_label) {
    UnitBox target = m_jimple.newStmtBox(null);
    addLabelToUnitBox(target_label, target);
    Unit u = m_jimple.newIfStmt(condition, target);
    add(u);
  }
View Full Code Here

    JimpleBody body = Jimple.v().newBody(ret);
    UnitAssembler assembler = new UnitAssembler();
    PatchingChain<Unit> unit_chain = method.getActiveBody().getUnits();
    Iterator<Unit> iter = unit_chain.iterator();
    while(iter.hasNext()){
      Unit next = iter.next();
      assembler.add(next);
    }
    assembler.assemble(body);
    ret.setActiveBody(body);
    return ret;
View Full Code Here

  @Override
  public Void visitBreakStmt(BreakStmt nd) {
    /* DONE: generate code for break statement (hint: use ASTNode.getEnclosingLoop and breakTargets;
     *       use units.add() to insert the statement into the surrounding method) */
    WhileStmt whileStmt = nd.getEnclosingLoop();
    Unit breakTargetUnit = this.breakTargets.get(whileStmt);
    this.units.add(j.newGotoStmt(breakTargetUnit));
    return null; // dummy
  }
View Full Code Here

  }
 
  /** Generates code for a return statement. */
  @Override
  public Void visitReturnStmt(ReturnStmt nd) {
    Unit stmt;
    if(nd.hasExpr())
      stmt = j.newReturnStmt(ExprCodeGenerator.generate(nd.getExpr(), fcg));
    else
      stmt = j.newReturnVoidStmt();
    units.add(stmt);
View Full Code Here

          context.setCurrentUnit(stmt);
          context.setCurrentLine(getLineNumber(stmt));
          translated.put(stmt, translator.translateStmt((Stmt)stmt));
        }
        for (Map.Entry<Unit, StatementPair> entry : translated.entrySet()) {
          Unit stmt = entry.getKey();
          StatementPair translation = entry.getValue();
          // add successors
          for (Unit next : unitgraph.getSuccsOf(stmt)) {
            StatementPair nextt = translated.get(next);
            graph.addEdge(translation.last, nextt.first, new VariableFilter());
View Full Code Here

TOP

Related Classes of soot.Unit

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.