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

Unified Diff: vm/object.h

Issue 10905220: Shrink the size of deoptimization_counter_ and kind_tag_ fields. This (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 3 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 | « no previous file | vm/raw_object.h » ('j') | vm/raw_object.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/object.h
===================================================================
--- vm/object.h (revision 12152)
+++ vm/object.h (working copy)
@@ -1500,10 +1500,10 @@
raw_ptr()->usage_counter_ = value;
}
- intptr_t deoptimization_counter() const {
+ int16_t deoptimization_counter() const {
return raw_ptr()->deoptimization_counter_;
}
- void set_deoptimization_counter(intptr_t value) const {
+ void set_deoptimization_counter(int16_t value) const {
raw_ptr()->deoptimization_counter_ = value;
}
« no previous file with comments | « no previous file | vm/raw_object.h » ('j') | vm/raw_object.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698