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

Issue 10949020: Reapply "Initial implementation of sparse conditional constant propagation." (Closed)

Created:
8 years, 3 months ago by Kevin Millikin (Google)
Modified:
8 years, 3 months ago
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Reapply "Initial implementation of sparse conditional constant propagation." With a fix for compilation on Mac. GrowableArray is DISALLOW_COPY_AND_ASSIGN, so we can't create a temporary one to be ignored and have to pass one in to be ignored. R=fschneider@google.com,zerny@google.com BUG= Committed: https://code.google.com/p/dart/source/detail?r=12561

Patch Set 1 #

Patch Set 2 : Rebase to HEAD. #

Total comments: 3
Unified diffs Side-by-side diffs Delta from patch set Stats (+1116 lines, -254 lines) Patch
M runtime/lib/integers.cc View 14 chunks +14 lines, -181 lines 0 comments Download
M runtime/vm/compiler.cc View 2 chunks +6 lines, -7 lines 3 comments Download
M runtime/vm/flow_graph.h View 1 chunk +3 lines, -4 lines 0 comments Download
M runtime/vm/flow_graph.cc View 1 12 chunks +30 lines, -35 lines 0 comments Download
M runtime/vm/flow_graph_optimizer.h View 1 chunk +60 lines, -0 lines 0 comments Download
M runtime/vm/flow_graph_optimizer.cc View 1 2 chunks +697 lines, -0 lines 0 comments Download
M runtime/vm/intermediate_language.h View 1 13 chunks +42 lines, -19 lines 0 comments Download
M runtime/vm/intermediate_language.cc View 1 6 chunks +87 lines, -8 lines 0 comments Download
M runtime/vm/object.h View 2 chunks +10 lines, -0 lines 0 comments Download
M runtime/vm/object.cc View 2 chunks +167 lines, -0 lines 0 comments Download

Messages

Total messages: 3 (0 generated)
Kevin Millikin (Google)
8 years, 3 months ago (2012-09-19 13:52:33 UTC) #1
Florian Schneider
lgtm
8 years, 3 months ago (2012-09-19 14:07:49 UTC) #2
Ivan Posva
8 years, 3 months ago (2012-09-19 22:20:18 UTC) #3
https://codereview.chromium.org/10949020/diff/3001/runtime/vm/compiler.cc
File runtime/vm/compiler.cc (right):

https://codereview.chromium.org/10949020/diff/3001/runtime/vm/compiler.cc#new...
runtime/vm/compiler.cc:38: DEFINE_FLAG(bool, cp, true,
This is a perfect example of a bad flag name. I am changing this to be something
that cannot be mistaken for copy.

https://codereview.chromium.org/10949020/diff/3001/runtime/vm/compiler.cc#new...
runtime/vm/compiler.cc:40: DEFINE_FLAG(bool, cse, true, "Do common subexpression
elimination.");
ditto

https://codereview.chromium.org/10949020/diff/3001/runtime/vm/compiler.cc#new...
runtime/vm/compiler.cc:41: DEFINE_FLAG(bool, licm, true, "Do loop invariant code
motion.");
ditto

Powered by Google App Engine
This is Rietveld 408576698