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

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

Issue 15692005: Fix a bug in optimized ARM code. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 7 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 "lib/error.h" 10 #include "lib/error.h"
(...skipping 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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