comparison src/share/vm/utilities/constantTag.cpp @ 1660:083fde3b838e

6964498: JSR 292 invokedynamic sites need local bootstrap methods Summary: Add JVM_CONSTANT_InvokeDynamic records to constant pool to determine per-instruction BSMs. Reviewed-by: twisti
author jrose
date Thu, 15 Jul 2010 18:40:45 -0700
parents 136b78722a08
children f95d63e2154a
comparison
equal deleted inserted replaced
1649:a528509c992b 1660:083fde3b838e
89 return "NameAndType"; 89 return "NameAndType";
90 case JVM_CONSTANT_MethodHandle : 90 case JVM_CONSTANT_MethodHandle :
91 return "MethodHandle"; 91 return "MethodHandle";
92 case JVM_CONSTANT_MethodType : 92 case JVM_CONSTANT_MethodType :
93 return "MethodType"; 93 return "MethodType";
94 case JVM_CONSTANT_InvokeDynamic :
95 return "InvokeDynamic";
94 case JVM_CONSTANT_Object : 96 case JVM_CONSTANT_Object :
95 return "Object"; 97 return "Object";
96 case JVM_CONSTANT_Utf8 : 98 case JVM_CONSTANT_Utf8 :
97 return "Utf8"; 99 return "Utf8";
98 case JVM_CONSTANT_UnresolvedClass : 100 case JVM_CONSTANT_UnresolvedClass :