Searched refs:getMaxStack (Results 1 - 13 of 13) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DOopMapForCacheEntry.java77 if (method().getCodeSize() == 0 || method().getMaxLocals() + method().getMaxStack() == 0) {
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryCode.java97 public int getMaxStack() { return maxStack; } method in class:BinaryCode
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DCode.java98 this(c.getNameIndex(), c.getLength(), c.getMaxStack(), c.getMaxLocals(),
256 public final int getMaxStack() { return max_stack; } method in class:Code
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DMethodGen.java195 setMaxStack(c.getMaxStack());
742 public int getMaxStack() { return max_stack; } method in class:MethodGen
774 max_stack = getMaxStack(cp, il, getExceptionHandlers());
861 public static int getMaxStack(ConstantPoolGen cp, InstructionList il, CodeExceptionGen[] et) { method in class:MethodGen
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DAttributeHTML.java126 file.print("<UL><LI>Maximum stack size = " + c.getMaxStack() +
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/jcore/
H A DClassWriter.java580 dos.writeShort((short) m.getMaxStack());
581 if (DEBUG) debugMessage("\tmax stack = " + m.getMaxStack());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMethod.java132 public long getMaxStack() { return maxStack.getValue(this); } method in class:Method
H A DGenerateOopMap.java1489 Assert.that(method().getMaxStack() > 0, "sanity check");
2155 _max_stack = (int) method().getMaxStack();
2184 if (method().getCodeSize() == 0 || _max_locals + method().getMaxStack() == 0) {
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCode.java76 int getMaxStack() { method in class:Code
H A DPackageWriter.java1140 code_max_stack.putInt(c.getMaxStack());
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DClassFileAssembler.java176 public short getMaxStack() { method in class:ClassFileAssembler
H A DAccessorGenerator.java473 asm.emitShort(code.getMaxStack());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DFrame.java595 InterpreterFrameClosure blk = new InterpreterFrameClosure(this, maxLocals, (int) m.getMaxStack(), oopVisitor);

Completed in 49 milliseconds