| 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 bacf7921b7df3c23ffe97cef4155388d6102f9be..ad45e9797b09ef3f053086244c159fbca1c07528 100644
|
| --- a/src/compiler/arm64/instruction-selector-arm64.cc
|
| +++ b/src/compiler/arm64/instruction-selector-arm64.cc
|
| @@ -2701,6 +2701,42 @@ void InstructionSelector::VisitAtomicStore(Node* node) {
|
| Emit(code, 0, nullptr, input_count, inputs);
|
| }
|
|
|
| +void InstructionSelector::VisitAtomicExchange(Node* node) {
|
| + Arm64OperandGenerator g(this);
|
| + Node* base = node->InputAt(0);
|
| + Node* index = node->InputAt(1);
|
| + Node* value = node->InputAt(2);
|
| + ArchOpcode opcode = kArchNop;
|
| + MachineType type = AtomicExchangeRepresentationOf(node->op());
|
| + if (type == MachineType::Int8()) {
|
| + opcode = kAtomicExchangeInt8;
|
| + } else if (type == MachineType::Uint8()) {
|
| + opcode = kAtomicExchangeUint8;
|
| + } else if (type == MachineType::Int16()) {
|
| + opcode = kAtomicExchangeInt16;
|
| + } else if (type == MachineType::Uint16()) {
|
| + opcode = kAtomicExchangeUint16;
|
| + } else if (type == MachineType::Int32() || type == MachineType::Uint32()) {
|
| + opcode = kAtomicExchangeWord32;
|
| + } else {
|
| + UNREACHABLE();
|
| + return;
|
| + }
|
| +
|
| + AddressingMode addressing_mode = kMode_MRR;
|
| + InstructionOperand inputs[3];
|
| + size_t input_count = 0;
|
| + inputs[input_count++] = g.UseUniqueRegister(base);
|
| + inputs[input_count++] = g.UseUniqueRegister(index);
|
| + inputs[input_count++] = g.UseUniqueRegister(value);
|
| + InstructionOperand outputs[1];
|
| + outputs[0] = g.UseUniqueRegister(node);
|
| + InstructionOperand temp[2];
|
| + temp[0] = g.TempRegister();
|
| + InstructionCode code = opcode | AddressingModeField::encode(addressing_mode);
|
| + Emit(code, 1, outputs, input_count, inputs, 1, temp);
|
| +}
|
| +
|
| // static
|
| MachineOperatorBuilder::Flags
|
| InstructionSelector::SupportedMachineOperatorFlags() {
|
|
|