| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_LITHIUM_CODEGEN_H_ | 5 #ifndef V8_LITHIUM_CODEGEN_H_ |
| 6 #define V8_LITHIUM_CODEGEN_H_ | 6 #define V8_LITHIUM_CODEGEN_H_ |
| 7 | 7 |
| 8 #include "src/v8.h" | |
| 9 | |
| 10 #include "src/bailout-reason.h" | 8 #include "src/bailout-reason.h" |
| 11 #include "src/compiler.h" | 9 #include "src/compiler.h" |
| 12 #include "src/deoptimizer.h" | 10 #include "src/deoptimizer.h" |
| 13 | 11 |
| 14 namespace v8 { | 12 namespace v8 { |
| 15 namespace internal { | 13 namespace internal { |
| 16 | 14 |
| 17 class LEnvironment; | 15 class LEnvironment; |
| 18 class LInstruction; | 16 class LInstruction; |
| 19 class LPlatformChunk; | 17 class LPlatformChunk; |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 | 87 |
| 90 // Methods for code dependencies. | 88 // Methods for code dependencies. |
| 91 void AddDeprecationDependency(Handle<Map> map); | 89 void AddDeprecationDependency(Handle<Map> map); |
| 92 void AddStabilityDependency(Handle<Map> map); | 90 void AddStabilityDependency(Handle<Map> map); |
| 93 }; | 91 }; |
| 94 | 92 |
| 95 | 93 |
| 96 } } // namespace v8::internal | 94 } } // namespace v8::internal |
| 97 | 95 |
| 98 #endif // V8_LITHIUM_CODEGEN_H_ | 96 #endif // V8_LITHIUM_CODEGEN_H_ |
| OLD | NEW |