comparison src/share/vm/classfile/systemDictionary.hpp @ 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 3b2dea75431e
children f2da85a9b08e
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
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
25 #ifndef SHARE_VM_CLASSFILE_SYSTEMDICTIONARY_HPP
26 #define SHARE_VM_CLASSFILE_SYSTEMDICTIONARY_HPP
27
28 #include "classfile/classFileStream.hpp"
29 #include "classfile/classLoader.hpp"
30 #include "oops/objArrayOop.hpp"
31 #include "oops/symbolOop.hpp"
32 #include "runtime/java.hpp"
33 #include "runtime/reflectionUtils.hpp"
34 #include "utilities/hashtable.hpp"
24 35
25 // The system dictionary stores all loaded classes and maps: 36 // The system dictionary stores all loaded classes and maps:
26 // 37 //
27 // [class name,class loader] -> class i.e. [symbolOop,oop] -> klassOop 38 // [class name,class loader] -> class i.e. [symbolOop,oop] -> klassOop
28 // 39 //
670 WK_KLASSES_DO(WK_KLASS_HANDLE_DECLARE); 681 WK_KLASSES_DO(WK_KLASS_HANDLE_DECLARE);
671 #undef WK_KLASS_HANDLE_DECLARE 682 #undef WK_KLASS_HANDLE_DECLARE
672 683
673 static KlassHandle box_klass(BasicType t); 684 static KlassHandle box_klass(BasicType t);
674 }; 685 };
686
687 #endif // SHARE_VM_CLASSFILE_SYSTEMDICTIONARY_HPP