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

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
« 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 1836 matching lines...) Expand 10 before | Expand all | Expand 10 after
1847 UNIMPLEMENTED(); 1847 UNIMPLEMENTED();
1848 return NULL; 1848 return NULL;
1849 } 1849 }
1850 1850
1851 1851
1852 void BinaryFloat32x4OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1852 void BinaryFloat32x4OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1853 UNIMPLEMENTED(); 1853 UNIMPLEMENTED();
1854 } 1854 }
1855 1855
1856 1856
1857 LocationSummary* Float32x4ShuffleInstr::MakeLocationSummary() const {
1858 UNIMPLEMENTED();
1859 return NULL;
1860 }
1861
1862
1863 void Float32x4ShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1864 UNIMPLEMENTED();
1865 }
1866
1867
1857 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { 1868 LocationSummary* MathSqrtInstr::MakeLocationSummary() const {
1858 UNIMPLEMENTED(); 1869 UNIMPLEMENTED();
1859 return NULL; 1870 return NULL;
1860 } 1871 }
1861 1872
1862 1873
1863 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1874 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1864 UNIMPLEMENTED(); 1875 UNIMPLEMENTED();
1865 } 1876 }
1866 1877
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
2347 &label, 2358 &label,
2348 PcDescriptors::kOther, 2359 PcDescriptors::kOther,
2349 locs()); 2360 locs());
2350 __ Drop(2); // Discard type arguments and receiver. 2361 __ Drop(2); // Discard type arguments and receiver.
2351 } 2362 }
2352 2363
2353 } // namespace dart 2364 } // namespace dart
2354 2365
2355 #endif // defined TARGET_ARCH_ARM 2366 #endif // defined TARGET_ARCH_ARM
2356 2367
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