Chromium Code Reviews| 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_; |