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 60 SemiSpace::AssertValidRange(target->GetIsolate()->heap()->new_space()->top(),
162 DCHECK_NE(idx, NEW_SPACE);
189 return new_space_allocation_counter_ + new_space()->AllocatedSinceLastGC();
317 if (NEW_SPACE == space) {
348 // NEW_SPACE is not allowed here.
549 case NEW_SPACE:
mark-compact.cc 154 VerifyMarking(heap->new_space());
227 VerifyEvacuation(heap->new_space());
343 VerifyMarkbitsAreClean(heap_->new_space());
392 ClearMarkbitsInNewSpace(heap_->new_space());
447 if (space == NEW_SPACE) return;
505 if (space == NEW_SPACE) {
506 swept_list_[NEW_SPACE].Clear();
515 if (!FLAG_concurrent_sweeping || !IsSweepingCompleted(NEW_SPACE)) {
516 for (Page* p : *heap_->new_space()) {
555 case NEW_SPACE
3000 NewSpace* new_space = heap()->new_space(); local
    [all...]
heap.cc 260 if (space != NEW_SPACE) {
466 case NEW_SPACE:
467 return "new_space";
687 (new_space()->CommittedMemory() * 100.0) / CommittedMemory()));
729 UPDATE_COUNTERS_FOR_SPACE(new_space)
744 new_space_top_after_last_gc_ = new_space()->top();
867 // not matter, so long as we do not specify NEW_SPACE, which would not
876 // not matter, so long as we do not specify NEW_SPACE, which would not
    [all...]
heap.h 447 static inline AllocationResult Retry(AllocationSpace space = NEW_SPACE) {
459 AllocationResult() : object_(Smi::FromInt(NEW_SPACE)) {}
1021 NewSpace* new_space() { return new_space_; } function in class:v8::internal::GarbageCollectionReason::Heap
    [all...]
scavenger.cc 111 if (heap->new_space()->Contains(obj)) {
112 heap->new_space()->RecordAllocation(obj);
114 heap->new_space()->RecordPromotion(obj);
128 target->address() + size == heap->new_space()->top() ||
129 target->address() + size + kPointerSize == heap->new_space()->top());
135 heap->new_space()->top()));
161 DCHECK(heap->AllowedToBeMigrated(object, NEW_SPACE));
163 heap->new_space()->AllocateRaw(object_size, alignment);
171 heap->promotion_queue()->SetNewLimit(heap->new_space()->top());
spaces-inl.h 296 DCHECK(this->owner()->identity() != NEW_SPACE);
spaces.h     [all...]
spaces.cc 420 mc->sweeper().IsSweepingCompleted(NEW_SPACE);
    [all...]
  /external/v8/src/snapshot/
deserializer.cc 24 DCHECK_EQ(0, reservations_[NEW_SPACE].length());
25 STATIC_ASSERT(NEW_SPACE == 0);
26 int current_space = NEW_SPACE;
58 for (int i = NEW_SPACE; i < kNumberOfSpaces; ++i) {
188 ReadData(start, end, NEW_SPACE, NULL);
492 (current_object_address != NULL && source_space != NEW_SPACE &&
513 emit_write_barrier = (space_number == NEW_SPACE); \
519 emit_write_barrier = (space_number == NEW_SPACE); \
525 emit_write_barrier = (space_number == NEW_SPACE); \
599 CASE_STATEMENT(where, how, within, NEW_SPACE) \
    [all...]
  /external/v8/src/
factory.cc 716 ? New<ConsString>(cons_one_byte_string_map(), NEW_SPACE)
717 : New<ConsString>(cons_string_map(), NEW_SPACE);
801 Handle<SlicedString> slice = New<SlicedString>(map, NEW_SPACE);
827 New<ExternalOneByteString>(map, NEW_SPACE);
859 New<ExternalTwoByteString>(map, NEW_SPACE);
    [all...]
globals.h 501 NEW_SPACE, // Semispaces collected with copying collector.
507 FIRST_SPACE = NEW_SPACE,
    [all...]
api.cc     [all...]
  /external/v8/src/runtime/
runtime-internal.cc 295 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 664 milliseconds