Skip to content

Commit

Permalink
updating JastAdd-based files for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Bodden committed Mar 25, 2010
1 parent fa015e1 commit 7acdbc3
Show file tree
Hide file tree
Showing 12 changed files with 120 additions and 118 deletions.
16 changes: 8 additions & 8 deletions generated/jastadd/soot/JastAddJ/ASTNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -486,22 +486,22 @@ public void jimplify1phase2() {
getChild(i).jimplify1phase2();
}

// Declared in EmitJimple.jrag at line 364
// Declared in EmitJimple.jrag at line 366

public void jimplify2() {
for(int i = 0; i < getNumChild(); i++)
getChild(i).jimplify2();
}

// Declared in EmitJimple.jrag at line 369
// Declared in EmitJimple.jrag at line 371


public void jimplify2(Body b) {
for(int i = 0; i < getNumChild(); i++)
getChild(i).jimplify2(b);
}

// Declared in EmitJimple.jrag at line 403
// Declared in EmitJimple.jrag at line 405



Expand All @@ -510,14 +510,14 @@ public soot.Immediate asImmediate(Body b, soot.Value v) {
return b.newTemp(v);
}

// Declared in EmitJimple.jrag at line 407
// Declared in EmitJimple.jrag at line 409

public soot.Local asLocal(Body b, soot.Value v) {
if(v instanceof soot.Local) return (soot.Local)v;
return b.newTemp(v);
}

// Declared in EmitJimple.jrag at line 411
// Declared in EmitJimple.jrag at line 413

public soot.Local asLocal(Body b, soot.Value v, Type t) {
if(v instanceof soot.Local) return (soot.Local)v;
Expand All @@ -527,7 +527,7 @@ public soot.Local asLocal(Body b, soot.Value v, Type t) {
return local;
}

// Declared in EmitJimple.jrag at line 418
// Declared in EmitJimple.jrag at line 420

public soot.Value asRValue(Body b, soot.Value v) {
if(v instanceof soot.Local) return v;
Expand All @@ -537,14 +537,14 @@ public soot.Value asRValue(Body b, soot.Value v) {
throw new Error("Need to convert " + v.getClass().getName() + " to RValue");
}

// Declared in EmitJimple.jrag at line 877
// Declared in EmitJimple.jrag at line 879


protected soot.jimple.Stmt newLabel() {
return soot.jimple.Jimple.v().newNopStmt();
}

// Declared in EmitJimple.jrag at line 957
// Declared in EmitJimple.jrag at line 959


public void addAttributes() {
Expand Down
Loading

0 comments on commit 7acdbc3

Please sign in to comment.