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_H_ | 5 #ifndef V8_HYDROGEN_H_ |
6 #define V8_HYDROGEN_H_ | 6 #define V8_HYDROGEN_H_ |
7 | 7 |
8 #include "src/v8.h" | 8 #include "src/v8.h" |
9 | 9 |
10 #include "src/accessors.h" | 10 #include "src/accessors.h" |
11 #include "src/allocation.h" | 11 #include "src/allocation.h" |
12 #include "src/ast.h" | 12 #include "src/ast.h" |
13 #include "src/compiler.h" | 13 #include "src/compiler.h" |
14 #include "src/hydrogen-instructions.h" | 14 #include "src/hydrogen-instructions.h" |
| 15 #include "src/scopes.h" |
15 #include "src/zone.h" | 16 #include "src/zone.h" |
16 #include "src/scopes.h" | |
17 | 17 |
18 namespace v8 { | 18 namespace v8 { |
19 namespace internal { | 19 namespace internal { |
20 | 20 |
21 // Forward declarations. | 21 // Forward declarations. |
22 class BitVector; | 22 class BitVector; |
23 class FunctionState; | 23 class FunctionState; |
24 class HEnvironment; | 24 class HEnvironment; |
25 class HGraph; | 25 class HGraph; |
26 class HLoopInformation; | 26 class HLoopInformation; |
(...skipping 2867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2894 } | 2894 } |
2895 | 2895 |
2896 private: | 2896 private: |
2897 HGraphBuilder* builder_; | 2897 HGraphBuilder* builder_; |
2898 }; | 2898 }; |
2899 | 2899 |
2900 | 2900 |
2901 } } // namespace v8::internal | 2901 } } // namespace v8::internal |
2902 | 2902 |
2903 #endif // V8_HYDROGEN_H_ | 2903 #endif // V8_HYDROGEN_H_ |
OLD | NEW |