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

Unified Diff: runtime/vm/flow_graph_inliner.cc

Issue 12326012: Change the SSA construction pass to also construct def-use chains. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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
Index: runtime/vm/flow_graph_inliner.cc
diff --git a/runtime/vm/flow_graph_inliner.cc b/runtime/vm/flow_graph_inliner.cc
index e98927b8e6bf50a7806f3bcb224304dcd8fb7478..3fc75b33ae66246db3fbb7660fdc9167fba9eabb 100644
--- a/runtime/vm/flow_graph_inliner.cc
+++ b/runtime/vm/flow_graph_inliner.cc
@@ -491,7 +491,7 @@ class CallSiteInliner : public ValueObject {
// Compute SSA on the callee graph, catching bailouts.
callee_graph->ComputeSSA(caller_graph_->max_virtual_register_number(),
&param_stubs);
- callee_graph->ComputeUseLists();
+ DEBUG_ASSERT(callee_graph->VerifyUseLists());
}
{

Powered by Google App Engine
This is Rietveld 408576698