Searched refs:maxStack (Results 1 - 4 of 4) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/attrib/
H A DAttCode.java32 private final int maxStack; field in class:AttCode
49 * @param maxStack {@code >= 0;} the stack size
55 public AttCode(int maxStack, int maxLocals, BytecodeArray code, argument
59 if (maxStack < 0) {
60 throw new IllegalArgumentException("maxStack < 0");
89 this.maxStack = maxStack;
107 return maxStack;
/dalvik/dx/src/com/android/dx/cf/code/
H A DExecutionStack.java45 * @param maxStack {@code >= 0;} the maximum size of the stack for this
48 public ExecutionStack(int maxStack) { argument
49 super(maxStack != 0);
50 stack = new TypeBearer[maxStack];
H A DFrame.java83 * @param maxStack {@code >= 0;} the maximum size of the stack for this
86 public Frame(int maxLocals, int maxStack) { argument
87 this(new OneLocalsArray(maxLocals), new ExecutionStack(maxStack));
/dalvik/dx/src/com/android/dx/cf/direct/
H A DStdAttributeFactory.java220 int maxStack = bytes.getUnsignedShort(offset); // u2 max_stack
227 "max_stack: " + Hex.u2(maxStack));
310 return new AttCode(maxStack, maxLocals, code, catches, attributes);

Completed in 109 milliseconds