| Index: src/compiler/wasm-compiler.cc
|
| diff --git a/src/compiler/wasm-compiler.cc b/src/compiler/wasm-compiler.cc
|
| index f81278509c0cc4167785a6ee97eba437bab0fc89..1380f9e3c8b428835debfc188dd612654f033f52 100644
|
| --- a/src/compiler/wasm-compiler.cc
|
| +++ b/src/compiler/wasm-compiler.cc
|
| @@ -3244,12 +3244,22 @@ Node* WasmGraphBuilder::SimdOp(wasm::WasmOpcode opcode,
|
| case wasm::kExprF32x4FromUint32x4:
|
| return graph()->NewNode(jsgraph()->machine()->Float32x4FromUint32x4(),
|
| inputs[0]);
|
| + case wasm::kExprF32x4Abs:
|
| + return graph()->NewNode(jsgraph()->machine()->Float32x4Abs(), inputs[0]);
|
| + case wasm::kExprF32x4Neg:
|
| + return graph()->NewNode(jsgraph()->machine()->Float32x4Neg(), inputs[0]);
|
| case wasm::kExprF32x4Add:
|
| return graph()->NewNode(jsgraph()->machine()->Float32x4Add(), inputs[0],
|
| inputs[1]);
|
| case wasm::kExprF32x4Sub:
|
| return graph()->NewNode(jsgraph()->machine()->Float32x4Sub(), inputs[0],
|
| inputs[1]);
|
| + case wasm::kExprF32x4Eq:
|
| + return graph()->NewNode(jsgraph()->machine()->Float32x4Equal(), inputs[0],
|
| + inputs[1]);
|
| + case wasm::kExprF32x4Ne:
|
| + return graph()->NewNode(jsgraph()->machine()->Float32x4NotEqual(),
|
| + inputs[0], inputs[1]);
|
| case wasm::kExprI32x4Splat:
|
| return graph()->NewNode(jsgraph()->machine()->CreateInt32x4(), inputs[0],
|
| inputs[0], inputs[0], inputs[0]);
|
|
|