comparison src/share/vm/oops/methodDataOop.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 e5383553fd4e 72d6c57d0658
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_OOPS_METHODDATAOOP_HPP
26 #define SHARE_VM_OOPS_METHODDATAOOP_HPP
27
28 #include "interpreter/bytecodes.hpp"
29 #include "memory/universe.hpp"
30 #include "oops/methodOop.hpp"
31 #include "oops/oop.hpp"
32 #include "runtime/orderAccess.hpp"
33
25 class BytecodeStream; 34 class BytecodeStream;
26 35
27 // The MethodData object collects counts and other profile information 36 // The MethodData object collects counts and other profile information
28 // during zeroth-tier (interpretive) and first-tier execution. 37 // during zeroth-tier (interpretive) and first-tier execution.
29 // The profile is used later by compilation heuristics. Some heuristics 38 // The profile is used later by compilation heuristics. Some heuristics
1488 #endif 1497 #endif
1489 1498
1490 // verification 1499 // verification
1491 void verify_data_on(outputStream* st); 1500 void verify_data_on(outputStream* st);
1492 }; 1501 };
1502
1503 #endif // SHARE_VM_OOPS_METHODDATAOOP_HPP