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

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

Issue 13936009: Inline Float32x4 constructors (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
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 1887 matching lines...) Expand 10 before | Expand all | Expand 10 after
1898 UNIMPLEMENTED(); 1898 UNIMPLEMENTED();
1899 return NULL; 1899 return NULL;
1900 } 1900 }
1901 1901
1902 1902
1903 void Float32x4ShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1903 void Float32x4ShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1904 UNIMPLEMENTED(); 1904 UNIMPLEMENTED();
1905 } 1905 }
1906 1906
1907 1907
1908 LocationSummary* Float32x4ConstructorInstr::MakeLocationSummary() const {
1909 UNIMPLEMENTED();
1910 return NULL;
1911 }
1912
1913
1914 void Float32x4ConstructorInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1915 UNIMPLEMENTED();
1916 }
1917
1918
1919 LocationSummary* Float32x4ZeroInstr::MakeLocationSummary() const {
1920 UNIMPLEMENTED();
1921 return NULL;
1922 }
1923
1924
1925 void Float32x4ZeroInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1926 UNIMPLEMENTED();
1927 }
1928
1929
1930 LocationSummary* Float32x4SplatInstr::MakeLocationSummary() const {
1931 UNIMPLEMENTED();
1932 return NULL;
1933 }
1934
1935
1936 void Float32x4SplatInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1937 UNIMPLEMENTED();
1938 }
1939
1940
1908 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { 1941 LocationSummary* MathSqrtInstr::MakeLocationSummary() const {
1909 UNIMPLEMENTED(); 1942 UNIMPLEMENTED();
1910 return NULL; 1943 return NULL;
1911 } 1944 }
1912 1945
1913 1946
1914 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1947 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1915 UNIMPLEMENTED(); 1948 UNIMPLEMENTED();
1916 } 1949 }
1917 1950
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
2433 &label, 2466 &label,
2434 PcDescriptors::kOther, 2467 PcDescriptors::kOther,
2435 locs()); 2468 locs());
2436 __ Drop(2); // Discard type arguments and receiver. 2469 __ Drop(2); // Discard type arguments and receiver.
2437 } 2470 }
2438 2471
2439 } // namespace dart 2472 } // namespace dart
2440 2473
2441 #endif // defined TARGET_ARCH_MIPS 2474 #endif // defined TARGET_ARCH_MIPS
2442 2475
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698