comparison src/share/vm/oops/generateOopMap.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 d1896d1dda3e
children 8012aa3ccede
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 "precompiled.hpp"
26 #include "interpreter/bytecodeStream.hpp"
27 #include "oops/generateOopMap.hpp"
28 #include "oops/oop.inline.hpp"
29 #include "oops/symbolOop.hpp"
30 #include "runtime/handles.inline.hpp"
31 #include "runtime/java.hpp"
32 #include "runtime/relocator.hpp"
33 #include "utilities/bitMap.inline.hpp"
34
25 // 35 //
26 // 36 //
27 // Compute stack layouts for each instruction in method. 37 // Compute stack layouts for each instruction in method.
28 // 38 //
29 // Problems: 39 // Problems:
82 // processing a "ret" bytecodes, it is not sufficient to know that it gets 92 // processing a "ret" bytecodes, it is not sufficient to know that it gets
83 // an argument of the right type 'p'; we need to know which address it 93 // an argument of the right type 'p'; we need to know which address it
84 // returns to). 94 // returns to).
85 // 95 //
86 // (Note this comment is borrowed form the original author of the algorithm) 96 // (Note this comment is borrowed form the original author of the algorithm)
87
88 #include "incls/_precompiled.incl"
89 #include "incls/_generateOopMap.cpp.incl"
90 97
91 // ComputeCallStack 98 // ComputeCallStack
92 // 99 //
93 // Specialization of SignatureIterator - compute the effects of a call 100 // Specialization of SignatureIterator - compute the effects of a call
94 // 101 //