Remove redundant check in GCTracer::SampleAllocation.
authorulan <ulan@chromium.org>
Thu, 2 Jul 2015 13:28:36 +0000 (06:28 -0700)
committerCommit bot <commit-bot@chromium.org>
Thu, 2 Jul 2015 13:28:46 +0000 (13:28 +0000)
BUG=

Review URL: https://codereview.chromium.org/1213593004

Cr-Commit-Position: refs/heads/master@{#29443}

src/heap/gc-tracer.cc

index 033c0bb..214bb8b 100644 (file)
@@ -277,11 +277,6 @@ void GCTracer::SampleAllocation(double current_ms,
   size_t old_generation_allocated_bytes =
       old_generation_counter_bytes - old_generation_allocation_counter_bytes_;
   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;
   new_space_allocation_counter_bytes_ = new_space_counter_bytes;
   old_generation_allocation_counter_bytes_ = old_generation_counter_bytes;