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

Unified Diff: src/compiler/pipeline.cc

Issue 754803002: [turbofan] Dump graph in RPO order as text. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/graph-visualizer.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/pipeline.cc
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
index d9a9ec49d24bc4bd99a1c20c548ae86509e7dcfa..4a7fdcc24b9fc5dc3fa0422ec07cce0f30fe465a 100644
--- a/src/compiler/pipeline.cc
+++ b/src/compiler/pipeline.cc
@@ -628,8 +628,11 @@ struct PrintGraphPhase {
fclose(json_file);
OFStream os(stdout);
+ os << "-- Graph after " << phase << " -- " << std::endl;
+ os << AsRPO(*graph);
+
os << "-- " << phase << " graph printed to file " << filename.start()
- << "\n";
+ << std::endl;
}
};
« no previous file with comments | « src/compiler/graph-visualizer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698