Teach the DAG->DAG ISel about FNEG, and how it can be used to invert
authorNate Begeman <natebegeman@mac.com>
Wed, 17 Aug 2005 23:46:35 +0000 (23:46 +0000)
committerNate Begeman <natebegeman@mac.com>
Wed, 17 Aug 2005 23:46:35 +0000 (23:46 +0000)
several of the PowerPC opcodes that come in both negated and non-negated
forms.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22845 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/PPCISelDAGToDAG.cpp

index 974f266d8b836a7ef19edd4f54afe04ae46ba6ce..2b7dd32aa801d21c074a3a5ba634301d85eaed3d 100644 (file)
@@ -199,7 +199,6 @@ SDOperand PPC32DAGToDAGISel::Select(SDOperand Op) {
       break;
     }
   }
-
   case ISD::ADD: {
     MVT::ValueType Ty = N->getValueType(0);
     if (Ty == MVT::i32) {
@@ -281,7 +280,35 @@ SDOperand PPC32DAGToDAGISel::Select(SDOperand Op) {
                          Select(N->getOperand(0)),
                          Select(N->getOperand(1)));
     break;
-  }    
+  }
+  case ISD::FNEG: {
+    SDOperand Val = Select(N->getOperand(0));
+    MVT::ValueType Ty = N->getValueType(0);
+    if (Val.Val->hasOneUse()) {
+      unsigned Opc;
+      switch (Val.getTargetOpcode()) {
+      default:          Opc = 0;            break;
+      case PPC::FABS:   Opc = PPC::FNABS;   break;
+      case PPC::FMADD:  Opc = PPC::FNMADD;  break;
+      case PPC::FMADDS: Opc = PPC::FNMADDS; break;
+      case PPC::FMSUB:  Opc = PPC::FNMSUB;  break;
+      case PPC::FMSUBS: Opc = PPC::FNMSUBS; break;
+      }
+      // If we inverted the opcode, then emit the new instruction with the
+      // inverted opcode and the original instruction's operands.  Otherwise, 
+      // fall through and generate a fneg instruction.
+      if (Opc) {
+        if (PPC::FNABS == Opc)
+          CurDAG->SelectNodeTo(N, Ty, Opc, Val.getOperand(0));
+        else
+          CurDAG->SelectNodeTo(N, Ty, Opc, Val.getOperand(0),
+                               Val.getOperand(1), Val.getOperand(2));
+        break;
+      }
+    }
+    CurDAG->SelectNodeTo(N, Ty, PPC::FNEG, Val);
+    break;
+  }
   case ISD::RET: {
     SDOperand Chain = Select(N->getOperand(0));     // Token chain.