| 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 1827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |