PPC/s390: [wasm-simd][liftoff][ia32][x64] Implement anytrue
Port 51847be86e
Original Commit Message:
Implementation for ia32 and x64, arm and arm64 simply bailout now, will
be implemented later.
R=zhin@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com
BUG=
LOG=N
Change-Id: Ibc6e0b02893ef49b82c34e03742a0cbd54c92789
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2219814
Reviewed-by: Junliang Yan <jyan@ca.ibm.com>
Commit-Queue: Milad Farazmand <miladfar@ca.ibm.com>
Cr-Commit-Position: refs/heads/master@{#68041}
This commit is contained in:
parent
daae98c336
commit
0ffe2b53ff
@ -772,6 +772,11 @@ void LiftoffAssembler::emit_i32x4_neg(LiftoffRegister dst,
|
||||
bailout(kUnsupportedArchitecture, "emit_i32x4neg");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::emit_v32x4_anytrue(LiftoffRegister dst,
|
||||
LiftoffRegister src) {
|
||||
bailout(kSimd, "v32x4_anytrue");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::emit_i32x4_shl(LiftoffRegister dst, LiftoffRegister lhs,
|
||||
LiftoffRegister rhs) {
|
||||
bailout(kSimd, "i32x4_shl");
|
||||
@ -853,6 +858,11 @@ void LiftoffAssembler::emit_i16x8_neg(LiftoffRegister dst,
|
||||
bailout(kUnsupportedArchitecture, "emit_i16x8neg");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::emit_v16x8_anytrue(LiftoffRegister dst,
|
||||
LiftoffRegister src) {
|
||||
bailout(kSimd, "v16x8_anytrue");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::emit_i16x8_shl(LiftoffRegister dst, LiftoffRegister lhs,
|
||||
LiftoffRegister rhs) {
|
||||
bailout(kSimd, "i16x8_shl");
|
||||
@ -990,6 +1000,11 @@ void LiftoffAssembler::emit_i8x16_neg(LiftoffRegister dst,
|
||||
bailout(kUnsupportedArchitecture, "emit_i8x16neg");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::emit_v8x16_anytrue(LiftoffRegister dst,
|
||||
LiftoffRegister src) {
|
||||
bailout(kSimd, "v8x16_anytrue");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::emit_i8x16_shl(LiftoffRegister dst, LiftoffRegister lhs,
|
||||
LiftoffRegister rhs) {
|
||||
bailout(kSimd, "i8x16_shl");
|
||||
|
@ -776,6 +776,11 @@ void LiftoffAssembler::emit_i32x4_neg(LiftoffRegister dst,
|
||||
bailout(kUnsupportedArchitecture, "emit_i32x4neg");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::emit_v32x4_anytrue(LiftoffRegister dst,
|
||||
LiftoffRegister src) {
|
||||
bailout(kSimd, "v32x4_anytrue");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::emit_i32x4_shl(LiftoffRegister dst, LiftoffRegister lhs,
|
||||
LiftoffRegister rhs) {
|
||||
bailout(kSimd, "i32x4_shl");
|
||||
@ -857,6 +862,11 @@ void LiftoffAssembler::emit_i16x8_neg(LiftoffRegister dst,
|
||||
bailout(kUnsupportedArchitecture, "emit_i16x8neg");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::emit_v16x8_anytrue(LiftoffRegister dst,
|
||||
LiftoffRegister src) {
|
||||
bailout(kSimd, "v16x8_anytrue");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::emit_i16x8_shl(LiftoffRegister dst, LiftoffRegister lhs,
|
||||
LiftoffRegister rhs) {
|
||||
bailout(kSimd, "i16x8_shl");
|
||||
@ -1000,6 +1010,11 @@ void LiftoffAssembler::emit_i8x16_neg(LiftoffRegister dst,
|
||||
bailout(kUnsupportedArchitecture, "emit_i8x16neg");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::emit_v8x16_anytrue(LiftoffRegister dst,
|
||||
LiftoffRegister src) {
|
||||
bailout(kSimd, "v8x16_anytrue");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::emit_i8x16_shl(LiftoffRegister dst, LiftoffRegister lhs,
|
||||
LiftoffRegister rhs) {
|
||||
bailout(kSimd, "i8x16_shl");
|
||||
|
Loading…
Reference in New Issue
Block a user