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.h566 old_space_strings_.Add(string); in AddString()
576 if (!old_space_strings_.is_empty()) { in Iterate()
577 Object** start = &old_space_strings_[0]; in Iterate()
578 v->VisitPointers(start, start + old_space_strings_.length()); in Iterate()
592 for (int i = 0; i < old_space_strings_.length(); ++i) { in Verify()
593 Object* obj = Object::cast(old_space_strings_[i]); in Verify()
604 old_space_strings_.Add(string); in AddOldString()
Dheap.cc1828 if (external_string_table_.old_space_strings_.length() > 0) { in UpdateReferencesInExternalStringTable()
1829 Object** start = &external_string_table_.old_space_strings_[0]; in UpdateReferencesInExternalStringTable()
1830 Object** end = start + external_string_table_.old_space_strings_.length(); in UpdateReferencesInExternalStringTable()
6026 old_space_strings_.Add(new_space_strings_[i]); in CleanUp()
6033 for (int i = 0; i < old_space_strings_.length(); ++i) { in CleanUp()
6034 if (old_space_strings_[i] == heap_->the_hole_value()) { in CleanUp()
6037 DCHECK(old_space_strings_[i]->IsExternalString()); in CleanUp()
6038 DCHECK(!heap_->InNewSpace(old_space_strings_[i])); in CleanUp()
6039 old_space_strings_[last++] = old_space_strings_[i]; in CleanUp()
6041 old_space_strings_.Rewind(last); in CleanUp()
[all …]
Dheap.h1618 List<Object*> old_space_strings_; variable