diff -r 28b50d07f6f8 -r 710a3c8b516e src/share/vm/asm/assembler.hpp --- a/src/share/vm/asm/assembler.hpp Mon Sep 08 12:35:01 2014 -0700 +++ b/src/share/vm/asm/assembler.hpp Tue Aug 08 15:57:29 2017 +0800 @@ -22,6 +22,12 @@ * */ +/* + * This file has been modified by Loongson Technology in 2015. These + * modifications are Copyright (c) 2015 Loongson Technology, and are made + * available on the same license terms set forth above. + */ + #ifndef SHARE_VM_ASM_ASSEMBLER_HPP #define SHARE_VM_ASM_ASSEMBLER_HPP @@ -53,6 +59,10 @@ # include "register_ppc.hpp" # include "vm_version_ppc.hpp" #endif +#ifdef TARGET_ARCH_mips +# include "register_mips.hpp" +# include "vm_version_mips.hpp" +#endif // This file contains platform-independent assembler declarations. @@ -452,6 +462,9 @@ #ifdef TARGET_ARCH_ppc # include "assembler_ppc.hpp" #endif +#ifdef TARGET_ARCH_mips +# include "assembler_mips.hpp" +#endif #endif // SHARE_VM_ASM_ASSEMBLER_HPP