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

1 2

  /external/chromium_org/v8/src/
sweeper-thread.cc 49 free_list_old_pointer_space_(heap_->paged_space(OLD_POINTER_SPACE)),
52 heap_->paged_space(OLD_POINTER_SPACE)) {
74 collector_->SweepInParallel(heap_->old_pointer_space(),
83 if (space->identity() == OLD_POINTER_SPACE) {
snapshot-common.cc 67 deserializer->set_reservation(OLD_POINTER_SPACE, pointer_size);
80 deserializer->set_reservation(OLD_POINTER_SPACE, pointer_space_used_);
137 deserializer.set_reservation(OLD_POINTER_SPACE, context_pointer_space_used_);
v8globals.h 179 OLD_POINTER_SPACE, // May contain pointers to new space.
189 FIRST_PAGED_SPACE = OLD_POINTER_SPACE,
mksnapshot.cc 387 partial_ser.CurrentAllocationAddress(i::OLD_POINTER_SPACE),
396 ser.CurrentAllocationAddress(i::OLD_POINTER_SPACE),
heap-inl.h 245 if (OLD_POINTER_SPACE == space) {
384 return (space == OLD_POINTER_SPACE)
404 if (type == SYMBOL_TYPE) return OLD_POINTER_SPACE;
410 ? OLD_POINTER_SPACE
413 return (type <= LAST_DATA_TYPE) ? OLD_DATA_SPACE : OLD_POINTER_SPACE;
438 case OLD_POINTER_SPACE:
heap.cc 596 (old_pointer_space()->CommittedMemory() * 100.0) /
656 UPDATE_COUNTERS_AND_FRAGMENTATION_FOR_SPACE(old_pointer_space)
681 CollectGarbage(OLD_POINTER_SPACE, gc_reason);
709 if (!CollectGarbage(OLD_POINTER_SPACE, MARK_COMPACTOR, gc_reason, NULL) &&
    [all...]
heap.h 561 OldSpace* old_pointer_space() { return old_pointer_space_; } function in class:v8::internal::Heap
572 case OLD_POINTER_SPACE:
573 return old_pointer_space();
    [all...]
mark-compact.cc 151 VerifyMarking(heap->old_pointer_space());
233 VerifyEvacuation(heap->old_pointer_space());
375 CollectEvacuationCandidates(heap()->old_pointer_space());
392 heap()->old_pointer_space()->EvictEvacuationCandidatesFromFreeLists();
478 VerifyMarkbitsAreClean(heap_->old_pointer_space());
541 ClearMarkbitsInPagedSpace(heap_->old_pointer_space());
573 StealMemoryFromSweeperThreads(heap()->paged_space(OLD_POINTER_SPACE));
575 heap()->paged_space(OLD_POINTER_SPACE)->ResetUnsweptFreeBytes();
645 case OLD_POINTER_SPACE: return "OLD_POINTER_SPACE";
    [all...]
factory.cc     [all...]
serialize.cc     [all...]
  /external/v8/test/cctest/
test-mark-compact.cc 107 HEAP->CollectGarbage(OLD_POINTER_SPACE);
110 CHECK(HEAP->InSpace(*array, OLD_POINTER_SPACE));
124 HEAP->CollectGarbage(OLD_POINTER_SPACE);
152 HEAP->CollectGarbage(OLD_POINTER_SPACE);
161 HEAP->CollectGarbage(OLD_POINTER_SPACE);
202 HEAP->CollectGarbage(OLD_POINTER_SPACE);
224 HEAP->CollectGarbage(OLD_POINTER_SPACE);
298 HEAP->CollectGarbage(OLD_POINTER_SPACE);
369 HEAP->CollectGarbage(OLD_POINTER_SPACE);
397 HEAP->CollectGarbage(OLD_POINTER_SPACE);
    [all...]
test-spaces.cc 141 OLD_POINTER_SPACE,
220 OLD_POINTER_SPACE,
test-heap.cc 188 CHECK_EQ(OLD_POINTER_SPACE,
189 Failure::RetryAfterGC(OLD_POINTER_SPACE)->allocation_space());
398 HEAP->CollectGarbage(OLD_POINTER_SPACE);
408 HEAP->CollectGarbage(OLD_POINTER_SPACE);
443 HEAP->CollectGarbage(OLD_POINTER_SPACE);
812 // Allocate a JS array to OLD_POINTER_SPACE and NEW_SPACE
923 Address old_pointer_space_top = HEAP->old_pointer_space()->top();
931 CHECK(HEAP->old_pointer_space()->Contains(clone->address()));
    [all...]
test-serialize.cc 391 p_ser.CurrentAllocationAddress(OLD_POINTER_SPACE),
510 p_ser.CurrentAllocationAddress(OLD_POINTER_SPACE),
608 page_fullness > HEAP->old_pointer_space()->AreaSize()) {
  /external/chromium_org/v8/test/cctest/
test-mark-compact.cc 93 heap->CollectGarbage(OLD_POINTER_SPACE);
96 CHECK(heap->InSpace(*array, OLD_POINTER_SPACE));
118 SimulateFullSpace(heap->old_pointer_space());
121 heap->CollectGarbage(OLD_POINTER_SPACE);
135 heap->CollectGarbage(OLD_POINTER_SPACE, "trigger 1");
176 heap->CollectGarbage(OLD_POINTER_SPACE, "trigger 4");
197 heap->CollectGarbage(OLD_POINTER_SPACE, "trigger 5");
316 heap->CollectGarbage(OLD_POINTER_SPACE);
344 heap->CollectGarbage(OLD_POINTER_SPACE);
357 heap->CollectGarbage(OLD_POINTER_SPACE);
    [all...]
test-serialize.cc 238 ser.CurrentAllocationAddress(OLD_POINTER_SPACE),
431 p_ser.CurrentAllocationAddress(OLD_POINTER_SPACE),
440 startup_serializer.CurrentAllocationAddress(OLD_POINTER_SPACE),
477 deserializer->set_reservation(OLD_POINTER_SPACE, pointer_size);
578 p_ser.CurrentAllocationAddress(OLD_POINTER_SPACE),
587 startup_serializer.CurrentAllocationAddress(OLD_POINTER_SPACE),
test-spaces.cc 278 OLD_POINTER_SPACE,
355 OLD_POINTER_SPACE,
test-heap.cc 243 CHECK_EQ(OLD_POINTER_SPACE,
244 Failure::RetryAfterGC(OLD_POINTER_SPACE)->allocation_space());
469 heap->CollectGarbage(OLD_POINTER_SPACE);
520 heap->CollectGarbage(OLD_POINTER_SPACE);
902 // Allocate a JS array to OLD_POINTER_SPACE and NEW_SPACE
2672 PagedSpace* old_pointer_space = heap->old_pointer_space(); local
    [all...]
  /external/v8/src/
v8globals.h 179 OLD_POINTER_SPACE, // May contain pointers to new space.
188 FIRST_PAGED_SPACE = OLD_POINTER_SPACE,
heap-inl.h 188 retry_space == OLD_POINTER_SPACE ||
210 if (OLD_POINTER_SPACE == space) {
352 return (space == OLD_POINTER_SPACE)
375 ? OLD_POINTER_SPACE
378 return (type <= LAST_DATA_TYPE) ? OLD_DATA_SPACE : OLD_POINTER_SPACE;
mksnapshot.cc 341 partial_ser.CurrentAllocationAddress(i::OLD_POINTER_SPACE),
heap.cc 450 CollectGarbage(OLD_POINTER_SPACE, gc_reason);
472 if (!CollectGarbage(OLD_POINTER_SPACE, MARK_COMPACTOR, gc_reason, NULL)) {
612 PagedSpace* old_pointer_space = Heap::old_pointer_space(); local
628 if (!old_pointer_space->ReserveSpace(pointer_space_size)) {
629 AbortIncrementalMarkingAndCollectGarbage(this, OLD_POINTER_SPACE,
    [all...]
serialize.cc 762 } else if (space_number == OLD_POINTER_SPACE) { \
763 dest_space = isolate->heap()->old_pointer_space(); \
    [all...]
heap.h 499 OldSpace* old_pointer_space() { return old_pointer_space_; } function in class:v8::internal::Heap
    [all...]
mark-compact.cc 135 VerifyMarking(heap->old_pointer_space());
216 VerifyEvacuation(heap->old_pointer_space());
251 CollectEvacuationCandidates(heap()->old_pointer_space());
265 heap()->old_pointer_space()->EvictEvacuationCandidatesFromFreeLists();
329 VerifyMarkbitsAreClean(heap_->old_pointer_space());
366 ClearMarkbitsInPagedSpace(heap_->old_pointer_space());
424 case OLD_POINTER_SPACE: return "OLD_POINTER_SPACE";
499 ASSERT(space->identity() == OLD_POINTER_SPACE ||
    [all...]

Completed in 669 milliseconds

1 2