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

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

Issue 2780713003: MIPS[64]: Support for some SIMD operations (3) (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 2094 matching lines...) Expand 10 before | Expand all | Expand 10 after
2105 void InstructionSelector::VisitI32x4ExtractLane(Node* node) { UNIMPLEMENTED(); } 2105 void InstructionSelector::VisitI32x4ExtractLane(Node* node) { UNIMPLEMENTED(); }
2106 2106
2107 void InstructionSelector::VisitI32x4ReplaceLane(Node* node) { UNIMPLEMENTED(); } 2107 void InstructionSelector::VisitI32x4ReplaceLane(Node* node) { UNIMPLEMENTED(); }
2108 2108
2109 void InstructionSelector::VisitI32x4Add(Node* node) { UNIMPLEMENTED(); } 2109 void InstructionSelector::VisitI32x4Add(Node* node) { UNIMPLEMENTED(); }
2110 2110
2111 void InstructionSelector::VisitI32x4Sub(Node* node) { UNIMPLEMENTED(); } 2111 void InstructionSelector::VisitI32x4Sub(Node* node) { UNIMPLEMENTED(); }
2112 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_IA32 && 2112 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_IA32 &&
2113 // !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_MIPS64 2113 // !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_MIPS64
2114 2114
2115 #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM 2115 #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && \
2116 !V8_TARGET_ARCH_MIPS64
2116 void InstructionSelector::VisitI32x4Shl(Node* node) { UNIMPLEMENTED(); } 2117 void InstructionSelector::VisitI32x4Shl(Node* node) { UNIMPLEMENTED(); }
2117 2118
2118 void InstructionSelector::VisitI32x4ShrS(Node* node) { UNIMPLEMENTED(); } 2119 void InstructionSelector::VisitI32x4ShrS(Node* node) { UNIMPLEMENTED(); }
2119 2120
2120 void InstructionSelector::VisitI32x4Mul(Node* node) { UNIMPLEMENTED(); } 2121 void InstructionSelector::VisitI32x4Mul(Node* node) { UNIMPLEMENTED(); }
2121 2122
2122 void InstructionSelector::VisitI32x4MaxS(Node* node) { UNIMPLEMENTED(); } 2123 void InstructionSelector::VisitI32x4MaxS(Node* node) { UNIMPLEMENTED(); }
2123 2124
2124 void InstructionSelector::VisitI32x4MinS(Node* node) { UNIMPLEMENTED(); } 2125 void InstructionSelector::VisitI32x4MinS(Node* node) { UNIMPLEMENTED(); }
2125 2126
2126 void InstructionSelector::VisitI32x4Eq(Node* node) { UNIMPLEMENTED(); } 2127 void InstructionSelector::VisitI32x4Eq(Node* node) { UNIMPLEMENTED(); }
2127 2128
2128 void InstructionSelector::VisitI32x4Ne(Node* node) { UNIMPLEMENTED(); } 2129 void InstructionSelector::VisitI32x4Ne(Node* node) { UNIMPLEMENTED(); }
2129 2130
2130 void InstructionSelector::VisitI32x4MinU(Node* node) { UNIMPLEMENTED(); } 2131 void InstructionSelector::VisitI32x4MinU(Node* node) { UNIMPLEMENTED(); }
2131 2132
2132 void InstructionSelector::VisitI32x4MaxU(Node* node) { UNIMPLEMENTED(); } 2133 void InstructionSelector::VisitI32x4MaxU(Node* node) { UNIMPLEMENTED(); }
2133 2134
2134 void InstructionSelector::VisitI32x4ShrU(Node* node) { UNIMPLEMENTED(); } 2135 void InstructionSelector::VisitI32x4ShrU(Node* node) { UNIMPLEMENTED(); }
2135 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM 2136 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS &&
2137 // !V8_TARGET_ARCH_MIPS64
2136 2138
2137 #if !V8_TARGET_ARCH_ARM 2139 #if !V8_TARGET_ARCH_ARM
2138 void InstructionSelector::VisitI32x4SConvertF32x4(Node* node) { 2140 void InstructionSelector::VisitI32x4SConvertF32x4(Node* node) {
2139 UNIMPLEMENTED(); 2141 UNIMPLEMENTED();
2140 } 2142 }
2141 2143
2142 void InstructionSelector::VisitI32x4Neg(Node* node) { UNIMPLEMENTED(); } 2144 void InstructionSelector::VisitI32x4Neg(Node* node) { UNIMPLEMENTED(); }
2143 2145
2144 void InstructionSelector::VisitI32x4LtS(Node* node) { UNIMPLEMENTED(); } 2146 void InstructionSelector::VisitI32x4LtS(Node* node) { UNIMPLEMENTED(); }
2145 2147
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
2279 void InstructionSelector::VisitS128Zero(Node* node) { UNIMPLEMENTED(); } 2281 void InstructionSelector::VisitS128Zero(Node* node) { UNIMPLEMENTED(); }
2280 2282
2281 void InstructionSelector::VisitS1x4Zero(Node* node) { UNIMPLEMENTED(); } 2283 void InstructionSelector::VisitS1x4Zero(Node* node) { UNIMPLEMENTED(); }
2282 2284
2283 void InstructionSelector::VisitS1x8Zero(Node* node) { UNIMPLEMENTED(); } 2285 void InstructionSelector::VisitS1x8Zero(Node* node) { UNIMPLEMENTED(); }
2284 2286
2285 void InstructionSelector::VisitS1x16Zero(Node* node) { UNIMPLEMENTED(); } 2287 void InstructionSelector::VisitS1x16Zero(Node* node) { UNIMPLEMENTED(); }
2286 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && 2288 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS &&
2287 // !V8_TARGET_ARCH_MIPS64 2289 // !V8_TARGET_ARCH_MIPS64
2288 2290
2289 #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM 2291 #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && \
2292 !V8_TARGET_ARCH_MIPS64
2290 void InstructionSelector::VisitS32x4Select(Node* node) { UNIMPLEMENTED(); } 2293 void InstructionSelector::VisitS32x4Select(Node* node) { UNIMPLEMENTED(); }
2291 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM 2294 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS &&
2295 // !V8_TARGET_ARCH_MIPS64
2292 2296
2293 #if !V8_TARGET_ARCH_ARM 2297 #if !V8_TARGET_ARCH_ARM
2294 void InstructionSelector::VisitS16x8Select(Node* node) { UNIMPLEMENTED(); } 2298 void InstructionSelector::VisitS16x8Select(Node* node) { UNIMPLEMENTED(); }
2295 2299
2296 void InstructionSelector::VisitS8x16Select(Node* node) { UNIMPLEMENTED(); } 2300 void InstructionSelector::VisitS8x16Select(Node* node) { UNIMPLEMENTED(); }
2297 2301
2298 void InstructionSelector::VisitS1x4And(Node* node) { UNIMPLEMENTED(); } 2302 void InstructionSelector::VisitS1x4And(Node* node) { UNIMPLEMENTED(); }
2299 2303
2300 void InstructionSelector::VisitS1x4Or(Node* node) { UNIMPLEMENTED(); } 2304 void InstructionSelector::VisitS1x4Or(Node* node) { UNIMPLEMENTED(); }
2301 2305
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
2704 return new (instruction_zone()) FrameStateDescriptor( 2708 return new (instruction_zone()) FrameStateDescriptor(
2705 instruction_zone(), state_info.type(), state_info.bailout_id(), 2709 instruction_zone(), state_info.type(), state_info.bailout_id(),
2706 state_info.state_combine(), parameters, locals, stack, 2710 state_info.state_combine(), parameters, locals, stack,
2707 state_info.shared_info(), outer_state); 2711 state_info.shared_info(), outer_state);
2708 } 2712 }
2709 2713
2710 2714
2711 } // namespace compiler 2715 } // namespace compiler
2712 } // namespace internal 2716 } // namespace internal
2713 } // namespace v8 2717 } // 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