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

Issue 2106113002: Revert of [builtins] New frame type for exits to C++ builtins (Closed)

Created:
4 years, 5 months ago by Benedikt Meurer
Modified:
4 years, 5 months ago
Reviewers:
Yang, jgruber
CC:
v8-reviews_googlegroups.com, v8-mips-ports_googlegroups.com, v8-x87-ports_googlegroups.com, Yang, v8-ppc-ports_googlegroups.com
Base URL:
https://chromium.googlesource.com/v8/v8.git@master
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

Revert of [builtins] New frame type for exits to C++ builtins (patchset #5 id:80001 of https://codereview.chromium.org/2090723005/ ) Reason for revert: Looks like this breaks on nosnap: http://build.chromium.org/p/client.v8/builders/V8%20Linux%20-%20nosnap%20-%20debug/builds/7626 Original issue's description: > [builtins] New frame type for exits to C++ builtins > > Prior to this commit, calls to C++ builtins created standard exit > frames, which are skipped when constructing JS stack traces. In order to > show these calls on traces, we introduce a new builtin exit frame type. > > Builtin exit frames contain target and new.target on the stack and are > not skipped during stack trace construction. > > BUG=v8:4815 > R=bmeurer@chromium.org, yangguo@chromium.org > CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_chromium_rel_ng;tryserver.blink:linux_blink_rel > > Committed: https://crrev.com/3c60c6b105f39344f93a8407f41534e5e60cf19a > Cr-Commit-Position: refs/heads/master@{#37384} TBR=yangguo@chromium.org,jgruber@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=v8:4815 Committed: https://crrev.com/5927deaaf1f023dd4dd71ec0c5c6b9e51614f244 Cr-Commit-Position: refs/heads/master@{#37394}

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+257 lines, -432 lines) Patch
M src/arm/builtins-arm.cc View 2 chunks +2 lines, -4 lines 0 comments Download
M src/arm/code-stubs-arm.cc View 1 chunk +1 line, -3 lines 0 comments Download
M src/arm/macro-assembler-arm.h View 2 chunks +2 lines, -4 lines 0 comments Download
M src/arm/macro-assembler-arm.cc View 2 chunks +7 lines, -10 lines 0 comments Download
M src/arm64/builtins-arm64.cc View 2 chunks +2 lines, -4 lines 0 comments Download
M src/arm64/code-stubs-arm64.cc View 1 chunk +1 line, -3 lines 0 comments Download
M src/arm64/macro-assembler-arm64.h View 2 chunks +4 lines, -5 lines 0 comments Download
M src/arm64/macro-assembler-arm64.cc View 2 chunks +9 lines, -10 lines 0 comments Download
M src/builtins.h View 5 chunks +145 lines, -148 lines 0 comments Download
M src/builtins.cc View 9 chunks +5 lines, -12 lines 0 comments Download
M src/code-stubs.h View 2 chunks +2 lines, -5 lines 0 comments Download
M src/counters.h View 1 chunk +1 line, -1 line 0 comments Download
M src/counters.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M src/debug/liveedit.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/external-reference-table.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M src/frames.h View 5 chunks +1 line, -33 lines 0 comments Download
M src/frames.cc View 6 chunks +2 lines, -27 lines 0 comments Download
M src/frames-inl.h View 1 chunk +0 lines, -6 lines 0 comments Download
M src/ia32/builtins-ia32.cc View 2 chunks +2 lines, -4 lines 0 comments Download
M src/ia32/code-stubs-ia32.cc View 1 chunk +1 line, -4 lines 0 comments Download
M src/ia32/macro-assembler-ia32.h View 3 chunks +3 lines, -4 lines 0 comments Download
M src/ia32/macro-assembler-ia32.cc View 5 chunks +10 lines, -13 lines 0 comments Download
M src/isolate.cc View 3 chunks +0 lines, -32 lines 0 comments Download
M src/mips/builtins-mips.cc View 2 chunks +2 lines, -4 lines 0 comments Download
M src/mips/code-stubs-mips.cc View 1 chunk +1 line, -3 lines 0 comments Download
M src/mips/macro-assembler-mips.h View 2 chunks +3 lines, -4 lines 0 comments Download
M src/mips/macro-assembler-mips.cc View 4 chunks +6 lines, -10 lines 0 comments Download
M src/mips64/builtins-mips64.cc View 2 chunks +2 lines, -4 lines 0 comments Download
M src/mips64/code-stubs-mips64.cc View 1 chunk +1 line, -3 lines 0 comments Download
M src/mips64/macro-assembler-mips64.h View 2 chunks +3 lines, -4 lines 0 comments Download
M src/mips64/macro-assembler-mips64.cc View 4 chunks +6 lines, -10 lines 0 comments Download
M src/profiler/tick-sample.cc View 1 chunk +1 line, -2 lines 0 comments Download
M src/x64/builtins-x64.cc View 2 chunks +2 lines, -4 lines 0 comments Download
M src/x64/code-stubs-x64.cc View 1 chunk +1 line, -4 lines 0 comments Download
M src/x64/macro-assembler-x64.h View 3 chunks +3 lines, -5 lines 0 comments Download
M src/x64/macro-assembler-x64.cc View 5 chunks +11 lines, -14 lines 0 comments Download
M test/cctest/compiler/test-run-inlining.cc View 1 chunk +3 lines, -3 lines 0 comments Download
M test/cctest/test-log-stack-tracer.cc View 1 chunk +1 line, -2 lines 0 comments Download
M test/message/paren_in_arg_string.out View 1 chunk +0 lines, -1 line 0 comments Download
M test/mjsunit/regress/regress-4815.js View 2 chunks +6 lines, -18 lines 0 comments Download

Messages

Total messages: 6 (2 generated)
Benedikt Meurer
Created Revert of [builtins] New frame type for exits to C++ builtins
4 years, 5 months ago (2016-06-29 12:36:38 UTC) #2
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/2106113002/1
4 years, 5 months ago (2016-06-29 12:36:45 UTC) #3
commit-bot: I haz the power
Committed patchset #1 (id:1)
4 years, 5 months ago (2016-06-29 12:37:16 UTC) #4
commit-bot: I haz the power
4 years, 5 months ago (2016-06-29 12:39:46 UTC) #6
Message was sent while issue was closed.
Patchset 1 (id:??) landed as
https://crrev.com/5927deaaf1f023dd4dd71ec0c5c6b9e51614f244
Cr-Commit-Position: refs/heads/master@{#37394}

Powered by Google App Engine
This is Rietveld 408576698