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.h696 old_space_strings_.AddAll(new_space_strings_); in PromoteAllNewSpaceStrings()
705 old_space_strings_.Add(string); in AddString()
718 if (!old_space_strings_.is_empty()) { in IterateAll()
719 Object** start = &old_space_strings_[0]; in IterateAll()
720 v->VisitPointers(start, start + old_space_strings_.length()); in IterateAll()
734 for (int i = 0; i < old_space_strings_.length(); ++i) { in Verify()
735 Object* obj = Object::cast(old_space_strings_[i]); in Verify()
746 old_space_strings_.Add(string); in AddOldString()
Dheap.cc1856 if (external_string_table_.old_space_strings_.length() > 0) { in UpdateReferencesInExternalStringTable()
1857 Object** start = &external_string_table_.old_space_strings_[0]; in UpdateReferencesInExternalStringTable()
1858 Object** end = start + external_string_table_.old_space_strings_.length(); in UpdateReferencesInExternalStringTable()
6229 old_space_strings_.Add(o); in CleanUpNewSpaceStrings()
6240 for (int i = 0; i < old_space_strings_.length(); ++i) { in CleanUpAll()
6241 Object* o = old_space_strings_[i]; in CleanUpAll()
6251 old_space_strings_[last++] = o; in CleanUpAll()
6253 old_space_strings_.Rewind(last); in CleanUpAll()
6254 old_space_strings_.Trim(); in CleanUpAll()
6272 for (int i = 0; i < old_space_strings_.length(); ++i) { in TearDown()
[all …]
Dheap.h1565 List<Object*> old_space_strings_; variable