[llvm-commits] [llvm] r59026 - in /llvm/trunk: lib/Target/Alpha/AlphaISelLowering.cpp test/CodeGen/Alpha/2008-11-10-smul_lohi.ll

Andrew Lenharth alenhar2 at cs.uiuc.edu
Mon Nov 10 22:06:08 PST 2008


Author: alenhar2
Date: Tue Nov 11 00:06:07 2008
New Revision: 59026

URL: http://llvm.org/viewvc/llvm-project?rev=59026&view=rev
Log:
fix another libgcc blocker

Added:
    llvm/trunk/test/CodeGen/Alpha/2008-11-10-smul_lohi.ll
Modified:
    llvm/trunk/lib/Target/Alpha/AlphaISelLowering.cpp

Modified: llvm/trunk/lib/Target/Alpha/AlphaISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Alpha/AlphaISelLowering.cpp?rev=59026&r1=59025&r2=59026&view=diff

==============================================================================
--- llvm/trunk/lib/Target/Alpha/AlphaISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/Alpha/AlphaISelLowering.cpp Tue Nov 11 00:06:07 2008
@@ -97,6 +97,7 @@
   setOperationAction(ISD::SUBE     , MVT::i64, Expand);
 
   setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
+  setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
 
 
   // We don't support sin/cos/sqrt/pow

Added: llvm/trunk/test/CodeGen/Alpha/2008-11-10-smul_lohi.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Alpha/2008-11-10-smul_lohi.ll?rev=59026&view=auto

==============================================================================
--- llvm/trunk/test/CodeGen/Alpha/2008-11-10-smul_lohi.ll (added)
+++ llvm/trunk/test/CodeGen/Alpha/2008-11-10-smul_lohi.ll Tue Nov 11 00:06:07 2008
@@ -0,0 +1,22 @@
+; RUN: llvm-as < %s | llc -march=alpha
+
+target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-f128:128:128"
+target triple = "alphaev6-unknown-linux-gnu"
+
+define i64 @__mulvdi3(i64 %a, i64 %b) nounwind {
+entry:
+	%0 = sext i64 %a to i128		; <i128> [#uses=1]
+	%1 = sext i64 %b to i128		; <i128> [#uses=1]
+	%2 = mul i128 %1, %0		; <i128> [#uses=2]
+	%3 = lshr i128 %2, 64		; <i128> [#uses=1]
+	%4 = trunc i128 %3 to i64		; <i64> [#uses=1]
+	%5 = trunc i128 %2 to i64		; <i64> [#uses=1]
+	%6 = icmp eq i64 %4, 0		; <i1> [#uses=1]
+	br i1 %6, label %bb1, label %bb
+
+bb:		; preds = %entry
+	unreachable
+
+bb1:		; preds = %entry
+	ret i64 %5
+}





More information about the llvm-commits mailing list