Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/
Dheap-inl.h588 new_space_strings_.Add(string); in AddString()
596 if (!new_space_strings_.is_empty()) { in Iterate()
597 Object** start = &new_space_strings_[0]; in Iterate()
598 v->VisitPointers(start, start + new_space_strings_.length()); in Iterate()
611 for (int i = 0; i < new_space_strings_.length(); ++i) { in Verify()
612 Object* obj = Object::cast(new_space_strings_[i]); in Verify()
633 new_space_strings_.Rewind(position); in ShrinkNewStrings()
Dheap.cc1609 if (external_string_table_.new_space_strings_.is_empty()) return; in UpdateNewSpaceReferencesInExternalStringTable()
1611 Object** start = &external_string_table_.new_space_strings_[0]; in UpdateNewSpaceReferencesInExternalStringTable()
1612 Object** end = start + external_string_table_.new_space_strings_.length(); in UpdateNewSpaceReferencesInExternalStringTable()
6232 for (int i = 0; i < new_space_strings_.length(); ++i) { in CleanUp()
6233 if (new_space_strings_[i] == heap_->the_hole_value()) { in CleanUp()
6236 ASSERT(new_space_strings_[i]->IsExternalString()); in CleanUp()
6237 if (heap_->InNewSpace(new_space_strings_[i])) { in CleanUp()
6238 new_space_strings_[last++] = new_space_strings_[i]; in CleanUp()
6240 old_space_strings_.Add(new_space_strings_[i]); in CleanUp()
6243 new_space_strings_.Rewind(last); in CleanUp()
[all …]
Dheap.h532 List<Object*> new_space_strings_; variable