| 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" | |
| 9 #include "src/compiler/instruction.h" | 8 #include "src/compiler/instruction.h" |
| 10 #include "src/compiler/instruction-selector.h" | 9 #include "src/compiler/instruction-selector.h" |
| 11 #include "src/compiler/linkage.h" | 10 #include "src/compiler/linkage.h" |
| 12 #include "src/macro-assembler.h" | 11 #include "src/macro-assembler.h" |
| 13 | 12 |
| 14 namespace v8 { | 13 namespace v8 { |
| 15 namespace internal { | 14 namespace internal { |
| 16 namespace compiler { | 15 namespace compiler { |
| 17 | 16 |
| 18 // A helper class for the instruction selector that simplifies construction of | 17 // A helper class for the instruction selector that simplifies construction of |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 : (frame_state_descriptor->GetTotalSize() + | 358 : (frame_state_descriptor->GetTotalSize() + |
| 360 1); // Include deopt id. | 359 1); // Include deopt id. |
| 361 } | 360 } |
| 362 }; | 361 }; |
| 363 | 362 |
| 364 } // namespace compiler | 363 } // namespace compiler |
| 365 } // namespace internal | 364 } // namespace internal |
| 366 } // namespace v8 | 365 } // namespace v8 |
| 367 | 366 |
| 368 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_IMPL_H_ | 367 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_IMPL_H_ |
| OLD | NEW |