Searched refs:getMaxLocals (Results 1 - 17 of 17) 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) {
89 return (int) ((method().isStatic() ? 0 : 1) + method().getMaxLocals() + stackTop);
H A DOopMapCacheEntry.java61 int maxLocals = (int) method.getMaxLocals();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DInterpretedVFrame.java42 int length = (int) m.getMaxLocals();
45 // If the method is native, getMaxLocals is not telling the truth.
84 int nofLocals = (int) getMethod().getMaxLocals();
H A DFrame.java594 int maxLocals = (int) (m.isNative() ? m.getSizeOfParameters() : m.getMaxLocals());
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryCode.java99 public int getMaxLocals() { return maxLocals; } 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(),
250 public final int getMaxLocals() { return max_locals; } method in class:Code
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DAttributeHTML.java128 c.getMaxLocals() + "</LI>\n<LI><A HREF=\"" + class_name +
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/jcore/
H A DClassWriter.java583 dos.writeShort((short) m.getMaxLocals());
584 if (DEBUG) debugMessage("\tmax locals = " + m.getMaxLocals());
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DAccessorGenerator.java433 emitMethod(initIdx, cb.getMaxLocals(), cb, null, null);
474 asm.emitShort((short) Math.max(numArgs, code.getMaxLocals()));
H A DClassFileAssembler.java180 public short getMaxLocals() { method in class:ClassFileAssembler
H A DMethodAccessorGenerator.java722 emitMethod(invokeIdx, cb.getMaxLocals(), cb, exc,
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMethod.java133 public long getMaxLocals() { return maxLocals.getValue(this); } method in class:Method
H A DGenerateOopMap.java2154 _max_locals = (int) method().getMaxLocals();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DConcreteMethodImpl.java412 if (saMethod.getMaxLocals() == 0) {
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DMethodGen.java196 setMaxLocals(c.getMaxLocals());
736 public int getMaxLocals() { return max_locals; } method in class:MethodGen
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMethodGenerator.java690 int maxLocals = super.getMaxLocals();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHSDB.java998 curFrame.addressOfInterpreterFrameLocal((int) interpreterFrameMethod.getMaxLocals() + offset),

Completed in 74 milliseconds