comparison src/share/vm/oops/constantPoolOop.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 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 #ifndef SHARE_VM_OOPS_CONSTANTPOOLOOP_HPP
26 #define SHARE_VM_OOPS_CONSTANTPOOLOOP_HPP
27
28 #include "oops/arrayOop.hpp"
29 #include "oops/cpCacheOop.hpp"
30 #include "oops/typeArrayOop.hpp"
31 #include "utilities/constantTag.hpp"
32 #ifdef TARGET_ARCH_x86
33 # include "bytes_x86.hpp"
34 #endif
35 #ifdef TARGET_ARCH_sparc
36 # include "bytes_sparc.hpp"
37 #endif
38 #ifdef TARGET_ARCH_zero
39 # include "bytes_zero.hpp"
40 #endif
41
25 // A constantPool is an array containing class constants as described in the 42 // A constantPool is an array containing class constants as described in the
26 // class file. 43 // class file.
27 // 44 //
28 // Most of the constant pool entries are written during class parsing, which 45 // Most of the constant pool entries are written during class parsing, which
29 // is safe. For klass and string types, the constant pool entry is 46 // is safe. For klass and string types, the constant pool entry is
763 } 780 }
764 } 781 }
765 delete _buckets; 782 delete _buckets;
766 } 783 }
767 }; // End SymbolHashMap class 784 }; // End SymbolHashMap class
785
786 #endif // SHARE_VM_OOPS_CONSTANTPOOLOOP_HPP