Home | History | Annotate | Download | only in compiler

Lines Matching refs:Zone

11 Node::OutOfLineInputs* Node::OutOfLineInputs::New(Zone* zone, int capacity) {
14 intptr_t raw_buffer = reinterpret_cast<intptr_t>(zone->New(size));
52 Node* Node::New(Zone* zone, NodeId id, const Operator* op, int input_count,
73 OutOfLineInputs* outline = OutOfLineInputs::New(zone, capacity);
76 void* node_buffer = zone->New(sizeof(Node));
95 intptr_t raw_buffer = reinterpret_cast<intptr_t>(zone->New(size));
119 Node* Node::Clone(Zone* zone, NodeId id, const Node* node) {
124 Node* const clone = New(zone, id, node->op(), input_count, inputs, false);
137 void Node::AppendInput(Zone* zone, Node* new_to) {
138 DCHECK_NOT_NULL(zone);
157 outline = OutOfLineInputs::New(zone, input_count * 2 + 3);
167 outline = OutOfLineInputs::New(zone, input_count * 2 + 3);
184 void Node::InsertInput(Zone* zone, int index, Node* new_to) {
185 DCHECK_NOT_NULL(zone);
188 AppendInput(zone, InputAt(InputCount() - 1));