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

Issue 2124813002: [debugger] omit exception events for rethrown exceptions in async. (Closed)

Created:
4 years, 5 months ago by Yang
Modified:
4 years, 5 months ago
CC:
oth, rmcilroy, v8-reviews_googlegroups.com
Base URL:
https://chromium.googlesource.com/v8/v8.git@master
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

[debugger] omit exception events for rethrown exceptions in async. R=bmeurer@chromium.org, littledan@chromium.org BUG=v8:5167 Committed: https://crrev.com/dfcc5d4ee88a737c7e151083ef1ba18a31f99687 Cr-Commit-Position: refs/heads/master@{#37623}

Patch Set 1 #

Total comments: 3

Patch Set 2 : ports and flag fixes #

Patch Set 3 : typo fix #

Total comments: 2

Patch Set 4 : addressed comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+135 lines, -23 lines) Patch
M src/ast/ast.h View 1 2 3 3 chunks +11 lines, -5 lines 0 comments Download
M src/full-codegen/arm/full-codegen-arm.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M src/full-codegen/arm64/full-codegen-arm64.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M src/full-codegen/ia32/full-codegen-ia32.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M src/full-codegen/mips/full-codegen-mips.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M src/full-codegen/mips64/full-codegen-mips64.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M src/full-codegen/ppc/full-codegen-ppc.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M src/full-codegen/s390/full-codegen-s390.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M src/full-codegen/x64/full-codegen-x64.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M src/full-codegen/x87/full-codegen-x87.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M src/interpreter/bytecode-generator.cc View 1 2 3 1 chunk +6 lines, -1 line 0 comments Download
M src/parsing/parser.cc View 1 2 3 3 chunks +7 lines, -4 lines 0 comments Download
M src/parsing/parser-base.h View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M src/parsing/preparser.h View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
A test/mjsunit/harmony/async-debug-caught-exception.js View 1 1 chunk +89 lines, -0 lines 0 comments Download

Messages

Total messages: 33 (14 generated)
Yang
4 years, 5 months ago (2016-07-06 10:48:15 UTC) #1
Dan Ehrenberg
Looks like a good approach to part of it; I guess all of those are ...
4 years, 5 months ago (2016-07-07 00:25:41 UTC) #2
Yang
I'll port this today. https://codereview.chromium.org/2124813002/diff/1/src/interpreter/bytecode-array-builder.cc File src/interpreter/bytecode-array-builder.cc (right): https://codereview.chromium.org/2124813002/diff/1/src/interpreter/bytecode-array-builder.cc#newcode635 src/interpreter/bytecode-array-builder.cc:635: latest_source_info_.MakeStatementPosition(position); On 2016/07/07 00:25:41, Dan ...
4 years, 5 months ago (2016-07-07 04:00:47 UTC) #3
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2124813002/20001
4 years, 5 months ago (2016-07-07 09:58:38 UTC) #5
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux_mips64el_compile_rel on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux_mips64el_compile_rel/builds/17314)
4 years, 5 months ago (2016-07-07 10:04:11 UTC) #7
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2124813002/40001
4 years, 5 months ago (2016-07-07 10:44:49 UTC) #9
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 5 months ago (2016-07-07 11:09:21 UTC) #11
Yang
On 2016/07/07 11:09:21, commit-bot: I haz the power wrote: > Dry run: This issue passed ...
4 years, 5 months ago (2016-07-07 12:47:27 UTC) #12
Yang
On 2016/07/07 12:47:27, Yang wrote: > On 2016/07/07 11:09:21, commit-bot: I haz the power wrote: ...
4 years, 5 months ago (2016-07-07 12:48:00 UTC) #13
Michael Starzinger
https://codereview.chromium.org/2124813002/diff/40001/src/interpreter/bytecode-generator.cc File src/interpreter/bytecode-generator.cc (right): https://codereview.chromium.org/2124813002/diff/40001/src/interpreter/bytecode-generator.cc#newcode2264 src/interpreter/bytecode-generator.cc:2264: if (IsAsyncFunction(builder()->literal()->kind())) { How would you feel about parameterizing ...
4 years, 5 months ago (2016-07-07 13:04:36 UTC) #15
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/2124813002/40001
4 years, 5 months ago (2016-07-07 17:56:08 UTC) #18
Dan Ehrenberg
https://codereview.chromium.org/2124813002/diff/40001/src/interpreter/bytecode-generator.cc File src/interpreter/bytecode-generator.cc (right): https://codereview.chromium.org/2124813002/diff/40001/src/interpreter/bytecode-generator.cc#newcode2264 src/interpreter/bytecode-generator.cc:2264: if (IsAsyncFunction(builder()->literal()->kind())) { On 2016/07/07 at 13:04:35, Michael Starzinger ...
4 years, 5 months ago (2016-07-07 17:57:32 UTC) #20
Yang
Michi, do you want to take another look at this?
4 years, 5 months ago (2016-07-08 11:45:17 UTC) #21
Michael Starzinger
LGTM. Yup, exactly what I had in mind. Thanks! I didn't look at the parser.
4 years, 5 months ago (2016-07-08 13:18:50 UTC) #24
Dan Ehrenberg
lgtm
4 years, 5 months ago (2016-07-08 16:06:00 UTC) #27
Benedikt Meurer
LGTM.
4 years, 5 months ago (2016-07-11 05:20:24 UTC) #28
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/2124813002/60001
4 years, 5 months ago (2016-07-11 05:22:38 UTC) #30
commit-bot: I haz the power
Committed patchset #4 (id:60001)
4 years, 5 months ago (2016-07-11 05:48:00 UTC) #31
commit-bot: I haz the power
4 years, 5 months ago (2016-07-11 05:50:14 UTC) #33
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/dfcc5d4ee88a737c7e151083ef1ba18a31f99687
Cr-Commit-Position: refs/heads/master@{#37623}

Powered by Google App Engine
This is Rietveld 408576698