src/share/vm/oops/constantPoolOop.hpp

Print this page

        

*** 20,29 **** --- 20,46 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_OOPS_CONSTANTPOOLOOP_HPP + #define SHARE_VM_OOPS_CONSTANTPOOLOOP_HPP + + #include "oops/arrayOop.hpp" + #include "oops/cpCacheOop.hpp" + #include "oops/typeArrayOop.hpp" + #include "utilities/constantTag.hpp" + #ifdef TARGET_ARCH_x86 + # include "bytes_x86.hpp" + #endif + #ifdef TARGET_ARCH_sparc + # include "bytes_sparc.hpp" + #endif + #ifdef TARGET_ARCH_zero + # include "bytes_zero.hpp" + #endif + // A constantPool is an array containing class constants as described in the // class file. // // Most of the constant pool entries are written during class parsing, which // is safe. For klass and string types, the constant pool entry is
*** 664,668 **** --- 681,687 ---- } } delete _buckets; } }; // End SymbolHashMap class + + #endif // SHARE_VM_OOPS_CONSTANTPOOLOOP_HPP