Searched refs:maxStack (Results 1 – 4 of 4) sorted by relevance
32 private final int maxStack; field in AttCode55 public AttCode(int maxStack, int maxLocals, BytecodeArray code, in AttCode() argument59 if (maxStack < 0) { in AttCode()89 this.maxStack = maxStack; in AttCode()107 return maxStack; in getMaxStack()
53 public ExecutionStack(int maxStack) { in ExecutionStack() argument54 super(maxStack != 0); in ExecutionStack()55 stack = new TypeBearer[maxStack]; in ExecutionStack()56 local = new boolean[maxStack]; in ExecutionStack()
86 public Frame(int maxLocals, int maxStack) { in Frame() argument87 this(new OneLocalsArray(maxLocals), new ExecutionStack(maxStack)); in Frame()
218 int maxStack = bytes.getUnsignedShort(offset); // u2 max_stack in code() local225 "max_stack: " + Hex.u2(maxStack)); in code()308 return new AttCode(maxStack, maxLocals, code, catches, attributes); in code()