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

Side by Side Diff: src/compiler/ast-graph-builder.h

Issue 1970193002: [compiler] Avoid passing CompilationInfo to profiler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-compiler-sidechannel-2
Patch Set: Created 4 years, 7 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.cc ('k') | src/compiler/ast-loop-assignment-analyzer.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_AST_GRAPH_BUILDER_H_ 5 #ifndef V8_COMPILER_AST_GRAPH_BUILDER_H_
6 #define V8_COMPILER_AST_GRAPH_BUILDER_H_ 6 #define V8_COMPILER_AST_GRAPH_BUILDER_H_
7 7
8 #include "src/ast/ast.h" 8 #include "src/ast/ast.h"
9 #include "src/compiler/js-graph.h" 9 #include "src/compiler/js-graph.h"
10 #include "src/compiler/liveness-analyzer.h" 10 #include "src/compiler/liveness-analyzer.h"
11 #include "src/compiler/state-values-utils.h" 11 #include "src/compiler/state-values-utils.h"
12 12
13 namespace v8 { 13 namespace v8 {
14 namespace internal { 14 namespace internal {
15 15
16 // Forward declarations. 16 // Forward declarations.
17 class BitVector; 17 class BitVector;
18 18 class CompilationInfo;
Yang 2016/05/13 07:07:20 lol... I guess it's because so far we always got i
Michael Starzinger 2016/05/13 08:42:40 Yes. There were several headers unwittingly relyin
19 19
20 namespace compiler { 20 namespace compiler {
21 21
22 // Forward declarations. 22 // Forward declarations.
23 class ControlBuilder; 23 class ControlBuilder;
24 class Graph; 24 class Graph;
25 class LoopAssignmentAnalysis; 25 class LoopAssignmentAnalysis;
26 class LoopBuilder; 26 class LoopBuilder;
27 class Node; 27 class Node;
28 class TypeHintAnalysis; 28 class TypeHintAnalysis;
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 592
593 // Prepare environment to be used as loop header. 593 // Prepare environment to be used as loop header.
594 void PrepareForLoop(BitVector* assigned, bool is_osr = false); 594 void PrepareForLoop(BitVector* assigned, bool is_osr = false);
595 }; 595 };
596 596
597 } // namespace compiler 597 } // namespace compiler
598 } // namespace internal 598 } // namespace internal
599 } // namespace v8 599 } // namespace v8
600 600
601 #endif // V8_COMPILER_AST_GRAPH_BUILDER_H_ 601 #endif // V8_COMPILER_AST_GRAPH_BUILDER_H_
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/compiler/ast-loop-assignment-analyzer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698