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

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

Issue 13936009: Inline Float32x4 constructors (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 1847 matching lines...) Expand 10 before | Expand all | Expand 10 after
1858 UNIMPLEMENTED(); 1858 UNIMPLEMENTED();
1859 return NULL; 1859 return NULL;
1860 } 1860 }
1861 1861
1862 1862
1863 void Float32x4ShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1863 void Float32x4ShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1864 UNIMPLEMENTED(); 1864 UNIMPLEMENTED();
1865 } 1865 }
1866 1866
1867 1867
1868 LocationSummary* Float32x4ConstructorInstr::MakeLocationSummary() const {
1869 UNIMPLEMENTED();
1870 return NULL;
1871 }
1872
1873
1874 void Float32x4ConstructorInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1875 UNIMPLEMENTED();
srdjan 2013/04/25 20:19:25 bad indent
Cutch 2013/04/25 20:52:07 Done.
1876 }
1877
1878
1879 LocationSummary* Float32x4ZeroInstr::MakeLocationSummary() const {
1880 UNIMPLEMENTED();
1881 return NULL;
1882 }
1883
1884
1885 void Float32x4ZeroInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1886 UNIMPLEMENTED();
1887 }
1888
1889
1890 LocationSummary* Float32x4SplatInstr::MakeLocationSummary() const {
1891 UNIMPLEMENTED();
1892 return NULL;
1893 }
1894
1895
1896 void Float32x4SplatInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1897 UNIMPLEMENTED();
1898 }
1899
1900
1868 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { 1901 LocationSummary* MathSqrtInstr::MakeLocationSummary() const {
1869 UNIMPLEMENTED(); 1902 UNIMPLEMENTED();
1870 return NULL; 1903 return NULL;
1871 } 1904 }
1872 1905
1873 1906
1874 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1907 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1875 UNIMPLEMENTED(); 1908 UNIMPLEMENTED();
1876 } 1909 }
1877 1910
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
2358 &label, 2391 &label,
2359 PcDescriptors::kOther, 2392 PcDescriptors::kOther,
2360 locs()); 2393 locs());
2361 __ Drop(2); // Discard type arguments and receiver. 2394 __ Drop(2); // Discard type arguments and receiver.
2362 } 2395 }
2363 2396
2364 } // namespace dart 2397 } // namespace dart
2365 2398
2366 #endif // defined TARGET_ARCH_ARM 2399 #endif // defined TARGET_ARCH_ARM
2367 2400
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698