OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_HYDROGEN_INSTRUCTIONS_H_ | 5 #ifndef V8_HYDROGEN_INSTRUCTIONS_H_ |
6 #define V8_HYDROGEN_INSTRUCTIONS_H_ | 6 #define V8_HYDROGEN_INSTRUCTIONS_H_ |
7 | 7 |
8 #include "src/v8.h" | 8 #include "src/v8.h" |
9 | 9 |
10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
11 #include "src/code-stubs.h" | 11 #include "src/code-stubs.h" |
12 #include "src/conversions.h" | 12 #include "src/conversions.h" |
13 #include "src/data-flow.h" | 13 #include "src/data-flow.h" |
14 #include "src/deoptimizer.h" | 14 #include "src/deoptimizer.h" |
15 #include "src/hydrogen-types.h" | 15 #include "src/hydrogen-types.h" |
16 #include "src/ostreams.h" | 16 #include "src/ostreams.h" |
17 #include "src/small-pointer-list.h" | 17 #include "src/small-pointer-list.h" |
18 #include "src/unique.h" | 18 #include "src/unique.h" |
19 #include "src/utils.h" | 19 #include "src/utils.h" |
20 #include "src/zone.h" | 20 #include "src/zone.h" |
21 | 21 |
22 namespace v8 { | 22 namespace v8 { |
23 namespace internal { | 23 namespace internal { |
24 | 24 |
25 // Forward declarations. | 25 // Forward declarations. |
26 class ChangesOf; | 26 struct ChangesOf; |
27 class HBasicBlock; | 27 class HBasicBlock; |
28 class HDiv; | 28 class HDiv; |
29 class HEnvironment; | 29 class HEnvironment; |
30 class HInferRepresentationPhase; | 30 class HInferRepresentationPhase; |
31 class HInstruction; | 31 class HInstruction; |
32 class HLoopInformation; | 32 class HLoopInformation; |
33 class HStoreNamedField; | 33 class HStoreNamedField; |
34 class HValue; | 34 class HValue; |
35 class LInstruction; | 35 class LInstruction; |
36 class LChunkBuilder; | 36 class LChunkBuilder; |
(...skipping 7777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7814 }; | 7814 }; |
7815 | 7815 |
7816 | 7816 |
7817 | 7817 |
7818 #undef DECLARE_INSTRUCTION | 7818 #undef DECLARE_INSTRUCTION |
7819 #undef DECLARE_CONCRETE_INSTRUCTION | 7819 #undef DECLARE_CONCRETE_INSTRUCTION |
7820 | 7820 |
7821 } } // namespace v8::internal | 7821 } } // namespace v8::internal |
7822 | 7822 |
7823 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ | 7823 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ |
OLD | NEW |