comparison src/share/vm/code/nmethod.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 a222fcfba398
children 09b4dd4f152b 7d9caaedafce
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/_nmethod.cpp.incl" 26 #include "code/codeCache.hpp"
27 #include "code/compiledIC.hpp"
28 #include "code/nmethod.hpp"
29 #include "code/scopeDesc.hpp"
30 #include "compiler/abstractCompiler.hpp"
31 #include "compiler/compileLog.hpp"
32 #include "compiler/compilerOracle.hpp"
33 #include "compiler/disassembler.hpp"
34 #include "interpreter/bytecode.hpp"
35 #include "oops/methodDataOop.hpp"
36 #include "prims/jvmtiRedefineClassesTrace.hpp"
37 #include "runtime/sharedRuntime.hpp"
38 #include "runtime/sweeper.hpp"
39 #include "utilities/dtrace.hpp"
40 #include "utilities/events.hpp"
41 #include "utilities/xmlstream.hpp"
42 #ifdef SHARK
43 #include "shark/sharkCompiler.hpp"
44 #endif
27 45
28 #ifdef DTRACE_ENABLED 46 #ifdef DTRACE_ENABLED
29 47
30 // Only bother with this argument setup if dtrace is available 48 // Only bother with this argument setup if dtrace is available
31 49