aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDan Gohman <sunfish@mozilla.com>2014-03-15 15:20:54 -0700
committerDan Gohman <sunfish@mozilla.com>2014-03-15 16:28:55 -0700
commit8bcbabf86eb3d09086221aca4286a65c09f597bd (patch)
tree9e99e441674e5363dd7d5370e35530de2f43975d /lib
parent4966d3e8f33d27b41df3ab7802005afdfbeac3ef (diff)
Handle conflicting lifetime markers conservatively.
Avoid infinite looping in AllocaManager::computeInterBlockLiveness, without using new temporary variables. This also makes it clear that the algorithm is conservative in the face of conflicting liveness intrinsics.
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/JSBackend/AllocaManager.cpp24
1 files changed, 8 insertions, 16 deletions
diff --git a/lib/Target/JSBackend/AllocaManager.cpp b/lib/Target/JSBackend/AllocaManager.cpp
index b49e6c4de1..a77ddc7324 100644
--- a/lib/Target/JSBackend/AllocaManager.cpp
+++ b/lib/Target/JSBackend/AllocaManager.cpp
@@ -249,15 +249,11 @@ void AllocaManager::computeInterBlockLiveness() {
// If it contains new live blocks, prepare to propagate them.
if (Temp.test(BLI.LiveIn)) {
BLI.LiveIn |= Temp;
- BitVector LiveOut = BLI.LiveOut;
+ Temp.reset(BLI.End);
BLI.LiveOut |= Temp;
- BLI.LiveOut.reset(BLI.End);
- // If we actually added to live-out, re-process them
- if (BLI.LiveOut.test(LiveOut)) {
- for (succ_const_iterator SI = succ_begin(BB), SE = succ_end(BB);
- SI != SE; ++SI) {
- InterBlockWorklist.insert(*SI);
- }
+ for (succ_const_iterator SI = succ_begin(BB), SE = succ_end(BB);
+ SI != SE; ++SI) {
+ InterBlockWorklist.insert(*SI);
}
}
Temp.reset();
@@ -272,15 +268,11 @@ void AllocaManager::computeInterBlockLiveness() {
if (Temp.test(BLI.LiveOut)) {
// TODO: As above, what are the semantics of a standalone lifetime end?
BLI.LiveOut |= Temp;
- BitVector LiveIn = BLI.LiveIn;
+ Temp.reset(BLI.Start);
BLI.LiveIn |= Temp;
- BLI.LiveIn.reset(BLI.Start);
- // If we actually added to live-in, re-process them
- if (BLI.LiveIn.test(LiveIn)) {
- for (const_pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
- PI != PE; ++PI) {
- InterBlockWorklist.insert(*PI);
- }
+ for (const_pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
+ PI != PE; ++PI) {
+ InterBlockWorklist.insert(*PI);
}
}
Temp.reset();