summaryrefslogtreecommitdiff
path: root/lib/Target/MSP430/MSP430RegisterInfo.td
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-05-03 12:57:15 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-05-03 12:57:15 +0000
commitf2c3e179ecc2a6ebc259382828a5e5dc5a61d2f8 (patch)
tree35fa60b598dc9c81a6f391c280632e184cb71cfc /lib/Target/MSP430/MSP430RegisterInfo.td
parent77eaa6880b8209acc05de733ebaba5d146c321a0 (diff)
downloadllvm-f2c3e179ecc2a6ebc259382828a5e5dc5a61d2f8.tar.gz
llvm-f2c3e179ecc2a6ebc259382828a5e5dc5a61d2f8.tar.bz2
llvm-f2c3e179ecc2a6ebc259382828a5e5dc5a61d2f8.tar.xz
Dummy MSP430 backend
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70694 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/MSP430/MSP430RegisterInfo.td')
-rw-r--r--lib/Target/MSP430/MSP430RegisterInfo.td57
1 files changed, 57 insertions, 0 deletions
diff --git a/lib/Target/MSP430/MSP430RegisterInfo.td b/lib/Target/MSP430/MSP430RegisterInfo.td
new file mode 100644
index 0000000000..ba604a9a65
--- /dev/null
+++ b/lib/Target/MSP430/MSP430RegisterInfo.td
@@ -0,0 +1,57 @@
+//===- MSP430RegisterInfo.td - MSP430 Register defs ----------*- tblgen -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+//===----------------------------------------------------------------------===//
+// Declarations that describe the MSP430 register file
+//===----------------------------------------------------------------------===//
+
+class MSP430Reg<bits<4> num, string n> : Register<n> {
+ field bits<4> Num = num;
+ let Namespace = "MSP430";
+}
+
+//===----------------------------------------------------------------------===//
+// Registers
+//===----------------------------------------------------------------------===//
+
+def PC : MSP430Reg<0, "PC">;
+def SP : MSP430Reg<1, "SP">;
+def SR : MSP430Reg<2, "SR">;
+def CG : MSP430Reg<3, "CG">;
+def R4 : MSP430Reg<4, "R4">;
+def R5 : MSP430Reg<5, "R5">;
+def R6 : MSP430Reg<6, "R6">;
+def R7 : MSP430Reg<7, "R7">;
+def R8 : MSP430Reg<8, "R8">;
+def R9 : MSP430Reg<9, "R9">;
+def R10 : MSP430Reg<10, "R10">;
+def R11 : MSP430Reg<11, "R11">;
+def R12 : MSP430Reg<12, "R12">;
+def R13 : MSP430Reg<13, "R13">;
+def R14 : MSP430Reg<14, "R14">;
+def R15 : MSP430Reg<15, "R15">;
+
+def MSP430Regs : RegisterClass<"MSP430", [i16], 16,
+ // Volatile registers
+ [R4, R5, R6, R7, R8, R9, R9, R10, R11, R12, R13, R14, R15,
+ // Volatile, but not allocable
+ PC, SP, SR, CG]>
+{
+ let MethodProtos = [{
+ iterator allocation_order_end(const MachineFunction &MF) const;
+ }];
+ let MethodBodies = [{
+ MSP430RegsClass::iterator
+ MSP430RegsClass::allocation_order_end(const MachineFunction &MF) const {
+ // The last 4 registers on the list above are reserved
+ return end()-4;
+ }
+ }];
+}
+