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

Unified Diff: src/objects.h

Issue 2633803002: [inspector] implemented blackboxing inside v8 (Closed)
Patch Set: addressed comments Created 3 years, 11 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/inspector/v8-debugger-script.cc ('k') | src/objects-inl.h » ('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 26c35cdf7761c00476277d5b826f8ee259706d2a..869da9be04b59934711fc492e8c541e037749c9d 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -7374,6 +7374,12 @@ class SharedFunctionInfo: public HeapObject {
// Indicates that |has_no_side_effect| has been computed and set.
DECL_BOOLEAN_ACCESSORS(computed_has_no_side_effect)
+ // Indicates that the function should be skipped during stepping.
+ DECL_BOOLEAN_ACCESSORS(debug_is_blackboxed)
+
+ // Indicates that |debug_is_blackboxed| has been computed and set.
+ DECL_BOOLEAN_ACCESSORS(computed_debug_is_blackboxed)
+
// The function's name if it is non-empty, otherwise the inferred name.
String* DebugName();
@@ -7768,6 +7774,8 @@ class SharedFunctionInfo: public HeapObject {
kDeserialized,
kHasNoSideEffect,
kComputedHasNoSideEffect,
+ kDebugIsBlackboxed,
+ kComputedDebugIsBlackboxed,
};
// kFunctionKind has to be byte-aligned
« no previous file with comments | « src/inspector/v8-debugger-script.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698