• Home
  • Raw
  • Download

Lines Matching refs:node

102     for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) {  in Lookup()  local
103 if (node->GetHashCode() == hash_code) { in Lookup()
104 HInstruction* existing = node->GetInstruction(); in Lookup()
118 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) { in Contains() local
119 if (node->GetInstruction() == instruction) { in Contains()
128 DeleteAllImpureWhich([side_effects](Node* node) { in Kill() argument
129 return node->GetInstruction()->GetSideEffects().MayDependOn(side_effects); in Kill()
150 DeleteAllImpureWhich([predecessor](Node* node) { in IntersectWith() argument
151 return !predecessor->Contains(node->GetInstruction()); in IntersectWith()
175 for (Node* node = other.buckets_[i]; node != nullptr; node = node->GetNext()) { in PopulateFromInternal() local
176 size_t new_index = BucketIndex(node->GetHashCode()); in PopulateFromInternal()
177 buckets_[new_index] = node->Dup(allocator_, buckets_[new_index]); in PopulateFromInternal()
194 void SetNext(Node* node) { next_ = node; } in SetNext() argument
217 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) { in CloneBucket() local
218 clone_current = node->Dup(allocator_, nullptr); in CloneBucket()
219 if (node == iterator) { in CloneBucket()
238 Node* node = buckets_[i]; in DeleteAllImpureWhich() local
241 if (node == nullptr) { in DeleteAllImpureWhich()
248 while (node != nullptr) { in DeleteAllImpureWhich()
249 if (cond(node)) { in DeleteAllImpureWhich()
254 node = (previous == nullptr) ? buckets_[i] : previous->GetNext(); in DeleteAllImpureWhich()
257 previous = node; in DeleteAllImpureWhich()
258 node = node->GetNext(); in DeleteAllImpureWhich()
264 DCHECK(buckets_owned_.IsBitSet(i) || node == nullptr); in DeleteAllImpureWhich()
268 while (node != nullptr) { in DeleteAllImpureWhich()
269 Node* next = node->GetNext(); in DeleteAllImpureWhich()
270 if (cond(node)) { in DeleteAllImpureWhich()
277 previous = node; in DeleteAllImpureWhich()
279 node = next; in DeleteAllImpureWhich()