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.h697 old_space_strings_.Add(string); in AddString()
707 if (!old_space_strings_.is_empty()) { in Iterate()
708 Object** start = &old_space_strings_[0]; in Iterate()
709 v->VisitPointers(start, start + old_space_strings_.length()); in Iterate()
723 for (int i = 0; i < old_space_strings_.length(); ++i) { in Verify()
724 Object* obj = Object::cast(old_space_strings_[i]); in Verify()
735 old_space_strings_.Add(string); in AddOldString()
Dheap.cc1784 if (external_string_table_.old_space_strings_.length() > 0) { in UpdateReferencesInExternalStringTable()
1785 Object** start = &external_string_table_.old_space_strings_[0]; in UpdateReferencesInExternalStringTable()
1786 Object** end = start + external_string_table_.old_space_strings_.length(); in UpdateReferencesInExternalStringTable()
6344 old_space_strings_.Add(new_space_strings_[i]); in CleanUp()
6351 for (int i = 0; i < old_space_strings_.length(); ++i) { in CleanUp()
6352 if (old_space_strings_[i]->IsTheHole(isolate)) { in CleanUp()
6355 DCHECK(old_space_strings_[i]->IsExternalString()); in CleanUp()
6356 DCHECK(!heap_->InNewSpace(old_space_strings_[i])); in CleanUp()
6357 old_space_strings_[last++] = old_space_strings_[i]; in CleanUp()
6359 old_space_strings_.Rewind(last); in CleanUp()
[all …]
Dheap.h1536 List<Object*> old_space_strings_; variable