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

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

Issue 13818006: Unboxed load/store indexed of Float32x4 (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 905 matching lines...) Expand 10 before | Expand all | Expand 10 after
916 UNIMPLEMENTED(); 916 UNIMPLEMENTED();
917 return NULL; 917 return NULL;
918 } 918 }
919 919
920 920
921 void UnboxDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 921 void UnboxDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
922 UNIMPLEMENTED(); 922 UNIMPLEMENTED();
923 } 923 }
924 924
925 925
926 LocationSummary* BoxFloat32x4Instr::MakeLocationSummary() const {
927 UNIMPLEMENTED();
928 return NULL;
929 }
930
931
932 void BoxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) {
933 UNIMPLEMENTED();
934 }
935
936
937 LocationSummary* UnboxFloat32x4Instr::MakeLocationSummary() const {
938 UNIMPLEMENTED();
939 return NULL;
940 }
941
942
943 void UnboxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) {
944 UNIMPLEMENTED();
945 }
946
947
926 LocationSummary* BinaryDoubleOpInstr::MakeLocationSummary() const { 948 LocationSummary* BinaryDoubleOpInstr::MakeLocationSummary() const {
927 UNIMPLEMENTED(); 949 UNIMPLEMENTED();
928 return NULL; 950 return NULL;
929 } 951 }
930 952
931 953
932 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 954 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
933 UNIMPLEMENTED(); 955 UNIMPLEMENTED();
934 } 956 }
935 957
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
1381 1403
1382 1404
1383 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1405 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1384 UNIMPLEMENTED(); 1406 UNIMPLEMENTED();
1385 } 1407 }
1386 1408
1387 } // namespace dart 1409 } // namespace dart
1388 1410
1389 #endif // defined TARGET_ARCH_MIPS 1411 #endif // defined TARGET_ARCH_MIPS
1390 1412
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