blob: c60e67ffec6de10d6dfa95c39fec3592cb9de26e [file] [log] [blame]
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#ifndef VM_SCOPE_TIMER_H_
#define VM_SCOPE_TIMER_H_
#include "platform/globals.h"
namespace dart {
// Simple utility class for timing a block of code.
class ScopeTimer : public ValueObject {
public:
explicit ScopeTimer(const char* name, bool enabled = true)
: enabled_(enabled),
name_(name),
start_(0) {
if (!enabled_) {
return;
}
start_ = OS::GetCurrentTimeMicros();
}
int64_t GetElapsed() const {
int64_t end = OS::GetCurrentTimeMicros();
ASSERT(end >= start_);
return end - start_;
}
~ScopeTimer() {
if (!enabled_) {
return;
}
int64_t elapsed = GetElapsed();
double seconds = MicrosecondsToSeconds(elapsed);
OS::Print("%s: %f seconds (%" Pd64 " \u00B5s)\n", name_, seconds, elapsed);
}
private:
const bool enabled_;
const char* name_;
int64_t start_;
};
} // namespace dart
#endif // VM_SCOPE_TIMER_H_