HomeSort by relevance Sort by last modified time
    Searched refs:old_space (Results 1 - 25 of 26) sorted by null

1 2

  /external/v8/test/cctest/heap/
test-compaction.cc 51 CHECK(heap->old_space()->Expand());
99 CHECK(heap->old_space()->Expand());
112 CHECK(heap->old_space()->Expand());
176 CHECK(heap->old_space()->Expand());
194 CHECK(heap->old_space()->Expand());
262 CHECK(heap->old_space()->Expand());
287 CHECK(heap->old_space()->Expand());
heap-utils.cc 21 heap->old_space()->EmptyAllocationInfo();
22 for (Page* page : *heap->old_space()) {
40 heap->old_space()->EmptyAllocationInfo();
41 int overall_free_memory = static_cast<int>(heap->old_space()->Available());
61 *heap->old_space()->allocation_top_address(), free_memory,
test-alloc.cc 55 heap::SimulateFullSpace(heap->old_space());
59 heap::SimulateFullSpace(heap->old_space());
66 CHECK(kLargeObjectSpaceFillerSize > heap->old_space()->AreaSize());
test-incremental-marking.cc 122 i::heap::SimulateFullSpace(CcTest::heap()->old_space());
147 i::heap::SimulateFullSpace(CcTest::heap()->old_space());
173 i::heap::SimulateFullSpace(CcTest::heap()->old_space());
test-page-promotion.cc 58 CHECK(!heap->old_space()->ContainsSlow(first_page->address()));
59 heap::GcAndSweep(heap, OLD_SPACE);
61 CHECK(heap->old_space()->ContainsSlow(first_page->address()));
83 heap::GcAndSweep(heap, OLD_SPACE);
119 heap::GcAndSweep(heap, OLD_SPACE);
test-spaces.cc 313 OldSpace faked_space(heap, OLD_SPACE, NOT_EXECUTABLE);
386 OldSpace* s = new OldSpace(heap, OLD_SPACE, NOT_EXECUTABLE);
411 new CompactionSpace(heap, OLD_SPACE, NOT_EXECUTABLE);
415 OldSpace* old_space = new OldSpace(heap, OLD_SPACE, NOT_EXECUTABLE); local
416 CHECK(old_space != NULL);
417 CHECK(old_space->SetUp());
430 int pages_in_old_space = old_space->CountTotalPages();
435 old_space->MergeCompactionSpace(compaction_space);
436 CHECK_EQ(old_space->CountTotalPages()
    [all...]
test-heap.cc 656 heap->CollectGarbage(OLD_SPACE);
709 heap->CollectGarbage(OLD_SPACE);
766 heap::SimulateFullSpace(heap->old_space());
3577 PagedSpace* old_space = heap->old_space(); local
5481 PagedSpace* old_space = heap->old_space(); local
    [all...]
test-lab.cc 17 AllocationResult result = heap->old_space()->AllocateRaw(
test-array-buffer-tracker.cc 37 heap::GcAndSweep(heap, OLD_SPACE);
39 heap::GcAndSweep(heap, OLD_SPACE);
47 heap::GcAndSweep(heap, OLD_SPACE);
48 heap::GcAndSweep(heap, OLD_SPACE);
76 heap::GcAndSweep(heap, OLD_SPACE);
77 heap::GcAndSweep(heap, OLD_SPACE);
97 heap::GcAndSweep(heap, OLD_SPACE);
107 heap::GcAndSweep(heap, OLD_SPACE);
108 heap::GcAndSweep(heap, OLD_SPACE);
118 heap::AbandonCurrentlyFreeMemory(heap->old_space());
    [all...]
  /external/v8/src/extensions/
statistics-extension.cc 123 {heap->old_space()->Size(), "old_space_live_bytes"},
124 {heap->old_space()->Available(), "old_space_available_bytes"},
125 {heap->old_space()->CommittedMemory(), "old_space_commited_bytes"},
  /external/v8/test/cctest/
test-slots-buffer.cc 23 CHECK(heap->old_space()->Contains(*array));
104 heap::SimulateFullSpace(heap->old_space());
test-weakmaps.cc 179 Page* first_page = heap->old_space()->anchor()->next_page();
180 heap::SimulateFullSpace(heap->old_space());
218 Page* first_page = heap->old_space()->anchor()->next_page();
219 heap::SimulateFullSpace(heap->old_space());
test-weaksets.cc 178 Page* first_page = heap->old_space()->anchor()->next_page();
179 heap::SimulateFullSpace(heap->old_space());
217 Page* first_page = heap->old_space()->anchor()->next_page();
218 heap::SimulateFullSpace(heap->old_space());
test-unboxed-doubles.cc 1092 PagedSpace* old_space = heap->old_space(); local
1373 PagedSpace* old_space = heap->old_space(); local
1435 PagedSpace* old_space = heap->old_space(); local
    [all...]
test-dictionary.cc 179 heap::SimulateFullSpace(CcTest::heap()->old_space());
210 heap::SimulateFullSpace(CcTest::heap()->old_space());
  /external/v8/src/heap/
remembered-set.cc 19 for (MemoryChunk* chunk : *heap->old_space()) {
incremental-marking.cc 363 DeactivateIncrementalWriteBarrierForSpace(heap_->old_space());
389 ActivateIncrementalWriteBarrier(heap_->old_space());
572 OldSpace* old_space = heap()->old_space(); local
573 old_space->EmptyAllocationInfo();
574 old_space->free_list()->Reset();
    [all...]
spaces-inl.h 350 old_iterator_(heap->old_space()->begin()),
358 if (old_iterator_ != heap_->old_space()->end()) return *(old_iterator_++);
486 DCHECK(identity() == OLD_SPACE);
mark-compact.cc 160 VerifyMarking(heap->old_space());
222 if (FLAG_use_allocation_folding && (space == heap->old_space())) {
233 VerifyEvacuation(heap, heap->old_space());
290 CollectEvacuationCandidates(heap()->old_space());
302 heap()->old_space()->EvictEvacuationCandidatesFromLinearAllocationArea();
373 VerifyMarkbitsAreClean(heap_->old_space());
429 ClearMarkbitsInPagedSpace(heap_->old_space());
568 heap()->old_space()->RefillFreeList();
630 case OLD_SPACE:
631 return "OLD_SPACE";
    [all...]
scavenger.cc 182 heap->old_space()->AllocateRaw(object_size, alignment);
heap.h 928 OldSpace* old_space() { return old_space_; } function in class:v8::internal::Heap
    [all...]
heap.cc 480 case OLD_SPACE:
481 return "old_space";
692 (old_space()->CommittedMemory() * 100.0) / CommittedMemory()));
733 UPDATE_COUNTERS_AND_FRAGMENTATION_FOR_SPACE(old_space)
870 CollectGarbage(OLD_SPACE, gc_reason, gc_callback_flags);
    [all...]
spaces.cc 42 DCHECK(owner == page->heap()->old_space() ||
    [all...]
  /art/runtime/gc/space/
space_create_test.cc 172 space::Space* old_space = space; local
176 heap->RemoveSpace(old_space);
182 delete old_space;
  /external/v8/test/cctest/compiler/
test-simplified-lowering.cc 676 CHECK(t.heap()->old_space()->Contains(result) || flag[i] == NOT_TENURED);
    [all...]

Completed in 1051 milliseconds

1 2