| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_CONTROL_FLOW_OPTIMIZER_H_ | 5 #ifndef V8_COMPILER_CONTROL_FLOW_OPTIMIZER_H_ |
| 6 #define V8_COMPILER_CONTROL_FLOW_OPTIMIZER_H_ | 6 #define V8_COMPILER_CONTROL_FLOW_OPTIMIZER_H_ |
| 7 | 7 |
| 8 #include "src/compiler/node-marker.h" | 8 #include "src/compiler/node-marker.h" |
| 9 #include "src/zone-containers.h" | 9 #include "src/zone/zone-containers.h" |
| 10 | 10 |
| 11 namespace v8 { | 11 namespace v8 { |
| 12 namespace internal { | 12 namespace internal { |
| 13 namespace compiler { | 13 namespace compiler { |
| 14 | 14 |
| 15 // Forward declarations. | 15 // Forward declarations. |
| 16 class CommonOperatorBuilder; | 16 class CommonOperatorBuilder; |
| 17 class Graph; | 17 class Graph; |
| 18 class MachineOperatorBuilder; | 18 class MachineOperatorBuilder; |
| 19 class Node; | 19 class Node; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 47 Zone* const zone_; | 47 Zone* const zone_; |
| 48 | 48 |
| 49 DISALLOW_COPY_AND_ASSIGN(ControlFlowOptimizer); | 49 DISALLOW_COPY_AND_ASSIGN(ControlFlowOptimizer); |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 } // namespace compiler | 52 } // namespace compiler |
| 53 } // namespace internal | 53 } // namespace internal |
| 54 } // namespace v8 | 54 } // namespace v8 |
| 55 | 55 |
| 56 #endif // V8_COMPILER_CONTROL_FLOW_OPTIMIZER_H_ | 56 #endif // V8_COMPILER_CONTROL_FLOW_OPTIMIZER_H_ |
| OLD | NEW |