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

Unified Diff: runtime/vm/isolate.h

Issue 150923002: Mark optimized code that used CHA for optimization so that lazy class 'finalization' does not inval… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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
Index: runtime/vm/isolate.h
===================================================================
--- runtime/vm/isolate.h (revision 32284)
+++ runtime/vm/isolate.h (working copy)
@@ -113,6 +113,9 @@
ObjectHistogram* object_histogram() { return object_histogram_; }
+ bool cha_used() const { return cha_used_; }
+ void set_cha_used(bool value) { cha_used_ = value; }
+
MegamorphicCacheTable* megamorphic_cache_table() {
return &megamorphic_cache_table_;
}
@@ -457,6 +460,8 @@
intptr_t stack_frame_index_;
ObjectHistogram* object_histogram_;
+ bool cha_used_;
Florian Schneider 2014/02/05 10:36:31 The bool variables should be grouped together so t
+
// Ring buffer of objects assigned an id.
ObjectIdRing* object_id_ring_;

Powered by Google App Engine
This is Rietveld 408576698