Skip to content

Commit d24457f

Browse files
Milad FaCommit Bot
authored andcommitted
PPC/s390: [wasm-simd] Implement pmin/pmax
Port 3ba4431 Original Commit Message: F32x4 and F64x2 pmin and pmax were accepted into the proposal [0], this removes all the ifdefs and todo guarding the prototypes, and moves these instructions out of the post-mvp flag. [0] WebAssembly/simd#122 R=zhin@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com BUG= LOG=N Change-Id: I8b2ae60240f769e1f4c0b00e98d53846519b305e Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2410806 Reviewed-by: Junliang Yan <junyan@redhat.com> Reviewed-by: Milad Farazmand <mfarazma@redhat.com> Commit-Queue: Milad Farazmand <mfarazma@redhat.com> Cr-Commit-Position: refs/heads/master@{#69893}
1 parent 0445e41 commit d24457f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/compiler/backend/ppc/instruction-selector-ppc.cc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2450,6 +2450,14 @@ void InstructionSelector::VisitF64x2Max(Node* node) { UNIMPLEMENTED(); }
24502450

24512451
void InstructionSelector::VisitLoadTransform(Node* node) { UNIMPLEMENTED(); }
24522452

2453+
void InstructionSelector::VisitF32x4Pmin(Node* node) { UNIMPLEMENTED(); }
2454+
2455+
void InstructionSelector::VisitF32x4Pmax(Node* node) { UNIMPLEMENTED(); }
2456+
2457+
void InstructionSelector::VisitF64x2Pmin(Node* node) { UNIMPLEMENTED(); }
2458+
2459+
void InstructionSelector::VisitF64x2Pmax(Node* node) { UNIMPLEMENTED(); }
2460+
24532461
// static
24542462
MachineOperatorBuilder::Flags
24552463
InstructionSelector::SupportedMachineOperatorFlags() {

0 commit comments

Comments
 (0)