Implement some feedback from sabre
authorNate Begeman <natebegeman@mac.com>
Fri, 3 Feb 2006 22:38:07 +0000 (22:38 +0000)
committerNate Begeman <natebegeman@mac.com>
Fri, 3 Feb 2006 22:38:07 +0000 (22:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25946 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/TargetLowering.cpp

index 8951490fb6e53354dd38434debe8beb9d888de0f..5a191d999814760fb3b2490697177b91a5700c8f 100644 (file)
@@ -135,14 +135,14 @@ const char *TargetLowering::getTargetNodeName(unsigned Opcode) const {
 /// set operation such as a sign extend or or/xor with constant whose only
 /// use is Op.  If it returns true, the old node that sets bits which are
 /// not demanded is returned in Old, and its replacement node is returned in
-/// New, such that callers of SetBitsAreZero may call CombineTo on them if
+/// New, such that callers of DemandedBitsAreZero may call CombineTo on them if
 /// desired.
 bool TargetLowering::DemandedBitsAreZero(const SDOperand &Op, uint64_t Mask, 
                                          SDOperand &Old, SDOperand &New,
                                          SelectionDAG &DAG) {
   // If the operation has more than one use, we're not interested in it.
   // Tracking down and checking all uses would be problematic and slow.
-  if (!Op.hasOneUse())
+  if (!Op.Val->hasOneUse())
     return false;
   
   switch (Op.getOpcode()) {
@@ -164,11 +164,11 @@ bool TargetLowering::DemandedBitsAreZero(const SDOperand &Op, uint64_t Mask,
     MVT::ValueType EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
     unsigned ExtendBits = MVT::getSizeInBits(EVT);
     // If we're extending from something smaller than MVT::i64 and all of the
-    // sign extension bits are masked, return true and set New to be a zero
-    // extend inreg from the same type.
+    // sign extension bits are masked, return true and set New to be the
+    // first operand, since we no longer care what the high bits are.
     if (ExtendBits < 64 && ((Mask & (~0ULL << ExtendBits)) == 0)) {
       Old = Op;
-      New = DAG.getZeroExtendInReg(Op.getOperand(0), EVT);
+      New = Op.getOperand(0);
       return true;
     }
     break;