OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <algorithm> | 5 #include <algorithm> |
6 | 6 |
7 #include "src/base/adapters.h" | 7 #include "src/base/adapters.h" |
8 #include "src/compiler/instruction-selector-impl.h" | 8 #include "src/compiler/instruction-selector-impl.h" |
9 #include "src/compiler/node-matchers.h" | 9 #include "src/compiler/node-matchers.h" |
10 #include "src/compiler/node-properties.h" | 10 #include "src/compiler/node-properties.h" |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 case MachineRepresentation::kNone: | 276 case MachineRepresentation::kNone: |
277 UNREACHABLE(); | 277 UNREACHABLE(); |
278 return kArchNop; | 278 return kArchNop; |
279 } | 279 } |
280 UNREACHABLE(); | 280 UNREACHABLE(); |
281 return kArchNop; | 281 return kArchNop; |
282 } | 282 } |
283 | 283 |
284 } // namespace | 284 } // namespace |
285 | 285 |
286 void InstructionSelector::VisitStackSlot(Node* node) { | |
287 StackSlotRepresentation rep = StackSlotRepresentationOf(node->op()); | |
288 int slot = frame_->AllocateSpillSlot(rep.size()); | |
289 OperandGenerator g(this); | |
290 | |
291 Emit(kArchStackSlot, g.DefineAsRegister(node), | |
292 sequence()->AddImmediate(Constant(slot)), 0, nullptr); | |
293 } | |
294 | |
295 void InstructionSelector::VisitLoad(Node* node) { | 286 void InstructionSelector::VisitLoad(Node* node) { |
296 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); | 287 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); |
297 X64OperandGenerator g(this); | 288 X64OperandGenerator g(this); |
298 | 289 |
299 ArchOpcode opcode = GetLoadOpcode(load_rep); | 290 ArchOpcode opcode = GetLoadOpcode(load_rep); |
300 InstructionOperand outputs[1]; | 291 InstructionOperand outputs[1]; |
301 outputs[0] = g.DefineAsRegister(node); | 292 outputs[0] = g.DefineAsRegister(node); |
302 InstructionOperand inputs[4]; | 293 InstructionOperand inputs[4]; |
303 size_t input_count = 0; | 294 size_t input_count = 0; |
304 AddressingMode mode = | 295 AddressingMode mode = |
(...skipping 2324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2629 // static | 2620 // static |
2630 MachineOperatorBuilder::AlignmentRequirements | 2621 MachineOperatorBuilder::AlignmentRequirements |
2631 InstructionSelector::AlignmentRequirements() { | 2622 InstructionSelector::AlignmentRequirements() { |
2632 return MachineOperatorBuilder::AlignmentRequirements:: | 2623 return MachineOperatorBuilder::AlignmentRequirements:: |
2633 FullUnalignedAccessSupport(); | 2624 FullUnalignedAccessSupport(); |
2634 } | 2625 } |
2635 | 2626 |
2636 } // namespace compiler | 2627 } // namespace compiler |
2637 } // namespace internal | 2628 } // namespace internal |
2638 } // namespace v8 | 2629 } // namespace v8 |
OLD | NEW |