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

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

Issue 13872020: Inline Float32x4 Getters (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_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 1827 matching lines...) Expand 10 before | Expand all | Expand 10 after
1838 UNIMPLEMENTED(); 1838 UNIMPLEMENTED();
1839 return NULL; 1839 return NULL;
1840 } 1840 }
1841 1841
1842 1842
1843 void BinaryFloat32x4OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1843 void BinaryFloat32x4OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1844 UNIMPLEMENTED(); 1844 UNIMPLEMENTED();
1845 } 1845 }
1846 1846
1847 1847
1848 LocationSummary* Float32x4ShuffleInstr::MakeLocationSummary() const {
1849 UNIMPLEMENTED();
1850 return NULL;
1851 }
1852
1853
1854 void Float32x4ShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1855 UNIMPLEMENTED();
1856 }
1857
1858
1848 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { 1859 LocationSummary* MathSqrtInstr::MakeLocationSummary() const {
1849 UNIMPLEMENTED(); 1860 UNIMPLEMENTED();
1850 return NULL; 1861 return NULL;
1851 } 1862 }
1852 1863
1853 1864
1854 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1865 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1855 UNIMPLEMENTED(); 1866 UNIMPLEMENTED();
1856 } 1867 }
1857 1868
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
2315 &label, 2326 &label,
2316 PcDescriptors::kOther, 2327 PcDescriptors::kOther,
2317 locs()); 2328 locs());
2318 __ Drop(2); // Discard type arguments and receiver. 2329 __ Drop(2); // Discard type arguments and receiver.
2319 } 2330 }
2320 2331
2321 } // namespace dart 2332 } // namespace dart
2322 2333
2323 #endif // defined TARGET_ARCH_ARM 2334 #endif // defined TARGET_ARCH_ARM
2324 2335
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698