| 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 #ifndef V8_COMPILER_INSTRUCTION_SELECTOR_IMPL_H_ | 5 #ifndef V8_COMPILER_INSTRUCTION_SELECTOR_IMPL_H_ |
| 6 #define V8_COMPILER_INSTRUCTION_SELECTOR_IMPL_H_ | 6 #define V8_COMPILER_INSTRUCTION_SELECTOR_IMPL_H_ |
| 7 | 7 |
| 8 #include "src/compiler/generic-node-inl.h" |
| 8 #include "src/compiler/instruction.h" | 9 #include "src/compiler/instruction.h" |
| 9 #include "src/compiler/instruction-selector.h" | 10 #include "src/compiler/instruction-selector.h" |
| 10 #include "src/compiler/linkage.h" | 11 #include "src/compiler/linkage.h" |
| 11 | 12 |
| 12 namespace v8 { | 13 namespace v8 { |
| 13 namespace internal { | 14 namespace internal { |
| 14 namespace compiler { | 15 namespace compiler { |
| 15 | 16 |
| 16 // A helper class for the instruction selector that simplifies construction of | 17 // A helper class for the instruction selector that simplifies construction of |
| 17 // Operands. This class implements a base for architecture-specific helpers. | 18 // Operands. This class implements a base for architecture-specific helpers. |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 Register::ToAllocationIndex(reg)); | 123 Register::ToAllocationIndex(reg)); |
| 123 } | 124 } |
| 124 | 125 |
| 125 InstructionOperand* TempImmediate(int32_t imm) { | 126 InstructionOperand* TempImmediate(int32_t imm) { |
| 126 int index = sequence()->AddImmediate(Constant(imm)); | 127 int index = sequence()->AddImmediate(Constant(imm)); |
| 127 return ImmediateOperand::Create(index, zone()); | 128 return ImmediateOperand::Create(index, zone()); |
| 128 } | 129 } |
| 129 | 130 |
| 130 InstructionOperand* Label(BasicBlock* block) { | 131 InstructionOperand* Label(BasicBlock* block) { |
| 131 // TODO(bmeurer): We misuse ImmediateOperand here. | 132 // TODO(bmeurer): We misuse ImmediateOperand here. |
| 132 return TempImmediate(block->id()); | 133 return TempImmediate(block->id().ToInt()); |
| 133 } | 134 } |
| 134 | 135 |
| 135 protected: | 136 protected: |
| 136 Graph* graph() const { return selector()->graph(); } | 137 Graph* graph() const { return selector()->graph(); } |
| 137 InstructionSelector* selector() const { return selector_; } | 138 InstructionSelector* selector() const { return selector_; } |
| 138 InstructionSequence* sequence() const { return selector()->sequence(); } | 139 InstructionSequence* sequence() const { return selector()->sequence(); } |
| 139 Isolate* isolate() const { return zone()->isolate(); } | 140 Isolate* isolate() const { return zone()->isolate(); } |
| 140 Zone* zone() const { return selector()->instruction_zone(); } | 141 Zone* zone() const { return selector()->instruction_zone(); } |
| 141 | 142 |
| 142 private: | 143 private: |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 : (frame_state_descriptor->GetTotalSize() + | 354 : (frame_state_descriptor->GetTotalSize() + |
| 354 1); // Include deopt id. | 355 1); // Include deopt id. |
| 355 } | 356 } |
| 356 }; | 357 }; |
| 357 | 358 |
| 358 } // namespace compiler | 359 } // namespace compiler |
| 359 } // namespace internal | 360 } // namespace internal |
| 360 } // namespace v8 | 361 } // namespace v8 |
| 361 | 362 |
| 362 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_IMPL_H_ | 363 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_IMPL_H_ |
| OLD | NEW |