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

Issue 240053010: Return Object* instead of MaybeObject* from runtime calls. (Closed)

Created:
6 years, 8 months ago by Yang
Modified:
6 years, 8 months ago
CC:
v8-dev
Visibility:
Public.

Description

Return Object* instead of MaybeObject* from runtime calls. R=jkummerow@chromium.org Committed: https://code.google.com/p/v8/source/detail?r=20888

Patch Set 1 #

Patch Set 2 : small typo #

Patch Set 3 : fix string allocation #

Total comments: 2

Patch Set 4 : x64 port #

Patch Set 5 : arm port. #

Patch Set 6 : arm64 port #

Total comments: 9

Patch Set 7 : addressed comments #

Patch Set 8 : cmpp #

Unified diffs Side-by-side diffs Delta from patch set Stats (+822 lines, -1196 lines) Patch
M src/accessors.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/arguments.h View 1 2 3 4 5 2 chunks +8 lines, -3 lines 0 comments Download
M src/arm/code-stubs-arm.cc View 1 2 3 4 5 6 4 chunks +68 lines, -133 lines 0 comments Download
M src/arm/regexp-macro-assembler-arm.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/arm64/code-stubs-arm64.cc View 1 2 3 4 5 6 7 chunks +92 lines, -189 lines 0 comments Download
M src/arm64/regexp-macro-assembler-arm64.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/assembler.h View 1 chunk +0 lines, -2 lines 0 comments Download
M src/assembler.cc View 1 chunk +0 lines, -12 lines 0 comments Download
M src/builtins.cc View 5 chunks +10 lines, -10 lines 0 comments Download
M src/code-stubs.h View 1 2 1 chunk +0 lines, -6 lines 0 comments Download
M src/debug.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M src/debug.cc View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M src/execution.h View 1 chunk +1 line, -2 lines 0 comments Download
M src/execution.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M src/heap.cc View 1 2 3 4 5 3 chunks +12 lines, -3 lines 0 comments Download
M src/heap-inl.h View 1 2 1 chunk +13 lines, -8 lines 0 comments Download
M src/ia32/code-stubs-ia32.cc View 1 2 3 4 5 6 4 chunks +32 lines, -117 lines 0 comments Download
M src/ia32/regexp-macro-assembler-ia32.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/ic.h View 1 2 3 4 5 1 chunk +9 lines, -9 lines 0 comments Download
M src/ic.cc View 1 2 3 4 5 18 chunks +18 lines, -18 lines 0 comments Download
M src/isolate.h View 1 2 3 4 5 7 chunks +11 lines, -10 lines 0 comments Download
M src/isolate.cc View 6 7 8 chunks +14 lines, -14 lines 0 comments Download
M src/mips/code-stubs-mips.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M src/mips/regexp-macro-assembler-mips.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/runtime.h View 1 2 3 4 5 1 chunk +0 lines, -4 lines 0 comments Download
M src/runtime.cc View 1 2 3 4 5 419 chunks +451 lines, -485 lines 0 comments Download
M src/serialize.cc View 1 2 3 4 5 6 7 2 chunks +0 lines, -13 lines 0 comments Download
M src/stub-cache.h View 1 2 3 4 5 3 chunks +7 lines, -8 lines 0 comments Download
M src/stub-cache.cc View 1 2 3 4 5 7 chunks +7 lines, -7 lines 0 comments Download
M src/x64/code-stubs-x64.cc View 1 2 3 4 5 6 7 5 chunks +58 lines, -132 lines 0 comments Download
M src/x64/regexp-macro-assembler-x64.cc View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 7 (0 generated)
Yang
This depends on https://codereview.chromium.org/240493007/ https://codereview.chromium.org/240883003/ https://codereview.chromium.org/240393003/ Platform ports for x64, arm, arm64 and mips for ...
6 years, 8 months ago (2014-04-17 12:48:18 UTC) #1
Jakob Kummerow
Looks good so far. https://codereview.chromium.org/240053010/diff/30001/src/ia32/code-stubs-ia32.cc File src/ia32/code-stubs-ia32.cc (right): https://codereview.chromium.org/240053010/diff/30001/src/ia32/code-stubs-ia32.cc#newcode2596 src/ia32/code-stubs-ia32.cc:2596: // NOTE: Invocations of builtins ...
6 years, 8 months ago (2014-04-17 14:20:11 UTC) #2
Yang
https://codereview.chromium.org/240053010/diff/90001/src/arm64/code-stubs-arm64.cc File src/arm64/code-stubs-arm64.cc (right): https://codereview.chromium.org/240053010/diff/90001/src/arm64/code-stubs-arm64.cc#newcode1513 src/arm64/code-stubs-arm64.cc:1513: // TODO(jbramley): If the first call attempt succeeds in ...
6 years, 8 months ago (2014-04-22 11:28:54 UTC) #3
jbramley
https://codereview.chromium.org/240053010/diff/90001/src/arm64/code-stubs-arm64.cc File src/arm64/code-stubs-arm64.cc (right): https://codereview.chromium.org/240053010/diff/90001/src/arm64/code-stubs-arm64.cc#newcode1513 src/arm64/code-stubs-arm64.cc:1513: // TODO(jbramley): If the first call attempt succeeds in ...
6 years, 8 months ago (2014-04-22 11:37:03 UTC) #4
Jakob Kummerow
LGTM. https://codereview.chromium.org/240053010/diff/90001/src/arm/code-stubs-arm.cc File src/arm/code-stubs-arm.cc (right): https://codereview.chromium.org/240053010/diff/90001/src/arm/code-stubs-arm.cc#newcode1506 src/arm/code-stubs-arm.cc:1506: // Called from JavaScript; parameters are on stack ...
6 years, 8 months ago (2014-04-22 12:22:22 UTC) #5
Yang
Thanks for the review. I uploaded a new patch set addressing the comments. Landing...
6 years, 8 months ago (2014-04-22 12:38:16 UTC) #6
Yang
6 years, 8 months ago (2014-04-22 12:51:27 UTC) #7
Message was sent while issue was closed.
Committed patchset #8 manually as r20888 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698