OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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_EFFECT_CONTROL_LINEARIZER_H_ | 5 #ifndef V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
6 #define V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 6 #define V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
7 | 7 |
8 #include "src/compiler/common-operator.h" | 8 #include "src/compiler/common-operator.h" |
9 #include "src/compiler/graph-assembler.h" | 9 #include "src/compiler/graph-assembler.h" |
10 #include "src/compiler/node.h" | 10 #include "src/compiler/node.h" |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 MachineOperatorBuilder* machine() const; | 148 MachineOperatorBuilder* machine() const; |
149 | 149 |
150 GraphAssembler* gasm() { return &graph_assembler_; } | 150 GraphAssembler* gasm() { return &graph_assembler_; } |
151 | 151 |
152 JSGraph* js_graph_; | 152 JSGraph* js_graph_; |
153 Schedule* schedule_; | 153 Schedule* schedule_; |
154 Zone* temp_zone_; | 154 Zone* temp_zone_; |
155 RegionObservability region_observability_ = RegionObservability::kObservable; | 155 RegionObservability region_observability_ = RegionObservability::kObservable; |
156 SourcePositionTable* source_positions_; | 156 SourcePositionTable* source_positions_; |
157 GraphAssembler graph_assembler_; | 157 GraphAssembler graph_assembler_; |
| 158 Node* frame_state_zapper_; // For tracking down compiler::Node::New crashes. |
158 }; | 159 }; |
159 | 160 |
160 } // namespace compiler | 161 } // namespace compiler |
161 } // namespace internal | 162 } // namespace internal |
162 } // namespace v8 | 163 } // namespace v8 |
163 | 164 |
164 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ | 165 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ |
OLD | NEW |