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

Side by Side Diff: src/compiler/instruction-selector.cc

Issue 2780503002: MIPS[64]: Support for some SIMD operations (2) (Closed)
Patch Set: rebased Created 3 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
« no previous file with comments | « no previous file | src/compiler/mips/code-generator-mips.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/compiler/instruction-selector.h" 5 #include "src/compiler/instruction-selector.h"
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "src/assembler-inl.h" 9 #include "src/assembler-inl.h"
10 #include "src/base/adapters.h" 10 #include "src/base/adapters.h"
(...skipping 2028 matching lines...) Expand 10 before | Expand all | Expand 10 after
2039 2039
2040 void InstructionSelector::VisitInt32PairMul(Node* node) { UNIMPLEMENTED(); } 2040 void InstructionSelector::VisitInt32PairMul(Node* node) { UNIMPLEMENTED(); }
2041 2041
2042 void InstructionSelector::VisitWord32PairShl(Node* node) { UNIMPLEMENTED(); } 2042 void InstructionSelector::VisitWord32PairShl(Node* node) { UNIMPLEMENTED(); }
2043 2043
2044 void InstructionSelector::VisitWord32PairShr(Node* node) { UNIMPLEMENTED(); } 2044 void InstructionSelector::VisitWord32PairShr(Node* node) { UNIMPLEMENTED(); }
2045 2045
2046 void InstructionSelector::VisitWord32PairSar(Node* node) { UNIMPLEMENTED(); } 2046 void InstructionSelector::VisitWord32PairSar(Node* node) { UNIMPLEMENTED(); }
2047 #endif // V8_TARGET_ARCH_64_BIT 2047 #endif // V8_TARGET_ARCH_64_BIT
2048 2048
2049 #if !V8_TARGET_ARCH_ARM 2049 #if !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_MIPS64
2050 void InstructionSelector::VisitF32x4Splat(Node* node) { UNIMPLEMENTED(); } 2050 void InstructionSelector::VisitF32x4Splat(Node* node) { UNIMPLEMENTED(); }
2051 2051
2052 void InstructionSelector::VisitF32x4ExtractLane(Node* node) { UNIMPLEMENTED(); } 2052 void InstructionSelector::VisitF32x4ExtractLane(Node* node) { UNIMPLEMENTED(); }
2053 2053
2054 void InstructionSelector::VisitF32x4ReplaceLane(Node* node) { UNIMPLEMENTED(); } 2054 void InstructionSelector::VisitF32x4ReplaceLane(Node* node) { UNIMPLEMENTED(); }
2055 2055
2056 void InstructionSelector::VisitF32x4SConvertI32x4(Node* node) { 2056 void InstructionSelector::VisitF32x4SConvertI32x4(Node* node) {
2057 UNIMPLEMENTED(); 2057 UNIMPLEMENTED();
2058 } 2058 }
2059 2059
2060 void InstructionSelector::VisitF32x4UConvertI32x4(Node* node) { 2060 void InstructionSelector::VisitF32x4UConvertI32x4(Node* node) {
2061 UNIMPLEMENTED(); 2061 UNIMPLEMENTED();
2062 } 2062 }
2063 #endif // !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_MIPS64
2063 2064
2065 #if !V8_TARGET_ARCH_ARM
2064 void InstructionSelector::VisitF32x4Abs(Node* node) { UNIMPLEMENTED(); } 2066 void InstructionSelector::VisitF32x4Abs(Node* node) { UNIMPLEMENTED(); }
2065 2067
2066 void InstructionSelector::VisitF32x4Neg(Node* node) { UNIMPLEMENTED(); } 2068 void InstructionSelector::VisitF32x4Neg(Node* node) { UNIMPLEMENTED(); }
2067 2069
2068 void InstructionSelector::VisitF32x4RecipSqrtApprox(Node* node) { 2070 void InstructionSelector::VisitF32x4RecipSqrtApprox(Node* node) {
2069 UNIMPLEMENTED(); 2071 UNIMPLEMENTED();
2070 } 2072 }
2071 2073
2072 void InstructionSelector::VisitF32x4RecipSqrtRefine(Node* node) { 2074 void InstructionSelector::VisitF32x4RecipSqrtRefine(Node* node) {
2073 UNIMPLEMENTED(); 2075 UNIMPLEMENTED();
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
2702 return new (instruction_zone()) FrameStateDescriptor( 2704 return new (instruction_zone()) FrameStateDescriptor(
2703 instruction_zone(), state_info.type(), state_info.bailout_id(), 2705 instruction_zone(), state_info.type(), state_info.bailout_id(),
2704 state_info.state_combine(), parameters, locals, stack, 2706 state_info.state_combine(), parameters, locals, stack,
2705 state_info.shared_info(), outer_state); 2707 state_info.shared_info(), outer_state);
2706 } 2708 }
2707 2709
2708 2710
2709 } // namespace compiler 2711 } // namespace compiler
2710 } // namespace internal 2712 } // namespace internal
2711 } // namespace v8 2713 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | src/compiler/mips/code-generator-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698