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_H_ | 5 #ifndef V8_COMPILER_INSTRUCTION_SELECTOR_H_ |
6 #define V8_COMPILER_INSTRUCTION_SELECTOR_H_ | 6 #define V8_COMPILER_INSTRUCTION_SELECTOR_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "src/compiler/common-operator.h" | 10 #include "src/compiler/common-operator.h" |
| 11 #include "src/compiler/instruction-scheduler.h" |
11 #include "src/compiler/instruction.h" | 12 #include "src/compiler/instruction.h" |
12 #include "src/compiler/instruction-scheduler.h" | |
13 #include "src/compiler/machine-operator.h" | 13 #include "src/compiler/machine-operator.h" |
14 #include "src/compiler/node.h" | 14 #include "src/compiler/node.h" |
15 #include "src/zone-containers.h" | 15 #include "src/zone/zone-containers.h" |
16 | 16 |
17 namespace v8 { | 17 namespace v8 { |
18 namespace internal { | 18 namespace internal { |
19 namespace compiler { | 19 namespace compiler { |
20 | 20 |
21 // Forward declarations. | 21 // Forward declarations. |
22 class BasicBlock; | 22 class BasicBlock; |
23 struct CallBuffer; // TODO(bmeurer): Remove this. | 23 struct CallBuffer; // TODO(bmeurer): Remove this. |
24 class FlagsContinuation; | 24 class FlagsContinuation; |
25 class Linkage; | 25 class Linkage; |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 InstructionScheduler* scheduler_; | 351 InstructionScheduler* scheduler_; |
352 EnableScheduling enable_scheduling_; | 352 EnableScheduling enable_scheduling_; |
353 Frame* frame_; | 353 Frame* frame_; |
354 }; | 354 }; |
355 | 355 |
356 } // namespace compiler | 356 } // namespace compiler |
357 } // namespace internal | 357 } // namespace internal |
358 } // namespace v8 | 358 } // namespace v8 |
359 | 359 |
360 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_H_ | 360 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_H_ |
OLD | NEW |