[llvm-commits] CVS: llvm/lib/Target/SparcV8/SparcV8InstrInfo.td

Brian Gaeke gaeke at cs.uiuc.edu
Fri Dec 10 00:39:44 PST 2004



Changes in directory llvm/lib/Target/SparcV8:

SparcV8InstrInfo.td updated: 1.38 -> 1.39
---
Log message:

Add the rest of the multiply instructions.


---
Diffs of the changes:  (+8 -2)

Index: llvm/lib/Target/SparcV8/SparcV8InstrInfo.td
diff -u llvm/lib/Target/SparcV8/SparcV8InstrInfo.td:1.38 llvm/lib/Target/SparcV8/SparcV8InstrInfo.td:1.39
--- llvm/lib/Target/SparcV8/SparcV8InstrInfo.td:1.38	Tue Nov 23 00:39:37 2004
+++ llvm/lib/Target/SparcV8/SparcV8InstrInfo.td	Fri Dec 10 02:39:29 2004
@@ -154,8 +154,14 @@
 def SUBXCCri: F3_2<2, 0b011100, "subxcc">;
 
 // Section B.18 - Multiply Instructions, p. 113
-def UMULrr : F3_1<2, 0b001010, "umul">;
-def SMULrr : F3_1<2, 0b001011, "smul">;
+def UMULrr  : F3_1<2, 0b001010, "umul">;
+def UMULri  : F3_2<2, 0b001010, "umul">;
+def SMULrr  : F3_1<2, 0b001011, "smul">;
+def SMULri  : F3_2<2, 0b001011, "smul">;
+def UMULCCrr: F3_1<2, 0b011010, "umulcc">;
+def UMULCCri: F3_2<2, 0b011010, "umulcc">;
+def SMULCCrr: F3_1<2, 0b011011, "smulcc">;
+def SMULCCri: F3_2<2, 0b011011, "smulcc">;
 
 // Section B.19 - Divide Instructions, p. 115
 def UDIVrr   : F3_1<2, 0b001110, "udiv">;






More information about the llvm-commits mailing list