Remove redundant check in GCTracer::SampleAllocation.
BUG= Review URL: https://codereview.chromium.org/1213593004 Cr-Commit-Position: refs/heads/master@{#29443}
This commit is contained in:
parent
5000650bde
commit
65a1d7265a
@ -277,11 +277,6 @@ void GCTracer::SampleAllocation(double current_ms,
|
|||||||
size_t old_generation_allocated_bytes =
|
size_t old_generation_allocated_bytes =
|
||||||
old_generation_counter_bytes - old_generation_allocation_counter_bytes_;
|
old_generation_counter_bytes - old_generation_allocation_counter_bytes_;
|
||||||
double duration = current_ms - allocation_time_ms_;
|
double duration = current_ms - allocation_time_ms_;
|
||||||
const double kMinDurationMs = 100;
|
|
||||||
if (duration < kMinDurationMs) {
|
|
||||||
// Do not sample small durations to avoid precision errors.
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
allocation_time_ms_ = current_ms;
|
allocation_time_ms_ = current_ms;
|
||||||
new_space_allocation_counter_bytes_ = new_space_counter_bytes;
|
new_space_allocation_counter_bytes_ = new_space_counter_bytes;
|
||||||
old_generation_allocation_counter_bytes_ = old_generation_counter_bytes;
|
old_generation_allocation_counter_bytes_ = old_generation_counter_bytes;
|
||||||
|
Loading…
Reference in New Issue
Block a user