Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(450)

Side by Side Diff: src/compiler/js-operator.h

Issue 2675233002: [iwyu] runtime.h doesn't need objects.h (Closed)
Patch Set: more Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/ast-graph-builder.cc ('k') | src/globals.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/handles.h"
10 #include "src/runtime/runtime.h" 11 #include "src/runtime/runtime.h"
11 #include "src/type-hints.h" 12 #include "src/type-hints.h"
12 13
13 namespace v8 { 14 namespace v8 {
14 namespace internal { 15 namespace internal {
15 16
17 class AllocationSite;
16 class BoilerplateDescription; 18 class BoilerplateDescription;
17 class ConstantElementsPair; 19 class ConstantElementsPair;
20 class SharedFunctionInfo;
21 class TypeFeedbackVector;
18 22
19 namespace compiler { 23 namespace compiler {
20 24
21 // Forward declarations. 25 // Forward declarations.
22 class Operator; 26 class Operator;
23 struct JSOperatorGlobalCache; 27 struct JSOperatorGlobalCache;
24 28
25 29
26 // Defines a pair of {TypeFeedbackVector} and {TypeFeedbackVectorSlot}, which 30 // Defines a pair of {TypeFeedbackVector} and {TypeFeedbackVectorSlot}, which
27 // is used to access the type feedback for a certain {Node}. 31 // is used to access the type feedback for a certain {Node}.
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 Zone* const zone_; 692 Zone* const zone_;
689 693
690 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); 694 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder);
691 }; 695 };
692 696
693 } // namespace compiler 697 } // namespace compiler
694 } // namespace internal 698 } // namespace internal
695 } // namespace v8 699 } // namespace v8
696 700
697 #endif // V8_COMPILER_JS_OPERATOR_H_ 701 #endif // V8_COMPILER_JS_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/ast-graph-builder.cc ('k') | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698