| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "src/compiler/graph.h" |
| 6 |
| 7 #include "src/compiler/common-operator.h" |
| 8 #include "src/compiler/generic-node-inl.h" |
| 9 #include "src/compiler/graph-inl.h" |
| 10 #include "src/compiler/node.h" |
| 11 #include "src/compiler/node-aux-data-inl.h" |
| 12 #include "src/compiler/node-properties.h" |
| 13 #include "src/compiler/node-properties-inl.h" |
| 14 #include "src/compiler/operator-properties.h" |
| 15 #include "src/compiler/operator-properties-inl.h" |
| 16 |
| 17 namespace v8 { |
| 18 namespace internal { |
| 19 namespace compiler { |
| 20 |
| 21 Graph::Graph(Zone* zone) |
| 22 : GenericGraph(zone), |
| 23 decorators_(DecoratorVector::allocator_type(zone)) {} |
| 24 |
| 25 |
| 26 Node* Graph::NewNode(Operator* op, int input_count, Node** inputs) { |
| 27 ASSERT(op->InputCount() <= input_count); |
| 28 Node* result = Node::New(this, input_count, inputs); |
| 29 result->Initialize(op); |
| 30 for (DecoratorVector::iterator i = decorators_.begin(); |
| 31 i != decorators_.end(); ++i) { |
| 32 (*i)->Decorate(result); |
| 33 } |
| 34 return result; |
| 35 } |
| 36 |
| 37 |
| 38 void Graph::ChangeOperator(Node* node, Operator* op) { |
| 39 node->set_op(op); |
| 40 } |
| 41 |
| 42 |
| 43 void Graph::DeleteNode(Node* node) { |
| 44 #if DEBUG |
| 45 // Nodes can't be deleted if they have uses. |
| 46 Node::Uses::iterator use_iterator(node->uses().begin()); |
| 47 ASSERT(use_iterator == node->uses().end()); |
| 48 #endif |
| 49 |
| 50 #if DEBUG |
| 51 memset(node, 0xDE, sizeof(Node)); |
| 52 #endif |
| 53 } |
| 54 |
| 55 } } } // namespace v8::internal::compiler |
| OLD | NEW |