comparison src/share/vm/interpreter/rewriter.cpp @ 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 dad31fc330cd
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 # include "incls/_precompiled.incl" 25 #include "precompiled.hpp"
26 # include "incls/_rewriter.cpp.incl" 26 #include "interpreter/bytecodes.hpp"
27 #include "interpreter/interpreter.hpp"
28 #include "interpreter/rewriter.hpp"
29 #include "memory/gcLocker.hpp"
30 #include "memory/oopFactory.hpp"
31 #include "memory/resourceArea.hpp"
32 #include "oops/generateOopMap.hpp"
33 #include "oops/objArrayOop.hpp"
34 #include "oops/oop.inline.hpp"
35 #include "prims/methodComparator.hpp"
27 36
28 // Computes a CPC map (new_index -> original_index) for constant pool entries 37 // Computes a CPC map (new_index -> original_index) for constant pool entries
29 // that are referred to by the interpreter at runtime via the constant pool cache. 38 // that are referred to by the interpreter at runtime via the constant pool cache.
30 // Also computes a CP map (original_index -> new_index). 39 // Also computes a CP map (original_index -> new_index).
31 // Marks entries in CP which require additional processing. 40 // Marks entries in CP which require additional processing.