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

Side by Side Diff: runtime/vm/flow_graph_compiler_arm.cc

Issue 12775009: Optimize TypedData operators [] and []= in the same way as ScalarList. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: ARM/MIPS build, comments, rebased Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/flow_graph_compiler.cc ('k') | runtime/vm/flow_graph_compiler_ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM.
6 #if defined(TARGET_ARCH_ARM) 6 #if defined(TARGET_ARCH_ARM)
7 7
8 #include "vm/flow_graph_compiler.h" 8 #include "vm/flow_graph_compiler.h"
9 9
10 #include "lib/error.h" 10 #include "lib/error.h"
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid, 566 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid,
567 intptr_t index_scale, 567 intptr_t index_scale,
568 Register array, 568 Register array,
569 Register index) { 569 Register index) {
570 UNIMPLEMENTED(); 570 UNIMPLEMENTED();
571 return FieldAddress(array, index); 571 return FieldAddress(array, index);
572 } 572 }
573 573
574 574
575 Address FlowGraphCompiler::ExternalElementAddressForIntIndex( 575 Address FlowGraphCompiler::ExternalElementAddressForIntIndex(
576 intptr_t cid,
577 intptr_t index_scale, 576 intptr_t index_scale,
578 Register array, 577 Register array,
579 intptr_t index) { 578 intptr_t index) {
580 UNIMPLEMENTED(); 579 UNIMPLEMENTED();
581 return FieldAddress(array, index); 580 return FieldAddress(array, index);
582 } 581 }
583 582
584 583
585 Address FlowGraphCompiler::ExternalElementAddressForRegIndex( 584 Address FlowGraphCompiler::ExternalElementAddressForRegIndex(
586 intptr_t cid,
587 intptr_t index_scale, 585 intptr_t index_scale,
588 Register array, 586 Register array,
589 Register index) { 587 Register index) {
590 UNIMPLEMENTED(); 588 UNIMPLEMENTED();
591 return FieldAddress(array, index); 589 return FieldAddress(array, index);
592 } 590 }
593 591
594 592
595 void ParallelMoveResolver::EmitMove(int index) { 593 void ParallelMoveResolver::EmitMove(int index) {
596 UNIMPLEMENTED(); 594 UNIMPLEMENTED();
(...skipping 22 matching lines...) Expand all
619 617
620 618
621 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { 619 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) {
622 UNIMPLEMENTED(); 620 UNIMPLEMENTED();
623 } 621 }
624 622
625 623
626 } // namespace dart 624 } // namespace dart
627 625
628 #endif // defined TARGET_ARCH_ARM 626 #endif // defined TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_compiler.cc ('k') | runtime/vm/flow_graph_compiler_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698