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

Unified Diff: runtime/vm/flow_graph_optimizer.h

Issue 16430002: Ensure that all phis inserted by load optimizer have consistent representation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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_optimizer.h
diff --git a/runtime/vm/flow_graph_optimizer.h b/runtime/vm/flow_graph_optimizer.h
index dfa24a679b5ea127aeee48a35dd407d1a273d5e1..4b8574a66727172a5f887fc86ff4706b95e6f101 100644
--- a/runtime/vm/flow_graph_optimizer.h
+++ b/runtime/vm/flow_graph_optimizer.h
@@ -42,6 +42,8 @@ class FlowGraphOptimizer : public FlowGraphVisitor {
void SelectRepresentations();
+ void UnboxPhis();
+
void InferSmiRanges();
void AnalyzeTryCatch();
@@ -133,6 +135,8 @@ class FlowGraphOptimizer : public FlowGraphVisitor {
void InsertConversionsFor(Definition* def);
+ void ConvertUse(Value* use, Representation from);
+
void InsertConversion(Representation from,
Representation to,
Value* use,

Powered by Google App Engine
This is Rietveld 408576698