| Index: src/compiler/arm64/instruction-selector-arm64.cc
|
| diff --git a/src/compiler/arm64/instruction-selector-arm64.cc b/src/compiler/arm64/instruction-selector-arm64.cc
|
| index 14fdafd9844a0e4b080443d342628292aa6f47ec..52b69e155f52edfffbf01cac4305b117baa40a4c 100644
|
| --- a/src/compiler/arm64/instruction-selector-arm64.cc
|
| +++ b/src/compiler/arm64/instruction-selector-arm64.cc
|
| @@ -591,6 +591,8 @@ void InstructionSelector::VisitLoad(Node* node) {
|
| opcode = kArm64LdrW;
|
| immediate_mode = kLoadStoreImm32;
|
| break;
|
| + case MachineRepresentation::kTaggedSigned: // Fall through.
|
| + case MachineRepresentation::kTaggedPointer: // Fall through.
|
| case MachineRepresentation::kTagged: // Fall through.
|
| case MachineRepresentation::kWord64:
|
| opcode = kArm64Ldr;
|
| @@ -681,6 +683,8 @@ void InstructionSelector::VisitStore(Node* node) {
|
| opcode = kArm64StrW;
|
| immediate_mode = kLoadStoreImm32;
|
| break;
|
| + case MachineRepresentation::kTaggedSigned: // Fall through.
|
| + case MachineRepresentation::kTaggedPointer: // Fall through.
|
| case MachineRepresentation::kTagged: // Fall through.
|
| case MachineRepresentation::kWord64:
|
| opcode = kArm64Str;
|
| @@ -746,6 +750,8 @@ void InstructionSelector::VisitCheckedLoad(Node* node) {
|
| opcode = kCheckedLoadFloat64;
|
| break;
|
| case MachineRepresentation::kBit: // Fall through.
|
| + case MachineRepresentation::kTaggedSigned: // Fall through.
|
| + case MachineRepresentation::kTaggedPointer: // Fall through.
|
| case MachineRepresentation::kTagged: // Fall through.
|
| case MachineRepresentation::kSimd128: // Fall through.
|
| case MachineRepresentation::kNone:
|
| @@ -796,6 +802,8 @@ void InstructionSelector::VisitCheckedStore(Node* node) {
|
| opcode = kCheckedStoreFloat64;
|
| break;
|
| case MachineRepresentation::kBit: // Fall through.
|
| + case MachineRepresentation::kTaggedSigned: // Fall through.
|
| + case MachineRepresentation::kTaggedPointer: // Fall through.
|
| case MachineRepresentation::kTagged: // Fall through.
|
| case MachineRepresentation::kSimd128: // Fall through.
|
| case MachineRepresentation::kNone:
|
|
|