| OLD | NEW |
| 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 #include "src/compiler/graph-builder.h" | 5 #include "src/compiler/graph-builder.h" |
| 6 | 6 |
| 7 #include "src/compiler.h" | 7 #include "src/compiler.h" |
| 8 #include "src/compiler/generic-graph.h" | 8 #include "src/compiler/generic-graph.h" |
| 9 #include "src/compiler/generic-node.h" | |
| 10 #include "src/compiler/generic-node-inl.h" | |
| 11 #include "src/compiler/graph-visualizer.h" | 9 #include "src/compiler/graph-visualizer.h" |
| 12 #include "src/compiler/node-properties.h" | 10 #include "src/compiler/node-properties.h" |
| 13 #include "src/compiler/node-properties-inl.h" | 11 #include "src/compiler/node-properties-inl.h" |
| 14 #include "src/compiler/operator-properties.h" | 12 #include "src/compiler/operator-properties.h" |
| 15 #include "src/compiler/operator-properties-inl.h" | 13 #include "src/compiler/operator-properties-inl.h" |
| 16 | 14 |
| 17 namespace v8 { | 15 namespace v8 { |
| 18 namespace internal { | 16 namespace internal { |
| 19 namespace compiler { | 17 namespace compiler { |
| 20 | 18 |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 if (!dead_control_.is_set()) { | 255 if (!dead_control_.is_set()) { |
| 258 Node* dead_node = graph()->NewNode(common_->Dead()); | 256 Node* dead_node = graph()->NewNode(common_->Dead()); |
| 259 dead_control_.set(dead_node); | 257 dead_control_.set(dead_node); |
| 260 return dead_node; | 258 return dead_node; |
| 261 } | 259 } |
| 262 return dead_control_.get(); | 260 return dead_control_.get(); |
| 263 } | 261 } |
| 264 } | 262 } |
| 265 } | 263 } |
| 266 } // namespace v8::internal::compiler | 264 } // namespace v8::internal::compiler |
| OLD | NEW |