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

  /external/chromium_org/v8/test/cctest/
test-mementos.cc 36 NewSpace* new_space = heap->new_space(); local
49 reinterpret_cast<AllocationMemento*>(new_space->top() + kHeapObjectTag);
79 CcTest::i_isolate()->heap()->CollectGarbage(i::NEW_SPACE);
test-spaces.cc 349 NewSpace new_space(heap);
351 CHECK(new_space.SetUp(CcTest::heap()->ReservedSemiSpaceSize(),
353 CHECK(new_space.HasBeenSetUp());
355 while (new_space.Available() >= Page::kMaxRegularHeapObjectSize) {
356 Object* obj = new_space.AllocateRaw(
358 CHECK(new_space.Contains(HeapObject::cast(obj)));
361 new_space.TearDown();
test-heap.cc 234 heap->CollectGarbage(NEW_SPACE);
260 heap->CollectGarbage(NEW_SPACE);
281 heap->CollectGarbage(NEW_SPACE);
354 heap->CollectGarbage(NEW_SPACE);
412 heap->CollectGarbage(NEW_SPACE);
450 heap->CollectGarbage(NEW_SPACE);
497 heap->CollectGarbage(NEW_SPACE);
931 // Allocate a JS array to OLD_POINTER_SPACE and NEW_SPACE
937 // Allocate a small string to OLD_DATA_SPACE and NEW_SPACE
1008 NewSpace* new_space = heap->new_space(); local
1703 NewSpace* new_space = heap->new_space(); local
1763 NewSpace* new_space = heap->new_space(); local
4376 NewSpace* new_space = heap->new_space(); local
    [all...]
test-dictionary.cc 58 CcTest::heap()->CollectGarbage(NEW_SPACE);
184 SimulateFullSpace(CcTest::heap()->new_space());
230 SimulateFullSpace(CcTest::heap()->new_space());
test-alloc.cc 45 SimulateFullSpace(heap->new_space());
test-api.cc 537 CcTest::heap()->CollectGarbage(i::NEW_SPACE); // in survivor space now
538 CcTest::heap()->CollectGarbage(i::NEW_SPACE); // in old gen now
568 CcTest::heap()->CollectGarbage(i::NEW_SPACE); // in survivor space now
569 CcTest::heap()->CollectGarbage(i::NEW_SPACE); // in old gen now
591 CcTest::heap()->CollectGarbage(i::NEW_SPACE);
592 CcTest::heap()->CollectGarbage(i::NEW_SPACE);
602 CcTest::heap()->CollectGarbage(i::NEW_SPACE); // in survivor space now
603 CcTest::heap()->CollectGarbage(i::NEW_SPACE); // in old gen now
639 CcTest::heap()->CollectGarbage(i::NEW_SPACE);
640 CcTest::heap()->CollectGarbage(i::NEW_SPACE);
    [all...]
  /external/chromium_org/v8/src/heap/
store-buffer-inl.h 39 !heap_->new_space()->Contains(addr));
gc-tracer.cc 105 reinterpret_cast<intptr_t>((heap_->new_space()->top()) -
122 heap_->new_space()->top() - heap_->new_space()->bottom();
146 reinterpret_cast<intptr_t>(heap_->new_space()->top());
incremental-marking.cc 379 DeactivateIncrementalWriteBarrierForSpace(heap_->new_space());
414 ActivateIncrementalWriteBarrier(heap_->new_space());
532 heap_->new_space()->LowerInlineAllocationLimit(kAllocatedThreshold);
594 NewSpacePageIterator it(heap_->new_space()->FromSpaceStart(),
595 heap_->new_space()->FromSpaceEnd());
762 heap_->new_space()->LowerInlineAllocationLimit(0);
790 heap_->new_space()->LowerInlineAllocationLimit(0);
    [all...]
mark-compact.cc 142 VerifyMarking(heap->new_space());
223 VerifyEvacuation(heap->new_space());
465 VerifyMarkbitsAreClean(heap_->new_space());
523 ClearMarkbitsInNewSpace(heap_->new_space());
693 case NEW_SPACE:
694 return "NEW_SPACE";
3094 NewSpace* new_space = heap()->new_space(); local
    [all...]
heap.cc 239 if (space != NEW_SPACE) {
644 (new_space()->CommittedMemory() * 100.0) / CommittedMemory()));
702 UPDATE_COUNTERS_FOR_SPACE(new_space)
720 new_space_top_after_last_gc_ = new_space()->top();
727 // not matter, so long as we do not specify NEW_SPACE, which would not
737 // not matter, so long as we do not specify NEW_SPACE, which would not
    [all...]
mark-compact.h 846 int DiscoverAndEvacuateBlackObjectsOnPage(NewSpace* new_space,
heap-inl.h 47 SemiSpace::AssertValidRange(target->GetIsolate()->heap()->new_space()->top(),
182 if (NEW_SPACE == space) {
184 if (always_allocate() && allocation.IsRetry() && retry_space != NEW_SPACE) {
447 case NEW_SPACE:
heap.h 593 NewSpace* new_space() { return &new_space_; } function in class:v8::internal::Heap
615 case NEW_SPACE:
    [all...]
  /external/chromium_org/v8/src/extensions/
statistics-extension.cc 99 AddNumber(args.GetIsolate(), result, heap->new_space()->Size(),
101 AddNumber(args.GetIsolate(), result, heap->new_space()->Available(),
103 AddNumber(args.GetIsolate(), result, heap->new_space()->CommittedMemory(),
  /external/chromium_org/v8/src/
string-stream.cc 549 char* new_space = NewArray<char>(new_bytes); local
550 if (new_space == NULL) {
553 MemCopy(new_space, space_, *bytes);
556 space_ = new_space;
557 return new_space;
objects-inl.h     [all...]
objects.cc     [all...]
  /external/chromium_org/v8/test/cctest/compiler/
test-changes-lowering.cc 358 if (m == 2) SimulateFullSpace(CcTest::heap()->new_space());
380 if (m == 2) SimulateFullSpace(CcTest::heap()->new_space());
403 if (m == 2) SimulateFullSpace(CcTest::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 473 milliseconds