Searched refs:maps_ (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/v8/src/
H A Dhydrogen-check-elimination.cc67 MapSet maps_; // The set of known maps for the object. member in struct:v8::internal::HCheckTableEntry
180 DCHECK(old_entry->maps_->size() > 0);
183 new_entry->maps_ = old_entry->maps_;
210 copy->Insert(phi, NULL, pred_entry->maps_, pred_entry->state_);
233 entry->maps_ = new(zone) UniqueSet<Map>(cmp->map(), zone);
241 UniqueSet<Map>* maps = entry->maps_->Copy(zone);
243 entry->maps_ = maps;
258 copy->Insert(left, NULL, re->maps_, re->state_);
261 copy->Insert(right, NULL, le->maps_, l
[all...]
H A Dscopes.h47 maps_[i] = new(zone->New(sizeof(VariableMap))) VariableMap(zone);
53 return maps_[index];
57 VariableMap *maps_[3]; member in class:v8::internal::DynamicScopePart
H A Dhydrogen-instructions.h2769 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_; member in class:v8::FINAL::FINAL
6368 const UniqueSet<Map>* maps() const { return maps_; }
6390 if (this->maps_ == that->maps_) return true;
6391 if (this->maps_ == NULL || that->maps_
6465 const UniqueSet<Map>* maps_; member in class:v8::FINAL::FINAL
[all...]
H A Dobjects.cc7570 : maps_(maps),
7578 if (maps_->length() != other_maps.length()) return false;
7580 int this_hash = MapsHashHelper(maps_, code_flags_);
7584 // Full comparison: for each map in maps_, look for an equivalent map in
7587 for (int i = 0; i < maps_->length(); ++i) {
7590 if (*(maps_->at(i)) == *(other_maps.at(j))) {
7609 return MapsHashHelper(maps_, code_flags_);
7620 // The maps in |maps_| must be copied to a newly allocated FixedArray,
7624 isolate->factory()->NewUninitializedFixedArray(maps_->length() + 1);
7626 for (int i = 0; i < maps_
7645 MapHandleList* maps_; // weak. member in class:v8::internal::PolymorphicCodeCacheHashTableKey
[all...]

Completed in 250 milliseconds