| 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 1845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1856 UNIMPLEMENTED(); | 1856 UNIMPLEMENTED(); |
| 1857 return NULL; | 1857 return NULL; |
| 1858 } | 1858 } |
| 1859 | 1859 |
| 1860 | 1860 |
| 1861 void BinaryFloat32x4OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1861 void BinaryFloat32x4OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1862 UNIMPLEMENTED(); | 1862 UNIMPLEMENTED(); |
| 1863 } | 1863 } |
| 1864 | 1864 |
| 1865 | 1865 |
| 1866 LocationSummary* Float32x4ShuffleInstr::MakeLocationSummary() const { |
| 1867 UNIMPLEMENTED(); |
| 1868 return NULL; |
| 1869 } |
| 1870 |
| 1871 |
| 1872 void Float32x4ShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1873 UNIMPLEMENTED(); |
| 1874 } |
| 1875 |
| 1876 |
| 1866 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { | 1877 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { |
| 1867 UNIMPLEMENTED(); | 1878 UNIMPLEMENTED(); |
| 1868 return NULL; | 1879 return NULL; |
| 1869 } | 1880 } |
| 1870 | 1881 |
| 1871 | 1882 |
| 1872 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1883 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1873 UNIMPLEMENTED(); | 1884 UNIMPLEMENTED(); |
| 1874 } | 1885 } |
| 1875 | 1886 |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2388 &label, | 2399 &label, |
| 2389 PcDescriptors::kOther, | 2400 PcDescriptors::kOther, |
| 2390 locs()); | 2401 locs()); |
| 2391 __ Drop(2); // Discard type arguments and receiver. | 2402 __ Drop(2); // Discard type arguments and receiver. |
| 2392 } | 2403 } |
| 2393 | 2404 |
| 2394 } // namespace dart | 2405 } // namespace dart |
| 2395 | 2406 |
| 2396 #endif // defined TARGET_ARCH_MIPS | 2407 #endif // defined TARGET_ARCH_MIPS |
| 2397 | 2408 |
| OLD | NEW |