aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/RegAllocGreedy.cpp
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2010-12-10 20:45:04 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2010-12-10 20:45:04 +0000
commit6ce219ec64088fc4ee550afbb6cd30621fbba27e (patch)
tree6f8338f9507666b9cb953a1619f0bd531c7cb626 /lib/CodeGen/RegAllocGreedy.cpp
parentd891acd184b43db147b2d81bda8748da8b577233 (diff)
Fix miscompilation caused by trivial logic error in the reassignVReg()
interference check. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121519 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocGreedy.cpp')
-rw-r--r--lib/CodeGen/RegAllocGreedy.cpp26
1 files changed, 16 insertions, 10 deletions
diff --git a/lib/CodeGen/RegAllocGreedy.cpp b/lib/CodeGen/RegAllocGreedy.cpp
index 3c166bac4b..ecdc419355 100644
--- a/lib/CodeGen/RegAllocGreedy.cpp
+++ b/lib/CodeGen/RegAllocGreedy.cpp
@@ -81,6 +81,7 @@ public:
static char ID;
private:
+ bool checkUncachedInterference(LiveInterval &, unsigned);
bool reassignVReg(LiveInterval &InterferingVReg, unsigned OldPhysReg);
bool reassignInterferences(LiveInterval &VirtReg, unsigned PhysReg);
};
@@ -146,6 +147,20 @@ float RAGreedy::getPriority(LiveInterval *LI) {
return Priority;
}
+// Check interference without using the cache.
+bool RAGreedy::checkUncachedInterference(LiveInterval &VirtReg,
+ unsigned PhysReg) {
+ LiveIntervalUnion::Query subQ(&VirtReg, &PhysReg2LiveUnion[PhysReg]);
+ if (subQ.checkInterference())
+ return true;
+ for (const unsigned *AliasI = TRI->getAliasSet(PhysReg); *AliasI; ++AliasI) {
+ subQ.init(&VirtReg, &PhysReg2LiveUnion[*AliasI]);
+ if (subQ.checkInterference())
+ return true;
+ }
+ return false;
+}
+
// Attempt to reassign this virtual register to a different physical register.
//
// FIXME: we are not yet caching these "second-level" interferences discovered
@@ -168,18 +183,9 @@ bool RAGreedy::reassignVReg(LiveInterval &InterferingVReg,
if (PhysReg == OldPhysReg || ReservedRegs.test(PhysReg))
continue;
- // Instantiate a "subquery", not to be confused with the Queries array.
- LiveIntervalUnion::Query subQ(&InterferingVReg,
- &PhysReg2LiveUnion[PhysReg]);
- if (subQ.checkInterference())
+ if (checkUncachedInterference(InterferingVReg, PhysReg))
continue;
- for (const unsigned *AliasI = TRI->getAliasSet(PhysReg);
- *AliasI; ++AliasI) {
- subQ.init(&InterferingVReg, &PhysReg2LiveUnion[*AliasI]);
- if (subQ.checkInterference())
- continue;
- }
DEBUG(dbgs() << "reassigning: " << InterferingVReg << " from " <<
TRI->getName(OldPhysReg) << " to " << TRI->getName(PhysReg) << '\n');