Index: src/compiler/mips64/instruction-selector-mips64.cc |
diff --git a/src/compiler/mips64/instruction-selector-mips64.cc b/src/compiler/mips64/instruction-selector-mips64.cc |
index 1a385da8e9cf42ffa851e45a87700a8ce0064106..72784e5a25bb6069ef84d2f016cabc035b6e576b 100644 |
--- a/src/compiler/mips64/instruction-selector-mips64.cc |
+++ b/src/compiler/mips64/instruction-selector-mips64.cc |
@@ -379,6 +379,9 @@ void InstructionSelector::VisitLoad(Node* node) { |
opcode = kMips64Ld; |
break; |
case MachineRepresentation::kSimd128: // Fall through. |
+ case MachineRepresentation::kSimd1x4: // Fall through. |
+ case MachineRepresentation::kSimd1x8: // Fall through. |
+ case MachineRepresentation::kSimd1x16: // Fall through. |
case MachineRepresentation::kNone: |
UNREACHABLE(); |
return; |
@@ -456,6 +459,9 @@ void InstructionSelector::VisitStore(Node* node) { |
opcode = kMips64Sd; |
break; |
case MachineRepresentation::kSimd128: // Fall through. |
+ case MachineRepresentation::kSimd1x4: // Fall through. |
+ case MachineRepresentation::kSimd1x8: // Fall through. |
+ case MachineRepresentation::kSimd1x16: // Fall through. |
case MachineRepresentation::kNone: |
UNREACHABLE(); |
return; |
@@ -1739,6 +1745,9 @@ void InstructionSelector::VisitUnalignedLoad(Node* node) { |
opcode = kMips64Uld; |
break; |
case MachineRepresentation::kSimd128: // Fall through. |
+ case MachineRepresentation::kSimd1x4: // Fall through. |
+ case MachineRepresentation::kSimd1x8: // Fall through. |
+ case MachineRepresentation::kSimd1x16: // Fall through. |
case MachineRepresentation::kNone: |
UNREACHABLE(); |
return; |
@@ -1789,6 +1798,9 @@ void InstructionSelector::VisitUnalignedStore(Node* node) { |
opcode = kMips64Usd; |
break; |
case MachineRepresentation::kSimd128: // Fall through. |
+ case MachineRepresentation::kSimd1x4: // Fall through. |
+ case MachineRepresentation::kSimd1x8: // Fall through. |
+ case MachineRepresentation::kSimd1x16: // Fall through. |
case MachineRepresentation::kNone: |
UNREACHABLE(); |
return; |
@@ -1839,6 +1851,9 @@ void InstructionSelector::VisitCheckedLoad(Node* node) { |
case MachineRepresentation::kTaggedPointer: // Fall through. |
case MachineRepresentation::kTagged: |
case MachineRepresentation::kSimd128: |
+ case MachineRepresentation::kSimd1x4: // Fall through. |
+ case MachineRepresentation::kSimd1x8: // Fall through. |
+ case MachineRepresentation::kSimd1x16: // Fall through. |
case MachineRepresentation::kNone: |
UNREACHABLE(); |
return; |
@@ -1900,6 +1915,9 @@ void InstructionSelector::VisitCheckedStore(Node* node) { |
case MachineRepresentation::kTaggedPointer: // Fall through. |
case MachineRepresentation::kTagged: |
case MachineRepresentation::kSimd128: |
+ case MachineRepresentation::kSimd1x4: // Fall through. |
+ case MachineRepresentation::kSimd1x8: // Fall through. |
+ case MachineRepresentation::kSimd1x16: // Fall through. |
case MachineRepresentation::kNone: |
UNREACHABLE(); |
return; |