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

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
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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 UNIMPLEMENTED(); 582 UNIMPLEMENTED();
583 return NULL; 583 return NULL;
584 } 584 }
585 585
586 586
587 void UnboxDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 587 void UnboxDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
588 UNIMPLEMENTED(); 588 UNIMPLEMENTED();
589 } 589 }
590 590
591 591
592 LocationSummary* BoxFloat32x4Instr::MakeLocationSummary() const {
593 UNIMPLEMENTED();
594 return NULL;
595 }
596
597
598 void BoxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) {
599 UNIMPLEMENTED();
600 }
601
602
603 LocationSummary* UnboxFloat32x4Instr::MakeLocationSummary() const {
604 UNIMPLEMENTED();
605 return NULL;
606 }
607
608
609 void UnboxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) {
610 UNIMPLEMENTED();
611 }
612
613
592 LocationSummary* BinaryDoubleOpInstr::MakeLocationSummary() const { 614 LocationSummary* BinaryDoubleOpInstr::MakeLocationSummary() const {
593 UNIMPLEMENTED(); 615 UNIMPLEMENTED();
594 return NULL; 616 return NULL;
595 } 617 }
596 618
597 619
598 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 620 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
599 UNIMPLEMENTED(); 621 UNIMPLEMENTED();
600 } 622 }
601 623
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 UNIMPLEMENTED(); 736 UNIMPLEMENTED();
715 return NULL; 737 return NULL;
716 } 738 }
717 739
718 740
719 void CheckSmiInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 741 void CheckSmiInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
720 UNIMPLEMENTED(); 742 UNIMPLEMENTED();
721 } 743 }
722 744
723 745
746 LocationSummary* CheckNonSmiInstr::MakeLocationSummary() const {
747 UNIMPLEMENTED();
748 return NULL;
749 }
750
751
752 void CheckNonSmiInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
753 UNIMPLEMENTED();
754 }
755
724 LocationSummary* CheckArrayBoundInstr::MakeLocationSummary() const { 756 LocationSummary* CheckArrayBoundInstr::MakeLocationSummary() const {
725 UNIMPLEMENTED(); 757 UNIMPLEMENTED();
726 return NULL; 758 return NULL;
727 } 759 }
728 760
729 761
730 void CheckArrayBoundInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 762 void CheckArrayBoundInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
731 UNIMPLEMENTED(); 763 UNIMPLEMENTED();
732 } 764 }
733 765
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 949
918 950
919 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 951 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
920 UNIMPLEMENTED(); 952 UNIMPLEMENTED();
921 } 953 }
922 954
923 } // namespace dart 955 } // namespace dart
924 956
925 #endif // defined TARGET_ARCH_MIPS 957 #endif // defined TARGET_ARCH_MIPS
926 958
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698