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

Issue 1604653006: Introduce BUILTIN_CALL_PAIR. (Closed)

Created:
4 years, 11 months ago by MTBrandyberry
Modified:
4 years, 11 months ago
CC:
v8-reviews_googlegroups.com, v8-mips-ports_googlegroups.com, 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

Introduce BUILTIN_CALL_PAIR. This change allows the PPC simulator to execute on PPC hardware where, due to calling conventions, we must distinguish between Object* and ObjectPair return values. We find this useful as another available option for debugging certain problems. While not strictly necessary for Intel platforms, we hope that this is less offensive now that BUILTIN_CALL_TRIPLE has been added. BUG= R=rmcilroy@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com Committed: https://crrev.com/433e8848df4c7ec11b7b4a808f329f4a1e31142b Cr-Commit-Position: refs/heads/master@{#33475}

Patch Set 1 #

Patch Set 2 : Typo in comment. #

Total comments: 2

Patch Set 3 : Add builtin_call_type helper. #

Total comments: 6

Patch Set 4 : Changes based on review comments. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+64 lines, -31 lines) Patch
M src/arm/simulator-arm.cc View 1 chunk +2 lines, -1 line 0 comments Download
M src/arm64/simulator-arm64.cc View 1 chunk +2 lines, -1 line 0 comments Download
M src/assembler.h View 1 3 1 chunk +5 lines, -2 lines 0 comments Download
M src/assembler.cc View 1 2 3 2 chunks +16 lines, -3 lines 0 comments Download
M src/ppc/simulator-ppc.cc View 3 chunks +39 lines, -24 lines 0 comments Download

Messages

Total messages: 23 (7 generated)
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1604653006/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1604653006/20001
4 years, 11 months ago (2016-01-19 22:50:42 UTC) #2
MTBrandyberry
PTAL
4 years, 11 months ago (2016-01-19 23:16:21 UTC) #3
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 11 months ago (2016-01-19 23:25:22 UTC) #5
JoranSiu
On 2016/01/19 23:25:22, commit-bot: I haz the power wrote: > Dry run: This issue passed ...
4 years, 11 months ago (2016-01-20 14:59:01 UTC) #6
MTBrandyberry
On 2016/01/20 14:59:01, JoranSiu wrote: > On 2016/01/19 23:25:22, commit-bot: I haz the power wrote: ...
4 years, 11 months ago (2016-01-20 17:13:39 UTC) #7
rmcilroy
Looks reasonable to me. One comment and I guess you'll need to fix the other ...
4 years, 11 months ago (2016-01-21 12:15:33 UTC) #8
MTBrandyberry
On 2016/01/21 12:15:33, rmcilroy wrote: > Looks reasonable to me. One comment and I guess ...
4 years, 11 months ago (2016-01-21 14:41:37 UTC) #9
MTBrandyberry
https://codereview.chromium.org/1604653006/diff/20001/src/assembler.cc File src/assembler.cc (right): https://codereview.chromium.org/1604653006/diff/20001/src/assembler.cc#newcode1036 src/assembler.cc:1036: : (f->result_size == 2 ? BUILTIN_CALL_PAIR : BUILTIN_CALL))) {} ...
4 years, 11 months ago (2016-01-21 16:00:32 UTC) #10
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1604653006/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1604653006/40001
4 years, 11 months ago (2016-01-21 17:56:24 UTC) #12
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 11 months ago (2016-01-21 18:18:11 UTC) #14
rmcilroy
https://codereview.chromium.org/1604653006/diff/40001/src/assembler.h File src/assembler.h (right): https://codereview.chromium.org/1604653006/diff/40001/src/assembler.h#newcode1047 src/assembler.h:1047: static Type builtin_call_type(int size) { /s/size/result_size https://codereview.chromium.org/1604653006/diff/40001/src/assembler.h#newcode1047 src/assembler.h:1047: static ...
4 years, 11 months ago (2016-01-22 11:13:52 UTC) #15
MTBrandyberry
https://codereview.chromium.org/1604653006/diff/40001/src/assembler.h File src/assembler.h (right): https://codereview.chromium.org/1604653006/diff/40001/src/assembler.h#newcode1047 src/assembler.h:1047: static Type builtin_call_type(int size) { On 2016/01/22 11:13:52, rmcilroy ...
4 years, 11 months ago (2016-01-22 14:53:53 UTC) #16
rmcilroy
lgtm
4 years, 11 months ago (2016-01-22 17:18:49 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1604653006/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1604653006/60001
4 years, 11 months ago (2016-01-22 17:40:05 UTC) #20
commit-bot: I haz the power
Committed patchset #4 (id:60001)
4 years, 11 months ago (2016-01-22 18:34:40 UTC) #21
commit-bot: I haz the power
4 years, 11 months ago (2016-01-22 18:35:48 UTC) #23
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/433e8848df4c7ec11b7b4a808f329f4a1e31142b
Cr-Commit-Position: refs/heads/master@{#33475}

Powered by Google App Engine
This is Rietveld 408576698