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

Issue 1994643002: Simpler implementation of expression classifiers (Closed)

Created:
4 years, 7 months ago by nickie
Modified:
4 years, 6 months ago
Reviewers:
caitp (gmail)
CC:
v8-reviews_googlegroups.com
Base URL:
https://chromium.googlesource.com/v8/v8.git@nickie-1708193003-class-rev
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

Simpler implementation of expression classifiers Just appending arrays, instead of cherry-picking elements. This seems to be not only worse in memory, but also more time consuming in CodeLoad. This is a fork of https://codereview.chromium.org/1708193003/ I suggest NOT TO LAND this, in its present form.

Patch Set 1 #

Total comments: 2

Patch Set 2 : Bug fix #

Patch Set 3 : Bug fix #

Patch Set 4 : Rebased #

Patch Set 5 : Bug fix #

Unified diffs Side-by-side diffs Delta from patch set Stats (+32 lines, -67 lines) Patch
M src/parsing/expression-classifier.h View 1 2 3 4 2 chunks +32 lines, -67 lines 0 comments Download

Depends on Patchset:

Messages

Total messages: 26 (12 generated)
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1994643002/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1994643002/1
4 years, 7 months ago (2016-05-18 14:49:09 UTC) #2
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux64_asan_rel_ng on tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux64_asan_rel_ng/builds/1799) v8_linux64_asan_rel_ng_triggered on ...
4 years, 7 months ago (2016-05-18 15:09:20 UTC) #4
caitp (gmail)
https://codereview.chromium.org/1994643002/diff/1/src/parsing/expression-classifier.h File src/parsing/expression-classifier.h (right): https://codereview.chromium.org/1994643002/diff/1/src/parsing/expression-classifier.h#newcode381 src/parsing/expression-classifier.h:381: reported_errors_->Rewind(reported_errors_end_); All this does is set the ring buffer's ...
4 years, 7 months ago (2016-05-18 15:23:21 UTC) #6
nickie
On 2016/05/18 15:23:21, caitp wrote: > https://codereview.chromium.org/1994643002/diff/1/src/parsing/expression-classifier.h > File src/parsing/expression-classifier.h (right): > > https://codereview.chromium.org/1994643002/diff/1/src/parsing/expression-classifier.h#newcode381 > ...
4 years, 7 months ago (2016-05-18 15:43:00 UTC) #7
nickie
https://codereview.chromium.org/1994643002/diff/1/src/parsing/expression-classifier.h File src/parsing/expression-classifier.h (right): https://codereview.chromium.org/1994643002/diff/1/src/parsing/expression-classifier.h#newcode380 src/parsing/expression-classifier.h:380: if (errors & ~invalid_productions_) { In this if-then-else, the ...
4 years, 7 months ago (2016-05-18 17:32:41 UTC) #8
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1994643002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1994643002/20001
4 years, 7 months ago (2016-05-18 17:45:20 UTC) #10
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux_dbg_ng on tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux_dbg_ng/builds/5930) v8_linux_dbg_ng_triggered on ...
4 years, 7 months ago (2016-05-18 18:34:04 UTC) #12
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1994643002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1994643002/40001
4 years, 6 months ago (2016-05-31 15:03:17 UTC) #14
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_android_arm_compile_rel on tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_android_arm_compile_rel/builds/18401) v8_linux_arm64_rel_ng on ...
4 years, 6 months ago (2016-05-31 15:04:48 UTC) #16
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1994643002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1994643002/60001
4 years, 6 months ago (2016-05-31 15:26:37 UTC) #18
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux_dbg_ng on tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux_dbg_ng/builds/6542) v8_linux_dbg_ng_triggered on ...
4 years, 6 months ago (2016-05-31 16:08:39 UTC) #20
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1994643002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1994643002/80001
4 years, 6 months ago (2016-05-31 16:55:01 UTC) #22
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 6 months ago (2016-05-31 17:36:48 UTC) #24
nickie
4 years, 6 months ago (2016-06-10 16:39:48 UTC) #25
On 2016/05/31 17:36:48, commit-bot: I haz the power wrote:
> Dry run: This issue passed the CQ dry run.

This is abandoned, in favour of https://codereview.chromium.org/1708193003/

Powered by Google App Engine
This is Rietveld 408576698