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

Unified Diff: runtime/vm/isolate.h

Issue 928833003: Add Function based profile tree (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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/vm/instructions_x64.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index c6bfef002bc180252a6d4bfdf25e3317c3f64f12..5d61b056025eae5eb4146807a73d65aff3da4a8c 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -616,6 +616,12 @@ class Isolate : public BaseIsolate {
metrics_list_head_ = metric;
}
+ RawGrowableObjectArray* deoptimized_code_array() const {
+ return deoptimized_code_array_;
+ }
+ void set_deoptimized_code_array(const GrowableObjectArray& value);
+ void TrackDeoptimizedCode(const Code& code);
+
#if defined(DEBUG)
#define REUSABLE_HANDLE_SCOPE_ACCESSORS(object) \
void set_reusable_##object##_handle_scope_active(bool value) { \
@@ -729,6 +735,7 @@ class Isolate : public BaseIsolate {
RawGrowableObjectArray* tag_table_;
RawUserTag* current_tag_;
RawUserTag* default_tag_;
+ RawGrowableObjectArray* deoptimized_code_array_;
Metric* metrics_list_head_;
« no previous file with comments | « runtime/vm/instructions_x64.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698