comparison src/share/vm/ci/ciMethod.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 d5d065957597
children 5ddfcf4b079e
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
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
25 #ifndef SHARE_VM_CI_CIMETHOD_HPP
26 #define SHARE_VM_CI_CIMETHOD_HPP
27
28 #include "ci/ciFlags.hpp"
29 #include "ci/ciInstanceKlass.hpp"
30 #include "ci/ciObject.hpp"
31 #include "ci/ciSignature.hpp"
32 #include "compiler/methodLiveness.hpp"
33 #include "prims/methodHandles.hpp"
34 #include "utilities/bitMap.hpp"
24 35
25 class ciMethodBlocks; 36 class ciMethodBlocks;
26 class MethodLiveness; 37 class MethodLiveness;
27 class BitMap; 38 class BitMap;
28 class Arena; 39 class Arena;
267 klassOop receiver_limit_oop = NULL; 278 klassOop receiver_limit_oop = NULL;
268 int flags = 0; 279 int flags = 0;
269 return MethodHandles::decode_method(get_oop(), receiver_limit_oop, flags); 280 return MethodHandles::decode_method(get_oop(), receiver_limit_oop, flags);
270 } 281 }
271 }; 282 };
283
284 #endif // SHARE_VM_CI_CIMETHOD_HPP