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

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

Issue 13867006: Inline binary Float32x4 ops. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/intermediate_language.h" 8 #include "vm/intermediate_language.h"
9 9
10 #include "lib/error.h" 10 #include "lib/error.h"
(...skipping 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after
1326 UNIMPLEMENTED(); 1326 UNIMPLEMENTED();
1327 return NULL; 1327 return NULL;
1328 } 1328 }
1329 1329
1330 1330
1331 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1331 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1332 UNIMPLEMENTED(); 1332 UNIMPLEMENTED();
1333 } 1333 }
1334 1334
1335 1335
1336 LocationSummary* BinaryFloat32x4OpInstr::MakeLocationSummary() const {
1337 UNIMPLEMENTED();
1338 return NULL;
1339 }
1340
1341
1342 void BinaryFloat32x4OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1343 UNIMPLEMENTED();
1344 }
1345
1346
1336 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { 1347 LocationSummary* MathSqrtInstr::MakeLocationSummary() const {
1337 UNIMPLEMENTED(); 1348 UNIMPLEMENTED();
1338 return NULL; 1349 return NULL;
1339 } 1350 }
1340 1351
1341 1352
1342 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1353 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1343 UNIMPLEMENTED(); 1354 UNIMPLEMENTED();
1344 } 1355 }
1345 1356
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
1835 1846
1836 1847
1837 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1848 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1838 UNIMPLEMENTED(); 1849 UNIMPLEMENTED();
1839 } 1850 }
1840 1851
1841 } // namespace dart 1852 } // namespace dart
1842 1853
1843 #endif // defined TARGET_ARCH_MIPS 1854 #endif // defined TARGET_ARCH_MIPS
1844 1855
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698