comparison src/share/vm/prims/methodHandles.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 5beba6174298
children 8d0b933dda2d
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_METHODHANDLES_HPP
26 #define SHARE_VM_PRIMS_METHODHANDLES_HPP
27
28 #include "classfile/javaClasses.hpp"
29 #include "classfile/vmSymbols.hpp"
30 #include "runtime/frame.inline.hpp"
31 #include "runtime/globals.hpp"
32 #include "runtime/interfaceSupport.hpp"
33
25 class MacroAssembler; 34 class MacroAssembler;
26 class Label; 35 class Label;
27 class MethodHandleEntry; 36 class MethodHandleEntry;
28 37
29 class MethodHandles: AllStatic { 38 class MethodHandles: AllStatic {
521 public: 530 public:
522 MethodHandlesAdapterGenerator(CodeBuffer* code) : StubCodeGenerator(code) {} 531 MethodHandlesAdapterGenerator(CodeBuffer* code) : StubCodeGenerator(code) {}
523 532
524 void generate(); 533 void generate();
525 }; 534 };
535
536 #endif // SHARE_VM_PRIMS_METHODHANDLES_HPP