HomeSort by relevance Sort by last modified time
    Searched refs:OLD_DATA_SPACE (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/v8/src/
sweeper-thread.cc 48 free_list_old_data_space_(heap_->paged_space(OLD_DATA_SPACE)),
50 private_free_list_old_data_space_(heap_->paged_space(OLD_DATA_SPACE)),
71 collector_->SweepInParallel(heap_->old_data_space(),
85 } else if (space->identity() == OLD_DATA_SPACE) {
snapshot-common.cc 68 deserializer->set_reservation(OLD_DATA_SPACE, data_size);
81 deserializer->set_reservation(OLD_DATA_SPACE, data_space_used_);
129 deserializer.set_reservation(OLD_DATA_SPACE, context_data_space_used_);
mksnapshot.cc 427 partial_ser.CurrentAllocationAddress(i::OLD_DATA_SPACE),
436 ser.CurrentAllocationAddress(i::OLD_DATA_SPACE),
heap-inl.h 217 retry_space == OLD_DATA_SPACE ||
240 } else if (OLD_DATA_SPACE == space) {
435 : OLD_DATA_SPACE;
437 return (type <= LAST_DATA_TYPE) ? OLD_DATA_SPACE : OLD_POINTER_SPACE;
464 case OLD_DATA_SPACE:
v8globals.h 179 OLD_DATA_SPACE, // Must not have pointers to new space.
heap.cc 570 UPDATE_COUNTERS_AND_FRAGMENTATION_FOR_SPACE(old_data_space)
    [all...]
mark-compact.h 680 if (page->owner()->identity() == OLD_DATA_SPACE) {
mark-compact.cc 149 VerifyMarking(heap->old_data_space());
231 VerifyEvacuation(heap->old_data_space());
373 CollectEvacuationCandidates(heap()->old_data_space());
390 heap()->old_data_space()->EvictEvacuationCandidatesFromFreeLists();
477 VerifyMarkbitsAreClean(heap_->old_data_space());
540 ClearMarkbitsInPagedSpace(heap_->old_data_space());
570 StealMemoryFromSweeperThreads(heap()->paged_space(OLD_DATA_SPACE));
572 heap()->paged_space(OLD_DATA_SPACE)->ResetUnsweptFreeBytes();
658 case OLD_DATA_SPACE: return "OLD_DATA_SPACE";
    [all...]
serialize.cc 948 source_space != OLD_DATA_SPACE);
    [all...]
heap.h 558 OldSpace* old_data_space() { return old_data_space_; } function in class:v8::internal::Heap
570 case OLD_DATA_SPACE:
571 return old_data_space();
    [all...]
spaces.cc 72 owner == page->heap()->old_data_space() ||
488 if (owner == heap->old_data_space()) {
    [all...]
runtime.cc     [all...]
  /external/chromium_org/v8/test/cctest/
test-serialize.cc 239 ser.CurrentAllocationAddress(OLD_DATA_SPACE),
429 p_ser.CurrentAllocationAddress(OLD_DATA_SPACE),
438 startup_serializer.CurrentAllocationAddress(OLD_DATA_SPACE),
475 deserializer->set_reservation(OLD_DATA_SPACE, data_size);
575 p_ser.CurrentAllocationAddress(OLD_DATA_SPACE),
584 startup_serializer.CurrentAllocationAddress(OLD_DATA_SPACE),
test-api.cc 715 CHECK(in_new_space || HEAP->old_data_space()->Contains(*istring));
718 HEAP->CollectGarbage(in_new_space ? i::NEW_SPACE : i::OLD_DATA_SPACE);
736 CHECK(in_new_space || HEAP->old_data_space()->Contains(*istring));
739 HEAP->CollectGarbage(in_new_space ? i::NEW_SPACE : i::OLD_DATA_SPACE);
    [all...]
  /external/v8/src/
heap-inl.h 189 retry_space == OLD_DATA_SPACE ||
212 } else if (OLD_DATA_SPACE == space) {
376 : OLD_DATA_SPACE;
378 return (type <= LAST_DATA_TYPE) ? OLD_DATA_SPACE : OLD_POINTER_SPACE;
mksnapshot.cc 342 partial_ser.CurrentAllocationAddress(i::OLD_DATA_SPACE),
v8globals.h 180 OLD_DATA_SPACE, // Must not have pointers to new space.
heap.cc 613 PagedSpace* old_data_space = Heap::old_data_space(); local
633 if (!(old_data_space->ReserveSpace(data_space_size))) {
634 AbortIncrementalMarkingAndCollectGarbage(this, OLD_DATA_SPACE,
    [all...]
serialize.cc 764 } else if (space_number == OLD_DATA_SPACE) { \
765 dest_space = isolate->heap()->old_data_space(); \
790 source_space != OLD_DATA_SPACE);
    [all...]
mark-compact.h 519 if (page->owner()->identity() == OLD_DATA_SPACE) {
mark-compact.cc 136 VerifyMarking(heap->old_data_space());
217 VerifyEvacuation(heap->old_data_space());
252 CollectEvacuationCandidates(heap()->old_data_space());
266 heap()->old_data_space()->EvictEvacuationCandidatesFromFreeLists();
330 VerifyMarkbitsAreClean(heap_->old_data_space());
367 ClearMarkbitsInPagedSpace(heap_->old_data_space());
425 case OLD_DATA_SPACE: return "OLD_DATA_SPACE";
500 space->identity() == OLD_DATA_SPACE ||
    [all...]
liveobjectlist.cc 207 if (strcmp(key_str, "old-data") == 0) return OLD_DATA_SPACE;
    [all...]
  /external/v8/test/cctest/
test-serialize.cc 392 p_ser.CurrentAllocationAddress(OLD_DATA_SPACE),
511 p_ser.CurrentAllocationAddress(OLD_DATA_SPACE),
628 page_fullness > HEAP->old_data_space()->AreaSize()) {
test-api.cc 615 CHECK(in_new_space || HEAP->old_data_space()->Contains(*istring));
618 HEAP->CollectGarbage(in_new_space ? i::NEW_SPACE : i::OLD_DATA_SPACE);
634 CHECK(in_new_space || HEAP->old_data_space()->Contains(*istring));
637 HEAP->CollectGarbage(in_new_space ? i::NEW_SPACE : i::OLD_DATA_SPACE);
    [all...]

Completed in 661 milliseconds