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_H_ | 5 #ifndef V8_COMPILER_INSTRUCTION_H_ |
6 #define V8_COMPILER_INSTRUCTION_H_ | 6 #define V8_COMPILER_INSTRUCTION_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <iosfwd> | 9 #include <iosfwd> |
10 #include <map> | 10 #include <map> |
11 #include <set> | 11 #include <set> |
12 | 12 |
13 #include "src/compiler/common-operator.h" | 13 #include "src/compiler/common-operator.h" |
14 #include "src/compiler/frame.h" | 14 #include "src/compiler/frame.h" |
15 #include "src/compiler/instruction-codes.h" | 15 #include "src/compiler/instruction-codes.h" |
16 #include "src/compiler/opcodes.h" | 16 #include "src/compiler/opcodes.h" |
17 #include "src/compiler/source-position.h" | 17 #include "src/compiler/source-position.h" |
18 #include "src/macro-assembler.h" | 18 #include "src/macro-assembler.h" |
19 #include "src/register-configuration.h" | 19 #include "src/register-configuration.h" |
20 #include "src/zone-allocator.h" | 20 #include "src/zone/zone-allocator.h" |
21 | 21 |
22 namespace v8 { | 22 namespace v8 { |
23 namespace internal { | 23 namespace internal { |
24 namespace compiler { | 24 namespace compiler { |
25 | 25 |
26 // Forward declarations. | 26 // Forward declarations. |
27 class Schedule; | 27 class Schedule; |
28 | 28 |
29 | 29 |
30 class InstructionOperand { | 30 class InstructionOperand { |
(...skipping 1471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1502 | 1502 |
1503 | 1503 |
1504 std::ostream& operator<<(std::ostream& os, | 1504 std::ostream& operator<<(std::ostream& os, |
1505 const PrintableInstructionSequence& code); | 1505 const PrintableInstructionSequence& code); |
1506 | 1506 |
1507 } // namespace compiler | 1507 } // namespace compiler |
1508 } // namespace internal | 1508 } // namespace internal |
1509 } // namespace v8 | 1509 } // namespace v8 |
1510 | 1510 |
1511 #endif // V8_COMPILER_INSTRUCTION_H_ | 1511 #endif // V8_COMPILER_INSTRUCTION_H_ |
OLD | NEW |