src/share/vm/asm/assembler.hpp

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


 416    */
 417   void pd_patch_instruction(address branch, address target);
 418 
 419 };
 420 
 421 #ifdef TARGET_ARCH_x86
 422 # include "assembler_x86.hpp"
 423 #endif
 424 #ifdef TARGET_ARCH_sparc
 425 # include "assembler_sparc.hpp"
 426 #endif
 427 #ifdef TARGET_ARCH_zero
 428 # include "assembler_zero.hpp"
 429 #endif
 430 #ifdef TARGET_ARCH_arm
 431 # include "assembler_arm.hpp"
 432 #endif
 433 #ifdef TARGET_ARCH_ppc
 434 # include "assembler_ppc.hpp"
 435 #endif



 436 
 437 
 438 #endif // SHARE_VM_ASM_ASSEMBLER_HPP


 416    */
 417   void pd_patch_instruction(address branch, address target);
 418 
 419 };
 420 
 421 #ifdef TARGET_ARCH_x86
 422 # include "assembler_x86.hpp"
 423 #endif
 424 #ifdef TARGET_ARCH_sparc
 425 # include "assembler_sparc.hpp"
 426 #endif
 427 #ifdef TARGET_ARCH_zero
 428 # include "assembler_zero.hpp"
 429 #endif
 430 #ifdef TARGET_ARCH_arm
 431 # include "assembler_arm.hpp"
 432 #endif
 433 #ifdef TARGET_ARCH_ppc
 434 # include "assembler_ppc.hpp"
 435 #endif
 436 #ifdef TARGET_ARCH_aarch64
 437 # include "assembler_aarch64.hpp"
 438 #endif
 439 
 440 
 441 #endif // SHARE_VM_ASM_ASSEMBLER_HPP