Searched refs:maxLocals (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/reflect/
H A DClassFileAssembler.java166 private int maxLocals = 0; field in class:ClassFileAssembler
181 return (short) maxLocals;
187 public void setMaxLocals(int maxLocals) { argument
188 this.maxLocals = maxLocals;
231 if (maxLocals < 1) maxLocals = 1;
237 if (maxLocals < 2) maxLocals = 2;
243 if (maxLocals <
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DOopMapCacheEntry.java61 int maxLocals = (int) method.getMaxLocals();
62 int nEntries = maxLocals + stackTop;
71 if (entryIdx == maxLocals) {
85 Assert.that(verifyMask(vars, stack, maxLocals, stackTop), "mask could not be verified");
132 boolean verifyMask(CellTypeStateList vars, CellTypeStateList stack, int maxLocals, int stackTop) { argument
139 for(int i = 0; i < maxLocals; i++) {
148 boolean v1 = isOop(maxLocals + j);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DAttribute.java178 * @param maxLocals the maximum number of local variables of the method
188 final int maxLocals)
225 * @param maxLocals the maximum number of local variables of the method
236 final int maxLocals)
242 size += attr.write(cw, code, len, maxStack, maxLocals).length + 6;
263 * @param maxLocals the maximum number of local variables of the method
273 final int maxLocals,
278 ByteVector b = attr.write(cw, code, len, maxStack, maxLocals);
183 write( final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals) argument
231 getSize( final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals) argument
268 put( final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals, final ByteVector out) argument
H A DMethodVisitor.java415 * @param maxLocals maximum number of local variables for the method.
417 void visitMaxs(int maxStack, int maxLocals); argument
H A DMethodWriter.java264 private int maxLocals; field in class:MethodWriter
477 // updates maxLocals
482 maxLocals = size;
745 if (n > maxLocals) {
746 maxLocals = n;
1073 if (n > maxLocals) {
1074 maxLocals = n;
1220 if (n > maxLocals) {
1221 maxLocals = n;
1235 public void visitMaxs(final int maxStack, final int maxLocals) { argument
[all...]
H A DFrame.java814 * @param maxLocals the maximum number of local variables of this method.
820 final int maxLocals)
822 inputLocals = new int[maxLocals];
839 while (i < maxLocals) {
816 initInputFrame( final ClassWriter cw, final int access, final Type[] args, final int maxLocals) argument
H A DClassReader.java896 int maxLocals = readUnsignedShort(v + 2);
1102 frameLocal = new Object[maxLocals];
1477 mv.visitMaxs(maxStack, maxLocals);
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryCode.java38 int maxLocals; // maximum locals used by code field in class:BinaryCode
56 this.maxLocals = in.readUnsignedShort();
99 public int getMaxLocals() { return maxLocals; }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DFrame.java594 int maxLocals = (int) (m.isNative() ? m.getSizeOfParameters() : m.getMaxLocals());
595 InterpreterFrameClosure blk = new InterpreterFrameClosure(this, maxLocals, (int) m.getMaxStack(), oopVisitor);
657 private int maxLocals; field in class:InterpreterFrameClosure
660 InterpreterFrameClosure(Frame fr, int maxLocals, int maxStack, AddressVisitor f) { argument
662 this.maxLocals = maxLocals;
669 System.err.println("Visiting offset " + offset + ", maxLocals = " + maxLocals +
675 if (offset < maxLocals) {
685 addr = fr.addressOfInterpreterFrameExpressionStackSlot(offset - maxLocals);
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMethod.java54 maxLocals = new CIntField(type.getCIntegerField("_max_locals"), 0);
88 private static CIntField maxLocals; field in class:Method
133 public long getMaxLocals() { return maxLocals.getValue(this); }
285 visitor.doCInt(maxLocals, true);
H A DGenerateOopMap.java2232 public int maxLocals() { return _max_locals; } method in class:GenerateOopMap
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMethodGenerator.java690 int maxLocals = super.getMaxLocals();
691 int prevLocals = maxLocals;
696 if (localVars.length > maxLocals)
697 maxLocals = localVars.length;
701 if (maxLocals < 5) maxLocals = 5;
703 super.setMaxLocals(maxLocals);
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInject.java559 int maxLocals = computeMaxLocals(descriptor, accessFlags);
564 c.writeU2(maxLocals + 4); // max stack
565 c.writeU2(maxLocals); // max locals
/openjdk7/jdk/src/share/classes/sun/misc/
H A DProxyGenerator.java763 public short maxLocals; field in class:ProxyGenerator.MethodInfo
807 out.writeShort(maxLocals);
987 minfo.maxLocals = (short) (localSlot0 + 1);
1159 minfo.maxLocals = 2;
1241 minfo.maxLocals = (short) (localSlot0 + 1);

Completed in 84 milliseconds