| Index: src/compiler/common-operator.cc
|
| diff --git a/src/compiler/common-operator.cc b/src/compiler/common-operator.cc
|
| index 2cd63314cff790a5a68a113a4e44a7e59e63d46f..4cf22991ddb01a224a85bcfee6e0ebc08c951155 100644
|
| --- a/src/compiler/common-operator.cc
|
| +++ b/src/compiler/common-operator.cc
|
| @@ -1353,44 +1353,6 @@ const Operator* CommonOperatorBuilder::ResizeMergeOrPhi(const Operator* op,
|
| }
|
| }
|
|
|
| -const Operator* CommonOperatorBuilder::Int32x4ExtractLane(int32_t lane_number) {
|
| - DCHECK(0 <= lane_number && lane_number < 4);
|
| - return new (zone()) Operator1<int32_t>( // --
|
| - IrOpcode::kInt32x4ExtractLane, Operator::kPure, // opcode
|
| - "Int32x4ExtractLane", // name
|
| - 1, 0, 0, 1, 0, 0, // counts
|
| - lane_number); // parameter
|
| -}
|
| -
|
| -const Operator* CommonOperatorBuilder::Int32x4ReplaceLane(int32_t lane_number) {
|
| - DCHECK(0 <= lane_number && lane_number < 4);
|
| - return new (zone()) Operator1<int32_t>( // --
|
| - IrOpcode::kInt32x4ReplaceLane, Operator::kPure, // opcode
|
| - "Int32x4ReplaceLane", // name
|
| - 2, 0, 0, 1, 0, 0, // counts
|
| - lane_number); // parameter
|
| -}
|
| -
|
| -const Operator* CommonOperatorBuilder::Float32x4ExtractLane(
|
| - int32_t lane_number) {
|
| - DCHECK(0 <= lane_number && lane_number < 4);
|
| - return new (zone()) Operator1<int32_t>( // --
|
| - IrOpcode::kFloat32x4ExtractLane, Operator::kPure, // opcode
|
| - "Float32x4ExtractLane", // name
|
| - 1, 0, 0, 1, 0, 0, // counts
|
| - lane_number); // parameter
|
| -}
|
| -
|
| -const Operator* CommonOperatorBuilder::Float32x4ReplaceLane(
|
| - int32_t lane_number) {
|
| - DCHECK(0 <= lane_number && lane_number < 4);
|
| - return new (zone()) Operator1<int32_t>( // --
|
| - IrOpcode::kFloat32x4ReplaceLane, Operator::kPure, // opcode
|
| - "Float32x4ReplaceLane", // name
|
| - 2, 0, 0, 1, 0, 0, // counts
|
| - lane_number); // parameter
|
| -}
|
| -
|
| const FrameStateFunctionInfo*
|
| CommonOperatorBuilder::CreateFrameStateFunctionInfo(
|
| FrameStateType type, int parameter_count, int local_count,
|
|
|