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

Issue 2491543002: [debug-wrapper] Conditional breaks, locals, evaluate, scopes (Closed)

Created:
4 years, 1 month ago by jgruber
Modified:
4 years, 1 month ago
Reviewers:
Yang
CC:
v8-reviews_googlegroups.com
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

[debug-wrapper] Conditional breaks, locals, evaluate, scopes This CL adds support for: * conditional breaks in setBreakpoint, * locals in frame.local{Count,Name,Value}, * evaluation on a frame in frame.evaluate, * and more detailed scope information in scopeObject. Uses of several functions that are not covered by the inspector protocol and are only used in tests have been removed. Local handling has been modified to also include arguments as locals. Inspector differs in this regard from our FrameDetails in that arguments are always shown as locals. Argument-related functions were removed. BUG=v8:5530 Committed: https://crrev.com/b32ee40de8208e3008e8ca47073abb26a6ed2c1d Cr-Commit-Position: refs/heads/master@{#40917}

Patch Set 1 #

Patch Set 2 : Re-add tests #

Patch Set 3 : Update .status and add one more test #

Patch Set 4 : Update status file #

Patch Set 5 : Rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+138 lines, -1910 lines) Patch
A + test/debugger/debug-evaluate-locals-optimized-double.js View 1 2 4 chunks +10 lines, -51 lines 0 comments Download
M test/debugger/debug/debug-break-inline.js View 1 chunk +0 lines, -19 lines 0 comments Download
A + test/debugger/debug/debug-evaluate-closure.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/debug-evaluate-declaration.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/debug-evaluate-locals-capturing.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/debug-evaluate-locals-optimized.js View 5 chunks +11 lines, -53 lines 0 comments Download
A + test/debugger/debug/debug-evaluate-modify-catch-block-scope.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/debug-evaluate-nested-let.js View 1 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/debug-evaluate-with.js View 1 chunk +0 lines, -2 lines 0 comments Download
A + test/debugger/debug/debug-materialized.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/ignition/debug-break-mixed-stack.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/ignition/debug-step-mixed-stack.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/regress-3225.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/regress/regress-1170187.js View 2 chunks +2 lines, -3 lines 0 comments Download
A + test/debugger/debug/regress/regress-131994.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/regress/regress-1586.js View 2 chunks +0 lines, -2 lines 0 comments Download
A + test/debugger/debug/regress/regress-325676.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/regress/regress-5071.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/regress/regress-662935.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/regress/regress-crbug-107996.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/regress/regress-crbug-323936.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/regress/regress-crbug-467180.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/regress/regress-crbug-582051.js View 1 chunk +0 lines, -1 line 0 comments Download
A + test/debugger/debug/regress/regress-opt-after-debug-deopt.js View 1 chunk +0 lines, -1 line 0 comments Download
M test/debugger/debugger.status View 1 2 3 4 1 chunk +19 lines, -0 lines 0 comments Download
M test/debugger/test-api.js View 1 2 3 4 5 chunks +96 lines, -12 lines 0 comments Download
D test/mjsunit/debug-evaluate-arguments.js View 1 chunk +0 lines, -93 lines 0 comments Download
D test/mjsunit/debug-evaluate-closure.js View 1 chunk +0 lines, -92 lines 0 comments Download
D test/mjsunit/debug-evaluate-declaration.js View 1 chunk +0 lines, -44 lines 0 comments Download
D test/mjsunit/debug-evaluate-locals-capturing.js View 1 chunk +0 lines, -48 lines 0 comments Download
D test/mjsunit/debug-evaluate-locals-optimized.js View 1 chunk +0 lines, -224 lines 0 comments Download
D test/mjsunit/debug-evaluate-locals-optimized-double.js View 1 2 1 chunk +0 lines, -243 lines 0 comments Download
D test/mjsunit/debug-evaluate-modify-catch-block-scope.js View 1 chunk +0 lines, -43 lines 0 comments Download
D test/mjsunit/debug-evaluate-nested-let.js View 1 1 chunk +0 lines, -52 lines 0 comments Download
D test/mjsunit/debug-evaluate-with.js View 1 chunk +0 lines, -82 lines 0 comments Download
D test/mjsunit/debug-materialized.js View 1 chunk +0 lines, -41 lines 0 comments Download
D test/mjsunit/ignition/debug-break-mixed-stack.js View 1 chunk +0 lines, -52 lines 0 comments Download
D test/mjsunit/ignition/debug-step-mixed-stack.js View 1 chunk +0 lines, -53 lines 0 comments Download
M test/mjsunit/mjsunit.status View 1 2 3 4 chunks +0 lines, -15 lines 0 comments Download
D test/mjsunit/regress-3225.js View 1 chunk +0 lines, -52 lines 0 comments Download
D test/mjsunit/regress/regress-1170187.js View 1 chunk +0 lines, -81 lines 0 comments Download
D test/mjsunit/regress/regress-131994.js View 1 chunk +0 lines, -69 lines 0 comments Download
D test/mjsunit/regress/regress-1586.js View 1 chunk +0 lines, -66 lines 0 comments Download
D test/mjsunit/regress/regress-325676.js View 1 chunk +0 lines, -69 lines 0 comments Download
D test/mjsunit/regress/regress-5071.js View 1 chunk +0 lines, -33 lines 0 comments Download
D test/mjsunit/regress/regress-662935.js View 1 chunk +0 lines, -16 lines 0 comments Download
D test/mjsunit/regress/regress-crbug-107996.js View 1 chunk +0 lines, -69 lines 0 comments Download
D test/mjsunit/regress/regress-crbug-323936.js View 1 chunk +0 lines, -52 lines 0 comments Download
D test/mjsunit/regress/regress-crbug-467180.js View 1 chunk +0 lines, -41 lines 0 comments Download
D test/mjsunit/regress/regress-crbug-582051.js View 1 chunk +0 lines, -44 lines 0 comments Download
D test/mjsunit/regress/regress-opt-after-debug-deopt.js View 1 chunk +0 lines, -76 lines 0 comments Download

Messages

Total messages: 34 (27 generated)
jgruber
4 years, 1 month ago (2016-11-10 09:29:49 UTC) #16
Yang
On 2016/11/10 09:29:49, jgruber wrote: lgtm
4 years, 1 month ago (2016-11-11 09:58:10 UTC) #19
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/2491543002/60001
4 years, 1 month ago (2016-11-11 10:51:21 UTC) #21
commit-bot: I haz the power
Try jobs failed on following builders: v8_linux_gcc_compile_rel on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux_gcc_compile_rel/builds/26267) v8_linux_mipsel_compile_rel on master.tryserver.v8 (JOB_FAILED, ...
4 years, 1 month ago (2016-11-11 10:52:52 UTC) #23
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/2491543002/80001
4 years, 1 month ago (2016-11-11 12:05:36 UTC) #30
commit-bot: I haz the power
Committed patchset #5 (id:80001)
4 years, 1 month ago (2016-11-11 12:07:48 UTC) #32
commit-bot: I haz the power
4 years, 1 month ago (2016-11-17 22:30:23 UTC) #34
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/b32ee40de8208e3008e8ca47073abb26a6ed2c1d
Cr-Commit-Position: refs/heads/master@{#40917}

Powered by Google App Engine
This is Rietveld 408576698