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

1 2

  /external/v8/test/cctest/
test-spaces.cc 188 NewSpace new_space(heap);
190 CHECK(new_space.SetUp(HEAP->ReservedSemiSpaceSize(),
192 CHECK(new_space.HasBeenSetUp());
194 while (new_space.Available() >= Page::kMaxNonCodeHeapObjectSize) {
196 new_space.AllocateRaw(Page::kMaxNonCodeHeapObjectSize)->
198 CHECK(new_space.Contains(HeapObject::cast(obj)));
201 new_space.TearDown();
test-heap.cc 185 CHECK(Failure::RetryAfterGC(NEW_SPACE)->IsFailure());
186 CHECK_EQ(NEW_SPACE,
187 Failure::RetryAfterGC(NEW_SPACE)->allocation_space());
201 HEAP->CollectGarbage(NEW_SPACE);
229 HEAP->CollectGarbage(NEW_SPACE);
250 HEAP->CollectGarbage(NEW_SPACE);
315 HEAP->CollectGarbage(NEW_SPACE);
399 HEAP->CollectGarbage(NEW_SPACE);
812 // Allocate a JS array to OLD_POINTER_SPACE and NEW_SPACE
816 // Allocate a small string to OLD_DATA_SPACE and NEW_SPACE
891 NewSpace* new_space = HEAP->new_space(); local
1276 NewSpace* new_space = HEAP->new_space(); local
1319 NewSpace* new_space = HEAP->new_space(); local
    [all...]
test-alloc.cc 43 NewSpace* new_space = heap->new_space(); local
45 while (new_space->Available() > kNewSpaceFillerSize) {
46 int available_before = static_cast<int>(new_space->Available());
48 if (available_before == new_space->Available()) {
  /external/chromium_org/v8/src/extensions/
statistics-extension.cc 106 AddNumber(result, heap->new_space()->Size(),
108 AddNumber(result, heap->new_space()->Available(),
110 AddNumber(result, heap->new_space()->CommittedMemory(),
  /external/chromium_org/v8/src/
store-buffer-inl.h 61 !heap_->new_space()->Contains(addr));
string-stream.cc 582 char* new_space = NewArray<char>(new_bytes); local
583 if (new_space == NULL) {
586 OS::MemCopy(new_space, space_, *bytes);
589 space_ = new_space;
590 return new_space;
incremental-marking.cc 448 DeactivateIncrementalWriteBarrierForSpace(heap_->new_space());
483 ActivateIncrementalWriteBarrier(heap_->new_space());
601 heap_->new_space()->LowerInlineAllocationLimit(kAllocatedThreshold);
660 NewSpacePageIterator it(heap_->new_space()->FromSpaceStart(),
661 heap_->new_space()->FromSpaceEnd());
827 heap_->new_space()->LowerInlineAllocationLimit(0);
855 heap_->new_space()->LowerInlineAllocationLimit(0);
    [all...]
mark-compact.cc 154 VerifyMarking(heap->new_space());
236 VerifyEvacuation(heap->new_space());
482 VerifyMarkbitsAreClean(heap_->new_space());
543 ClearMarkbitsInNewSpace(heap_->new_space());
656 case NEW_SPACE: return "NEW_SPACE";
2952 NewSpace* new_space = heap()->new_space(); local
    [all...]
heap-inl.h 72 SemiSpace::AssertValidRange(HEAP->new_space()->top(),
80 heap_->new_space()->active_space()->current_page()->address() ==
215 ASSERT(space != NEW_SPACE ||
229 if (NEW_SPACE == space) {
460 case NEW_SPACE:
heap.cc 279 if (space != NEW_SPACE) {
568 UPDATE_COUNTERS_FOR_SPACE(new_space)
591 // not matter, so long as we do not specify NEW_SPACE, which would not
601 // not matter, so long as we do not specify NEW_SPACE, which would not
792 ASSERT(NEW_SPACE == FIRST_PAGED_SPACE - 1);
793 for (int space = NEW_SPACE; space <= LAST_PAGED_SPACE; space++) {
796 if (space == NEW_SPACE) {
797 allocation = new_space()->AllocateRaw(sizes[space]);
803 if (space == NEW_SPACE) {
804 Heap::CollectGarbage(NEW_SPACE,
    [all...]
mark-compact.h 927 int DiscoverAndPromoteBlackObjectsOnPage(NewSpace* new_space,
builtins.cc 323 !heap->new_space()->Contains(elms)) {
    [all...]
  /external/v8/src/
store-buffer-inl.h 61 !heap_->new_space()->Contains(addr));
string-stream.cc 569 char* new_space = NewArray<char>(new_bytes); local
570 if (new_space == NULL) {
573 memcpy(new_space, space_, *bytes);
576 space_ = new_space;
577 return new_space;
incremental-marking.cc 354 DeactivateIncrementalWriteBarrierForSpace(heap_->new_space());
388 ActivateIncrementalWriteBarrier(heap_->new_space());
496 heap_->new_space()->LowerInlineAllocationLimit(kAllocatedThreshold);
568 NewSpacePageIterator it(heap_->new_space()->FromSpaceStart(),
569 heap_->new_space()->FromSpaceEnd());
713 heap_->new_space()->LowerInlineAllocationLimit(0);
741 heap_->new_space()->LowerInlineAllocationLimit(0);
mark-compact.cc 140 VerifyMarking(heap->new_space());
221 VerifyEvacuation(heap->new_space());
334 VerifyMarkbitsAreClean(heap_->new_space());
369 ClearMarkbitsInNewSpace(heap_->new_space());
423 case NEW_SPACE: return "NEW_SPACE";
2841 NewSpace* new_space = heap()->new_space(); local
    [all...]
heap-inl.h 72 SemiSpace::AssertValidRange(HEAP->new_space()->top(),
80 heap_->new_space()->active_space()->current_page()->address() ==
187 ASSERT(space != NEW_SPACE ||
201 if (NEW_SPACE == space) {
json-parser.h 535 isolate()->heap()->new_space()->
heap.cc 247 if (space != NEW_SPACE || FLAG_gc_global) {
447 // not matter, so long as we do not specify NEW_SPACE, which would not
457 // not matter, so long as we do not specify NEW_SPACE, which would not
611 NewSpace* new_space = Heap::new_space(); local
623 if (!new_space->ReserveSpace(new_space_size)) {
624 Heap::CollectGarbage(NEW_SPACE,
791 int start_new_space_size = Heap::new_space()->SizeAsInt();
    [all...]
builtins.cc 358 !heap->new_space()->Contains(elms)) {
    [all...]
  /external/chromium_org/v8/test/cctest/
test-spaces.cc 327 NewSpace new_space(heap);
329 CHECK(new_space.SetUp(HEAP->ReservedSemiSpaceSize(),
331 CHECK(new_space.HasBeenSetUp());
333 while (new_space.Available() >= Page::kMaxNonCodeHeapObjectSize) {
335 new_space.AllocateRaw(Page::kMaxNonCodeHeapObjectSize)->
337 CHECK(new_space.Contains(HeapObject::cast(obj)));
340 new_space.TearDown();
test-heap.cc 237 CHECK(Failure::RetryAfterGC(NEW_SPACE)->IsFailure());
238 CHECK_EQ(NEW_SPACE,
239 Failure::RetryAfterGC(NEW_SPACE)->allocation_space());
256 heap->CollectGarbage(NEW_SPACE);
284 heap->CollectGarbage(NEW_SPACE);
306 heap->CollectGarbage(NEW_SPACE);
378 heap->CollectGarbage(NEW_SPACE);
471 heap->CollectGarbage(NEW_SPACE);
906 // Allocate a JS array to OLD_POINTER_SPACE and NEW_SPACE
912 // Allocate a small string to OLD_DATA_SPACE and NEW_SPACE
989 NewSpace* new_space = HEAP->new_space(); local
1605 NewSpace* new_space = HEAP->new_space(); local
1665 NewSpace* new_space = HEAP->new_space(); local
    [all...]
test-dictionary.cc 56 HEAP->CollectGarbage(NEW_SPACE);
122 SimulateFullSpace(HEAP->new_space());
155 SimulateFullSpace(HEAP->new_space());
test-alloc.cc 43 SimulateFullSpace(heap->new_space());
  /external/blktrace/
blkparse.c 326 int new_space, size; local
339 new_space = (new_count - ncpus) * sizeof(struct per_cpu_info);
340 memset(new_start, 0, new_space);
    [all...]

Completed in 1465 milliseconds

1 2