| 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_MIPS. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS. |
| 6 #if defined(TARGET_ARCH_MIPS) | 6 #if defined(TARGET_ARCH_MIPS) |
| 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 1820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1831 UNIMPLEMENTED(); | 1831 UNIMPLEMENTED(); |
| 1832 return NULL; | 1832 return NULL; |
| 1833 } | 1833 } |
| 1834 | 1834 |
| 1835 | 1835 |
| 1836 void BinaryFloat32x4OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1836 void BinaryFloat32x4OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1837 UNIMPLEMENTED(); | 1837 UNIMPLEMENTED(); |
| 1838 } | 1838 } |
| 1839 | 1839 |
| 1840 | 1840 |
| 1841 LocationSummary* Float32x4ShuffleInstr::MakeLocationSummary() const { |
| 1842 UNIMPLEMENTED(); |
| 1843 return NULL; |
| 1844 } |
| 1845 |
| 1846 |
| 1847 void Float32x4ShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1848 UNIMPLEMENTED(); |
| 1849 } |
| 1850 |
| 1851 |
| 1841 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { | 1852 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { |
| 1842 UNIMPLEMENTED(); | 1853 UNIMPLEMENTED(); |
| 1843 return NULL; | 1854 return NULL; |
| 1844 } | 1855 } |
| 1845 | 1856 |
| 1846 | 1857 |
| 1847 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1858 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1848 UNIMPLEMENTED(); | 1859 UNIMPLEMENTED(); |
| 1849 } | 1860 } |
| 1850 | 1861 |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2356 &label, | 2367 &label, |
| 2357 PcDescriptors::kOther, | 2368 PcDescriptors::kOther, |
| 2358 locs()); | 2369 locs()); |
| 2359 __ Drop(2); // Discard type arguments and receiver. | 2370 __ Drop(2); // Discard type arguments and receiver. |
| 2360 } | 2371 } |
| 2361 | 2372 |
| 2362 } // namespace dart | 2373 } // namespace dart |
| 2363 | 2374 |
| 2364 #endif // defined TARGET_ARCH_MIPS | 2375 #endif // defined TARGET_ARCH_MIPS |
| 2365 | 2376 |
| OLD | NEW |