Allow target to custom lower READCYCLECOUNTER (when it doesn't have to be expanded).
authorEvan Cheng <evan.cheng@apple.com>
Wed, 29 Nov 2006 08:26:18 +0000 (08:26 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Wed, 29 Nov 2006 08:26:18 +0000 (08:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32016 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/LegalizeDAG.cpp

index 5b15dfb2100568710a0044a0f1ba2c167c46512a..1c0be0ba52da25aa98e8d692b98ca4de07498c56 100644 (file)
@@ -1847,11 +1847,19 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
   case ISD::READCYCLECOUNTER:
     Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
     Result = DAG.UpdateNodeOperands(Result, Tmp1);
+    switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
+                                   Node->getValueType(0))) {
+    default: assert(0 && "This action is not supported yet!");
+    case TargetLowering::Legal: break;
+    case TargetLowering::Custom:
+      Result = TLI.LowerOperation(Result, DAG);
+      break;
+    }
 
     // Since rdcc produce two values, make sure to remember that we legalized
     // both of them.
-    AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
-    AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
+    AddLegalizedOperand(SDOperand(Node, 0), LegalizeOp(Result.getValue(0)));
+    AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Result.getValue(1)));
     return Result;
 
   case ISD::SELECT: