Chromium Code Reviews| 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 #if defined(_AIX) | |
|
Sven Panne
2015/01/27 11:47:06
Use V8_OS_AIX
michael_dawson
2015/01/29 00:08:29
Will do
| |
| 6 #include <alloca.h> | |
|
Sven Panne
2015/01/27 11:47:06
Why do we need this? I don't see any alloca call h
michael_dawson
2015/01/29 00:08:29
Looks like it was added in one merge, but failed t
| |
| 7 #endif | |
| 8 | |
| 5 #include "src/compiler/graph-builder.h" | 9 #include "src/compiler/graph-builder.h" |
| 6 | 10 |
| 7 #include "src/bit-vector.h" | 11 #include "src/bit-vector.h" |
| 8 #include "src/compiler.h" | 12 #include "src/compiler.h" |
| 9 #include "src/compiler/graph-visualizer.h" | 13 #include "src/compiler/graph-visualizer.h" |
| 10 #include "src/compiler/node.h" | 14 #include "src/compiler/node.h" |
| 11 #include "src/compiler/node-properties.h" | 15 #include "src/compiler/node-properties.h" |
| 12 #include "src/compiler/node-properties-inl.h" | 16 #include "src/compiler/node-properties-inl.h" |
| 13 #include "src/compiler/operator-properties.h" | 17 #include "src/compiler/operator-properties.h" |
| 14 | 18 |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 296 if (!dead_control_.is_set()) { | 300 if (!dead_control_.is_set()) { |
| 297 Node* dead_node = graph()->NewNode(common_->Dead()); | 301 Node* dead_node = graph()->NewNode(common_->Dead()); |
| 298 dead_control_.set(dead_node); | 302 dead_control_.set(dead_node); |
| 299 return dead_node; | 303 return dead_node; |
| 300 } | 304 } |
| 301 return dead_control_.get(); | 305 return dead_control_.get(); |
| 302 } | 306 } |
| 303 } | 307 } |
| 304 } | 308 } |
| 305 } // namespace v8::internal::compiler | 309 } // namespace v8::internal::compiler |
| OLD | NEW |