OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_ | 5 #ifndef V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_ |
6 #define V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_ | 6 #define V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_ |
7 | 7 |
8 #include "src/base/flags.h" | 8 #include "src/base/flags.h" |
| 9 #include "src/builtins/builtins.h" |
9 #include "src/compiler/graph-reducer.h" | 10 #include "src/compiler/graph-reducer.h" |
10 #include "src/deoptimize-reason.h" | 11 #include "src/deoptimize-reason.h" |
11 #include "src/feedback-vector.h" | 12 #include "src/feedback-vector.h" |
12 | 13 |
13 namespace v8 { | 14 namespace v8 { |
14 namespace internal { | 15 namespace internal { |
15 | 16 |
16 // Forward declarations. | 17 // Forward declarations. |
17 class CompilationDependencies; | 18 class CompilationDependencies; |
18 class Factory; | 19 class Factory; |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 DISALLOW_COPY_AND_ASSIGN(JSNativeContextSpecialization); | 212 DISALLOW_COPY_AND_ASSIGN(JSNativeContextSpecialization); |
212 }; | 213 }; |
213 | 214 |
214 DEFINE_OPERATORS_FOR_FLAGS(JSNativeContextSpecialization::Flags) | 215 DEFINE_OPERATORS_FOR_FLAGS(JSNativeContextSpecialization::Flags) |
215 | 216 |
216 } // namespace compiler | 217 } // namespace compiler |
217 } // namespace internal | 218 } // namespace internal |
218 } // namespace v8 | 219 } // namespace v8 |
219 | 220 |
220 #endif // V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_ | 221 #endif // V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_ |
OLD | NEW |