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

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

Issue 2801183002: [WASM SIMD] Implement primitive shuffles. (Closed)
Patch Set: Add comments, remove S64x2Reverse, as it's redundant. 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
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 1652 matching lines...) Expand 10 before | Expand all | Expand 10 after
1663 case IrOpcode::kS128Zero: 1663 case IrOpcode::kS128Zero:
1664 return MarkAsSimd128(node), VisitS128Zero(node); 1664 return MarkAsSimd128(node), VisitS128Zero(node);
1665 case IrOpcode::kS128And: 1665 case IrOpcode::kS128And:
1666 return MarkAsSimd128(node), VisitS128And(node); 1666 return MarkAsSimd128(node), VisitS128And(node);
1667 case IrOpcode::kS128Or: 1667 case IrOpcode::kS128Or:
1668 return MarkAsSimd128(node), VisitS128Or(node); 1668 return MarkAsSimd128(node), VisitS128Or(node);
1669 case IrOpcode::kS128Xor: 1669 case IrOpcode::kS128Xor:
1670 return MarkAsSimd128(node), VisitS128Xor(node); 1670 return MarkAsSimd128(node), VisitS128Xor(node);
1671 case IrOpcode::kS128Not: 1671 case IrOpcode::kS128Not:
1672 return MarkAsSimd128(node), VisitS128Not(node); 1672 return MarkAsSimd128(node), VisitS128Not(node);
1673 case IrOpcode::kS32x4ZipLeft:
1674 return MarkAsSimd128(node), VisitS32x4ZipLeft(node);
1675 case IrOpcode::kS32x4ZipRight:
1676 return MarkAsSimd128(node), VisitS32x4ZipRight(node);
1677 case IrOpcode::kS32x4UnzipLeft:
1678 return MarkAsSimd128(node), VisitS32x4UnzipLeft(node);
1679 case IrOpcode::kS32x4UnzipRight:
1680 return MarkAsSimd128(node), VisitS32x4UnzipRight(node);
1681 case IrOpcode::kS32x4TransposeLeft:
1682 return MarkAsSimd128(node), VisitS32x4TransposeLeft(node);
1683 case IrOpcode::kS32x4TransposeRight:
1684 return MarkAsSimd128(node), VisitS32x4TransposeRight(node);
1673 case IrOpcode::kS32x4Select: 1685 case IrOpcode::kS32x4Select:
1674 return MarkAsSimd128(node), VisitS32x4Select(node); 1686 return MarkAsSimd128(node), VisitS32x4Select(node);
1687 case IrOpcode::kS16x8ZipLeft:
1688 return MarkAsSimd128(node), VisitS16x8ZipLeft(node);
1689 case IrOpcode::kS16x8ZipRight:
1690 return MarkAsSimd128(node), VisitS16x8ZipRight(node);
1691 case IrOpcode::kS16x8UnzipLeft:
1692 return MarkAsSimd128(node), VisitS16x8UnzipLeft(node);
1693 case IrOpcode::kS16x8UnzipRight:
1694 return MarkAsSimd128(node), VisitS16x8UnzipRight(node);
1695 case IrOpcode::kS16x8TransposeLeft:
1696 return MarkAsSimd128(node), VisitS16x8TransposeLeft(node);
1697 case IrOpcode::kS16x8TransposeRight:
1698 return MarkAsSimd128(node), VisitS16x8TransposeRight(node);
1675 case IrOpcode::kS16x8Select: 1699 case IrOpcode::kS16x8Select:
1676 return MarkAsSimd128(node), VisitS16x8Select(node); 1700 return MarkAsSimd128(node), VisitS16x8Select(node);
1701 case IrOpcode::kS8x16ZipLeft:
1702 return MarkAsSimd128(node), VisitS8x16ZipLeft(node);
1703 case IrOpcode::kS8x16ZipRight:
1704 return MarkAsSimd128(node), VisitS8x16ZipRight(node);
1705 case IrOpcode::kS8x16UnzipLeft:
1706 return MarkAsSimd128(node), VisitS8x16UnzipLeft(node);
1707 case IrOpcode::kS8x16UnzipRight:
1708 return MarkAsSimd128(node), VisitS8x16UnzipRight(node);
1709 case IrOpcode::kS8x16TransposeLeft:
1710 return MarkAsSimd128(node), VisitS8x16TransposeLeft(node);
1711 case IrOpcode::kS8x16TransposeRight:
1712 return MarkAsSimd128(node), VisitS8x16TransposeRight(node);
1677 case IrOpcode::kS8x16Select: 1713 case IrOpcode::kS8x16Select:
1678 return MarkAsSimd128(node), VisitS8x16Select(node); 1714 return MarkAsSimd128(node), VisitS8x16Select(node);
1715 case IrOpcode::kS8x16Concat:
1716 return MarkAsSimd128(node), VisitS8x16Concat(node);
1717 case IrOpcode::kS32x2Reverse:
1718 return MarkAsSimd128(node), VisitS32x2Reverse(node);
1719 case IrOpcode::kS16x4Reverse:
1720 return MarkAsSimd128(node), VisitS16x4Reverse(node);
1721 case IrOpcode::kS16x2Reverse:
1722 return MarkAsSimd128(node), VisitS16x2Reverse(node);
1723 case IrOpcode::kS8x8Reverse:
1724 return MarkAsSimd128(node), VisitS8x8Reverse(node);
1725 case IrOpcode::kS8x4Reverse:
1726 return MarkAsSimd128(node), VisitS8x4Reverse(node);
1727 case IrOpcode::kS8x2Reverse:
1728 return MarkAsSimd128(node), VisitS8x2Reverse(node);
1679 case IrOpcode::kS1x4Zero: 1729 case IrOpcode::kS1x4Zero:
1680 return MarkAsSimd1x4(node), VisitS1x4Zero(node); 1730 return MarkAsSimd1x4(node), VisitS1x4Zero(node);
1681 case IrOpcode::kS1x4And: 1731 case IrOpcode::kS1x4And:
1682 return MarkAsSimd1x4(node), VisitS1x4And(node); 1732 return MarkAsSimd1x4(node), VisitS1x4And(node);
1683 case IrOpcode::kS1x4Or: 1733 case IrOpcode::kS1x4Or:
1684 return MarkAsSimd1x4(node), VisitS1x4Or(node); 1734 return MarkAsSimd1x4(node), VisitS1x4Or(node);
1685 case IrOpcode::kS1x4Xor: 1735 case IrOpcode::kS1x4Xor:
1686 return MarkAsSimd1x4(node), VisitS1x4Xor(node); 1736 return MarkAsSimd1x4(node), VisitS1x4Xor(node);
1687 case IrOpcode::kS1x4Not: 1737 case IrOpcode::kS1x4Not:
1688 return MarkAsSimd1x4(node), VisitS1x4Not(node); 1738 return MarkAsSimd1x4(node), VisitS1x4Not(node);
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
2284 2334
2285 void InstructionSelector::VisitS1x16Zero(Node* node) { UNIMPLEMENTED(); } 2335 void InstructionSelector::VisitS1x16Zero(Node* node) { UNIMPLEMENTED(); }
2286 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && 2336 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS &&
2287 // !V8_TARGET_ARCH_MIPS64 2337 // !V8_TARGET_ARCH_MIPS64
2288 2338
2289 #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM 2339 #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM
2290 void InstructionSelector::VisitS32x4Select(Node* node) { UNIMPLEMENTED(); } 2340 void InstructionSelector::VisitS32x4Select(Node* node) { UNIMPLEMENTED(); }
2291 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM 2341 #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM
2292 2342
2293 #if !V8_TARGET_ARCH_ARM 2343 #if !V8_TARGET_ARCH_ARM
2344 void InstructionSelector::VisitS32x4ZipLeft(Node* node) { UNIMPLEMENTED(); }
2345
2346 void InstructionSelector::VisitS32x4ZipRight(Node* node) { UNIMPLEMENTED(); }
2347
2348 void InstructionSelector::VisitS32x4UnzipLeft(Node* node) { UNIMPLEMENTED(); }
2349
2350 void InstructionSelector::VisitS32x4UnzipRight(Node* node) { UNIMPLEMENTED(); }
2351
2352 void InstructionSelector::VisitS32x4TransposeLeft(Node* node) {
2353 UNIMPLEMENTED();
2354 }
2355
2356 void InstructionSelector::VisitS32x4TransposeRight(Node* node) {
2357 UNIMPLEMENTED();
2358 }
2359
2360 void InstructionSelector::VisitS16x8ZipLeft(Node* node) { UNIMPLEMENTED(); }
2361
2362 void InstructionSelector::VisitS16x8ZipRight(Node* node) { UNIMPLEMENTED(); }
2363
2364 void InstructionSelector::VisitS16x8UnzipLeft(Node* node) { UNIMPLEMENTED(); }
2365
2366 void InstructionSelector::VisitS16x8UnzipRight(Node* node) { UNIMPLEMENTED(); }
2367
2368 void InstructionSelector::VisitS16x8TransposeLeft(Node* node) {
2369 UNIMPLEMENTED();
2370 }
2371
2372 void InstructionSelector::VisitS16x8TransposeRight(Node* node) {
2373 UNIMPLEMENTED();
2374 }
2375
2294 void InstructionSelector::VisitS16x8Select(Node* node) { UNIMPLEMENTED(); } 2376 void InstructionSelector::VisitS16x8Select(Node* node) { UNIMPLEMENTED(); }
2295 2377
2378 void InstructionSelector::VisitS8x16ZipLeft(Node* node) { UNIMPLEMENTED(); }
2379
2380 void InstructionSelector::VisitS8x16ZipRight(Node* node) { UNIMPLEMENTED(); }
2381
2382 void InstructionSelector::VisitS8x16UnzipLeft(Node* node) { UNIMPLEMENTED(); }
2383
2384 void InstructionSelector::VisitS8x16UnzipRight(Node* node) { UNIMPLEMENTED(); }
2385
2386 void InstructionSelector::VisitS8x16TransposeLeft(Node* node) {
2387 UNIMPLEMENTED();
2388 }
2389
2390 void InstructionSelector::VisitS8x16TransposeRight(Node* node) {
2391 UNIMPLEMENTED();
2392 }
2393
2296 void InstructionSelector::VisitS8x16Select(Node* node) { UNIMPLEMENTED(); } 2394 void InstructionSelector::VisitS8x16Select(Node* node) { UNIMPLEMENTED(); }
2297 2395
2396 void InstructionSelector::VisitS8x16Concat(Node* node) { UNIMPLEMENTED(); }
2397
2398 void InstructionSelector::VisitS32x2Reverse(Node* node) { UNIMPLEMENTED(); }
2399
2400 void InstructionSelector::VisitS16x4Reverse(Node* node) { UNIMPLEMENTED(); }
2401
2402 void InstructionSelector::VisitS16x2Reverse(Node* node) { UNIMPLEMENTED(); }
2403
2404 void InstructionSelector::VisitS8x8Reverse(Node* node) { UNIMPLEMENTED(); }
2405
2406 void InstructionSelector::VisitS8x4Reverse(Node* node) { UNIMPLEMENTED(); }
2407
2408 void InstructionSelector::VisitS8x2Reverse(Node* node) { UNIMPLEMENTED(); }
2409
2298 void InstructionSelector::VisitS1x4And(Node* node) { UNIMPLEMENTED(); } 2410 void InstructionSelector::VisitS1x4And(Node* node) { UNIMPLEMENTED(); }
2299 2411
2300 void InstructionSelector::VisitS1x4Or(Node* node) { UNIMPLEMENTED(); } 2412 void InstructionSelector::VisitS1x4Or(Node* node) { UNIMPLEMENTED(); }
2301 2413
2302 void InstructionSelector::VisitS1x4Xor(Node* node) { UNIMPLEMENTED(); } 2414 void InstructionSelector::VisitS1x4Xor(Node* node) { UNIMPLEMENTED(); }
2303 2415
2304 void InstructionSelector::VisitS1x4Not(Node* node) { UNIMPLEMENTED(); } 2416 void InstructionSelector::VisitS1x4Not(Node* node) { UNIMPLEMENTED(); }
2305 2417
2306 void InstructionSelector::VisitS1x4AnyTrue(Node* node) { UNIMPLEMENTED(); } 2418 void InstructionSelector::VisitS1x4AnyTrue(Node* node) { UNIMPLEMENTED(); }
2307 2419
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
2704 return new (instruction_zone()) FrameStateDescriptor( 2816 return new (instruction_zone()) FrameStateDescriptor(
2705 instruction_zone(), state_info.type(), state_info.bailout_id(), 2817 instruction_zone(), state_info.type(), state_info.bailout_id(),
2706 state_info.state_combine(), parameters, locals, stack, 2818 state_info.state_combine(), parameters, locals, stack,
2707 state_info.shared_info(), outer_state); 2819 state_info.shared_info(), outer_state);
2708 } 2820 }
2709 2821
2710 2822
2711 } // namespace compiler 2823 } // namespace compiler
2712 } // namespace internal 2824 } // namespace internal
2713 } // namespace v8 2825 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698