Skip to content

Commit

Permalink
PPC/s390: [wasm-simd] Implement pmin/pmax
Browse files Browse the repository at this point in the history
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

[email protected], [email protected], [email protected], [email protected]
BUG=
LOG=N

Change-Id: I8b2ae60240f769e1f4c0b00e98d53846519b305e
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2410806
Reviewed-by: Junliang Yan <[email protected]>
Reviewed-by: Milad Farazmand <[email protected]>
Commit-Queue: Milad Farazmand <[email protected]>
Cr-Commit-Position: refs/heads/master@{#69893}
  • Loading branch information
Milad Fa authored and Commit Bot committed Sep 14, 2020
1 parent 0445e41 commit d24457f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/compiler/backend/ppc/instruction-selector-ppc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit d24457f

Please sign in to comment.