hotspot/src/share/vm/oops/constantPool.hpp
changeset 25715 d5a8dbdc5150
parent 25325 e3af4e02b0d5
child 27408 9a8090dd6ec3
equal deleted inserted replaced
25469:3bcfa1db9717 25715:d5a8dbdc5150
    29 #include "oops/cpCache.hpp"
    29 #include "oops/cpCache.hpp"
    30 #include "oops/objArrayOop.hpp"
    30 #include "oops/objArrayOop.hpp"
    31 #include "oops/symbol.hpp"
    31 #include "oops/symbol.hpp"
    32 #include "oops/typeArrayOop.hpp"
    32 #include "oops/typeArrayOop.hpp"
    33 #include "runtime/handles.hpp"
    33 #include "runtime/handles.hpp"
       
    34 #include "utilities/bytes.hpp"
    34 #include "utilities/constantTag.hpp"
    35 #include "utilities/constantTag.hpp"
    35 #ifdef TARGET_ARCH_x86
       
    36 # include "bytes_x86.hpp"
       
    37 #endif
       
    38 #ifdef TARGET_ARCH_sparc
       
    39 # include "bytes_sparc.hpp"
       
    40 #endif
       
    41 #ifdef TARGET_ARCH_zero
       
    42 # include "bytes_zero.hpp"
       
    43 #endif
       
    44 #ifdef TARGET_ARCH_arm
       
    45 # include "bytes_arm.hpp"
       
    46 #endif
       
    47 #ifdef TARGET_ARCH_ppc
       
    48 # include "bytes_ppc.hpp"
       
    49 #endif
       
    50 
    36 
    51 // A ConstantPool is an array containing class constants as described in the
    37 // A ConstantPool is an array containing class constants as described in the
    52 // class file.
    38 // class file.
    53 //
    39 //
    54 // Most of the constant pool entries are written during class parsing, which
    40 // Most of the constant pool entries are written during class parsing, which