diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-11-29 09:49:23 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-11-29 09:49:23 +0000 |
commit | f85c063ec0694f26f9cbf6ad482da01773b25892 (patch) | |
tree | 24b1741a8bb4f70a9312e2c0043c92f7ddf9591c /llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp | |
parent | 8dfcd5975edf09eb74cc7828e2223c498e82967c (diff) | |
download | bcm5719-llvm-f85c063ec0694f26f9cbf6ad482da01773b25892.tar.gz bcm5719-llvm-f85c063ec0694f26f9cbf6ad482da01773b25892.zip |
Replace the odd kill# hack with something less fragile.
llvm-svn: 44434
Diffstat (limited to 'llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp b/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp index 4b96cac84d9..3d2669becd4 100644 --- a/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp +++ b/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp @@ -490,6 +490,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec TheCopy, bool &Again) { if (CopiedValNos.insert(DstValNo)) { VNInfo *ValNo = RealDstInt.getNextValue(DstValNo->def, DstValNo->reg, li_->getVNInfoAllocator()); + ValNo->hasPHIKill = DstValNo->hasPHIKill; RealDstInt.addKills(ValNo, DstValNo->kills); RealDstInt.MergeValueInAsValue(*ResDstInt, DstValNo, ValNo); } @@ -734,6 +735,7 @@ bool SimpleRegisterCoalescing::SimpleJoin(LiveInterval &LHS, LiveInterval &RHS) // Okay, the final step is to loop over the RHS live intervals, adding them to // the LHS. + LHSValNo->hasPHIKill |= VNI->hasPHIKill; LHS.addKills(LHSValNo, VNI->kills); LHS.MergeRangesInAsValue(RHS, LHSValNo); LHS.weight += RHS.weight; @@ -969,6 +971,7 @@ bool SimpleRegisterCoalescing::JoinIntervals(LiveInterval &LHS, VNInfo *VNI = I->first; unsigned LHSValID = LHSValNoAssignments[VNI->id]; LiveInterval::removeKill(NewVNInfo[LHSValID], VNI->def); + NewVNInfo[LHSValID]->hasPHIKill |= VNI->hasPHIKill; RHS.addKills(NewVNInfo[LHSValID], VNI->kills); } @@ -978,6 +981,7 @@ bool SimpleRegisterCoalescing::JoinIntervals(LiveInterval &LHS, VNInfo *VNI = I->first; unsigned RHSValID = RHSValNoAssignments[VNI->id]; LiveInterval::removeKill(NewVNInfo[RHSValID], VNI->def); + NewVNInfo[RHSValID]->hasPHIKill |= VNI->hasPHIKill; LHS.addKills(NewVNInfo[RHSValID], VNI->kills); } |