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

Issue 9452022: Speed up removing phi nodes. (Closed)

Created:
8 years, 10 months ago by Yang
Modified:
8 years, 10 months ago
Reviewers:
fschneider
CC:
v8-dev
Visibility:
Public.

Description

Speed up removing phi nodes. BUG= TEST= Committed: https://code.google.com/p/v8/source/detail?r=10817

Patch Set 1 #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+15 lines, -17 lines) Patch
M src/hydrogen.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/hydrogen-instructions.h View 1 chunk +3 lines, -1 line 0 comments Download
M src/hydrogen-instructions.cc View 2 chunks +11 lines, -15 lines 1 comment Download

Messages

Total messages: 2 (0 generated)
Yang
It turned out that my original CL that replaces ClearOperands in GVN had a bug, ...
8 years, 10 months ago (2012-02-23 17:23:53 UTC) #1
fschneider
8 years, 10 months ago (2012-02-24 08:42:03 UTC) #2
lgtm

http://codereview.chromium.org/9452022/diff/1/src/hydrogen-instructions.cc
File src/hydrogen-instructions.cc (right):

http://codereview.chromium.org/9452022/diff/1/src/hydrogen-instructions.cc#ne...
src/hydrogen-instructions.cc:412: if (first != NULL && first->index() == i &&
first->value() == this) {
Maybe reorder the condition to:

if (first != NULL && first->value() == this && first->index() == i)

Powered by Google App Engine
This is Rietveld 408576698