Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(442)

Side by Side Diff: src/IceCfgNode.cpp

Issue 720343003: Subzero: Simplify the FakeKill instruction. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Hoist KillsMask out of the loop Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/IceInst.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | src/IceInst.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698