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

Issue 2198043002: Add a mode to completely deserialize scope chains (Closed)

Created:
4 years, 4 months ago by jochen (gone - plz use gerrit)
Modified:
4 years, 4 months ago
CC:
v8-reviews_googlegroups.com, ahaas, titzer
Base URL:
https://chromium.googlesource.com/v8/v8.git@master
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

Add a mode to completely deserialize scope chains This will allow for the background parser to parse inner functions BUG=v8:5215 R=marja@chromium.org,verwaest@chromium.org Committed: https://crrev.com/7036d96b57340545ed1cd58ed7f4935be7692c9b Cr-Commit-Position: refs/heads/master@{#38291}

Patch Set 1 #

Total comments: 4

Patch Set 2 : updates #

Patch Set 3 : proof #

Patch Set 4 : updates #

Patch Set 5 : updatres #

Patch Set 6 : updates #

Patch Set 7 : updates #

Patch Set 8 : updates #

Patch Set 9 : gcmole #

Total comments: 16

Patch Set 10 : updates #

Patch Set 11 : updates #

Total comments: 3

Patch Set 12 : updates #

Total comments: 1

Patch Set 13 : updates #

Unified diffs Side-by-side diffs Delta from patch set Stats (+148 lines, -36 lines) Patch
M src/DEPS View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M src/ast/scopes.h View 1 2 3 4 5 6 7 2 chunks +7 lines, -1 line 0 comments Download
M src/ast/scopes.cc View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +79 lines, -1 line 0 comments Download
M src/background-parsing-task.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +3 lines, -0 lines 0 comments Download
M src/compiler-dispatcher/compiler-dispatcher-job.h View 1 2 3 4 5 2 chunks +3 lines, -0 lines 0 comments Download
M src/compiler-dispatcher/compiler-dispatcher-job.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +3 lines, -0 lines 0 comments Download
M src/parsing/parser.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +3 lines, -0 lines 0 comments Download
M src/parsing/parser.cc View 1 2 3 4 5 6 7 8 9 10 11 12 6 chunks +36 lines, -26 lines 0 comments Download
M test/cctest/test-parsing.cc View 2 chunks +6 lines, -4 lines 0 comments Download
M test/unittests/compiler-dispatcher/compiler-dispatcher-job-unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +6 lines, -4 lines 0 comments Download
M tools/gcmole/run-gcmole.isolate View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 58 (39 generated)
jochen (gone - plz use gerrit)
wip... doesn't even get beyond creating the snapshot yet :-/ https://codereview.chromium.org/2198043002/diff/1/src/ast/scopes.cc File src/ast/scopes.cc (right): https://codereview.chromium.org/2198043002/diff/1/src/ast/scopes.cc#newcode289 ...
4 years, 4 months ago (2016-08-01 14:16:00 UTC) #1
marja
https://codereview.chromium.org/2198043002/diff/1/src/ast/scopes.cc File src/ast/scopes.cc (right): https://codereview.chromium.org/2198043002/diff/1/src/ast/scopes.cc#newcode289 src/ast/scopes.cc:289: std::set<const AstRawString*> parameters_seen; On 2016/08/01 14:16:00, jochen wrote: > ...
4 years, 4 months ago (2016-08-02 08:29:31 UTC) #2
jochen (gone - plz use gerrit)
in the latest patchset, I just make the regular parser deserialize fully and it passes ...
4 years, 4 months ago (2016-08-02 08:30:54 UTC) #3
jochen (gone - plz use gerrit)
hooked it up to the compiler dispatcher job... ptal
4 years, 4 months ago (2016-08-02 13:13:29 UTC) #10
jochen (gone - plz use gerrit)
now with a test!
4 years, 4 months ago (2016-08-02 15:04:04 UTC) #15
marja
Generally LG; mainly the test is unclear to me... The code LG and I assume ...
4 years, 4 months ago (2016-08-03 08:07:48 UTC) #26
jochen (gone - plz use gerrit)
https://codereview.chromium.org/2198043002/diff/160001/src/ast/scopes.cc File src/ast/scopes.cc (right): https://codereview.chromium.org/2198043002/diff/160001/src/ast/scopes.cc#newcode259 src/ast/scopes.cc:259: if (scope_info_.is_null()) return; On 2016/08/03 at 08:07:48, marja wrote: ...
4 years, 4 months ago (2016-08-03 09:14:49 UTC) #29
marja
lgtm assuming you add what I saw on your screen :)
4 years, 4 months ago (2016-08-03 09:40:18 UTC) #36
jochen (gone - plz use gerrit)
I did
4 years, 4 months ago (2016-08-03 09:41:25 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2198043002/200001
4 years, 4 months ago (2016-08-03 09:41:32 UTC) #40
commit-bot: I haz the power
Try jobs failed on following builders: v8_presubmit on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_presubmit/builds/20863)
4 years, 4 months ago (2016-08-03 09:45:04 UTC) #42
Toon Verwaest
https://codereview.chromium.org/2198043002/diff/200001/src/ast/scopes.cc File src/ast/scopes.cc (right): https://codereview.chromium.org/2198043002/diff/200001/src/ast/scopes.cc#newcode268 src/ast/scopes.cc:268: Handle<String> name_handle = You can just write Handle<String> name_handle(scope_info..., ...
4 years, 4 months ago (2016-08-03 11:54:33 UTC) #43
Toon Verwaest
lgtm https://codereview.chromium.org/2198043002/diff/220001/src/parsing/parser.cc File src/parsing/parser.cc (right): https://codereview.chromium.org/2198043002/diff/220001/src/parsing/parser.cc#newcode5480 src/parsing/parser.cc:5480: if (!original_scope_) { Add a comment why we ...
4 years, 4 months ago (2016-08-03 12:31:46 UTC) #46
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2198043002/240001
4 years, 4 months ago (2016-08-03 12:57:12 UTC) #51
commit-bot: I haz the power
Committed patchset #13 (id:240001)
4 years, 4 months ago (2016-08-03 13:30:27 UTC) #52
commit-bot: I haz the power
Patchset 13 (id:??) landed as https://crrev.com/7036d96b57340545ed1cd58ed7f4935be7692c9b Cr-Commit-Position: refs/heads/master@{#38291}
4 years, 4 months ago (2016-08-03 13:31:10 UTC) #54
Michael Achenbach
Any chance this started here? https://build.chromium.org/p/client.v8/builders/V8%20Linux%20-%20gc%20stress/builds/5050
4 years, 4 months ago (2016-08-03 17:47:44 UTC) #56
jochen (gone - plz use gerrit)
On 2016/08/03 at 17:47:44, machenbach wrote: > Any chance this started here? > https://build.chromium.org/p/client.v8/builders/V8%20Linux%20-%20gc%20stress/builds/5050 If ...
4 years, 4 months ago (2016-08-03 17:51:29 UTC) #57
jochen (gone - plz use gerrit)
4 years, 4 months ago (2016-08-03 18:25:05 UTC) #58
Message was sent while issue was closed.
On 2016/08/03 at 17:51:29, jochen wrote:
> On 2016/08/03 at 17:47:44, machenbach wrote:
> > Any chance this started here?
> >
https://build.chromium.org/p/client.v8/builders/V8%20Linux%20-%20gc%20stress/...
> 
> If only our bots would set v8_enable_backtrace this would be easier to
answer... Will look later

actually, I think the previous rev is more likely, as it does stuff in TF with
smis

Powered by Google App Engine
This is Rietveld 408576698