Mark dead physregdefs dead immediately. This helps MachineSink and
authorDan Gohman <gohman@apple.com>
Wed, 28 Oct 2009 01:13:53 +0000 (01:13 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 28 Oct 2009 01:13:53 +0000 (01:13 +0000)
MachineLICM and other things which run before LiveVariables is run.

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

lib/CodeGen/SelectionDAG/InstrEmitter.cpp
test/CodeGen/X86/sink-hoist.ll

index d3ffb2a22d9326c794deb06a1716e48b69ba38e4..425f670763af1f9b81006bb1fc5772bb07435022 100644 (file)
@@ -571,6 +571,8 @@ void InstrEmitter::EmitNode(SDNode *Node, bool IsClone, bool IsCloned,
         unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
         if (Node->hasAnyUseOfValue(i))
           EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap);
+        else
+          MI->addRegisterDead(Reg, TRI);
       }
     }
     return;
index 4042a095c6c367c0880fdeb4e33e74f6d3b7f4a9..7f6366972a9360652e6f6ede83537587314acdc8 100644 (file)
@@ -41,3 +41,18 @@ bb:
 return:
   ret void
 }
+
+; Sink instructions with dead EFLAGS defs.
+
+; CHECK:      je
+; CHECK-NEXT: orb
+
+define zeroext i8 @zzz(i8 zeroext %a, i8 zeroext %b) nounwind readnone {
+entry:
+  %tmp = zext i8 %a to i32                        ; <i32> [#uses=1]
+  %tmp2 = icmp eq i8 %a, 0                    ; <i1> [#uses=1]
+  %tmp3 = or i8 %b, -128                          ; <i8> [#uses=1]
+  %tmp4 = and i8 %b, 127                          ; <i8> [#uses=1]
+  %b_addr.0 = select i1 %tmp2, i8 %tmp4, i8 %tmp3 ; <i8> [#uses=1]
+  ret i8 %b_addr.0
+}