comparison src/share/vm/prims/methodHandleWalk.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents c18cbe5936b8
children f2da85a9b08e
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24 24
25 #ifndef SHARE_VM_PRIMS_METHODHANDLEWALK_HPP
26 #define SHARE_VM_PRIMS_METHODHANDLEWALK_HPP
27
28 #include "prims/methodHandles.hpp"
29
25 // Low-level parser for method handle chains. 30 // Low-level parser for method handle chains.
26 class MethodHandleChain : StackObj { 31 class MethodHandleChain : StackObj {
27 public: 32 public:
28 typedef MethodHandles::EntryKind EntryKind; 33 typedef MethodHandles::EntryKind EntryKind;
29 34
409 static bool klass_is_method_handle_adapter_holder(klassOop klass) { 414 static bool klass_is_method_handle_adapter_holder(klassOop klass) {
410 return (klass == SystemDictionary::MethodHandle_klass() || 415 return (klass == SystemDictionary::MethodHandle_klass() ||
411 klass == SystemDictionary::InvokeDynamic_klass()); 416 klass == SystemDictionary::InvokeDynamic_klass());
412 } 417 }
413 }; 418 };
419
420 #endif // SHARE_VM_PRIMS_METHODHANDLEWALK_HPP