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

Issue 150063004: Support reusable boxes for Float32x4 fields (Closed)

Created:
6 years, 10 months ago by Cutch
Modified:
6 years, 10 months ago
CC:
reviews_dartlang.org, vm-dev_dartlang.org
Visibility:
Public.

Description

Extend StoreInstanceFieldInstr and LoadFieldInstr to support reusable Float32x4 boxes on IA32, X64, and ARM. R=fschneider@google.com Committed: https://code.google.com/p/dart/source/detail?r=32429

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Patch Set 8 : #

Patch Set 9 : #

Patch Set 10 : #

Total comments: 6

Patch Set 11 : #

Total comments: 13

Patch Set 12 : #

Patch Set 13 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+674 lines, -301 lines) Patch
M runtime/vm/flow_graph_compiler.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
M runtime/vm/flow_graph_compiler.cc View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +19 lines, -5 lines 0 comments Download
M runtime/vm/flow_graph_compiler_arm.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +6 lines, -0 lines 0 comments Download
M runtime/vm/flow_graph_compiler_ia32.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +6 lines, -0 lines 0 comments Download
M runtime/vm/flow_graph_compiler_mips.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +5 lines, -0 lines 0 comments Download
M runtime/vm/flow_graph_compiler_x64.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +7 lines, -0 lines 0 comments Download
M runtime/vm/flow_graph_optimizer.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +1 line, -8 lines 0 comments Download
M runtime/vm/intermediate_language.cc View 1 2 3 4 5 6 7 8 9 10 5 chunks +10 lines, -6 lines 0 comments Download
M runtime/vm/intermediate_language_arm.cc View 1 2 3 4 5 6 7 8 9 10 11 12 11 chunks +172 lines, -81 lines 0 comments Download
M runtime/vm/intermediate_language_ia32.cc View 1 2 3 4 5 6 7 8 9 10 11 12 12 chunks +155 lines, -79 lines 0 comments Download
M runtime/vm/intermediate_language_mips.cc View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +50 lines, -42 lines 0 comments Download
M runtime/vm/intermediate_language_x64.cc View 1 2 3 4 5 6 7 8 9 10 11 12 9 chunks +145 lines, -78 lines 0 comments Download
M runtime/vm/object.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +5 lines, -2 lines 0 comments Download
A tests/language/vm/reusable_boxes_test.dart View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +92 lines, -0 lines 0 comments Download

Messages

Total messages: 10 (0 generated)
Cutch
6 years, 10 months ago (2014-02-05 18:11:12 UTC) #1
srdjan
https://codereview.chromium.org/150063004/diff/310001/runtime/vm/flow_graph_compiler.cc File runtime/vm/flow_graph_compiler.cc (right): https://codereview.chromium.org/150063004/diff/310001/runtime/vm/flow_graph_compiler.cc#newcode462 runtime/vm/flow_graph_compiler.cc:462: intptr_t live_registers_size = registers->CpuRegisterCount() + const intptr_t https://codereview.chromium.org/150063004/diff/310001/runtime/vm/intermediate_language_ia32.cc File ...
6 years, 10 months ago (2014-02-05 22:20:09 UTC) #2
Cutch
https://codereview.chromium.org/150063004/diff/310001/runtime/vm/flow_graph_compiler.cc File runtime/vm/flow_graph_compiler.cc (right): https://codereview.chromium.org/150063004/diff/310001/runtime/vm/flow_graph_compiler.cc#newcode462 runtime/vm/flow_graph_compiler.cc:462: intptr_t live_registers_size = registers->CpuRegisterCount() + On 2014/02/05 22:20:09, srdjan ...
6 years, 10 months ago (2014-02-05 23:16:02 UTC) #3
Florian Schneider
https://codereview.chromium.org/150063004/diff/380001/runtime/vm/flow_graph_compiler.cc File runtime/vm/flow_graph_compiler.cc (right): https://codereview.chromium.org/150063004/diff/380001/runtime/vm/flow_graph_compiler.cc#newcode466 runtime/vm/flow_graph_compiler.cc:466: ASSERT(bitmap->Length() <= (StackSize() + live_registers_size)); We should comment what's ...
6 years, 10 months ago (2014-02-06 12:38:48 UTC) #4
srdjan
https://codereview.chromium.org/150063004/diff/380001/runtime/vm/intermediate_language_arm.cc File runtime/vm/intermediate_language_arm.cc (right): https://codereview.chromium.org/150063004/diff/380001/runtime/vm/intermediate_language_arm.cc#newcode1584 runtime/vm/intermediate_language_arm.cc:1584: bool Field::IsUnboxedField() const { On 2014/02/06 12:38:49, Florian Schneider ...
6 years, 10 months ago (2014-02-06 16:55:31 UTC) #5
Florian Schneider
On 2014/02/06 16:55:31, srdjan wrote: > https://codereview.chromium.org/150063004/diff/380001/runtime/vm/intermediate_language_arm.cc > File runtime/vm/intermediate_language_arm.cc (right): > > https://codereview.chromium.org/150063004/diff/380001/runtime/vm/intermediate_language_arm.cc#newcode1584 > ...
6 years, 10 months ago (2014-02-06 16:57:17 UTC) #6
Cutch
https://codereview.chromium.org/150063004/diff/380001/runtime/vm/flow_graph_compiler.cc File runtime/vm/flow_graph_compiler.cc (right): https://codereview.chromium.org/150063004/diff/380001/runtime/vm/flow_graph_compiler.cc#newcode466 runtime/vm/flow_graph_compiler.cc:466: ASSERT(bitmap->Length() <= (StackSize() + live_registers_size)); On 2014/02/06 12:38:49, Florian ...
6 years, 10 months ago (2014-02-06 23:15:38 UTC) #7
Cutch
Latest CL: $ ./tools/test.py -a all --checked --vm-options=--optimization_counter_threshold=5 Test configurations: none_vm_debug_ia32_checked none_vm_debug_x64_checked none_vm_debug_simarm_checked none_vm_debug_simmips_checked [30:37 ...
6 years, 10 months ago (2014-02-06 23:45:43 UTC) #8
Florian Schneider
LGTM.
6 years, 10 months ago (2014-02-07 13:30:00 UTC) #9
Cutch
6 years, 10 months ago (2014-02-07 15:30:37 UTC) #10
Message was sent while issue was closed.
Committed patchset #13 manually as r32429 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698