comparison src/share/vm/ci/ciMethodData.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 fabcf26ee72f
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_CIMETHODDATA_HPP
26 #define SHARE_VM_CI_CIMETHODDATA_HPP
27
28 #include "ci/ciClassList.hpp"
29 #include "ci/ciKlass.hpp"
30 #include "ci/ciObject.hpp"
31 #include "ci/ciUtilities.hpp"
32 #include "oops/methodDataOop.hpp"
33 #include "oops/oop.inline.hpp"
24 34
25 class ciBitData; 35 class ciBitData;
26 class ciCounterData; 36 class ciCounterData;
27 class ciJumpData; 37 class ciJumpData;
28 class ciReceiverTypeData; 38 class ciReceiverTypeData;
309 // printing support for method data 319 // printing support for method data
310 void print(); 320 void print();
311 void print_data_on(outputStream* st); 321 void print_data_on(outputStream* st);
312 #endif 322 #endif
313 }; 323 };
324
325 #endif // SHARE_VM_CI_CIMETHODDATA_HPP