OLD | NEW |
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" |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 class AstEffectContext; | 67 class AstEffectContext; |
68 class AstValueContext; | 68 class AstValueContext; |
69 class AstTestContext; | 69 class AstTestContext; |
70 class ContextScope; | 70 class ContextScope; |
71 class ControlScope; | 71 class ControlScope; |
72 class ControlScopeForBreakable; | 72 class ControlScopeForBreakable; |
73 class ControlScopeForIteration; | 73 class ControlScopeForIteration; |
74 class ControlScopeForCatch; | 74 class ControlScopeForCatch; |
75 class ControlScopeForFinally; | 75 class ControlScopeForFinally; |
76 class Environment; | 76 class Environment; |
77 class FrameStateBeforeAndAfter; | |
78 friend class ControlBuilder; | 77 friend class ControlBuilder; |
79 | 78 |
80 Isolate* isolate_; | 79 Isolate* isolate_; |
81 Zone* local_zone_; | 80 Zone* local_zone_; |
82 CompilationInfo* info_; | 81 CompilationInfo* info_; |
83 JSGraph* jsgraph_; | 82 JSGraph* jsgraph_; |
84 Environment* environment_; | 83 Environment* environment_; |
85 AstContext* ast_context_; | 84 AstContext* ast_context_; |
86 | 85 |
87 // List of global declarations for functions and variables. | 86 // List of global declarations for functions and variables. |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
605 | 604 |
606 // Prepare environment to be used as loop header. | 605 // Prepare environment to be used as loop header. |
607 void PrepareForLoop(BitVector* assigned, bool is_osr = false); | 606 void PrepareForLoop(BitVector* assigned, bool is_osr = false); |
608 }; | 607 }; |
609 | 608 |
610 } // namespace compiler | 609 } // namespace compiler |
611 } // namespace internal | 610 } // namespace internal |
612 } // namespace v8 | 611 } // namespace v8 |
613 | 612 |
614 #endif // V8_COMPILER_AST_GRAPH_BUILDER_H_ | 613 #endif // V8_COMPILER_AST_GRAPH_BUILDER_H_ |
OLD | NEW |