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

Unified Diff: runtime/vm/profiler_service.h

Issue 1260793003: Fix ProfileCode ticking and add unit test (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/vm/profiler_service.cc » ('j') | runtime/vm/profiler_test.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/profiler_service.h
diff --git a/runtime/vm/profiler_service.h b/runtime/vm/profiler_service.h
index 7990b4dc55e53caf69086dcc4ca32b1921133624..7d746455f1e84620ece86cb01e3b65f8da5bc8dd 100644
--- a/runtime/vm/profiler_service.h
+++ b/runtime/vm/profiler_service.h
@@ -349,6 +349,12 @@ class ProfileTrieWalker : public ValueObject {
void Reset(Profile::TrieKind trie_kind);
const char* CurrentName();
+ // Return the current node's peer's inclusive tick count.
+ intptr_t CurrentInclusiveTicks();
+ // Return the current node's peer's exclusive tick count.
+ intptr_t CurrentExclusiveTicks();
+ // Return the current node's tick count.
+ intptr_t CurrentNodeTickCount();
bool Down();
bool NextSibling();
« no previous file with comments | « no previous file | runtime/vm/profiler_service.cc » ('j') | runtime/vm/profiler_test.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698