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/feedback-slots.h" | 15 #include "src/feedback-slots.h" |
16 #include "src/hydrogen-types.h" | 16 #include "src/hydrogen-types.h" |
17 #include "src/ostreams.h" | |
18 #include "src/small-pointer-list.h" | 17 #include "src/small-pointer-list.h" |
19 #include "src/unique.h" | 18 #include "src/unique.h" |
20 #include "src/utils.h" | 19 #include "src/utils.h" |
21 #include "src/zone.h" | 20 #include "src/zone.h" |
22 | 21 |
23 namespace v8 { | 22 namespace v8 { |
24 namespace internal { | 23 namespace internal { |
25 | 24 |
26 // Forward declarations. | 25 // Forward declarations. |
27 struct ChangesOf; | 26 struct ChangesOf; |
28 class HBasicBlock; | 27 class HBasicBlock; |
29 class HDiv; | 28 class HDiv; |
30 class HEnvironment; | 29 class HEnvironment; |
31 class HInferRepresentationPhase; | 30 class HInferRepresentationPhase; |
32 class HInstruction; | 31 class HInstruction; |
33 class HLoopInformation; | 32 class HLoopInformation; |
34 class HStoreNamedField; | 33 class HStoreNamedField; |
35 class HValue; | 34 class HValue; |
36 class LInstruction; | 35 class LInstruction; |
37 class LChunkBuilder; | 36 class LChunkBuilder; |
| 37 class OStream; |
38 | 38 |
39 #define HYDROGEN_ABSTRACT_INSTRUCTION_LIST(V) \ | 39 #define HYDROGEN_ABSTRACT_INSTRUCTION_LIST(V) \ |
40 V(ArithmeticBinaryOperation) \ | 40 V(ArithmeticBinaryOperation) \ |
41 V(BinaryOperation) \ | 41 V(BinaryOperation) \ |
42 V(BitwiseBinaryOperation) \ | 42 V(BitwiseBinaryOperation) \ |
43 V(ControlInstruction) \ | 43 V(ControlInstruction) \ |
44 V(Instruction) \ | 44 V(Instruction) \ |
45 | 45 |
46 | 46 |
47 #define HYDROGEN_CONCRETE_INSTRUCTION_LIST(V) \ | 47 #define HYDROGEN_CONCRETE_INSTRUCTION_LIST(V) \ |
(...skipping 7809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7857 }; | 7857 }; |
7858 | 7858 |
7859 | 7859 |
7860 | 7860 |
7861 #undef DECLARE_INSTRUCTION | 7861 #undef DECLARE_INSTRUCTION |
7862 #undef DECLARE_CONCRETE_INSTRUCTION | 7862 #undef DECLARE_CONCRETE_INSTRUCTION |
7863 | 7863 |
7864 } } // namespace v8::internal | 7864 } } // namespace v8::internal |
7865 | 7865 |
7866 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ | 7866 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ |
OLD | NEW |