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

Unified Diff: src/IceCfgNode.cpp

Issue 1790063003: Subzero: Control whether deleted instructions are retained. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Move comment into .h file Created 4 years, 9 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceCfg.h ('k') | src/IceClFlags.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceCfgNode.cpp
diff --git a/src/IceCfgNode.cpp b/src/IceCfgNode.cpp
index 0729585bf14f8bcad1fe5b84c8ac04f138f6c700..212f742c53959789acaf5a036fd548303ea96eff 100644
--- a/src/IceCfgNode.cpp
+++ b/src/IceCfgNode.cpp
@@ -52,16 +52,25 @@ void CfgNode::appendInst(Inst *Instr) {
}
}
-// Renumbers the non-deleted instructions in the node. This needs to be done in
-// preparation for live range analysis. The instruction numbers in a block must
-// be monotonically increasing. The range of instruction numbers in a block,
-// from lowest to highest, must not overlap with the range of any other block.
+namespace {
+template <typename List> void removeDeletedAndRenumber(List *L, Cfg *Func) {
+ const bool DoDelete =
+ BuildDefs::minimal() || !GlobalContext::getFlags().getKeepDeletedInsts();
+ auto I = L->begin(), E = L->end(), Next = I;
+ for (++Next; I != E; I = Next++) {
+ if (DoDelete && I->isDeleted()) {
+ L->erase(I);
+ } else {
+ I->renumber(Func);
+ }
+ }
+}
+} // end of anonymous namespace
+
void CfgNode::renumberInstructions() {
InstNumberT FirstNumber = Func->getNextInstNumber();
- for (Inst &I : Phis)
- I.renumber(Func);
- for (Inst &I : Insts)
- I.renumber(Func);
+ removeDeletedAndRenumber(&Phis, Func);
+ removeDeletedAndRenumber(&Insts, Func);
InstCountEstimate = Func->getNextInstNumber() - FirstNumber;
}
« no previous file with comments | « src/IceCfg.h ('k') | src/IceClFlags.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698