Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(523)

Side by Side Diff: src/heap/incremental-marking.cc

Issue 1855943002: [heap] Respect idle deadline in AdvanceIncrementalMarking more carefully. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/heap/gc-idle-time-handler.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/heap/incremental-marking.h" 5 #include "src/heap/incremental-marking.h"
6 6
7 #include "src/code-stubs.h" 7 #include "src/code-stubs.h"
8 #include "src/compilation-cache.h" 8 #include "src/compilation-cache.h"
9 #include "src/conversions.h" 9 #include "src/conversions.h"
10 #include "src/heap/gc-idle-time-handler.h" 10 #include "src/heap/gc-idle-time-handler.h"
(...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after
1017 1017
1018 double IncrementalMarking::AdvanceIncrementalMarking( 1018 double IncrementalMarking::AdvanceIncrementalMarking(
1019 double deadline_in_ms, IncrementalMarking::StepActions step_actions) { 1019 double deadline_in_ms, IncrementalMarking::StepActions step_actions) {
1020 DCHECK(!IsStopped()); 1020 DCHECK(!IsStopped());
1021 1021
1022 intptr_t step_size_in_bytes = GCIdleTimeHandler::EstimateMarkingStepSize( 1022 intptr_t step_size_in_bytes = GCIdleTimeHandler::EstimateMarkingStepSize(
1023 GCIdleTimeHandler::kIncrementalMarkingStepTimeInMs, 1023 GCIdleTimeHandler::kIncrementalMarkingStepTimeInMs,
1024 heap() 1024 heap()
1025 ->tracer() 1025 ->tracer()
1026 ->FinalIncrementalMarkCompactSpeedInBytesPerMillisecond()); 1026 ->FinalIncrementalMarkCompactSpeedInBytesPerMillisecond());
1027 double remaining_time_in_ms = 0.0; 1027 double remaining_time_in_ms =
1028 intptr_t bytes_processed = 0; 1028 deadline_in_ms - heap()->MonotonicallyIncreasingTimeInMs();
1029 1029 while (remaining_time_in_ms >=
1030 do { 1030 GCIdleTimeHandler::kMinIncrementalMarkingStepTimeInMs) {
1031 bytes_processed = 1031 intptr_t bytes_processed =
1032 Step(step_size_in_bytes, step_actions.completion_action, 1032 Step(step_size_in_bytes, step_actions.completion_action,
1033 step_actions.force_marking, step_actions.force_completion); 1033 step_actions.force_marking, step_actions.force_completion);
1034 remaining_time_in_ms = 1034 remaining_time_in_ms =
1035 deadline_in_ms - heap()->MonotonicallyIncreasingTimeInMs(); 1035 deadline_in_ms - heap()->MonotonicallyIncreasingTimeInMs();
1036 } while (bytes_processed > 0 && 1036 if (bytes_processed == 0) break;
1037 remaining_time_in_ms >= 1037 }
1038 2.0 * GCIdleTimeHandler::kIncrementalMarkingStepTimeInMs &&
1039 !IsComplete() &&
1040 !heap()->mark_compact_collector()->marking_deque()->IsEmpty());
1041 return remaining_time_in_ms; 1038 return remaining_time_in_ms;
1042 } 1039 }
1043 1040
1044 1041
1045 void IncrementalMarking::OldSpaceStep(intptr_t allocated) { 1042 void IncrementalMarking::OldSpaceStep(intptr_t allocated) {
1046 if (IsStopped() && ShouldActivateEvenWithoutIdleNotification()) { 1043 if (IsStopped() && ShouldActivateEvenWithoutIdleNotification()) {
1047 heap()->StartIncrementalMarking(Heap::kNoGCFlags, kNoGCCallbackFlags, 1044 heap()->StartIncrementalMarking(Heap::kNoGCFlags, kNoGCCallbackFlags,
1048 "old space step"); 1045 "old space step");
1049 } else { 1046 } else {
1050 Step(allocated * kFastMarking / kInitialMarkingSpeed, GC_VIA_STACK_GUARD); 1047 Step(allocated * kFastMarking / kInitialMarkingSpeed, GC_VIA_STACK_GUARD);
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
1242 void IncrementalMarking::IncrementIdleMarkingDelayCounter() { 1239 void IncrementalMarking::IncrementIdleMarkingDelayCounter() {
1243 idle_marking_delay_counter_++; 1240 idle_marking_delay_counter_++;
1244 } 1241 }
1245 1242
1246 1243
1247 void IncrementalMarking::ClearIdleMarkingDelayCounter() { 1244 void IncrementalMarking::ClearIdleMarkingDelayCounter() {
1248 idle_marking_delay_counter_ = 0; 1245 idle_marking_delay_counter_ = 0;
1249 } 1246 }
1250 } // namespace internal 1247 } // namespace internal
1251 } // namespace v8 1248 } // namespace v8
OLDNEW
« no previous file with comments | « src/heap/gc-idle-time-handler.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698