Home
last modified time | relevance | path

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

/external/v8/src/
Dheap-inl.h573 new_space_strings_.Add(string); in AddString()
581 if (!new_space_strings_.is_empty()) { in Iterate()
582 Object** start = &new_space_strings_[0]; in Iterate()
583 v->VisitPointers(start, start + new_space_strings_.length()); in Iterate()
596 for (int i = 0; i < new_space_strings_.length(); ++i) { in Verify()
597 ASSERT(heap_->InNewSpace(new_space_strings_[i])); in Verify()
598 ASSERT(new_space_strings_[i] != HEAP->raw_unchecked_the_hole_value()); in Verify()
616 new_space_strings_.Rewind(position); in ShrinkNewStrings()
Dheap.cc1272 if (external_string_table_.new_space_strings_.is_empty()) return; in UpdateNewSpaceReferencesInExternalStringTable()
1274 Object** start = &external_string_table_.new_space_strings_[0]; in UpdateNewSpaceReferencesInExternalStringTable()
1275 Object** end = start + external_string_table_.new_space_strings_.length(); in UpdateNewSpaceReferencesInExternalStringTable()
6894 for (int i = 0; i < new_space_strings_.length(); ++i) { in CleanUp()
6895 if (new_space_strings_[i] == heap_->raw_unchecked_the_hole_value()) { in CleanUp()
6898 if (heap_->InNewSpace(new_space_strings_[i])) { in CleanUp()
6899 new_space_strings_[last++] = new_space_strings_[i]; in CleanUp()
6901 old_space_strings_.Add(new_space_strings_[i]); in CleanUp()
6904 new_space_strings_.Rewind(last); in CleanUp()
6921 new_space_strings_.Free(); in TearDown()
Dheap.h420 List<Object*> new_space_strings_; variable