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

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

Issue 429863004: Fix build failures with LLVM-GCC 4.2 on Mac (moar). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Moar of the same. Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | test/cctest/compiler/codegen-tester.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "src/compiler/graph.h" 5 #include "src/compiler/graph.h"
6 6
7 #include "src/compiler/common-operator.h" 7 #include "src/compiler/common-operator.h"
8 #include "src/compiler/generic-node-inl.h" 8 #include "src/compiler/generic-node-inl.h"
9 #include "src/compiler/graph-inl.h" 9 #include "src/compiler/graph-inl.h"
10 #include "src/compiler/node.h" 10 #include "src/compiler/node.h"
11 #include "src/compiler/node-aux-data-inl.h" 11 #include "src/compiler/node-aux-data-inl.h"
12 #include "src/compiler/node-properties.h" 12 #include "src/compiler/node-properties.h"
13 #include "src/compiler/node-properties-inl.h" 13 #include "src/compiler/node-properties-inl.h"
14 #include "src/compiler/operator-properties.h" 14 #include "src/compiler/operator-properties.h"
15 #include "src/compiler/operator-properties-inl.h" 15 #include "src/compiler/operator-properties-inl.h"
16 16
17 namespace v8 { 17 namespace v8 {
18 namespace internal { 18 namespace internal {
19 namespace compiler { 19 namespace compiler {
20 20
21 Graph::Graph(Zone* zone) 21 Graph::Graph(Zone* zone)
22 : GenericGraph(zone), decorators_(DecoratorVector::allocator_type(zone)) {} 22 : GenericGraph<Node>(zone),
23 decorators_(DecoratorVector::allocator_type(zone)) {}
23 24
24 25
25 Node* Graph::NewNode(Operator* op, int input_count, Node** inputs) { 26 Node* Graph::NewNode(Operator* op, int input_count, Node** inputs) {
26 ASSERT(op->InputCount() <= input_count); 27 ASSERT(op->InputCount() <= input_count);
27 Node* result = Node::New(this, input_count, inputs); 28 Node* result = Node::New(this, input_count, inputs);
28 result->Initialize(op); 29 result->Initialize(op);
29 for (DecoratorVector::iterator i = decorators_.begin(); 30 for (DecoratorVector::iterator i = decorators_.begin();
30 i != decorators_.end(); ++i) { 31 i != decorators_.end(); ++i) {
31 (*i)->Decorate(result); 32 (*i)->Decorate(result);
32 } 33 }
(...skipping 11 matching lines...) Expand all
44 ASSERT(use_iterator == node->uses().end()); 45 ASSERT(use_iterator == node->uses().end());
45 #endif 46 #endif
46 47
47 #if DEBUG 48 #if DEBUG
48 memset(node, 0xDE, sizeof(Node)); 49 memset(node, 0xDE, sizeof(Node));
49 #endif 50 #endif
50 } 51 }
51 } 52 }
52 } 53 }
53 } // namespace v8::internal::compiler 54 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « no previous file | test/cctest/compiler/codegen-tester.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698