Lines Matching defs:live_bytes

644     CHECK_EQ(0, non_atomic_marking_state()->live_bytes(p));
652 CHECK_EQ(0, non_atomic_marking_state()->live_bytes(p));
661 CHECK_EQ(0, non_atomic_marking_state()->live_bytes(
914 size_t live_bytes = pages[i].first;
915 DCHECK_GE(area_size, live_bytes);
917 ((total_live_bytes + live_bytes) <= max_evacuated_bytes)) {
919 total_live_bytes += live_bytes;
927 space->name(), (area_size - live_bytes) / KB,
3675 "live_bytes=%" V8PRIdPTR " time=%f success=%d\n",
3740 void RawEvacuatePage(MemoryChunk* chunk, intptr_t* live_bytes) override;
3748 void FullEvacuator::RawEvacuatePage(MemoryChunk* chunk, intptr_t* live_bytes) {
3752 *live_bytes = marking_state->live_bytes(chunk);
3755 EvacuationModeName(evacuation_mode), "live_bytes", *live_bytes);
3768 marking_state->live_bytes(chunk));
3775 marking_state->live_bytes(chunk));
3888 Page* p, intptr_t live_bytes, AlwaysPromoteYoung always_promote_young) {
3892 (live_bytes > Evacuator::NewSpacePageEvacuationThreshold()) &&
3895 heap()->CanExpandOldGeneration(live_bytes);
3901 size_t wanted_num_tasks, size_t live_bytes,
3907 "wanted_tasks=%zu cores=%d live_bytes=%" V8PRIdPTR
3911 V8::GetCurrentPlatform()->NumberOfWorkerThreads() + 1, live_bytes,
3920 intptr_t live_bytes = 0;
3925 intptr_t live_bytes_on_page = non_atomic_marking_state()->live_bytes(page);
3927 live_bytes += live_bytes_on_page;
3955 live_bytes += non_atomic_marking_state()->live_bytes(page);
3993 TraceEvacuation(isolate(), pages_count, wanted_num_tasks, live_bytes,
4816 if (non_atomic_marking_state()->live_bytes(p) == 0) {
5820 size_t live_bytes = 0;
5841 live_bytes += size;
5857 CHECK_EQ(allocatable_bytes, live_bytes + free_bytes_of_class[0]);
5861 "Minor Mark-Compact Fragmentation: allocatable_bytes=%zu live_bytes=%zu "
5863 allocatable_bytes, live_bytes, free_bytes_of_class[0],
5928 void RawEvacuatePage(MemoryChunk* chunk, intptr_t* live_bytes) override;
5936 intptr_t* live_bytes) {
5941 *live_bytes = marking_state->live_bytes(chunk);
5954 marking_state->live_bytes(chunk));
5972 marking_state->live_bytes(chunk));
5992 intptr_t live_bytes = 0;
5995 intptr_t live_bytes_on_page = non_atomic_marking_state()->live_bytes(page);
5997 live_bytes += live_bytes_on_page;
6033 TraceEvacuation(isolate(), pages_count, wanted_num_tasks, live_bytes, 0);