hotspot/src/share/vm/classfile/verifier.cpp
changeset 25715 d5a8dbdc5150
parent 24663 48203b12ee8e
child 25717 7493b8ac31b7
equal deleted inserted replaced
25469:3bcfa1db9717 25715:d5a8dbdc5150
    43 #include "runtime/handles.inline.hpp"
    43 #include "runtime/handles.inline.hpp"
    44 #include "runtime/interfaceSupport.hpp"
    44 #include "runtime/interfaceSupport.hpp"
    45 #include "runtime/javaCalls.hpp"
    45 #include "runtime/javaCalls.hpp"
    46 #include "runtime/orderAccess.inline.hpp"
    46 #include "runtime/orderAccess.inline.hpp"
    47 #include "runtime/os.hpp"
    47 #include "runtime/os.hpp"
    48 #ifdef TARGET_ARCH_x86
    48 #include "utilities/bytes.hpp"
    49 # include "bytes_x86.hpp"
       
    50 #endif
       
    51 #ifdef TARGET_ARCH_sparc
       
    52 # include "bytes_sparc.hpp"
       
    53 #endif
       
    54 #ifdef TARGET_ARCH_zero
       
    55 # include "bytes_zero.hpp"
       
    56 #endif
       
    57 #ifdef TARGET_ARCH_arm
       
    58 # include "bytes_arm.hpp"
       
    59 #endif
       
    60 #ifdef TARGET_ARCH_ppc
       
    61 # include "bytes_ppc.hpp"
       
    62 #endif
       
    63 
    49 
    64 #define NOFAILOVER_MAJOR_VERSION                       51
    50 #define NOFAILOVER_MAJOR_VERSION                       51
    65 #define NONZERO_PADDING_BYTES_IN_SWITCH_MAJOR_VERSION  51
    51 #define NONZERO_PADDING_BYTES_IN_SWITCH_MAJOR_VERSION  51
    66 #define STATIC_METHOD_IN_INTERFACE_MAJOR_VERSION       52
    52 #define STATIC_METHOD_IN_INTERFACE_MAJOR_VERSION       52
    67 
    53