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

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, 7 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 1896 matching lines...) Expand 10 before | Expand all | Expand 10 after
1907 UNIMPLEMENTED(); 1907 UNIMPLEMENTED();
1908 return NULL; 1908 return NULL;
1909 } 1909 }
1910 1910
1911 1911
1912 void Float32x4ShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1912 void Float32x4ShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1913 UNIMPLEMENTED(); 1913 UNIMPLEMENTED();
1914 } 1914 }
1915 1915
1916 1916
1917 LocationSummary* Float32x4ConstructorInstr::MakeLocationSummary() const {
1918 UNIMPLEMENTED();
1919 return NULL;
1920 }
1921
1922
1923 void Float32x4ConstructorInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1924 UNIMPLEMENTED();
1925 }
1926
1927
1928 LocationSummary* Float32x4ZeroInstr::MakeLocationSummary() const {
1929 UNIMPLEMENTED();
1930 return NULL;
1931 }
1932
1933
1934 void Float32x4ZeroInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1935 UNIMPLEMENTED();
1936 }
1937
1938
1939 LocationSummary* Float32x4SplatInstr::MakeLocationSummary() const {
1940 UNIMPLEMENTED();
1941 return NULL;
1942 }
1943
1944
1945 void Float32x4SplatInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1946 UNIMPLEMENTED();
1947 }
1948
1949
1917 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { 1950 LocationSummary* MathSqrtInstr::MakeLocationSummary() const {
1918 UNIMPLEMENTED(); 1951 UNIMPLEMENTED();
1919 return NULL; 1952 return NULL;
1920 } 1953 }
1921 1954
1922 1955
1923 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1956 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1924 UNIMPLEMENTED(); 1957 UNIMPLEMENTED();
1925 } 1958 }
1926 1959
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
2465 &label, 2498 &label,
2466 PcDescriptors::kOther, 2499 PcDescriptors::kOther,
2467 locs()); 2500 locs());
2468 __ Drop(2); // Discard type arguments and receiver. 2501 __ Drop(2); // Discard type arguments and receiver.
2469 } 2502 }
2470 2503
2471 } // namespace dart 2504 } // namespace dart
2472 2505
2473 #endif // defined TARGET_ARCH_MIPS 2506 #endif // defined TARGET_ARCH_MIPS
2474 2507
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698