comparison src/share/vm/services/heapDumper.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 30f67acf635d
children 17c778814856
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/_heapDumper.cpp.incl" 26 #include "classfile/symbolTable.hpp"
27 #include "classfile/systemDictionary.hpp"
28 #include "classfile/vmSymbols.hpp"
29 #include "gc_implementation/shared/vmGCOperations.hpp"
30 #include "memory/genCollectedHeap.hpp"
31 #include "memory/universe.hpp"
32 #include "oops/objArrayKlass.hpp"
33 #include "runtime/javaCalls.hpp"
34 #include "runtime/jniHandles.hpp"
35 #include "runtime/reflectionUtils.hpp"
36 #include "runtime/vframe.hpp"
37 #include "runtime/vmThread.hpp"
38 #include "runtime/vm_operations.hpp"
39 #include "services/heapDumper.hpp"
40 #include "services/threadService.hpp"
41 #include "utilities/ostream.hpp"
42 #ifndef SERIALGC
43 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
44 #endif
27 45
28 /* 46 /*
29 * HPROF binary format - description copied from: 47 * HPROF binary format - description copied from:
30 * src/share/demo/jvmti/hprof/hprof_io.c 48 * src/share/demo/jvmti/hprof/hprof_io.c
31 * 49 *