Index: src/compiler/common-operator.h |
diff --git a/src/compiler/common-operator.h b/src/compiler/common-operator.h |
index 1f258a0ec0fa95dce529d8c857e6d275f104907e..b4685f005a6294ba177e69ae9bb231a608226851 100644 |
--- a/src/compiler/common-operator.h |
+++ b/src/compiler/common-operator.h |
@@ -260,6 +260,12 @@ class V8_EXPORT_PRIVATE CommonOperatorBuilder final |
// with {size} inputs. |
const Operator* ResizeMergeOrPhi(const Operator* op, int size); |
+ // Simd Operators |
+ const Operator* Int32x4ExtractLane(int32_t); |
+ const Operator* Int32x4ReplaceLane(int32_t); |
+ const Operator* Float32x4ExtractLane(int32_t); |
+ const Operator* Float32x4ReplaceLane(int32_t); |
+ |
// Constructs function info for frame state construction. |
const FrameStateFunctionInfo* CreateFrameStateFunctionInfo( |
FrameStateType type, int parameter_count, int local_count, |