< prev index next >

src/share/vm/asm/assembler.hpp

Print this page

        

*** 51,60 **** --- 51,64 ---- #endif #ifdef TARGET_ARCH_ppc # include "register_ppc.hpp" # include "vm_version_ppc.hpp" #endif + #ifdef TARGET_ARCH_aarch64 + # include "register_aarch64.hpp" + # include "vm_version_aarch64.hpp" + #endif // This file contains platform-independent assembler declarations. class MacroAssembler; class AbstractAssembler;
*** 446,455 **** --- 450,462 ---- }; #ifdef TARGET_ARCH_x86 # include "assembler_x86.hpp" #endif + #ifdef TARGET_ARCH_aarch64 + # include "assembler_aarch64.hpp" + #endif #ifdef TARGET_ARCH_sparc # include "assembler_sparc.hpp" #endif #ifdef TARGET_ARCH_zero # include "assembler_zero.hpp"
< prev index next >