comparison src/share/vm/classfile/classFileParser.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 5caa30ea147b
children dad31fc330cd
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/_classFileParser.cpp.incl" 26 #include "classfile/classFileParser.hpp"
27 #include "classfile/classLoader.hpp"
28 #include "classfile/javaClasses.hpp"
29 #include "classfile/symbolTable.hpp"
30 #include "classfile/systemDictionary.hpp"
31 #include "classfile/verificationType.hpp"
32 #include "classfile/verifier.hpp"
33 #include "classfile/vmSymbols.hpp"
34 #include "memory/allocation.hpp"
35 #include "memory/gcLocker.hpp"
36 #include "memory/oopFactory.hpp"
37 #include "memory/universe.inline.hpp"
38 #include "oops/constantPoolOop.hpp"
39 #include "oops/instanceKlass.hpp"
40 #include "oops/klass.inline.hpp"
41 #include "oops/klassOop.hpp"
42 #include "oops/klassVtable.hpp"
43 #include "oops/methodOop.hpp"
44 #include "oops/symbolOop.hpp"
45 #include "prims/jvmtiExport.hpp"
46 #include "runtime/javaCalls.hpp"
47 #include "runtime/perfData.hpp"
48 #include "runtime/reflection.hpp"
49 #include "runtime/signature.hpp"
50 #include "runtime/timer.hpp"
51 #include "services/classLoadingService.hpp"
52 #include "services/threadService.hpp"
27 53
28 // We generally try to create the oops directly when parsing, rather than 54 // We generally try to create the oops directly when parsing, rather than
29 // allocating temporary data structures and copying the bytes twice. A 55 // allocating temporary data structures and copying the bytes twice. A
30 // temporary area is only needed when parsing utf8 entries in the constant 56 // temporary area is only needed when parsing utf8 entries in the constant
31 // pool and when parsing line number tables. 57 // pool and when parsing line number tables.