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

Issue 960273002: Move stack unwinding logic into the runtime. (Closed)

Created:
5 years, 10 months ago by Michael Starzinger
Modified:
5 years, 9 months ago
CC:
v8-dev
Base URL:
https://chromium.googlesource.com/v8/v8.git@master
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

Move stack unwinding logic into the runtime. R=jarin@chromium.org Committed: https://crrev.com/4acbc93dbfe338adb217f4971e914f77afe504d9 Cr-Commit-Position: refs/heads/master@{#26957}

Patch Set 1 #

Patch Set 2 : Rebased. #

Patch Set 3 : Simplify further. #

Total comments: 1

Patch Set 4 : Architecture ports. #

Patch Set 5 : Rebased. #

Total comments: 2

Patch Set 6 : Fix Win64 issue. #

Patch Set 7 : Addressed feedback by Ross. #

Patch Set 8 : Fix Win64 (again). #

Total comments: 4

Patch Set 9 : Addressed feedback by Rodolph. #

Patch Set 10 : Fix Win64 (finally). #

Unified diffs Side-by-side diffs Delta from patch set Stats (+355 lines, -628 lines) Patch
M src/arm/code-stubs-arm.cc View 1 2 3 4 5 6 7 8 9 4 chunks +60 lines, -35 lines 0 comments Download
M src/arm/macro-assembler-arm.h View 1 2 3 2 chunks +0 lines, -11 lines 0 comments Download
M src/arm/macro-assembler-arm.cc View 1 2 3 1 chunk +0 lines, -92 lines 0 comments Download
M src/arm64/code-stubs-arm64.cc View 1 2 3 4 5 6 7 8 9 3 chunks +64 lines, -54 lines 0 comments Download
M src/arm64/macro-assembler-arm64.h View 1 2 3 2 chunks +0 lines, -24 lines 0 comments Download
M src/arm64/macro-assembler-arm64.cc View 1 2 3 2 chunks +0 lines, -110 lines 0 comments Download
M src/frames.h View 2 chunks +8 lines, -6 lines 0 comments Download
M src/frames-inl.h View 2 chunks +18 lines, -0 lines 0 comments Download
M src/ia32/code-stubs-ia32.cc View 1 2 3 4 5 6 7 8 9 4 chunks +55 lines, -37 lines 0 comments Download
M src/ia32/macro-assembler-ia32.h View 2 chunks +0 lines, -10 lines 0 comments Download
M src/ia32/macro-assembler-ia32.cc View 1 chunk +0 lines, -97 lines 0 comments Download
M src/isolate.h View 1 2 3 4 5 6 7 8 9 7 chunks +32 lines, -7 lines 0 comments Download
M src/isolate.cc View 1 2 3 4 2 chunks +38 lines, -0 lines 0 comments Download
M src/runtime/runtime.h View 1 chunk +1 line, -0 lines 0 comments Download
M src/runtime/runtime-internal.cc View 2 chunks +7 lines, -2 lines 0 comments Download
M src/x64/code-stubs-x64.cc View 1 2 3 4 5 6 7 4 chunks +54 lines, -32 lines 0 comments Download
M src/x64/macro-assembler-x64.h View 1 2 3 4 2 chunks +0 lines, -11 lines 0 comments Download
M src/x64/macro-assembler-x64.cc View 1 2 3 4 1 chunk +0 lines, -100 lines 0 comments Download
A test/mjsunit/regexp-stack-overflow.js View 1 chunk +18 lines, -0 lines 0 comments Download

Messages

Total messages: 22 (8 generated)
Michael Starzinger
PTAL. I would like to get a first round of comments before doing the various ...
5 years, 10 months ago (2015-02-26 15:51:21 UTC) #1
Jarin
lgtm https://codereview.chromium.org/960273002/diff/40001/src/ia32/code-stubs-ia32.cc File src/ia32/code-stubs-ia32.cc (right): https://codereview.chromium.org/960273002/diff/40001/src/ia32/code-stubs-ia32.cc#newcode1516 src/ia32/code-stubs-ia32.cc:1516: ThrowPendingException(masm); Out of curiosity, how is the uncatchable ...
5 years, 10 months ago (2015-02-27 07:49:14 UTC) #2
Jarin
On 2015/02/27 07:49:14, jarin wrote: > lgtm > > https://codereview.chromium.org/960273002/diff/40001/src/ia32/code-stubs-ia32.cc > File src/ia32/code-stubs-ia32.cc (right): > ...
5 years, 10 months ago (2015-02-27 07:57:22 UTC) #3
Michael Starzinger
PTAL. Ports are done. Ross or Rodolph, could either of you double-check the ARM ports?
5 years, 9 months ago (2015-02-27 18:14:30 UTC) #5
Michael Starzinger
+Yang
5 years, 9 months ago (2015-03-02 10:58:52 UTC) #7
rmcilroy
Arm code looks reasonable other than use of 'ip' register. https://codereview.chromium.org/960273002/diff/80001/src/arm/code-stubs-arm.cc File src/arm/code-stubs-arm.cc (right): https://codereview.chromium.org/960273002/diff/80001/src/arm/code-stubs-arm.cc#newcode964 ...
5 years, 9 months ago (2015-03-02 13:08:27 UTC) #8
Michael Starzinger
https://codereview.chromium.org/960273002/diff/80001/src/arm/code-stubs-arm.cc File src/arm/code-stubs-arm.cc (right): https://codereview.chromium.org/960273002/diff/80001/src/arm/code-stubs-arm.cc#newcode964 src/arm/code-stubs-arm.cc:964: __ mov(ip, Operand(pending_handler_context_address)); On 2015/03/02 13:08:27, rmcilroy wrote: > ...
5 years, 9 months ago (2015-03-02 14:21:17 UTC) #9
Rodolph Perfetta
Only minor comments. Looks good. https://codereview.chromium.org/960273002/diff/110020/src/arm/code-stubs-arm.cc File src/arm/code-stubs-arm.cc (right): https://codereview.chromium.org/960273002/diff/110020/src/arm/code-stubs-arm.cc#newcode974 src/arm/code-stubs-arm.cc:974: __ tst(cp, cp); minor ...
5 years, 9 months ago (2015-03-02 14:55:29 UTC) #11
Michael Starzinger
Thanks for the feedback. Now all I have to fix is Win64. :( https://codereview.chromium.org/960273002/diff/110020/src/arm/code-stubs-arm.cc File ...
5 years, 9 months ago (2015-03-02 15:08:49 UTC) #12
rmcilroy
On 2015/03/02 15:08:49, Michael Starzinger wrote: > Thanks for the feedback. Now all I have ...
5 years, 9 months ago (2015-03-03 10:23:54 UTC) #17
Yang
On 2015/03/03 10:23:54, rmcilroy wrote: > On 2015/03/02 15:08:49, Michael Starzinger wrote: > > Thanks ...
5 years, 9 months ago (2015-03-03 10:54:02 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/960273002/170001
5 years, 9 months ago (2015-03-03 12:00:05 UTC) #20
commit-bot: I haz the power
Committed patchset #10 (id:170001)
5 years, 9 months ago (2015-03-03 12:03:10 UTC) #21
commit-bot: I haz the power
5 years, 9 months ago (2015-03-03 12:03:25 UTC) #22
Message was sent while issue was closed.
Patchset 10 (id:??) landed as
https://crrev.com/4acbc93dbfe338adb217f4971e914f77afe504d9
Cr-Commit-Position: refs/heads/master@{#26957}

Powered by Google App Engine
This is Rietveld 408576698