Lines Matching defs:that
477 void DependInfoNode::Merge(EarlyElimination* elimination, DependInfoNode* that)
481 auto rhs = that->head_;
509 if (this->frameState_ != that->frameState_) {
514 bool DependInfoNode::Equals(DependInfoNode* that)
516 if (that == nullptr) {
519 if (size_ != that->size_ || frameState_ != that->frameState_) {
523 auto rhs = that->head_;
575 DependInfoNode* that = new (chunk_) DependInfoNode(chunk_);
577 that->head_ = node;
578 that->size_ = size_ + 1;
579 that->frameState_ = frameState_;
580 return that;
586 DependInfoNode* that = new (chunk_) DependInfoNode(chunk_);
588 that->head_ = head_;
589 that->size_ = size_;
590 that->frameState_ = framestate;
591 return that;
596 DependInfoNode* that = new (chunk_) DependInfoNode(chunk_);
604 that = that->UpdateNode(gateStack.top());
607 return that;