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

Unified Diff: runtime/vm/compiler.cc

Issue 28633003: Fix bugs in load elimination and type propagation. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 2 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 | runtime/vm/flow_graph_optimizer.cc » ('j') | runtime/vm/flow_graph_optimizer.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/compiler.cc
===================================================================
--- runtime/vm/compiler.cc (revision 28924)
+++ runtime/vm/compiler.cc (working copy)
@@ -44,7 +44,6 @@
"Do common subexpression elimination.");
DEFINE_FLAG(bool, loop_invariant_code_motion, true,
"Do loop invariant code motion.");
-DEFINE_FLAG(bool, propagate_types, true, "Do static type propagation.");
DEFINE_FLAG(bool, allocation_sinking, true,
"Attempt to sink temporary allocations to side exits");
DEFINE_FLAG(int, deoptimization_counter_threshold, 16,
@@ -349,11 +348,7 @@
TimerScope timer(FLAG_compiler_stats,
&CompilerStats::graphinliner_timer);
// Propagate types to create more inlining opportunities.
- if (FLAG_propagate_types) {
- FlowGraphTypePropagator propagator(flow_graph);
- propagator.Propagate();
- DEBUG_ASSERT(flow_graph->VerifyUseLists());
- }
+ FlowGraphTypePropagator::Propagate(flow_graph);
// Use propagated class-ids to create more inlining opportunities.
optimizer.ApplyClassIds();
@@ -366,11 +361,7 @@
}
// Propagate types and eliminate more type tests.
- if (FLAG_propagate_types) {
- FlowGraphTypePropagator propagator(flow_graph);
- propagator.Propagate();
- DEBUG_ASSERT(flow_graph->VerifyUseLists());
- }
+ FlowGraphTypePropagator::Propagate(flow_graph);
// Use propagated class-ids to optimize further.
optimizer.ApplyClassIds();
@@ -399,17 +390,13 @@
}
// Propagate types and eliminate even more type tests.
- if (FLAG_propagate_types) {
- // Recompute types after constant propagation to infer more precise
- // types for uses that were previously reached by now eliminated phis.
- FlowGraphTypePropagator propagator(flow_graph);
- propagator.Propagate();
- DEBUG_ASSERT(flow_graph->VerifyUseLists());
- }
+ // Recompute types after constant propagation to infer more precise
+ // types for uses that were previously reached by now eliminated phis.
+ FlowGraphTypePropagator::Propagate(flow_graph);
// Unbox doubles. Performed after constant propagation to minimize
// interference from phis merging double values and tagged
- // values comming from dead paths.
+ // values coming from dead paths.
optimizer.SelectRepresentations();
DEBUG_ASSERT(flow_graph->VerifyUseLists());
@@ -438,13 +425,10 @@
flow_graph->RemoveRedefinitions();
if (FLAG_range_analysis) {
- if (FLAG_propagate_types) {
- // Propagate types after store-load-forwarding. Some phis may have
- // become smi phis that can be processed by range analysis.
- FlowGraphTypePropagator propagator(flow_graph);
- propagator.Propagate();
- DEBUG_ASSERT(flow_graph->VerifyUseLists());
- }
+ // Propagate types after store-load-forwarding. Some phis may have
+ // become smi phis that can be processed by range analysis.
+ FlowGraphTypePropagator::Propagate(flow_graph);
+
// We have to perform range analysis after LICM because it
// optimistically moves CheckSmi through phis into loop preheaders
// making some phis smi.
@@ -459,13 +443,9 @@
DEBUG_ASSERT(flow_graph->VerifyUseLists());
}
- if (FLAG_propagate_types) {
- // Recompute types after code movement was done to ensure correct
- // reaching types for hoisted values.
- FlowGraphTypePropagator propagator(flow_graph);
- propagator.Propagate();
- DEBUG_ASSERT(flow_graph->VerifyUseLists());
- }
+ // Recompute types after code movement was done to ensure correct
+ // reaching types for hoisted values.
+ FlowGraphTypePropagator::Propagate(flow_graph);
// Optimize try-blocks.
TryCatchAnalyzer::Optimize(flow_graph);
« no previous file with comments | « no previous file | runtime/vm/flow_graph_optimizer.cc » ('j') | runtime/vm/flow_graph_optimizer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698