comparison agent/src/share/classes/sun/jvm/hotspot/tools/jcore/ClassWriter.java @ 2468:6c97c830fb6f

Merge
author jrose
date Sat, 09 Apr 2011 21:16:12 -0700
parents 1d1603768966 ed69575596ac
children e6b1331a51d2
comparison
equal deleted inserted replaced
2439:0930dc920c18 2468:6c97c830fb6f
319 dos.writeShort(refIndex); 319 dos.writeShort(refIndex);
320 if (DEBUG) debugMessage("CP[" + ci + "] = MT index = " + refIndex); 320 if (DEBUG) debugMessage("CP[" + ci + "] = MT index = " + refIndex);
321 break; 321 break;
322 } 322 }
323 323
324 case JVM_CONSTANT_InvokeDynamicTrans:
325 case JVM_CONSTANT_InvokeDynamic: { 324 case JVM_CONSTANT_InvokeDynamic: {
326 dos.writeByte(cpConstType); 325 dos.writeByte(cpConstType);
327 int value = cpool.getIntAt(ci); 326 int value = cpool.getIntAt(ci);
328 short bsmIndex = (short) extractLowShortFromInt(value); 327 short bsmIndex = (short) extractLowShortFromInt(value);
329 short nameAndTypeIndex = (short) extractHighShortFromInt(value); 328 short nameAndTypeIndex = (short) extractHighShortFromInt(value);