Some thinking about execution

This commit is contained in:
Adam
2014-12-01 14:37:19 -05:00
parent 0d50085e03
commit 228f650b6c
14 changed files with 131 additions and 18 deletions

View File

@@ -0,0 +1,23 @@
package info.sigterm.deob.execution;
import info.sigterm.deob.Method;
import info.sigterm.deob.attributes.Code;
public class Frame
{
private Execution execution;
private Method method;
private Stack stack;
private Variables variables;
public Frame(Execution execution, Method method)
{
Code code = method.getCode();
this.execution = execution;
this.method = method;
stack = new Stack(code.getMaxStack());
variables = new Variables(code.getMaxLocals());
}
}