From d24457fab728da0e18d33d76613a6ba73a1935e7 Mon Sep 17 00:00:00 2001 From: Milad Fa Date: Mon, 14 Sep 2020 18:47:32 +0000 Subject: [PATCH] PPC/s390: [wasm-simd] Implement pmin/pmax Port 3ba4431124098763978113db40c5086d8fe16001 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] https://github.com/WebAssembly/simd/pull/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 Reviewed-by: Milad Farazmand Commit-Queue: Milad Farazmand Cr-Commit-Position: refs/heads/master@{#69893} --- src/compiler/backend/ppc/instruction-selector-ppc.cc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/compiler/backend/ppc/instruction-selector-ppc.cc b/src/compiler/backend/ppc/instruction-selector-ppc.cc index a59e3b3a12d3..26b29a2a4a92 100644 --- a/src/compiler/backend/ppc/instruction-selector-ppc.cc +++ b/src/compiler/backend/ppc/instruction-selector-ppc.cc @@ -2450,6 +2450,14 @@ void InstructionSelector::VisitF64x2Max(Node* node) { UNIMPLEMENTED(); } void InstructionSelector::VisitLoadTransform(Node* node) { UNIMPLEMENTED(); } +void InstructionSelector::VisitF32x4Pmin(Node* node) { UNIMPLEMENTED(); } + +void InstructionSelector::VisitF32x4Pmax(Node* node) { UNIMPLEMENTED(); } + +void InstructionSelector::VisitF64x2Pmin(Node* node) { UNIMPLEMENTED(); } + +void InstructionSelector::VisitF64x2Pmax(Node* node) { UNIMPLEMENTED(); } + // static MachineOperatorBuilder::Flags InstructionSelector::SupportedMachineOperatorFlags() {