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

Unified Diff: src/IceCfg.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: 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 | « no previous file | src/IceCfgNode.cpp » ('j') | src/IceCfgNode.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceCfg.cpp
diff --git a/src/IceCfg.cpp b/src/IceCfg.cpp
index c3d91e65c3f3d24a283a2cfefbe4fcab6469693b..4f7a5a527d85c4b5e7ac2479a6e5720d1df394e0 100644
--- a/src/IceCfg.cpp
+++ b/src/IceCfg.cpp
@@ -271,6 +271,14 @@ void Cfg::computeInOutEdges() {
Node->validatePhis();
}
+/// Renumber the non-deleted instructions in the Cfg. 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.
+///
+/// Also, if the configuration specifies to do so, remove/unlink all deleted
+/// instructions from the Cfg, to speed up later passes over the instructions.
John 2016/03/14 13:27:15 Maybe document the .h file instead?
Jim Stichnoth 2016/03/14 13:51:15 Done.
void Cfg::renumberInstructions() {
TimerMarker T(TimerStack::TT_renumberInstructions, this);
NextInstNumber = Inst::NumberInitial;
« no previous file with comments | « no previous file | src/IceCfgNode.cpp » ('j') | src/IceCfgNode.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698