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

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

Issue 13872020: Inline Float32x4 Getters (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
« no previous file with comments | « runtime/vm/intermediate_language_ia32.cc ('k') | runtime/vm/intermediate_language_x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_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
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
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
OLDNEW
« no previous file with comments | « runtime/vm/intermediate_language_ia32.cc ('k') | runtime/vm/intermediate_language_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698