Lines Matching refs:node
11 #include "src/compiler/node-properties.h"
12 #include "src/compiler/node.h"
32 void Graph::Decorate(Node* node) {
34 decorator->Decorate(node);
52 Node* node = NewNodeUnchecked(op, input_count, inputs, incomplete);
53 Verifier::VerifyNode(node);
54 return node;
59 Node* const node =
61 Decorate(node);
62 return node;
66 Node* Graph::CloneNode(const Node* node) {
67 DCHECK_NOT_NULL(node);
68 Node* const clone = Node::Clone(zone(), NextNodeId(), node);
75 // A node's id is internally stored in a bit field using fewer bits than