comparison src/share/vm/runtime/java.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 34bd82eba3bb
children 0eb90baf1b69
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/_java.cpp.incl" 26 #include "classfile/classLoader.hpp"
27 #include "classfile/symbolTable.hpp"
28 #include "classfile/systemDictionary.hpp"
29 #include "code/codeCache.hpp"
30 #include "compiler/compileBroker.hpp"
31 #include "compiler/compilerOracle.hpp"
32 #include "interpreter/bytecodeHistogram.hpp"
33 #include "memory/genCollectedHeap.hpp"
34 #include "memory/oopFactory.hpp"
35 #include "memory/universe.hpp"
36 #include "oops/constantPoolOop.hpp"
37 #include "oops/generateOopMap.hpp"
38 #include "oops/instanceKlass.hpp"
39 #include "oops/instanceKlassKlass.hpp"
40 #include "oops/instanceOop.hpp"
41 #include "oops/methodOop.hpp"
42 #include "oops/objArrayOop.hpp"
43 #include "oops/oop.inline.hpp"
44 #include "oops/symbolOop.hpp"
45 #include "prims/jvmtiExport.hpp"
46 #include "runtime/aprofiler.hpp"
47 #include "runtime/arguments.hpp"
48 #include "runtime/biasedLocking.hpp"
49 #include "runtime/compilationPolicy.hpp"
50 #include "runtime/fprofiler.hpp"
51 #include "runtime/init.hpp"
52 #include "runtime/interfaceSupport.hpp"
53 #include "runtime/java.hpp"
54 #include "runtime/memprofiler.hpp"
55 #include "runtime/sharedRuntime.hpp"
56 #include "runtime/statSampler.hpp"
57 #include "runtime/task.hpp"
58 #include "runtime/timer.hpp"
59 #include "runtime/vm_operations.hpp"
60 #include "utilities/dtrace.hpp"
61 #include "utilities/globalDefinitions.hpp"
62 #include "utilities/histogram.hpp"
63 #include "utilities/vmError.hpp"
64 #ifdef TARGET_ARCH_x86
65 # include "vm_version_x86.hpp"
66 #endif
67 #ifdef TARGET_ARCH_sparc
68 # include "vm_version_sparc.hpp"
69 #endif
70 #ifdef TARGET_ARCH_zero
71 # include "vm_version_zero.hpp"
72 #endif
73 #ifdef TARGET_OS_FAMILY_linux
74 # include "thread_linux.inline.hpp"
75 #endif
76 #ifdef TARGET_OS_FAMILY_solaris
77 # include "thread_solaris.inline.hpp"
78 #endif
79 #ifdef TARGET_OS_FAMILY_windows
80 # include "thread_windows.inline.hpp"
81 #endif
82 #ifndef SERIALGC
83 #include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepThread.hpp"
84 #include "gc_implementation/parallelScavenge/psScavenge.hpp"
85 #include "gc_implementation/parallelScavenge/psScavenge.inline.hpp"
86 #endif
87 #ifdef COMPILER1
88 #include "c1/c1_Compiler.hpp"
89 #include "c1/c1_Runtime1.hpp"
90 #endif
91 #ifdef COMPILER2
92 #include "code/compiledIC.hpp"
93 #include "compiler/methodLiveness.hpp"
94 #include "opto/compile.hpp"
95 #include "opto/indexSet.hpp"
96 #include "opto/runtime.hpp"
97 #endif
27 98
28 HS_DTRACE_PROBE_DECL(hotspot, vm__shutdown); 99 HS_DTRACE_PROBE_DECL(hotspot, vm__shutdown);
29 100
30 #ifndef PRODUCT 101 #ifndef PRODUCT
31 102