Home | History | Annotate | Download | only in compiler

Lines Matching refs:tmp_

373     tmp_ = node_cache_->temp_nodes_.back();
375 int tmp_input_count = tmp_->InputCount();
377 tmp_->TrimInputCount(input_count);
381 tmp_->ReplaceInput(i, inputs[i]);
383 tmp_->AppendInput(node_cache_->graph_->zone(), inputs[i]);
386 NodeProperties::ChangeOp(tmp_, op);
388 tmp_ = node_cache_->graph_->NewNode(op, input_count, inputs);
390 NodeProperties::SetType(tmp_, type);
394 DCHECK(tmp_ || from_);
396 if (!tmp_) {
400 node = node_cache_->Query(tmp_);
402 node_cache_->temp_nodes_.push_back(tmp_);
404 node = tmp_;
408 tmp_ = from_ = nullptr;
413 DCHECK(tmp_ || from_);
414 if (!tmp_) {
416 tmp_ = node_cache_->graph_->CloneNode(from_);
418 tmp_ = node_cache_->temp_nodes_.back();
421 int tmp_input_count = tmp_->InputCount();
423 tmp_->TrimInputCount(from_input_count);
427 tmp_->ReplaceInput(i, from_->InputAt(i));
429 tmp_->AppendInput(node_cache_->graph_->zone(), from_->InputAt(i));
432 NodeProperties::SetType(tmp_, NodeProperties::GetType(from_));
433 NodeProperties::ChangeOp(tmp_, from_->op());
436 return tmp_;