comparison src/share/vm/code/oopRecorder.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 e9ff18c4ace7
children da91efe96a93
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_CODE_OOPRECORDER_HPP
26 #define SHARE_VM_CODE_OOPRECORDER_HPP
27
28 #include "runtime/handles.hpp"
29 #include "utilities/growableArray.hpp"
24 30
25 // Recording and retrieval of oop relocations in compiled code. 31 // Recording and retrieval of oop relocations in compiled code.
26 32
27 class CodeBlob; 33 class CodeBlob;
28 34
132 138
133 #ifdef ASSERT 139 #ifdef ASSERT
134 static int _find_index_calls, _hit_indexes, _missed_indexes; 140 static int _find_index_calls, _hit_indexes, _missed_indexes;
135 #endif 141 #endif
136 }; 142 };
143
144 #endif // SHARE_VM_CODE_OOPRECORDER_HPP