RegisterPressure: Cannot produce dead (subregister) defs anymore
authorMatthias Braun <matze@braunis.de>
Fri, 29 Apr 2016 02:44:48 +0000 (02:44 +0000)
committerMatthias Braun <matze@braunis.de>
Fri, 29 Apr 2016 02:44:48 +0000 (02:44 +0000)
With the DetectDeadLanes pass in place we cannot run into situations
anymore where defs suddenly become dead.
Also add a missing check so we do not try to add an undef flag to a
physreg (found by visual inspection, no failing test).

llvm-svn: 267976

llvm/lib/CodeGen/RegisterPressure.cpp

index 58310cd..e07efd3 100644 (file)
@@ -573,9 +573,6 @@ void RegisterOperands::adjustLaneLiveness(const LiveIntervals &LIS,
     LaneBitmask LaneMask = I->LaneMask & LiveAfter;
     if (LaneMask == 0) {
       I = Defs.erase(I);
-      // Make sure the operand is properly marked as Dead.
-      if (AddFlagsMI != nullptr)
-        AddFlagsMI->addRegisterDead(RegUnit, MRI.getTargetRegisterInfo());
     } else {
       I->LaneMask = LaneMask;
       ++I;
@@ -595,6 +592,8 @@ void RegisterOperands::adjustLaneLiveness(const LiveIntervals &LIS,
   if (AddFlagsMI != nullptr) {
     for (const RegisterMaskPair &P : DeadDefs) {
       unsigned RegUnit = P.RegUnit;
+      if (!TargetRegisterInfo::isVirtualRegister(RegUnit))
+        continue;
       LaneBitmask LiveAfter = getLiveLanesAt(LIS, MRI, true, RegUnit,
                                              Pos.getDeadSlot());
       if (LiveAfter == 0)