src/share/vm/utilities/copy.hpp

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


 320     }
 321 #endif
 322   }
 323 
 324   // Platform dependent implementations of the above methods.
 325 #ifdef TARGET_ARCH_x86
 326 # include "copy_x86.hpp"
 327 #endif
 328 #ifdef TARGET_ARCH_sparc
 329 # include "copy_sparc.hpp"
 330 #endif
 331 #ifdef TARGET_ARCH_zero
 332 # include "copy_zero.hpp"
 333 #endif
 334 #ifdef TARGET_ARCH_arm
 335 # include "copy_arm.hpp"
 336 #endif
 337 #ifdef TARGET_ARCH_ppc
 338 # include "copy_ppc.hpp"
 339 #endif



 340 
 341 };
 342 
 343 #endif // SHARE_VM_UTILITIES_COPY_HPP


 320     }
 321 #endif
 322   }
 323 
 324   // Platform dependent implementations of the above methods.
 325 #ifdef TARGET_ARCH_x86
 326 # include "copy_x86.hpp"
 327 #endif
 328 #ifdef TARGET_ARCH_sparc
 329 # include "copy_sparc.hpp"
 330 #endif
 331 #ifdef TARGET_ARCH_zero
 332 # include "copy_zero.hpp"
 333 #endif
 334 #ifdef TARGET_ARCH_arm
 335 # include "copy_arm.hpp"
 336 #endif
 337 #ifdef TARGET_ARCH_ppc
 338 # include "copy_ppc.hpp"
 339 #endif
 340 #ifdef TARGET_ARCH_aarch64
 341 # include "copy_aarch64.hpp"
 342 #endif
 343 
 344 };
 345 
 346 #endif // SHARE_VM_UTILITIES_COPY_HPP