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

Issue 2645743002: [builtins] Port parameter and argument-related code stubs to CSA (Closed)

Created:
3 years, 11 months ago by danno
Modified:
3 years, 10 months ago
Reviewers:
Igor Sheludko, rmcilroy
CC:
v8-reviews_googlegroups.com, v8-x87-ports_googlegroups.com, rmcilroy
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

[builtins] Port parameter and argument-related code stubs to CSA Includes the port of these three builtins: FastNewStrictArguments, FastNewSloppyArguments and FastNewRestParameter. Also inline the implementation of these into the corresponding interpreter byte codes. BUG=v8:5269 LOG=N R=ishell@chromium.org, rmcilroy@chromium.org Review-Url: https://codereview.chromium.org/2645743002 Cr-Commit-Position: refs/heads/master@{#43002} Committed: https://chromium.googlesource.com/v8/v8/+/c205c9b7ea717702d12855d133c05d2a4608abd4

Patch Set 1 #

Patch Set 2 : It works #

Patch Set 3 : Cleanup #

Patch Set 4 : More ports #

Patch Set 5 : Mips and arm ports #

Patch Set 6 : merge with ToT #

Patch Set 7 : Fix builds #

Patch Set 8 : Fix build #

Patch Set 9 : Fix context restore #

Patch Set 10 : Latest merge with ToT #

Patch Set 11 : Merge with ToT #

Patch Set 12 : Merge with ToT, works again #

Patch Set 13 : Fast loop #

Patch Set 14 : Tweaks #

Patch Set 15 : Fix build #

Patch Set 16 : Remove stray change #

Total comments: 12

Patch Set 17 : Review feedback #

Unified diffs Side-by-side diffs Delta from patch set Stats (+626 lines, -3415 lines) Patch
M BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +2 lines, -0 lines 0 comments Download
M src/arm/code-stubs-arm.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -489 lines 0 comments Download
M src/arm/interface-descriptors-arm.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -21 lines 0 comments Download
M src/arm64/code-stubs-arm64.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -575 lines 0 comments Download
M src/arm64/interface-descriptors-arm64.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -24 lines 0 comments Download
M src/builtins/builtins.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +3 lines, -0 lines 0 comments Download
A src/builtins/builtins-arguments.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +55 lines, -0 lines 0 comments Download
A src/builtins/builtins-arguments.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +424 lines, -0 lines 0 comments Download
M src/code-factory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +3 lines, -6 lines 0 comments Download
M src/code-factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +9 lines, -12 lines 0 comments Download
M src/code-stub-assembler.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 chunks +18 lines, -3 lines 0 comments Download
M src/code-stub-assembler.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +29 lines, -0 lines 0 comments Download
M src/code-stubs.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +0 lines, -66 lines 0 comments Download
M src/full-codegen/arm/full-codegen-arm.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +6 lines, -4 lines 0 comments Download
M src/full-codegen/arm64/full-codegen-arm64.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +6 lines, -4 lines 0 comments Download
M src/full-codegen/ia32/full-codegen-ia32.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +6 lines, -4 lines 0 comments Download
M src/full-codegen/mips/full-codegen-mips.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +6 lines, -4 lines 0 comments Download
M src/full-codegen/mips64/full-codegen-mips64.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +6 lines, -4 lines 0 comments Download
M src/full-codegen/x64/full-codegen-x64.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +6 lines, -4 lines 0 comments Download
M src/ia32/code-stubs-ia32.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -552 lines 0 comments Download
M src/ia32/interface-descriptors-ia32.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -21 lines 0 comments Download
M src/interface-descriptors.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +5 lines, -17 lines 0 comments Download
M src/interface-descriptors.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +10 lines, -0 lines 0 comments Download
M src/interpreter/interpreter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 4 chunks +9 lines, -12 lines 0 comments Download
M src/mips/code-stubs-mips.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -493 lines 0 comments Download
M src/mips/interface-descriptors-mips.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -21 lines 0 comments Download
M src/mips64/code-stubs-mips64.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -509 lines 0 comments Download
M src/mips64/interface-descriptors-mips64.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -21 lines 0 comments Download
M src/runtime/runtime-scopes.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +21 lines, -4 lines 0 comments Download
M src/v8.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +2 lines, -0 lines 0 comments Download
M src/x64/code-stubs-x64.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +0 lines, -526 lines 0 comments Download
M src/x64/interface-descriptors-x64.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -19 lines 0 comments Download

Messages

Total messages: 55 (49 generated)
danno
ptal
3 years, 10 months ago (2017-01-31 07:46:23 UTC) #38
rmcilroy
interpreter LGTM, didn't look at the rest.
3 years, 10 months ago (2017-01-31 20:49:00 UTC) #43
Igor Sheludko
lgtm with nits: https://codereview.chromium.org/2645743002/diff/300001/src/builtins/builtins-arguments.cc File src/builtins/builtins-arguments.cc (right): https://codereview.chromium.org/2645743002/diff/300001/src/builtins/builtins-arguments.cc#newcode29 src/builtins/builtins-arguments.cc:29: Variable argument_count(this, mode == SMI_PARAMETERS Please ...
3 years, 10 months ago (2017-02-06 20:17:03 UTC) #44
danno
Feedback addressed, landing https://codereview.chromium.org/2645743002/diff/300001/src/builtins/builtins-arguments.cc File src/builtins/builtins-arguments.cc (right): https://codereview.chromium.org/2645743002/diff/300001/src/builtins/builtins-arguments.cc#newcode29 src/builtins/builtins-arguments.cc:29: Variable argument_count(this, mode == SMI_PARAMETERS On ...
3 years, 10 months ago (2017-02-07 15:30:20 UTC) #47
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/2645743002/320001
3 years, 10 months ago (2017-02-07 16:01:15 UTC) #52
commit-bot: I haz the power
3 years, 10 months ago (2017-02-07 16:02:52 UTC) #55
Message was sent while issue was closed.
Committed patchset #17 (id:320001) as
https://chromium.googlesource.com/v8/v8/+/c205c9b7ea717702d12855d133c05d2a460...

Powered by Google App Engine
This is Rietveld 408576698