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

Unified Diff: runtime/vm/coverage.h

Issue 1000933004: Display ICData entries at call sites, with links to the targets and guarded classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 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 | « runtime/observatory/test/call_site_data_test.dart ('k') | runtime/vm/coverage.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/coverage.h
diff --git a/runtime/vm/coverage.h b/runtime/vm/coverage.h
index cdeb0a6c04e8990b552905e6df09385497b70a38..496ff65d88bebf2f680b08a697e504e959a140ac 100644
--- a/runtime/vm/coverage.h
+++ b/runtime/vm/coverage.h
@@ -37,16 +37,19 @@ class CodeCoverage : public AllStatic {
static void Write(Isolate* isolate);
static void PrintJSON(Isolate* isolate,
JSONStream* stream,
- CoverageFilter* filter);
+ CoverageFilter* filter,
+ bool as_call_sites);
private:
static void PrintClass(const Library& lib,
const Class& cls,
const JSONArray& arr,
- CoverageFilter* filter);
+ CoverageFilter* filter,
+ bool as_call_sites);
static void CompileAndAdd(const Function& function,
- const JSONArray& hits_arr,
- const GrowableArray<intptr_t>& pos_to_line);
+ const JSONArray& hits_or_sites,
+ const GrowableArray<intptr_t>& pos_to_line,
+ bool as_call_sites);
};
} // namespace dart
« no previous file with comments | « runtime/observatory/test/call_site_data_test.dart ('k') | runtime/vm/coverage.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698