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

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

Issue 16272004: Implements intrinsics for MIPS. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 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/disassembler_mips.cc ('k') | runtime/vm/intrinsifier_mips.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 "lib/error.h" 10 #include "lib/error.h"
(...skipping 1396 matching lines...) Expand 10 before | Expand all | Expand 10 after
1407 FpuRegister right, 1407 FpuRegister right,
1408 Register result) { 1408 Register result) {
1409 UNIMPLEMENTED(); 1409 UNIMPLEMENTED();
1410 } 1410 }
1411 1411
1412 1412
1413 FieldAddress FlowGraphCompiler::ElementAddressForIntIndex(intptr_t cid, 1413 FieldAddress FlowGraphCompiler::ElementAddressForIntIndex(intptr_t cid,
1414 intptr_t index_scale, 1414 intptr_t index_scale,
1415 Register array, 1415 Register array,
1416 intptr_t index) { 1416 intptr_t index) {
1417 UNIMPLEMENTED(); 1417 UNREACHABLE();
1418 return FieldAddress(array, index); 1418 return FieldAddress(array, index);
1419 } 1419 }
1420 1420
1421 1421
1422 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid, 1422 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid,
1423 intptr_t index_scale, 1423 intptr_t index_scale,
1424 Register array, 1424 Register array,
1425 Register index) { 1425 Register index) {
1426 UNIMPLEMENTED(); 1426 UNIMPLEMENTED();
1427 return FieldAddress(array, index); 1427 return FieldAddress(array, index);
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
1641 __ AddImmediate(SP, kDoubleSize); 1641 __ AddImmediate(SP, kDoubleSize);
1642 } 1642 }
1643 1643
1644 1644
1645 #undef __ 1645 #undef __
1646 1646
1647 1647
1648 } // namespace dart 1648 } // namespace dart
1649 1649
1650 #endif // defined TARGET_ARCH_MIPS 1650 #endif // defined TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « runtime/vm/disassembler_mips.cc ('k') | runtime/vm/intrinsifier_mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698