Files
sdk/runtime/vm/scope_timer.h
T
johnmccutchan@google.com f2333f63a5 Add Function based profile tree
Profiler improvements:
- Track Functions in profile and build Function based trie
- Associate code objects with functions
- Created cpu_profile.dart library
- Major speed improvements for disassembly view
- Fix truncation of disassembly comments
- Ability to get code object ticks from disassembly view
- Inlining mini-map in disassembly view.
- Remove a bunch of unused data from profile service response
- In some cases a caller PC that is better than the PC marker is inserted into the stack trace
- Inlined functions are expanded
- Ability to clear profile
- New flag '--keep_code' which keeps deoptimized code around for use by the profiler.

General fixes:
- Fix caching in service library
- Remove pubspec.yaml before running pub get

R=asiva@google.com, rmacnak@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@44067 260f80e4-7a28-3924-810f-c04153c831b5
2015-02-26 18:48:55 +00:00

46 lines
1.0 KiB
C++

// 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_
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();
OS::Print("%s took %" Pd64 " micros.\n", name_, elapsed);
}
private:
const bool enabled_;
const char* name_;
int64_t start_;
};
} // namespace dart
#endif // VM_SCOPE_TIMER_H_