[llvm-commits] CVS: llvm/lib/Target/Sparc/SparcInstrInfo.td
Chris Lattner
lattner at cs.uiuc.edu
Mon May 8 21:59:00 PDT 2006
Changes in directory llvm/lib/Target/Sparc:
SparcInstrInfo.td updated: 1.123 -> 1.124
---
Log message:
Some notes and thoughts to myself
---
Diffs of the changes: (+7 -7)
SparcInstrInfo.td | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
Index: llvm/lib/Target/Sparc/SparcInstrInfo.td
diff -u llvm/lib/Target/Sparc/SparcInstrInfo.td:1.123 llvm/lib/Target/Sparc/SparcInstrInfo.td:1.124
--- llvm/lib/Target/Sparc/SparcInstrInfo.td:1.123 Tue Feb 21 12:04:32 2006
+++ llvm/lib/Target/Sparc/SparcInstrInfo.td Mon May 8 23:58:46 2006
@@ -516,24 +516,24 @@
/*
//===-------------------------
// Sparc Example
-defm intinst<id OPC1, id OPC2, bits Opc, string asmstr, SDNode code> {
+defm intinst{OPC1, OPC2}<bits Opc, string asmstr, SDNode code> {
def OPC1 : F3_1<2, Opc, asmstr, (ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
[(set IntRegs:$dst, (code IntRegs:$b, IntRegs:$c))]>;
def OPC2 : F3_2<2, Opc, asmstr, (ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
[(set IntRegs:$dst, (code IntRegs:$b, simm13:$c))]>;
}
-defm intinst_np<id OPC1, id OPC2, bits Opc, string asmstr> {
+defm intinst_np{OPC1, OPC2}<bits Opc, string asmstr> {
def OPC1 : F3_1<2, Opc, asmstr, (ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
[]>;
def OPC2 : F3_2<2, Opc, asmstr, (ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
[]>;
}
-def intinstnp< ADDXrr, ADDXri, 0b001000, "addx $b, $c, $dst">;
-def intinst < SUBrr, SUBri, 0b000100, "sub $b, $c, $dst", sub>;
-def intinstnp< SUBXrr, SUBXri, 0b001100, "subx $b, $c, $dst">;
-def intinst <SUBCCrr, SUBCCri, 0b010100, "subcc $b, $c, $dst", SPcmpicc>;
-def intinst < SMULrr, SMULri, 0b001011, "smul $b, $c, $dst", mul>;
+def { ADDXrr, ADDXri} : intinstnp<0b001000, "addx $b, $c, $dst">;
+def { SUBrr, SUBri} : intinst <0b000100, "sub $b, $c, $dst", sub>;
+def intinstnp{ SUBXrr, SUBXri}<0b001100, "subx $b, $c, $dst">;
+def intinst {SUBCCrr, SUBCCri}<0b010100, "subcc $b, $c, $dst", SPcmpicc>;
+def intinst { SMULrr, SMULri}<0b001011, "smul $b, $c, $dst", mul>;
//===-------------------------
// X86 Example
More information about the llvm-commits
mailing list