Lines Matching refs:info_for_node_
319 for (auto pair : info_for_node_) { in Lookup()
355 for (auto pair : this->info_for_node_) { in Kill()
359 for (auto pair : this->info_for_node_) { in Kill()
362 that->info_for_node_.insert(pair); in Kill()
372 for (auto pair : info_for_node_) { in Print()
380 : info_for_node_(zone) {} in AbstractMaps()
384 : info_for_node_(zone) { in AbstractMaps()
386 info_for_node_.insert(std::make_pair(object, maps)); in AbstractMaps()
391 auto it = info_for_node_.find(ResolveRenames(object)); in Lookup()
392 if (it == info_for_node_.end()) return false; in Lookup()
399 for (auto pair : this->info_for_node_) { in Kill()
402 for (auto pair : this->info_for_node_) { in Kill()
403 if (!alias_info.MayAlias(pair.first)) that->info_for_node_.insert(pair); in Kill()
415 for (auto this_it : this->info_for_node_) { in Merge()
418 auto that_it = that->info_for_node_.find(this_object); in Merge()
419 if (that_it != that->info_for_node_.end() && that_it->second == this_maps) { in Merge()
420 copy->info_for_node_.insert(this_it); in Merge()
429 that->info_for_node_ = this->info_for_node_; in Extend()
431 that->info_for_node_[object] = maps; in Extend()
438 for (auto pair : info_for_node_) { in Print()
715 if (id < info_for_node_.size()) return info_for_node_[id]; in Get()
722 if (id >= info_for_node_.size()) info_for_node_.resize(id + 1, nullptr); in Set()
723 info_for_node_[id] = state; in Set()