| Index: src/compiler/x87/instruction-selector-x87.cc
|
| diff --git a/src/compiler/x87/instruction-selector-x87.cc b/src/compiler/x87/instruction-selector-x87.cc
|
| index b788b9a05842cf018d19b0e2c92d831ed96fc143..be56f53010183bfa0a6007c07a0a6b6f21ff0f76 100644
|
| --- a/src/compiler/x87/instruction-selector-x87.cc
|
| +++ b/src/compiler/x87/instruction-selector-x87.cc
|
| @@ -1598,6 +1598,44 @@ void InstructionSelector::VisitAtomicLoad(Node* node) {
|
| VisitLoad(node);
|
| }
|
|
|
| +void InstructionSelector::VisitAtomicStore(Node* node) {
|
| + X87OperandGenerator g(this);
|
| + Node* base = node->InputAt(0);
|
| + Node* index = node->InputAt(1);
|
| + Node* value = node->InputAt(2);
|
| +
|
| + MachineRepresentation rep = AtomicStoreRepresentationOf(node->op());
|
| + ArchOpcode opcode = kArchNop;
|
| + switch (rep) {
|
| + case MachineRepresentation::kWord8:
|
| + opcode = kX87Xchgb;
|
| + break;
|
| + case MachineRepresentation::kWord16:
|
| + opcode = kX87Xchgw;
|
| + break;
|
| + case MachineRepresentation::kWord32:
|
| + opcode = kX87Xchgl;
|
| + break;
|
| + default:
|
| + UNREACHABLE();
|
| + break;
|
| + }
|
| + AddressingMode addressing_mode;
|
| + InstructionOperand inputs[4];
|
| + size_t input_count = 0;
|
| + inputs[input_count++] = g.UseUniqueRegister(base);
|
| + if (g.CanBeImmediate(index)) {
|
| + inputs[input_count++] = g.UseImmediate(index);
|
| + addressing_mode = kMode_MRI;
|
| + } else {
|
| + inputs[input_count++] = g.UseUniqueRegister(index);
|
| + addressing_mode = kMode_MR1;
|
| + }
|
| + inputs[input_count++] = g.UseUniqueRegister(value);
|
| + InstructionCode code = opcode | AddressingModeField::encode(addressing_mode);
|
| + Emit(code, 0, nullptr, input_count, inputs);
|
| +}
|
| +
|
| // static
|
| MachineOperatorBuilder::Flags
|
| InstructionSelector::SupportedMachineOperatorFlags() {
|
|
|