Lines Matching refs:info_for_node_
138 explicit AbstractField(Zone* zone) : info_for_node_(zone) {} in NON_EXPORTED_BASE()
140 : info_for_node_(zone) { in NON_EXPORTED_BASE()
141 info_for_node_.insert(std::make_pair(object, Field(value, name))); in NON_EXPORTED_BASE()
147 that->info_for_node_ = this->info_for_node_; in NON_EXPORTED_BASE()
148 that->info_for_node_.insert(std::make_pair(object, Field(value, name))); in NON_EXPORTED_BASE()
155 return this == that || this->info_for_node_ == that->info_for_node_; in NON_EXPORTED_BASE()
160 for (auto this_it : this->info_for_node_) { in NON_EXPORTED_BASE()
164 auto that_it = that->info_for_node_.find(this_object); in NON_EXPORTED_BASE()
165 if (that_it != that->info_for_node_.end() && in NON_EXPORTED_BASE()
167 copy->info_for_node_.insert(this_it); in NON_EXPORTED_BASE()
188 ZoneMap<Node*, Field> info_for_node_; in NON_EXPORTED_BASE() local
206 return this == that || this->info_for_node_ == that->info_for_node_; in NON_EXPORTED_BASE()
213 ZoneMap<Node*, ZoneHandleSet<Map>> info_for_node_; in NON_EXPORTED_BASE()
267 explicit AbstractStateForEffectNodes(Zone* zone) : info_for_node_(zone) {} in NON_EXPORTED_BASE()
271 Zone* zone() const { return info_for_node_.get_allocator().zone(); } in NON_EXPORTED_BASE()
274 ZoneVector<AbstractState const*> info_for_node_; in NON_EXPORTED_BASE()