comparison src/share/vm/interpreter/rewriter.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 083fde3b838e
children 2d4b2b833d29
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_INTERPRETER_REWRITER_HPP
26 #define SHARE_VM_INTERPRETER_REWRITER_HPP
27
28 #include "memory/allocation.hpp"
29 #include "runtime/handles.inline.hpp"
30 #include "utilities/growableArray.hpp"
24 31
25 // The Rewriter adds caches to the constant pool and rewrites bytecode indices 32 // The Rewriter adds caches to the constant pool and rewrites bytecode indices
26 // pointing into the constant pool for better interpreter performance. 33 // pointing into the constant pool for better interpreter performance.
27 34
28 class Rewriter: public StackObj { 35 class Rewriter: public StackObj {
92 99
93 enum { 100 enum {
94 _secondary_entry_tag = nth_bit(30) 101 _secondary_entry_tag = nth_bit(30)
95 }; 102 };
96 }; 103 };
104
105 #endif // SHARE_VM_INTERPRETER_REWRITER_HPP