Propagated bytecode-to-source tracer

This commit is contained in:
Stiver
2014-10-06 04:27:26 +02:00
parent 0c8508ff8a
commit 9723ab4475
21 changed files with 142 additions and 37 deletions

View File

@@ -93,6 +93,14 @@ public class BasicBlock implements IGraphNode {
}
}
public Integer getOldOffset(int index) {
if(index < instrOldOffsets.size()) {
return instrOldOffsets.get(index);
} else {
return -1;
}
}
public int size() {
return seq.length();
}