src/share/vm/runtime/registerMap.hpp

changeset 6876
710a3c8b516e
parent 2708
1d1603768966
parent 1
2d8a650513c2
equal deleted inserted replaced
6875:28b50d07f6f8 6876:710a3c8b516e
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24 24
25 /*
26 * This file has been modified by Loongson Technology in 2015. These
27 * modifications are Copyright (c) 2015 Loongson Technology, and are made
28 * available on the same license terms set forth above.
29 */
30
25 #ifndef SHARE_VM_RUNTIME_REGISTERMAP_HPP 31 #ifndef SHARE_VM_RUNTIME_REGISTERMAP_HPP
26 #define SHARE_VM_RUNTIME_REGISTERMAP_HPP 32 #define SHARE_VM_RUNTIME_REGISTERMAP_HPP
27 33
28 #include "code/vmreg.hpp" 34 #include "code/vmreg.hpp"
29 #include "utilities/globalDefinitions.hpp" 35 #include "utilities/globalDefinitions.hpp"
39 #ifdef TARGET_ARCH_arm 45 #ifdef TARGET_ARCH_arm
40 # include "register_arm.hpp" 46 # include "register_arm.hpp"
41 #endif 47 #endif
42 #ifdef TARGET_ARCH_ppc 48 #ifdef TARGET_ARCH_ppc
43 # include "register_ppc.hpp" 49 # include "register_ppc.hpp"
50 #endif
51 #ifdef TARGET_ARCH_mips
52 # include "register_mips.hpp"
44 #endif 53 #endif
45 54
46 class JavaThread; 55 class JavaThread;
47 56
48 // 57 //
148 # include "registerMap_arm.hpp" 157 # include "registerMap_arm.hpp"
149 #endif 158 #endif
150 #ifdef TARGET_ARCH_ppc 159 #ifdef TARGET_ARCH_ppc
151 # include "registerMap_ppc.hpp" 160 # include "registerMap_ppc.hpp"
152 #endif 161 #endif
162 #ifdef TARGET_ARCH_mips
163 # include "registerMap_mips.hpp"
164 #endif
153 165
154 }; 166 };
155 167
156 #endif // SHARE_VM_RUNTIME_REGISTERMAP_HPP 168 #endif // SHARE_VM_RUNTIME_REGISTERMAP_HPP

mercurial