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

Issue 17421003: Store arguments descriptor in ICData. Remove loading of arguments descriptor at unoptimized call si… (Closed)

Created:
7 years, 6 months ago by srdjan
Modified:
7 years, 6 months ago
CC:
reviews_dartlang.org, regis
Visibility:
Public.

Description

Store arguments descriptor in ICData. Remove loading of arguments descriptor at unoptimized call site (the ones using ICData). R=asiva@google.com, zra@google.com Committed: https://code.google.com/p/dart/source/detail?r=24239

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Total comments: 6

Patch Set 6 : #

Total comments: 38

Patch Set 7 : #

Patch Set 8 : #

Patch Set 9 : #

Patch Set 10 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+292 lines, -322 lines) Patch
M runtime/tests/vm/vm.status View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M runtime/vm/code_descriptors_test.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/code_generator.h View 1 2 3 4 5 6 1 chunk +2 lines, -4 lines 0 comments Download
M runtime/vm/code_generator.cc View 1 2 3 4 5 6 2 chunks +5 lines, -8 lines 0 comments Download
M runtime/vm/code_patcher.h View 1 2 3 4 5 6 1 chunk +1 line, -2 lines 0 comments Download
M runtime/vm/code_patcher_arm.cc View 1 2 3 4 5 6 2 chunks +2 lines, -6 lines 0 comments Download
M runtime/vm/code_patcher_arm_test.cc View 1 2 3 4 5 6 2 chunks +9 lines, -8 lines 0 comments Download
M runtime/vm/code_patcher_ia32.cc View 1 2 3 4 5 6 5 chunks +12 lines, -40 lines 0 comments Download
M runtime/vm/code_patcher_ia32_test.cc View 1 2 3 4 5 6 2 chunks +9 lines, -8 lines 0 comments Download
M runtime/vm/code_patcher_mips.cc View 1 2 3 4 5 6 2 chunks +2 lines, -6 lines 0 comments Download
M runtime/vm/code_patcher_mips_test.cc View 1 2 3 4 5 6 2 chunks +9 lines, -8 lines 0 comments Download
M runtime/vm/code_patcher_x64.cc View 1 2 3 4 5 6 2 chunks +22 lines, -51 lines 0 comments Download
M runtime/vm/code_patcher_x64_test.cc View 1 2 3 4 5 6 2 chunks +9 lines, -8 lines 0 comments Download
M runtime/vm/compiler.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/debugger.cc View 1 2 3 4 5 6 2 chunks +5 lines, -7 lines 0 comments Download
M runtime/vm/deopt_instructions.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/find_code_object_test.cc View 1 2 3 4 5 6 1 chunk +1 line, -6 lines 0 comments Download
M runtime/vm/flow_graph_builder.cc View 1 2 3 4 5 6 15 chunks +16 lines, -16 lines 0 comments Download
M runtime/vm/flow_graph_compiler.h View 1 2 3 4 5 6 2 chunks +0 lines, -3 lines 0 comments Download
M runtime/vm/flow_graph_compiler.cc View 1 2 3 4 5 6 4 chunks +4 lines, -8 lines 0 comments Download
M runtime/vm/flow_graph_compiler_arm.cc View 1 2 3 4 5 6 6 chunks +7 lines, -7 lines 0 comments Download
M runtime/vm/flow_graph_compiler_ia32.cc View 1 2 3 4 5 6 6 chunks +6 lines, -7 lines 0 comments Download
M runtime/vm/flow_graph_compiler_mips.cc View 1 2 3 4 5 6 7 6 chunks +6 lines, -7 lines 0 comments Download
M runtime/vm/flow_graph_compiler_x64.cc View 1 2 3 4 5 6 6 chunks +6 lines, -7 lines 0 comments Download
M runtime/vm/flow_graph_inliner.cc View 1 2 3 4 5 6 2 chunks +2 lines, -0 lines 0 comments Download
M runtime/vm/flow_graph_optimizer.cc View 1 2 3 4 5 6 8 chunks +8 lines, -2 lines 0 comments Download
M runtime/vm/instructions_arm.h View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/instructions_arm.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/instructions_mips.h View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/instructions_mips.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/intermediate_language.h View 1 2 3 4 5 6 7 8 2 chunks +2 lines, -2 lines 0 comments Download
M runtime/vm/intermediate_language.cc View 1 2 3 4 5 6 1 chunk +4 lines, -0 lines 0 comments Download
M runtime/vm/intermediate_language_arm.cc View 1 2 3 4 5 6 3 chunks +10 lines, -1 line 0 comments Download
M runtime/vm/intermediate_language_ia32.cc View 1 2 3 4 5 6 9 chunks +25 lines, -16 lines 0 comments Download
M runtime/vm/intermediate_language_mips.cc View 1 2 3 4 5 6 6 chunks +13 lines, -4 lines 0 comments Download
M runtime/vm/intermediate_language_x64.cc View 1 2 3 4 5 6 9 chunks +25 lines, -16 lines 0 comments Download
M runtime/vm/object.h View 1 2 3 4 5 6 4 chunks +10 lines, -0 lines 0 comments Download
M runtime/vm/object.cc View 1 2 3 4 5 6 5 chunks +8 lines, -2 lines 0 comments Download
M runtime/vm/object_test.cc View 1 2 3 4 5 6 3 chunks +6 lines, -2 lines 0 comments Download
M runtime/vm/parser.h View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -1 line 0 comments Download
M runtime/vm/raw_object.h View 1 2 3 4 5 6 1 chunk +8 lines, -7 lines 0 comments Download
M runtime/vm/stub_code_arm.cc View 1 2 3 4 5 6 5 chunks +8 lines, -8 lines 0 comments Download
M runtime/vm/stub_code_ia32.cc View 1 2 3 4 5 6 7 chunks +4 lines, -9 lines 0 comments Download
M runtime/vm/stub_code_mips.cc View 1 2 3 4 5 6 5 chunks +12 lines, -18 lines 0 comments Download
M runtime/vm/stub_code_x64.cc View 1 2 3 4 5 6 8 chunks +4 lines, -10 lines 0 comments Download

