Home | History | Annotate | Download | only in src

Lines Matching refs:maps_

2769   const UniqueSet<Map>* maps() const { return maps_; }
2770 void set_maps(const UniqueSet<Map>* maps) { maps_ = maps; }
2806 : HTemplateInstruction<2>(HType::HeapObject()), maps_(maps),
2820 : HTemplateInstruction<2>(HType::HeapObject()), maps_(maps),
2839 const UniqueSet<Map>* maps_;
6368 const UniqueSet<Map>* maps() const { return maps_; }
6390 if (this->maps_ == that->maps_) return true;
6391 if (this->maps_ == NULL || that->maps_ == NULL) return false;
6392 return this->maps_->IsSubset(that->maps_);
6401 if (this->maps_ == that->maps_) return true;
6402 return (this->maps_ != NULL &&
6403 that->maps_ != NULL &&
6404 this->maps_->Equals(that->maps_));
6411 : access_(access), maps_(NULL) {
6447 : HTemplateInstruction<2>(type), access_(access), maps_(maps) {
6465 const UniqueSet<Map>* maps_;