Permit remat when a virtual register has multiple defs.
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Wed, 20 Apr 2011 22:14:17 +0000 (22:14 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Wed, 20 Apr 2011 22:14:17 +0000 (22:14 +0000)
TII::isTriviallyReMaterializable() shouldn't depend on any properties of the
register being defined by the instruction. Rematerialization is going to create
a new virtual register anyway.

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

lib/CodeGen/TargetInstrInfoImpl.cpp

index 15340a3f10849ae9b07ff9324cec18f35c5e3af5..b9fcd3804d7f4bf4c2b05a0acf5061f1d3203bfa 100644 (file)
@@ -388,11 +388,6 @@ isReallyTriviallyReMaterializableGeneric(const MachineInstr *MI,
     if (MO.isDef() != (i == 0))
       return false;
 
-    // For the def, it should be the only def of that register.
-    if (MO.isDef() && (llvm::next(MRI.def_begin(Reg)) != MRI.def_end() ||
-                       MRI.isLiveIn(Reg)))
-      return false;
-
     // Don't allow any virtual-register uses. Rematting an instruction with
     // virtual register uses would length the live ranges of the uses, which
     // is not necessarily a good idea, certainly not "trivial".