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

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

Issue 13801014: Fix bug in ParallelMoveResolver::EmitSwap: implement swaps of FPU spill slots. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix typo Created 7 years, 8 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
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 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after
1093 void ParallelMoveResolver::Exchange(Register reg, const Address& mem) { 1093 void ParallelMoveResolver::Exchange(Register reg, const Address& mem) {
1094 UNIMPLEMENTED(); 1094 UNIMPLEMENTED();
1095 } 1095 }
1096 1096
1097 1097
1098 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) { 1098 void ParallelMoveResolver::Exchange(const Address& mem1, const Address& mem2) {
1099 UNIMPLEMENTED(); 1099 UNIMPLEMENTED();
1100 } 1100 }
1101 1101
1102 1102
1103 void ParallelMoveResolver::SpillScratch(Register reg) {
1104 UNIMPLEMENTED();
1105 }
1106
1107
1108 void ParallelMoveResolver::RestoreScratch(Register reg) {
1109 UNIMPLEMENTED();
1110 }
1111
1112
1113 void ParallelMoveResolver::SpillFpuScratch(FpuRegister reg) {
1114 UNIMPLEMENTED();
1115 }
1116
1117
1118 void ParallelMoveResolver::RestoreFpuScratch(FpuRegister reg) {
1119 UNIMPLEMENTED();
1120 }
1121
1122
1103 } // namespace dart 1123 } // namespace dart
1104 1124
1105 #endif // defined TARGET_ARCH_MIPS 1125 #endif // defined TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698