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

Unified Diff: src/objects.h

Issue 2766573003: [debug] introduce precise binary code coverage. (Closed)
Patch Set: fix test Created 3 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 | « src/isolate.h ('k') | src/objects.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index faee6b6ba6514476b1f673c9babe6f1163c733f7..e7d8b14d3dd92f979ada13417f8b2a81ef511d56 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -7181,6 +7181,9 @@ class SharedFunctionInfo: public HeapObject {
// Indicates that |debug_is_blackboxed| has been computed and set.
DECL_BOOLEAN_ACCESSORS(computed_debug_is_blackboxed)
+ // Indicates that the function has been reported for binary code coverage.
+ DECL_BOOLEAN_ACCESSORS(has_reported_binary_coverage)
+
// The function's name if it is non-empty, otherwise the inferred name.
String* DebugName();
@@ -7581,6 +7584,7 @@ class SharedFunctionInfo: public HeapObject {
kComputedHasNoSideEffect,
kDebugIsBlackboxed,
kComputedDebugIsBlackboxed,
+ kHasReportedBinaryCoverage
};
// kFunctionKind has to be byte-aligned
« no previous file with comments | « src/isolate.h ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698