[llvm-commits] [llvm] r42904 - /llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp

Dan Gohman djg at cray.com
Fri Oct 12 07:08:58 PDT 2007


Author: djg
Date: Fri Oct 12 09:08:57 2007
New Revision: 42904

URL: http://llvm.org/viewvc/llvm-project?rev=42904&view=rev
Log:
Mark vector pow, ctpop, cttz, and ctlz as Expand on PowerPC.

Modified:
    llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp

Modified: llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp?rev=42904&r1=42903&r2=42904&view=diff

==============================================================================
--- llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp Fri Oct 12 09:08:57 2007
@@ -284,8 +284,11 @@
       setOperationAction(ISD::SMUL_LOHI, (MVT::ValueType)VT, Expand);
       setOperationAction(ISD::UDIVREM, (MVT::ValueType)VT, Expand);
       setOperationAction(ISD::SDIVREM, (MVT::ValueType)VT, Expand);
-
       setOperationAction(ISD::SCALAR_TO_VECTOR, (MVT::ValueType)VT, Expand);
+      setOperationAction(ISD::FPOW, (MVT::ValueType)VT, Expand);
+      setOperationAction(ISD::CTPOP, (MVT::ValueType)VT, Expand);
+      setOperationAction(ISD::CTLZ, (MVT::ValueType)VT, Expand);
+      setOperationAction(ISD::CTTZ, (MVT::ValueType)VT, Expand);
     }
 
     // We can custom expand all VECTOR_SHUFFLEs to VPERM, others we can handle





More information about the llvm-commits mailing list