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

Side by Side Diff: runtime/vm/intermediate_language_arm.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
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | runtime/vm/intermediate_language_ia32.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_ARM. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM.
6 #if defined(TARGET_ARCH_ARM) 6 #if defined(TARGET_ARCH_ARM)
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 1303 matching lines...) Expand 10 before | Expand all | Expand 10 after
1314 UNIMPLEMENTED(); 1314 UNIMPLEMENTED();
1315 return NULL; 1315 return NULL;
1316 } 1316 }
1317 1317
1318 1318
1319 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1319 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1320 UNIMPLEMENTED(); 1320 UNIMPLEMENTED();
1321 } 1321 }
1322 1322
1323 1323
1324 LocationSummary* BinaryFloat32x4OpInstr::MakeLocationSummary() const {
1325 UNIMPLEMENTED();
1326 return NULL;
1327 }
1328
1329
1330 void BinaryFloat32x4OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1331 UNIMPLEMENTED();
1332 }
1333
1334
1324 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { 1335 LocationSummary* MathSqrtInstr::MakeLocationSummary() const {
1325 UNIMPLEMENTED(); 1336 UNIMPLEMENTED();
1326 return NULL; 1337 return NULL;
1327 } 1338 }
1328 1339
1329 1340
1330 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1341 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1331 UNIMPLEMENTED(); 1342 UNIMPLEMENTED();
1332 } 1343 }
1333 1344
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
1801 1812
1802 1813
1803 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1814 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1804 UNIMPLEMENTED(); 1815 UNIMPLEMENTED();
1805 } 1816 }
1806 1817
1807 } // namespace dart 1818 } // namespace dart
1808 1819
1809 #endif // defined TARGET_ARCH_ARM 1820 #endif // defined TARGET_ARCH_ARM
1810 1821
OLDNEW
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | runtime/vm/intermediate_language_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698