src/share/vm/asm/register.hpp

changeset 4323
f0c2369fda5a
parent 4153
b9a9ed0f8eeb
child 6680
78bbf4d43a14
     1.1 --- a/src/share/vm/asm/register.hpp	Mon Nov 26 15:11:55 2012 +0100
     1.2 +++ b/src/share/vm/asm/register.hpp	Thu Dec 06 09:57:41 2012 -0800
     1.3 @@ -93,6 +93,21 @@
     1.4  #define REGISTER_DEFINITION(type, name) \
     1.5  const type name = ((type)name##_##type##EnumValue)
     1.6  
     1.7 +#ifdef TARGET_ARCH_x86
     1.8 +# include "register_x86.hpp"
     1.9 +#endif
    1.10 +#ifdef TARGET_ARCH_sparc
    1.11 +# include "register_sparc.hpp"
    1.12 +#endif
    1.13 +#ifdef TARGET_ARCH_zero
    1.14 +# include "register_zero.hpp"
    1.15 +#endif
    1.16 +#ifdef TARGET_ARCH_arm
    1.17 +# include "register_arm.hpp"
    1.18 +#endif
    1.19 +#ifdef TARGET_ARCH_ppc
    1.20 +# include "register_ppc.hpp"
    1.21 +#endif
    1.22  
    1.23  
    1.24  // Debugging support

mercurial