OLD | NEW |
1 //===- subzero/src/IceCfgNode.cpp - Basic block (node) implementation -----===// | 1 //===- subzero/src/IceCfgNode.cpp - Basic block (node) implementation -----===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 // | 9 // |
10 // This file implements the CfgNode class, including the complexities | 10 // This file implements the CfgNode class, including the complexities |
(...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 } | 654 } |
655 // Process instructions | 655 // Process instructions |
656 for (auto I = Insts.begin(), E = Insts.end(); I != E; ++I) { | 656 for (auto I = Insts.begin(), E = Insts.end(); I != E; ++I) { |
657 I->deleteIfDead(); | 657 I->deleteIfDead(); |
658 if (I->isDeleted()) | 658 if (I->isDeleted()) |
659 continue; | 659 continue; |
660 if (FirstInstNum == Inst::NumberSentinel) | 660 if (FirstInstNum == Inst::NumberSentinel) |
661 FirstInstNum = I->getNumber(); | 661 FirstInstNum = I->getNumber(); |
662 assert(I->getNumber() > LastInstNum); | 662 assert(I->getNumber() > LastInstNum); |
663 LastInstNum = I->getNumber(); | 663 LastInstNum = I->getNumber(); |
664 // Create fake live ranges for a Kill instruction, but only if the | |
665 // linked instruction is still alive. | |
666 if (Mode == Liveness_Intervals) { | |
667 if (InstFakeKill *Kill = llvm::dyn_cast<InstFakeKill>(I)) { | |
668 if (!Kill->getLinked()->isDeleted()) { | |
669 for (Variable *Var : Kill->getKilledRegs()) { | |
670 InstNumberT InstNumber = I->getNumber(); | |
671 Var->addLiveRange(InstNumber, InstNumber, 1); | |
672 } | |
673 } | |
674 } | |
675 } | |
676 } | 664 } |
677 if (Mode != Liveness_Intervals) | 665 if (Mode != Liveness_Intervals) |
678 return; | 666 return; |
679 TimerMarker T1(TimerStack::TT_liveRangeCtor, Func); | 667 TimerMarker T1(TimerStack::TT_liveRangeCtor, Func); |
680 | 668 |
681 SizeT NumVars = Liveness->getNumVarsInNode(this); | 669 SizeT NumVars = Liveness->getNumVarsInNode(this); |
682 LivenessBV &LiveIn = Liveness->getLiveIn(this); | 670 LivenessBV &LiveIn = Liveness->getLiveIn(this); |
683 LivenessBV &LiveOut = Liveness->getLiveOut(this); | 671 LivenessBV &LiveOut = Liveness->getLiveOut(this); |
684 LiveBeginEndMap &MapBegin = *Liveness->getLiveBegin(this); | 672 LiveBeginEndMap &MapBegin = *Liveness->getLiveBegin(this); |
685 LiveBeginEndMap &MapEnd = *Liveness->getLiveEnd(this); | 673 LiveBeginEndMap &MapEnd = *Liveness->getLiveEnd(this); |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1011 if (!First) | 999 if (!First) |
1012 Str << ", "; | 1000 Str << ", "; |
1013 First = false; | 1001 First = false; |
1014 Str << "%" << I->getName(); | 1002 Str << "%" << I->getName(); |
1015 } | 1003 } |
1016 Str << "\n"; | 1004 Str << "\n"; |
1017 } | 1005 } |
1018 } | 1006 } |
1019 | 1007 |
1020 } // end of namespace Ice | 1008 } // end of namespace Ice |
OLD | NEW |