Messages

Total messages: 8 (0 generated)
srdjan
7 years, 6 months ago (2013-06-19 20:53:58 UTC) #1
zra
arm, mips lgtm https://codereview.chromium.org/17421003/diff/24009/runtime/vm/stub_code_mips.cc File runtime/vm/stub_code_mips.cc (right): https://codereview.chromium.org/17421003/diff/24009/runtime/vm/stub_code_mips.cc#newcode1500 runtime/vm/stub_code_mips.cc:1500: __ addiu(SP, SP, Immediate(-5 * kWordSize)); ...
7 years, 6 months ago (2013-06-19 21:39:03 UTC) #2
srdjan
https://codereview.chromium.org/17421003/diff/24009/runtime/vm/stub_code_mips.cc File runtime/vm/stub_code_mips.cc (right): https://codereview.chromium.org/17421003/diff/24009/runtime/vm/stub_code_mips.cc#newcode1500 runtime/vm/stub_code_mips.cc:1500: __ addiu(SP, SP, Immediate(-5 * kWordSize)); On 2013/06/19 21:39:04, ...
7 years, 6 months ago (2013-06-19 22:03:49 UTC) #3
siva
lgtm https://codereview.chromium.org/17421003/diff/49001/runtime/vm/code_patcher_arm_test.cc File runtime/vm/code_patcher_arm_test.cc (right): https://codereview.chromium.org/17421003/diff/49001/runtime/vm/code_patcher_arm_test.cc#newcode56 runtime/vm/code_patcher_arm_test.cc:56: true, false, false, false, owner_class, 0)); I think ...
7 years, 6 months ago (2013-06-19 23:07:15 UTC) #4
srdjan
https://codereview.chromium.org/17421003/diff/49001/runtime/vm/code_patcher_arm_test.cc File runtime/vm/code_patcher_arm_test.cc (right): https://codereview.chromium.org/17421003/diff/49001/runtime/vm/code_patcher_arm_test.cc#newcode56 runtime/vm/code_patcher_arm_test.cc:56: true, false, false, false, owner_class, 0)); On 2013/06/19 23:07:15, ...
7 years, 6 months ago (2013-06-20 00:12:34 UTC) #5
srdjan
Committed patchset #10 manually as r24239 (presubmit successful).
7 years, 6 months ago (2013-06-20 16:29:58 UTC) #6
Florian Schneider
Please don't forget to cc vm-dev@ for all VM CLs. Since the calling convention for ...
7 years, 6 months ago (2013-06-21 10:29:26 UTC) #7
regis
7 years, 6 months ago (2013-06-24 18:12:24 UTC) #8
Message was sent while issue was closed.
LGTM

Powered by Google App Engine
This is Rietveld 408576698