| 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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 : (frame_state_descriptor->GetTotalSize() + | 361 : (frame_state_descriptor->GetTotalSize() + |
| 361 1); // Include deopt id. | 362 1); // Include deopt id. |
| 362 } | 363 } |
| 363 }; | 364 }; |
| 364 | 365 |
| 365 } // namespace compiler | 366 } // namespace compiler |
| 366 } // namespace internal | 367 } // namespace internal |
| 367 } // namespace v8 | 368 } // namespace v8 |
| 368 | 369 |
| 369 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_IMPL_H_ | 370 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_IMPL_H_ |
| OLD | NEW |