comparison src/share/vm/code/vmreg.hpp @ 7204:f0c2369fda5a

8003250: SPARC: move MacroAssembler into separate file Reviewed-by: jrose, kvn
author twisti
date Thu, 06 Dec 2012 09:57:41 -0800
parents b9a9ed0f8eeb
children d2907f74462e
comparison
equal deleted inserted replaced
7201:c5d414e98fd4 7204:f0c2369fda5a
25 #ifndef SHARE_VM_CODE_VMREG_HPP 25 #ifndef SHARE_VM_CODE_VMREG_HPP
26 #define SHARE_VM_CODE_VMREG_HPP 26 #define SHARE_VM_CODE_VMREG_HPP
27 27
28 #include "memory/allocation.hpp" 28 #include "memory/allocation.hpp"
29 #include "utilities/globalDefinitions.hpp" 29 #include "utilities/globalDefinitions.hpp"
30 #ifdef TARGET_ARCH_x86 30 #include "asm/register.hpp"
31 # include "register_x86.hpp" 31
32 #endif
33 #ifdef TARGET_ARCH_sparc
34 # include "register_sparc.hpp"
35 #endif
36 #ifdef TARGET_ARCH_zero
37 # include "register_zero.hpp"
38 #endif
39 #ifdef TARGET_ARCH_arm
40 # include "register_arm.hpp"
41 #endif
42 #ifdef TARGET_ARCH_ppc
43 # include "register_ppc.hpp"
44 #endif
45 #ifdef COMPILER2 32 #ifdef COMPILER2
46 #include "opto/adlcVMDeps.hpp" 33 #include "opto/adlcVMDeps.hpp"
47 #include "utilities/ostream.hpp" 34 #include "utilities/ostream.hpp"
48 #ifdef TARGET_ARCH_MODEL_x86_32 35 #ifdef TARGET_ARCH_MODEL_x86_32
49 # include "adfiles/adGlobals_x86_32.hpp" 36 # include "adfiles/adGlobals_x86_32.hpp"