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

Issue 816053002: [turbofan] First version of loop peeling. (Closed)

Created:
6 years ago by titzer
Modified:
5 years, 11 months ago
CC:
v8-dev
Base URL:
https://chromium.googlesource.com/v8/v8.git@master
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

[turbofan] First version of loop peeling. BUG= Committed: https://crrev.com/3442a5f9e0189bad75da1dc8a30467c3827a8637 Cr-Commit-Position: refs/heads/master@{#26149}

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Total comments: 17

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Total comments: 21

Patch Set 7 : Address review comments. #

Patch Set 8 : Added ascii art. #

Patch Set 9 : #

Patch Set 10 : #

Total comments: 1

Patch Set 11 : #

Patch Set 12 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1118 lines, -49 lines) Patch
M BUILD.gn View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M src/compiler/control-reducer.cc View 1 2 3 4 5 1 chunk +1 line, -4 lines 0 comments Download
M src/compiler/graph-visualizer.cc View 1 2 3 4 5 2 chunks +2 lines, -3 lines 0 comments Download
M src/compiler/loop-analysis.h View 1 2 3 4 5 6 7 8 3 chunks +18 lines, -0 lines 0 comments Download
M src/compiler/loop-analysis.cc View 1 2 3 4 5 6 7 8 4 chunks +4 lines, -7 lines 0 comments Download
A src/compiler/loop-peeling.h View 1 2 1 chunk +42 lines, -0 lines 0 comments Download
A src/compiler/loop-peeling.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +356 lines, -0 lines 0 comments Download
M src/compiler/node.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/opcodes.h View 1 2 3 4 5 6 7 8 1 chunk +4 lines, -0 lines 0 comments Download
M src/compiler/osr.h View 1 2 3 4 5 6 7 2 chunks +14 lines, -16 lines 0 comments Download
M src/compiler/pipeline.cc View 1 2 3 4 5 6 7 8 3 chunks +24 lines, -0 lines 0 comments Download
M src/compiler/scheduler.cc View 1 2 3 4 5 2 chunks +2 lines, -4 lines 0 comments Download
M src/flag-definitions.h View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M test/unittests/compiler/graph-unittest.h View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
A test/unittests/compiler/loop-peeling-unittest.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +451 lines, -0 lines 0 comments Download
M test/unittests/compiler/node-test-utils.h View 1 2 2 chunks +13 lines, -0 lines 0 comments Download
M test/unittests/compiler/node-test-utils.cc View 1 2 7 chunks +179 lines, -14 lines 0 comments Download
M test/unittests/unittests.gyp View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M tools/gyp/v8.gyp View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 26 (6 generated)
titzer
5 years, 11 months ago (2015-01-15 13:08:59 UTC) #2
Benedikt Meurer
https://codereview.chromium.org/816053002/diff/40001/test/unittests/compiler/graph-unittest.h File test/unittests/compiler/graph-unittest.h (right): https://codereview.chromium.org/816053002/diff/40001/test/unittests/compiler/graph-unittest.h#newcode78 test/unittests/compiler/graph-unittest.h:78: Move these helpers to loop-peeling-unittest.cc. Also they should not ...
5 years, 11 months ago (2015-01-15 13:16:16 UTC) #3
titzer
https://codereview.chromium.org/816053002/diff/40001/test/unittests/compiler/graph-unittest.h File test/unittests/compiler/graph-unittest.h (right): https://codereview.chromium.org/816053002/diff/40001/test/unittests/compiler/graph-unittest.h#newcode78 test/unittests/compiler/graph-unittest.h:78: On 2015/01/15 13:16:16, Benedikt Meurer wrote: > Move these ...
5 years, 11 months ago (2015-01-15 13:36:52 UTC) #4
Benedikt Meurer
https://codereview.chromium.org/816053002/diff/40001/test/unittests/compiler/graph-unittest.h File test/unittests/compiler/graph-unittest.h (right): https://codereview.chromium.org/816053002/diff/40001/test/unittests/compiler/graph-unittest.h#newcode78 test/unittests/compiler/graph-unittest.h:78: Well this kind of goes against the purpose of ...
5 years, 11 months ago (2015-01-15 13:43:10 UTC) #5
titzer
https://codereview.chromium.org/816053002/diff/40001/test/unittests/compiler/graph-unittest.h File test/unittests/compiler/graph-unittest.h (right): https://codereview.chromium.org/816053002/diff/40001/test/unittests/compiler/graph-unittest.h#newcode78 test/unittests/compiler/graph-unittest.h:78: On 2015/01/15 13:43:09, Benedikt Meurer wrote: > Well this ...
5 years, 11 months ago (2015-01-16 16:15:37 UTC) #6
Benedikt Meurer
Thanks. Next bunch of comments. https://codereview.chromium.org/816053002/diff/40001/test/unittests/compiler/graph-unittest.h File test/unittests/compiler/graph-unittest.h (right): https://codereview.chromium.org/816053002/diff/40001/test/unittests/compiler/graph-unittest.h#newcode78 test/unittests/compiler/graph-unittest.h:78: Thanks. Now you can ...
5 years, 11 months ago (2015-01-16 17:55:37 UTC) #7
titzer
Ascii art in the making.... https://codereview.chromium.org/816053002/diff/40001/test/unittests/compiler/graph-unittest.h File test/unittests/compiler/graph-unittest.h (right): https://codereview.chromium.org/816053002/diff/40001/test/unittests/compiler/graph-unittest.h#newcode78 test/unittests/compiler/graph-unittest.h:78: On 2015/01/16 17:55:36, Benedikt ...
5 years, 11 months ago (2015-01-19 09:47:12 UTC) #8
Benedikt Meurer
LGTM with CommonOperatorBuilder::ResizeMergeOrPhi() concern remaining. https://codereview.chromium.org/816053002/diff/100001/src/compiler/common-operator.h File src/compiler/common-operator.h (right): https://codereview.chromium.org/816053002/diff/100001/src/compiler/common-operator.h#newcode206 src/compiler/common-operator.h:206: const Operator* ResizeMergeOrPhi(const Operator* ...
5 years, 11 months ago (2015-01-19 17:47:28 UTC) #9
Benedikt Meurer
Love the ASCII art BTW!
5 years, 11 months ago (2015-01-19 17:47:43 UTC) #10
titzer
On 2015/01/19 17:47:28, Benedikt Meurer wrote: > LGTM with CommonOperatorBuilder::ResizeMergeOrPhi() concern remaining. > > https://codereview.chromium.org/816053002/diff/100001/src/compiler/common-operator.h ...
5 years, 11 months ago (2015-01-20 08:31:23 UTC) #11
Benedikt Meurer
lgtm
5 years, 11 months ago (2015-01-20 08:31:37 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/816053002/180001
5 years, 11 months ago (2015-01-20 08:31:47 UTC) #14
commit-bot: I haz the power
Try jobs failed on following builders: v8_linux_chromium_gn_rel on tryserver.v8 (http://build.chromium.org/p/tryserver.v8/builders/v8_linux_chromium_gn_rel/builds/887) v8_mac_rel on tryserver.v8 (http://build.chromium.org/p/tryserver.v8/builders/v8_mac_rel/builds/2364)
5 years, 11 months ago (2015-01-20 08:36:29 UTC) #16
Benedikt Meurer
https://codereview.chromium.org/816053002/diff/180001/src/compiler/common-operator.h File src/compiler/common-operator.h (right): https://codereview.chromium.org/816053002/diff/180001/src/compiler/common-operator.h#newcode203 src/compiler/common-operator.h:203: const Operator* ResizeMergeOrPhi(const Operator* op, int size); BTW: You ...
5 years, 11 months ago (2015-01-20 08:37:01 UTC) #17
titzer
On 2015/01/20 08:37:01, Benedikt Meurer wrote: > https://codereview.chromium.org/816053002/diff/180001/src/compiler/common-operator.h > File src/compiler/common-operator.h (right): > > https://codereview.chromium.org/816053002/diff/180001/src/compiler/common-operator.h#newcode203 ...
5 years, 11 months ago (2015-01-20 08:56:36 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/816053002/200001
5 years, 11 months ago (2015-01-20 08:57:08 UTC) #20
commit-bot: I haz the power
Try jobs failed on following builders: v8_win64_rel on tryserver.v8 (http://build.chromium.org/p/tryserver.v8/builders/v8_win64_rel/builds/1268)
5 years, 11 months ago (2015-01-20 09:13:10 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/816053002/220001
5 years, 11 months ago (2015-01-20 09:17:18 UTC) #24
commit-bot: I haz the power
Committed patchset #12 (id:220001)
5 years, 11 months ago (2015-01-20 09:45:11 UTC) #25
commit-bot: I haz the power
5 years, 11 months ago (2015-01-20 09:45:29 UTC) #26
Message was sent while issue was closed.
Patchset 12 (id:??) landed as
https://crrev.com/3442a5f9e0189bad75da1dc8a30467c3827a8637
Cr-Commit-Position: refs/heads/master@{#26149}

Powered by Google App Engine
This is Rietveld 408576698