comparison src/share/vm/runtime/rframe.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 3e8fbc61cee8
children 3582bf76420e
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 "interpreter/interpreter.hpp"
27 #include "oops/oop.inline.hpp"
28 #include "oops/symbolOop.hpp"
29 #include "runtime/frame.inline.hpp"
30 #include "runtime/rframe.hpp"
31 #include "runtime/vframe.hpp"
32 #include "runtime/vframe_hp.hpp"
26 33
27 #include "incls/_rframe.cpp.incl"
28 34
29 static RFrame*const noCaller = (RFrame*) 0x1; // no caller (i.e., initial frame) 35 static RFrame*const noCaller = (RFrame*) 0x1; // no caller (i.e., initial frame)
30 static RFrame*const noCallerYet = (RFrame*) 0x0; // caller not yet computed 36 static RFrame*const noCallerYet = (RFrame*) 0x0; // caller not yet computed
31 37
32 RFrame::RFrame(frame fr, JavaThread* thread, RFrame*const callee) : 38 RFrame::RFrame(frame fr, JavaThread* thread, RFrame*const callee) :