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_COMPILER_JS_OPERATOR_H_ | 5 #ifndef V8_COMPILER_JS_OPERATOR_H_ |
6 #define V8_COMPILER_JS_OPERATOR_H_ | 6 #define V8_COMPILER_JS_OPERATOR_H_ |
7 | 7 |
8 #include "src/base/compiler-specific.h" | 8 #include "src/base/compiler-specific.h" |
9 #include "src/globals.h" | 9 #include "src/globals.h" |
10 #include "src/runtime/runtime.h" | 10 #include "src/runtime/runtime.h" |
11 #include "src/type-hints.h" | 11 #include "src/type-hints.h" |
12 | 12 |
13 namespace v8 { | 13 namespace v8 { |
14 namespace internal { | 14 namespace internal { |
| 15 |
| 16 class BoilerplateDescription; |
| 17 class ConstantElementsPair; |
| 18 |
15 namespace compiler { | 19 namespace compiler { |
16 | 20 |
17 // Forward declarations. | 21 // Forward declarations. |
18 class Operator; | 22 class Operator; |
19 struct JSOperatorGlobalCache; | 23 struct JSOperatorGlobalCache; |
20 | 24 |
21 | 25 |
22 // Defines a pair of {TypeFeedbackVector} and {TypeFeedbackVectorSlot}, which | 26 // Defines a pair of {TypeFeedbackVector} and {TypeFeedbackVectorSlot}, which |
23 // is used to access the type feedback for a certain {Node}. | 27 // is used to access the type feedback for a certain {Node}. |
24 class V8_EXPORT_PRIVATE VectorSlotPair { | 28 class V8_EXPORT_PRIVATE VectorSlotPair { |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 Zone* const zone_; | 695 Zone* const zone_; |
692 | 696 |
693 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); | 697 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); |
694 }; | 698 }; |
695 | 699 |
696 } // namespace compiler | 700 } // namespace compiler |
697 } // namespace internal | 701 } // namespace internal |
698 } // namespace v8 | 702 } // namespace v8 |
699 | 703 |
700 #endif // V8_COMPILER_JS_OPERATOR_H_ | 704 #endif // V8_COMPILER_JS_OPERATOR_H_ |
OLD | NEW |