comparison src/share/vm/runtime/vframeArray.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 fd5d4527cdf5
children 06f017f7daa7 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 "incls/_precompiled.incl" 25 #include "precompiled.hpp"
26 # include "incls/_vframeArray.cpp.incl" 26 #include "classfile/vmSymbols.hpp"
27 #include "interpreter/interpreter.hpp"
28 #include "memory/allocation.inline.hpp"
29 #include "memory/resourceArea.hpp"
30 #include "memory/universe.inline.hpp"
31 #include "oops/methodDataOop.hpp"
32 #include "oops/oop.inline.hpp"
33 #include "prims/jvmtiThreadState.hpp"
34 #include "runtime/handles.inline.hpp"
35 #include "runtime/monitorChunk.hpp"
36 #include "runtime/sharedRuntime.hpp"
37 #include "runtime/vframe.hpp"
38 #include "runtime/vframeArray.hpp"
39 #include "runtime/vframe_hp.hpp"
40 #include "utilities/events.hpp"
41 #ifdef COMPILER2
42 #include "opto/runtime.hpp"
43 #endif
27 44
28 45
29 int vframeArrayElement:: bci(void) const { return (_bci == SynchronizationEntryBCI ? 0 : _bci); } 46 int vframeArrayElement:: bci(void) const { return (_bci == SynchronizationEntryBCI ? 0 : _bci); }
30 47
31 void vframeArrayElement::free_monitors(JavaThread* jt) { 48 void vframeArrayElement::free_monitors(JavaThread* jt) {