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/base/compiler-specific.h" | 13 #include "src/base/compiler-specific.h" |
14 #include "src/compiler/common-operator.h" | 14 #include "src/compiler/common-operator.h" |
| 15 #include "src/compiler/compiler-source-position-table.h" |
15 #include "src/compiler/frame.h" | 16 #include "src/compiler/frame.h" |
16 #include "src/compiler/instruction-codes.h" | 17 #include "src/compiler/instruction-codes.h" |
17 #include "src/compiler/opcodes.h" | 18 #include "src/compiler/opcodes.h" |
18 #include "src/compiler/source-position.h" | |
19 #include "src/globals.h" | 19 #include "src/globals.h" |
20 #include "src/macro-assembler.h" | 20 #include "src/macro-assembler.h" |
21 #include "src/register-configuration.h" | 21 #include "src/register-configuration.h" |
22 #include "src/zone/zone-allocator.h" | 22 #include "src/zone/zone-allocator.h" |
23 | 23 |
24 namespace v8 { | 24 namespace v8 { |
25 namespace internal { | 25 namespace internal { |
26 namespace compiler { | 26 namespace compiler { |
27 | 27 |
28 // Forward declarations. | 28 // Forward declarations. |
(...skipping 1506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1535 }; | 1535 }; |
1536 | 1536 |
1537 V8_EXPORT_PRIVATE std::ostream& operator<<( | 1537 V8_EXPORT_PRIVATE std::ostream& operator<<( |
1538 std::ostream& os, const PrintableInstructionSequence& code); | 1538 std::ostream& os, const PrintableInstructionSequence& code); |
1539 | 1539 |
1540 } // namespace compiler | 1540 } // namespace compiler |
1541 } // namespace internal | 1541 } // namespace internal |
1542 } // namespace v8 | 1542 } // namespace v8 |
1543 | 1543 |
1544 #endif // V8_COMPILER_INSTRUCTION_H_ | 1544 #endif // V8_COMPILER_INSTRUCTION_H_ |
OLD | NEW |