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

Unified Diff: src/IceCfg.h

Issue 1027933002: Subzero: Prune unreachable nodes after constructing the Cfg. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 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/IceCfg.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceCfg.h
diff --git a/src/IceCfg.h b/src/IceCfg.h
index b4c3748455829fb4e44a3325d6dc6f83d0953db2..8f74d07f1d434169c869f58359aa6bba2ccf621b 100644
--- a/src/IceCfg.h
+++ b/src/IceCfg.h
@@ -135,9 +135,9 @@ public:
// Passes over the CFG.
void translate();
// After the CFG is fully constructed, iterate over the nodes and
- // compute the predecessor edges, in the form of
- // CfgNode::InEdges[].
- void computePredecessors();
+ // compute the predecessor and successor edges, in the form of
+ // CfgNode::InEdges[] and CfgNode::OutEdges[].
+ void computeInOutEdges();
void renumberInstructions();
void placePhiLoads();
void placePhiStores();
« no previous file with comments | « no previous file | src/IceCfg.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698