Skip to content

Commit 3ba4431

Browse files
ngzhianCommit Bot
authored and
Commit Bot
committed
[wasm-simd] Implement pmin/pmax
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 Bug: v8:10904 Change-Id: I4e0c2f29ddc5d7fc19a209cd02b3d369617574a0 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2405802 Reviewed-by: Bill Budge <[email protected]> Commit-Queue: Zhi An Ng <[email protected]> Cr-Commit-Position: refs/heads/master@{#69855}
1 parent 0d81397 commit 3ba4431

File tree

3 files changed

+4
-34
lines changed

3 files changed

+4
-34
lines changed

src/compiler/backend/instruction-selector.cc

-12
Original file line numberDiff line numberDiff line change
@@ -2686,18 +2686,6 @@ void InstructionSelector::VisitI64x2MinU(Node* node) { UNIMPLEMENTED(); }
26862686
void InstructionSelector::VisitI64x2MaxU(Node* node) { UNIMPLEMENTED(); }
26872687
#endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_S390X
26882688

2689-
#if !V8_TARGET_ARCH_ARM64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_IA32 && \
2690-
!V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_S390X && !V8_TARGET_ARCH_MIPS && \
2691-
!V8_TARGET_ARCH_MIPS64
2692-
// TODO(v8:10501) Prototyping pmin and pmax instructions.
2693-
void InstructionSelector::VisitF32x4Pmin(Node* node) { UNIMPLEMENTED(); }
2694-
void InstructionSelector::VisitF32x4Pmax(Node* node) { UNIMPLEMENTED(); }
2695-
void InstructionSelector::VisitF64x2Pmin(Node* node) { UNIMPLEMENTED(); }
2696-
void InstructionSelector::VisitF64x2Pmax(Node* node) { UNIMPLEMENTED(); }
2697-
#endif // !V8_TARGET_ARCH_ARM64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_IA32
2698-
// && !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_S390X &&
2699-
// !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_MIPS64
2700-
27012689
#if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM64 && !V8_TARGET_ARCH_S390X && \
27022690
!V8_TARGET_ARCH_IA32 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && \
27032691
!V8_TARGET_ARCH_MIPS64

src/wasm/wasm-opcodes.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,8 @@ bool IsJSCompatibleSignature(const FunctionSig* sig, const WasmFeatures&);
429429
V(F32x4Div, 0xfde7, s_ss) \
430430
V(F32x4Min, 0xfde8, s_ss) \
431431
V(F32x4Max, 0xfde9, s_ss) \
432+
V(F32x4Pmin, 0xfdea, s_ss) \
433+
V(F32x4Pmax, 0xfdeb, s_ss) \
432434
V(F64x2Abs, 0xfdec, s_s) \
433435
V(F64x2Neg, 0xfded, s_s) \
434436
V(F64x2Sqrt, 0xfdef, s_s) \
@@ -438,6 +440,8 @@ bool IsJSCompatibleSignature(const FunctionSig* sig, const WasmFeatures&);
438440
V(F64x2Div, 0xfdf3, s_ss) \
439441
V(F64x2Min, 0xfdf4, s_ss) \
440442
V(F64x2Max, 0xfdf5, s_ss) \
443+
V(F64x2Pmin, 0xfdf6, s_ss) \
444+
V(F64x2Pmax, 0xfdf7, s_ss) \
441445
V(I32x4SConvertF32x4, 0xfdf8, s_s) \
442446
V(I32x4UConvertF32x4, 0xfdf9, s_s) \
443447
V(F32x4SConvertI32x4, 0xfdfa, s_s) \
@@ -475,14 +479,10 @@ bool IsJSCompatibleSignature(const FunctionSig* sig, const WasmFeatures&);
475479
V(F32x4AddHoriz, 0xfdb2, s_ss) \
476480
V(F32x4RecipApprox, 0xfdb3, s_s) \
477481
V(F32x4RecipSqrtApprox, 0xfdbc, s_s) \
478-
V(F32x4Pmin, 0xfdea, s_ss) \
479-
V(F32x4Pmax, 0xfdeb, s_ss) \
480482
V(F32x4Ceil, 0xfdd8, s_s) \
481483
V(F32x4Floor, 0xfdd9, s_s) \
482484
V(F32x4Trunc, 0xfdda, s_s) \
483485
V(F32x4NearestInt, 0xfddb, s_s) \
484-
V(F64x2Pmin, 0xfdf6, s_ss) \
485-
V(F64x2Pmax, 0xfdf7, s_ss) \
486486
V(F64x2Ceil, 0xfddc, s_s) \
487487
V(F64x2Floor, 0xfddd, s_s) \
488488
V(F64x2Trunc, 0xfdde, s_s) \

test/cctest/wasm/test-run-wasm-simd.cc

-18
Original file line numberDiff line numberDiff line change
@@ -775,22 +775,13 @@ WASM_SIMD_TEST(F32x4Max) {
775775
RunF32x4BinOpTest(execution_tier, lower_simd, kExprF32x4Max, JSMax);
776776
}
777777

778-
// TODO(v8:10501) Prototyping pmin and pmax instructions.
779-
#if V8_TARGET_ARCH_X64 || V8_TARGET_ARCH_IA32 || V8_TARGET_ARCH_ARM64 || \
780-
V8_TARGET_ARCH_ARM || V8_TARGET_ARCH_S390X || V8_TARGET_ARCH_MIPS || \
781-
V8_TARGET_ARCH_MIPS64
782778
WASM_SIMD_TEST_NO_LOWERING(F32x4Pmin) {
783-
FLAG_SCOPE(wasm_simd_post_mvp);
784779
RunF32x4BinOpTest(execution_tier, lower_simd, kExprF32x4Pmin, Minimum);
785780
}
786781

787782
WASM_SIMD_TEST_NO_LOWERING(F32x4Pmax) {
788-
FLAG_SCOPE(wasm_simd_post_mvp);
789783
RunF32x4BinOpTest(execution_tier, lower_simd, kExprF32x4Pmax, Maximum);
790784
}
791-
#endif // V8_TARGET_ARCH_X64 || V8_TARGET_ARCH_IA32 || V8_TARGET_ARCH_ARM64 ||
792-
// V8_TARGET_ARCH_ARM || V8_TARGET_ARCH_S390X || V8_TARGET_ARCH_MIPS ||
793-
// V8_TARGET_ARCH_MIPS64
794785

795786
void RunF32x4CompareOpTest(TestExecutionTier execution_tier,
796787
LowerSimd lower_simd, WasmOpcode opcode,
@@ -1409,22 +1400,13 @@ WASM_SIMD_TEST(F64x2Div) {
14091400
RunF64x2BinOpTest(execution_tier, lower_simd, kExprF64x2Div, Div);
14101401
}
14111402

1412-
// TODO(v8:10501) Prototyping pmin and pmax instructions.
1413-
#if V8_TARGET_ARCH_X64 || V8_TARGET_ARCH_IA32 || V8_TARGET_ARCH_ARM64 || \
1414-
V8_TARGET_ARCH_ARM || V8_TARGET_ARCH_S390X || V8_TARGET_ARCH_MIPS || \
1415-
V8_TARGET_ARCH_MIPS64
14161403
WASM_SIMD_TEST_NO_LOWERING(F64x2Pmin) {
1417-
FLAG_SCOPE(wasm_simd_post_mvp);
14181404
RunF64x2BinOpTest(execution_tier, lower_simd, kExprF64x2Pmin, Minimum);
14191405
}
14201406

14211407
WASM_SIMD_TEST_NO_LOWERING(F64x2Pmax) {
1422-
FLAG_SCOPE(wasm_simd_post_mvp);
14231408
RunF64x2BinOpTest(execution_tier, lower_simd, kExprF64x2Pmax, Maximum);
14241409
}
1425-
#endif // V8_TARGET_ARCH_X64 || V8_TARGET_ARCH_IA32 || V8_TARGET_ARCH_ARM64 ||
1426-
// V8_TARGET_ARCH_ARM || V8_TARGET_ARCH_S390X || V8_TARGET_ARCH_MIPS ||
1427-
// V8_TARGET_ARCH_MIPS64
14281410

14291411
void RunF64x2CompareOpTest(TestExecutionTier execution_tier,
14301412
LowerSimd lower_simd, WasmOpcode opcode,

0 commit comments

Comments
 (0)