Home
last modified time | relevance | path

Searched refs:old_space_strings_ (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/heap/
Dheap-inl.h649 old_space_strings_.Add(string); in AddString()
659 if (!old_space_strings_.is_empty()) { in Iterate()
660 Object** start = &old_space_strings_[0]; in Iterate()
661 v->VisitPointers(start, start + old_space_strings_.length()); in Iterate()
675 for (int i = 0; i < old_space_strings_.length(); ++i) { in Verify()
676 Object* obj = Object::cast(old_space_strings_[i]); in Verify()
687 old_space_strings_.Add(string); in AddOldString()
Dheap.cc1611 if (external_string_table_.old_space_strings_.length() > 0) { in UpdateReferencesInExternalStringTable()
1612 Object** start = &external_string_table_.old_space_strings_[0]; in UpdateReferencesInExternalStringTable()
1613 Object** end = start + external_string_table_.old_space_strings_.length(); in UpdateReferencesInExternalStringTable()
5982 old_space_strings_.Add(new_space_strings_[i]); in CleanUp()
5989 for (int i = 0; i < old_space_strings_.length(); ++i) { in CleanUp()
5990 if (old_space_strings_[i] == heap_->the_hole_value()) { in CleanUp()
5993 DCHECK(old_space_strings_[i]->IsExternalString()); in CleanUp()
5994 DCHECK(!heap_->InNewSpace(old_space_strings_[i])); in CleanUp()
5995 old_space_strings_[last++] = old_space_strings_[i]; in CleanUp()
5997 old_space_strings_.Rewind(last); in CleanUp()
[all …]
Dheap.h503 List<Object*> old_space_strings_; variable