src/share/vm/code/nativeInst.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_CODE_NATIVEINST_HPP
  26 #define SHARE_VM_CODE_NATIVEINST_HPP
  27 
  28 #ifdef TARGET_ARCH_x86
  29 # include "nativeInst_x86.hpp"
  30 #endif
  31 #ifdef TARGET_ARCH_sparc
  32 # include "nativeInst_sparc.hpp"
  33 #endif
  34 #ifdef TARGET_ARCH_zero
  35 # include "nativeInst_zero.hpp"
  36 #endif
  37 #ifdef TARGET_ARCH_arm
  38 # include "nativeInst_arm.hpp"
  39 #endif
  40 #ifdef TARGET_ARCH_ppc
  41 # include "nativeInst_ppc.hpp"
  42 #endif



  43 
  44 #endif // SHARE_VM_CODE_NATIVEINST_HPP


  23  */
  24 
  25 #ifndef SHARE_VM_CODE_NATIVEINST_HPP
  26 #define SHARE_VM_CODE_NATIVEINST_HPP
  27 
  28 #ifdef TARGET_ARCH_x86
  29 # include "nativeInst_x86.hpp"
  30 #endif
  31 #ifdef TARGET_ARCH_sparc
  32 # include "nativeInst_sparc.hpp"
  33 #endif
  34 #ifdef TARGET_ARCH_zero
  35 # include "nativeInst_zero.hpp"
  36 #endif
  37 #ifdef TARGET_ARCH_arm
  38 # include "nativeInst_arm.hpp"
  39 #endif
  40 #ifdef TARGET_ARCH_ppc
  41 # include "nativeInst_ppc.hpp"
  42 #endif
  43 #ifdef TARGET_ARCH_aarch64
  44 # include "nativeInst_aarch64.hpp"
  45 #endif
  46 
  47 #endif // SHARE_VM_CODE_NATIVEINST_HPP