Searched defs:stackTop (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DOopMapForCacheEntry.java34 private int stackTop; field in class:OopMapForCacheEntry
40 this.stackTop = -1;
60 int stackTop) {
63 entry.setMask(vars, stack, stackTop);
64 this.stackTop = stackTop;
87 Assert.that(stackTop != -1, "computeMap must be called first");
89 return (int) ((method().isStatic() ? 0 : 1) + method().getMaxLocals() + stackTop);
57 fillStackmapForOpcodes(BytecodeStream bcs, CellTypeStateList vars, CellTypeStateList stack, int stackTop) argument
H A DOopMapCacheEntry.java59 int stackTop) {
62 int nEntries = maxLocals + stackTop;
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
147 for(int j = 0; j < stackTop; j++) {
57 setMask(CellTypeStateList vars, CellTypeStateList stack, int stackTop) argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DBerDecoder.java66 stackTop = 0 ;
364 stackBuf[stackTop++] = next + l ;
383 if (stackBuf[stackTop - 1] == next) {
384 stackTop-- ;
401 return (next < stackBuf[stackTop - 1]) ;
755 private int stackTop = 0 ; field in class:BerDecoder
H A DBerEncoder.java57 stackTop = 0 ;
84 stackTop = 0 ;
243 stackBuf[stackTop++] = start ;
262 final int end = stackBuf[--stackTop] ;
475 protected int stackTop = 0 ; field in class:BerEncoder
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.hpp508 int stackTop) { ShouldNotReachHere(); }
505 fill_stackmap_for_opcodes(BytecodeStream *bcs, CellTypeState* vars, CellTypeState* stack, int stackTop) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DGenerateOopMap.java2316 int stackTop) { throw new RuntimeException("ShouldNotReachHere"); }
2313 fillStackmapForOpcodes(BytecodeStream bcs, CellTypeStateList vars, CellTypeStateList stack, int stackTop) argument

Completed in 44 milliseconds