Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/compiler/graph-builder.cc

Issue 866843003: Contribution of PowerPC port (continuation of 422063005) - AIX Common1 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698