src/share/vm/utilities/bytes.hpp

Print this page
rev 7258 : 8064611: AARCH64: Changes to HotSpot shared code
Summary: Everything except cpu/ and os_cpu/.
Reviewed-by: kvn


  23  */
  24 
  25 #ifndef SHARE_VM_UTILITIES_BYTES_HPP
  26 #define SHARE_VM_UTILITIES_BYTES_HPP
  27 
  28 #ifdef TARGET_ARCH_x86
  29 # include "bytes_x86.hpp"
  30 #endif
  31 #ifdef TARGET_ARCH_sparc
  32 # include "bytes_sparc.hpp"
  33 #endif
  34 #ifdef TARGET_ARCH_zero
  35 # include "bytes_zero.hpp"
  36 #endif
  37 #ifdef TARGET_ARCH_arm
  38 # include "bytes_arm.hpp"
  39 #endif
  40 #ifdef TARGET_ARCH_ppc
  41 # include "bytes_ppc.hpp"
  42 #endif



  43 
  44 #endif // SHARE_VM_UTILITIES_BYTES_HPP


  23  */
  24 
  25 #ifndef SHARE_VM_UTILITIES_BYTES_HPP
  26 #define SHARE_VM_UTILITIES_BYTES_HPP
  27 
  28 #ifdef TARGET_ARCH_x86
  29 # include "bytes_x86.hpp"
  30 #endif
  31 #ifdef TARGET_ARCH_sparc
  32 # include "bytes_sparc.hpp"
  33 #endif
  34 #ifdef TARGET_ARCH_zero
  35 # include "bytes_zero.hpp"
  36 #endif
  37 #ifdef TARGET_ARCH_arm
  38 # include "bytes_arm.hpp"
  39 #endif
  40 #ifdef TARGET_ARCH_ppc
  41 # include "bytes_ppc.hpp"
  42 #endif
  43 #ifdef TARGET_ARCH_aarch64
  44 # include "bytes_aarch64.hpp"
  45 #endif
  46 
  47 #endif // SHARE_VM_UTILITIES_BYTES_HPP