| 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" | |
| 9 | |
| 10 #include "src/accessors.h" | 8 #include "src/accessors.h" |
| 11 #include "src/allocation.h" | 9 #include "src/allocation.h" |
| 12 #include "src/ast.h" | 10 #include "src/ast.h" |
| 13 #include "src/bailout-reason.h" | 11 #include "src/bailout-reason.h" |
| 14 #include "src/compiler.h" | 12 #include "src/compiler.h" |
| 15 #include "src/hydrogen-instructions.h" | 13 #include "src/hydrogen-instructions.h" |
| 16 #include "src/scopes.h" | 14 #include "src/scopes.h" |
| 17 #include "src/zone.h" | 15 #include "src/zone.h" |
| 18 | 16 |
| 19 namespace v8 { | 17 namespace v8 { |
| (...skipping 3023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3043 } | 3041 } |
| 3044 | 3042 |
| 3045 private: | 3043 private: |
| 3046 HGraphBuilder* builder_; | 3044 HGraphBuilder* builder_; |
| 3047 }; | 3045 }; |
| 3048 | 3046 |
| 3049 | 3047 |
| 3050 } } // namespace v8::internal | 3048 } } // namespace v8::internal |
| 3051 | 3049 |
| 3052 #endif // V8_HYDROGEN_H_ | 3050 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |