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

Side by Side Diff: runtime/vm/flow_graph_compiler_mips.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_ia32.cc ('k') | runtime/vm/flow_graph_compiler_x64.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_MIPS. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS.
6 #if defined(TARGET_ARCH_MIPS) 6 #if defined(TARGET_ARCH_MIPS)
7 7
8 #include "vm/flow_graph_compiler.h" 8 #include "vm/flow_graph_compiler.h"
9 9
10 #include "vm/longjump.h" 10 #include "vm/longjump.h"
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid, 315 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid,
316 intptr_t index_scale, 316 intptr_t index_scale,
317 Register array, 317 Register array,
318 Register index) { 318 Register index) {
319 UNIMPLEMENTED(); 319 UNIMPLEMENTED();
320 return FieldAddress(array, index); 320 return FieldAddress(array, index);
321 } 321 }
322 322
323 323
324 Address FlowGraphCompiler::ExternalElementAddressForIntIndex( 324 Address FlowGraphCompiler::ExternalElementAddressForIntIndex(
325 intptr_t cid,
326 intptr_t index_scale, 325 intptr_t index_scale,
327 Register array, 326 Register array,
328 intptr_t index) { 327 intptr_t index) {
329 UNIMPLEMENTED(); 328 UNIMPLEMENTED();
330 return FieldAddress(array, index); 329 return FieldAddress(array, index);
331 } 330 }
332 331
333 332
334 Address FlowGraphCompiler::ExternalElementAddressForRegIndex( 333 Address FlowGraphCompiler::ExternalElementAddressForRegIndex(
335 intptr_t cid,
336 intptr_t index_scale, 334 intptr_t index_scale,
337 Register array, 335 Register array,
338 Register index) { 336 Register index) {
339 UNIMPLEMENTED(); 337 UNIMPLEMENTED();
340 return FieldAddress(array, index); 338 return FieldAddress(array, index);
341 } 339 }
342 340
343 341
344 void ParallelMoveResolver::EmitMove(int index) { 342 void ParallelMoveResolver::EmitMove(int index) {
345 UNIMPLEMENTED(); 343 UNIMPLEMENTED();
(...skipping 22 matching lines...) Expand all
368 366
369 367
370 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { 368 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) {
371 UNIMPLEMENTED(); 369 UNIMPLEMENTED();
372 } 370 }
373 371
374 372
375 } // namespace dart 373 } // namespace dart
376 374
377 #endif // defined TARGET_ARCH_MIPS 375 #endif // defined TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_compiler_ia32.cc ('k') | runtime/vm/flow_graph_compiler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698