Index: src/compiler/x64/instruction-selector-x64.cc |
diff --git a/src/compiler/x64/instruction-selector-x64.cc b/src/compiler/x64/instruction-selector-x64.cc |
index 9f0adbc9afea1c70b415da410b3d439b381083a9..6ccd6a3d22086ac6af6ef74b7323affdeff4cf1e 100644 |
--- a/src/compiler/x64/instruction-selector-x64.cc |
+++ b/src/compiler/x64/instruction-selector-x64.cc |
@@ -2206,6 +2206,17 @@ void InstructionSelector::VisitAtomicStore(Node* node) { |
Emit(code, 0, static_cast<InstructionOperand*>(nullptr), input_count, inputs); |
} |
+void InstructionSelector::VisitCreateInt32x4(Node* node) { |
+ X64OperandGenerator g(this); |
+ Emit(kSSECreateInt32x4, g.DefineAsRegister(node), g.Use(node->InputAt(0))); |
+} |
+ |
+void InstructionSelector::VisitInt32x4ExtractLane(Node* node) { |
+ X64OperandGenerator g(this); |
+ Emit(kSSEInt32x4ExtractLane, g.DefineAsRegister(node), |
+ g.UseRegister(node->InputAt(0)), g.UseImmediate(node->InputAt(1))); |
+} |
+ |
// static |
MachineOperatorBuilder::Flags |
InstructionSelector::SupportedMachineOperatorFlags() { |