| OLD | NEW |
| 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 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1335 | 1335 |
| 1336 | 1336 |
| 1337 void FlowGraphCompiler::EmitDoubleCompareBool(Condition true_condition, | 1337 void FlowGraphCompiler::EmitDoubleCompareBool(Condition true_condition, |
| 1338 FpuRegister left, | 1338 FpuRegister left, |
| 1339 FpuRegister right, | 1339 FpuRegister right, |
| 1340 Register result) { | 1340 Register result) { |
| 1341 UNIMPLEMENTED(); | 1341 UNIMPLEMENTED(); |
| 1342 } | 1342 } |
| 1343 | 1343 |
| 1344 | 1344 |
| 1345 Condition FlowGraphCompiler::FlipCondition(Condition condition) { | |
| 1346 UNIMPLEMENTED(); | |
| 1347 return condition; | |
| 1348 } | |
| 1349 | |
| 1350 | |
| 1351 bool FlowGraphCompiler::EvaluateCondition(Condition condition, | |
| 1352 intptr_t left, | |
| 1353 intptr_t right) { | |
| 1354 UNIMPLEMENTED(); | |
| 1355 return false; | |
| 1356 } | |
| 1357 | |
| 1358 | |
| 1359 FieldAddress FlowGraphCompiler::ElementAddressForIntIndex(intptr_t cid, | 1345 FieldAddress FlowGraphCompiler::ElementAddressForIntIndex(intptr_t cid, |
| 1360 intptr_t index_scale, | 1346 intptr_t index_scale, |
| 1361 Register array, | 1347 Register array, |
| 1362 intptr_t index) { | 1348 intptr_t index) { |
| 1363 UNIMPLEMENTED(); | 1349 UNIMPLEMENTED(); |
| 1364 return FieldAddress(array, index); | 1350 return FieldAddress(array, index); |
| 1365 } | 1351 } |
| 1366 | 1352 |
| 1367 | 1353 |
| 1368 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid, | 1354 FieldAddress FlowGraphCompiler::ElementAddressForRegIndex(intptr_t cid, |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1587 __ AddImmediate(SP, kDoubleSize); | 1573 __ AddImmediate(SP, kDoubleSize); |
| 1588 } | 1574 } |
| 1589 | 1575 |
| 1590 | 1576 |
| 1591 #undef __ | 1577 #undef __ |
| 1592 | 1578 |
| 1593 | 1579 |
| 1594 } // namespace dart | 1580 } // namespace dart |
| 1595 | 1581 |
| 1596 #endif // defined TARGET_ARCH_MIPS | 1582 #endif // defined TARGET_ARCH_MIPS |
| OLD | NEW |