Finish implementation of alias list impl
authorChris Lattner <sabre@nondot.org>
Mon, 16 Dec 2002 19:31:48 +0000 (19:31 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 16 Dec 2002 19:31:48 +0000 (19:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5083 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86RegisterInfo.cpp
lib/Target/X86/X86RegisterInfo.def

index 4fa6393eec1859ea23c4f8a9a5c1f95b84578a82..30095e69dcc888c1369d457d2acfa822ea88c851 100644 (file)
 #include "llvm/CodeGen/MachineInstrBuilder.h"
 #include "llvm/CodeGen/MachineFunction.h"
 
+// Create static lists to contain register alias sets...
+#define ALIASLIST(NAME, ...) \
+  static const unsigned NAME[] = { __VA_ARGS__ };
+#include "X86RegisterInfo.def"
+
+
 // X86Regs - Turn the X86RegisterInfo.def file into a bunch of register
 // descriptors
 //
 static const MRegisterDesc X86Regs[] = {
-#define R(ENUM, NAME, FLAGS, TSFLAGS, ALIAS_SET) { NAME, FLAGS, TSFLAGS },
+#define R(ENUM, NAME, FLAGS, TSFLAGS, ALIAS_SET) \
+         { NAME, ALIAS_SET, FLAGS, TSFLAGS },
 #include "X86RegisterInfo.def"
 };
 
index d87c6b810622f1b364fe22e5cfbd746aac2bd02d..d8e7fd23e72d6a2abab28233c886ea14b44798f7 100644 (file)
@@ -119,6 +119,7 @@ ALIASLIST(A_AH      , X86::EAX, X86::AX, 0)
 ALIASLIST(A_CH      , X86::ECX, X86::CX, 0)
 ALIASLIST(A_DH      , X86::EDX, X86::DX, 0)
 ALIASLIST(A_BH      , X86::EBX, X86::BX, 0)
+#undef ALIASLIST
 
 // We are now done with the R* macros
 #undef R