comparison src/share/vm/prims/methodHandleWalk.hpp @ 2001:f2da85a9b08e

7001363: java/dyn/InvokeDynamic should not be a well-known class in the JVM Summary: Because of the removal of language support, the JDK 7 API for JSR 292 no longer includes a public class named java/dyn/InvokeDynamic. Reviewed-by: jrose, kvn
author twisti
date Tue, 30 Nov 2010 09:53:04 -0800
parents f95d63e2154a
children 3582bf76420e
comparison
equal deleted inserted replaced
1972:f95d63e2154a 2001:f2da85a9b08e
410 // Compile the given MH chain into bytecode. 410 // Compile the given MH chain into bytecode.
411 methodHandle compile(TRAPS); 411 methodHandle compile(TRAPS);
412 412
413 // Tests if the given class is a MH adapter holder. 413 // Tests if the given class is a MH adapter holder.
414 static bool klass_is_method_handle_adapter_holder(klassOop klass) { 414 static bool klass_is_method_handle_adapter_holder(klassOop klass) {
415 return (klass == SystemDictionary::MethodHandle_klass() || 415 return (klass == SystemDictionary::MethodHandle_klass());
416 klass == SystemDictionary::InvokeDynamic_klass());
417 } 416 }
418 }; 417 };
419 418
420 #endif // SHARE_VM_PRIMS_METHODHANDLEWALK_HPP 419 #endif // SHARE_VM_PRIMS_METHODHANDLEWALK_HPP