| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |