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

  /external/v8/src/heap/
scavenge-job.cc 28 size_t new_space_size = heap->new_space()->Size();
29 size_t new_space_capacity = heap->new_space()->Capacity();
37 heap->CollectGarbage(NEW_SPACE, GarbageCollectionReason::kIdleTask);
heap-inl.h 59 SemiSpace::AssertValidRange(target->GetIsolate()->heap()->new_space()->top(),
161 DCHECK_NE(idx, NEW_SPACE);
188 return new_space_allocation_counter_ + new_space()->AllocatedSinceLastGC();
313 if (NEW_SPACE == space) {
344 // NEW_SPACE is not allowed here.
545 case NEW_SPACE:
mark-compact.cc 157 VerifyMarking(heap->new_space());
230 VerifyEvacuation(heap->new_space());
347 VerifyMarkbitsAreClean(heap_->new_space());
398 ClearMarkbitsInNewSpace(heap_->new_space());
453 if (space == NEW_SPACE) return;
511 if (space == NEW_SPACE) {
512 swept_list_[NEW_SPACE].Clear();
521 if (!FLAG_concurrent_sweeping || !IsSweepingCompleted(NEW_SPACE)) {
522 for (Page* p : *heap_->new_space()) {
561 case NEW_SPACE
2891 NewSpace* new_space = heap()->new_space(); local
    [all...]
scavenger.cc 102 if (heap->new_space()->Contains(obj)) {
103 heap->new_space()->RecordAllocation(obj);
105 heap->new_space()->RecordPromotion(obj);
119 target->address() + size == heap->new_space()->top() ||
120 target->address() + size + kPointerSize == heap->new_space()->top());
126 heap->new_space()->top()));
152 DCHECK(heap->AllowedToBeMigrated(object, NEW_SPACE));
154 heap->new_space()->AllocateRaw(object_size, alignment);
162 heap->promotion_queue()->SetNewLimit(heap->new_space()->top());
heap.cc 256 if (space != NEW_SPACE) {
460 case NEW_SPACE:
461 return "new_space";
665 (new_space()->CommittedMemory() * 100.0) / CommittedMemory()));
707 UPDATE_COUNTERS_FOR_SPACE(new_space)
722 new_space_top_after_last_gc_ = new_space()->top();
845 // not matter, so long as we do not specify NEW_SPACE, which would not
854 // not matter, so long as we do not specify NEW_SPACE, which would not
    [all...]
heap.h 436 static inline AllocationResult Retry(AllocationSpace space = NEW_SPACE) {
448 AllocationResult() : object_(Smi::FromInt(NEW_SPACE)) {}
984 NewSpace* new_space() { return new_space_; } function in class:v8::internal::GarbageCollectionReason::Heap
    [all...]
spaces-inl.h 301 DCHECK(this->owner()->identity() != NEW_SPACE);
spaces.h     [all...]
spaces.cc 404 mc->sweeper().IsSweepingCompleted(NEW_SPACE);
    [all...]
  /external/v8/src/snapshot/
deserializer.cc 20 DCHECK_EQ(0, reservations_[NEW_SPACE].length());
21 STATIC_ASSERT(NEW_SPACE == 0);
22 int current_space = NEW_SPACE;
54 for (int i = NEW_SPACE; i < kNumberOfSpaces; ++i) {
182 ReadData(start, end, NEW_SPACE, NULL);
482 (current_object_address != NULL && source_space != NEW_SPACE &&
503 emit_write_barrier = (space_number == NEW_SPACE); \
509 emit_write_barrier = (space_number == NEW_SPACE); \
515 emit_write_barrier = (space_number == NEW_SPACE); \
589 CASE_STATEMENT(where, how, within, NEW_SPACE) \
    [all...]
  /external/v8/src/
factory.cc 645 ? New<ConsString>(cons_one_byte_string_map(), NEW_SPACE)
646 : New<ConsString>(cons_string_map(), NEW_SPACE);
726 Handle<SlicedString> slice = New<SlicedString>(map, NEW_SPACE);
751 New<ExternalOneByteString>(map, NEW_SPACE);
782 New<ExternalTwoByteString>(map, NEW_SPACE);
    [all...]
globals.h 490 NEW_SPACE, // Semispaces collected with copying collector.
496 FIRST_SPACE = NEW_SPACE,
    [all...]
api.cc     [all...]
  /external/v8/src/runtime/
runtime-internal.cc 319 return *isolate->factory()->NewFillerObject(size, false, NEW_SPACE);
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.cc     [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.cc     [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.cc     [all...]
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.cc     [all...]
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.cc     [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.cc     [all...]
  /external/v8/src/crankshaft/s390/
lithium-codegen-s390.cc     [all...]
  /external/v8/src/crankshaft/x64/
lithium-codegen-x64.cc     [all...]
  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.cc     [all...]

Completed in 907 milliseconds