Searched refs:stackMap (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java274 private ByteVector stackMap; field in class:MethodWriter
610 if (stackMap == null) {
611 stackMap = new ByteVector();
619 stackMap.putByte(FULL_FRAME)
625 stackMap.putShort(nStack);
631 stackMap.putByte(SAME_FRAME_EXTENDED + nLocal)
638 stackMap.putByte(SAME_FRAME_EXTENDED - nLocal)
643 stackMap.putByte(delta);
645 stackMap.putByte(SAME_FRAME_EXTENDED).putShort(delta);
650 stackMap
[all...]
H A DClassReader.java1000 int stackMap = 0;
1049 stackMap = v + 8;
1070 stackMap = v + 8;
1099 if (FRAMES && stackMap != 0) {
1202 tag = b[stackMap++] & 0xFF;
1216 stackMap = readFrameType(frameStack,
1218 stackMap,
1224 delta = readUnsignedShort(stackMap);
1225 stackMap += 2;
1228 stackMap
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DCode.java158 /** Set true when a stackMap is needed at the current PC. */
162 StackMapFormat stackMap; field in class:Code
189 StackMapFormat stackMap,
204 this.stackMap = stackMap;
205 switch (stackMap) {
1210 switch (stackMap) {
1774 System.err.print("stackMap for " + meth.owner + "." + meth);
185 Code(MethodSymbol meth, boolean fatcode, Position.LineMap lineMap, boolean varDebugInfo, StackMapFormat stackMap, boolean debugCode, CRTable crt, Symtab syms, Types types, Pool pool) argument
H A DGen.java82 private final Code.StackMapFormat stackMap; field in class:Gen
133 this.stackMap = StackMapFormat.JSR202;
136 this.stackMap = StackMapFormat.CLDC;
138 this.stackMap = StackMapFormat.NONE;
958 if(stackMap == StackMapFormat.JSR202) {
973 stackMap,
1316 (stackMap == StackMapFormat.NONE) &&
H A DClassWriter.java1064 int alenIdx = writeAttr(code.stackMap.getAttributeName(names));
1085 switch (code.stackMap) {

Completed in 58 milliseconds