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

Unified Diff: src/IceCfg.cpp

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 | « src/IceCfg.h ('k') | src/IceCfgNode.h » ('j') | no next file with comments »
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 e6a9cabe9007615ec1a8e2ac0a9c10c55691f1c0..e0f48ab00d0e7e1c8fbbc91a517f071a4db71078 100644
--- a/src/IceCfg.cpp
+++ b/src/IceCfg.cpp
@@ -108,9 +108,41 @@ void Cfg::translate() {
getContext()->dumpTimers();
}
-void Cfg::computePredecessors() {
+void Cfg::computeInOutEdges() {
+ // Compute the out-edges.
for (CfgNode *Node : Nodes)
- Node->computePredecessors();
+ Node->computeSuccessors();
+
+ // Prune any unreachable nodes before computing in-edges.
+ SizeT NumNodes = getNumNodes();
+ llvm::BitVector Reachable(NumNodes);
+ llvm::BitVector Pending(NumNodes);
+ Pending.set(getEntryNode()->getIndex());
+ while (true) {
+ int Index = Pending.find_first();
+ if (Index == -1)
+ break;
+ Pending.reset(Index);
+ Reachable.set(Index);
+ CfgNode *Node = Nodes[Index];
+ assert(Node->getIndex() == (SizeT)Index);
+ for (CfgNode *Succ : Node->getOutEdges()) {
+ SizeT SuccIndex = Succ->getIndex();
+ if (!Reachable.test(SuccIndex))
+ Pending.set(SuccIndex);
+ }
+ }
+ SizeT Dest = 0;
+ for (SizeT Source = 0; Source < NumNodes; ++Source) {
+ if (Reachable.test(Source)) {
+ Nodes[Dest] = Nodes[Source];
+ Nodes[Dest]->resetIndex(Dest);
+ // Compute the in-edges.
+ Nodes[Dest]->computePredecessors();
+ ++Dest;
+ }
+ }
+ Nodes.resize(Dest);
}
void Cfg::renumberInstructions() {
« no previous file with comments | « src/IceCfg.h ('k') | src/IceCfgNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698