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

Unified Diff: vm/raw_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 | « vm/object.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/raw_object.h
===================================================================
--- vm/raw_object.h (revision 12152)
+++ vm/raw_object.h (working copy)
@@ -616,8 +616,8 @@
intptr_t num_optional_positional_parameters_;
intptr_t num_optional_named_parameters_;
intptr_t usage_counter_; // Incremented while function is running.
srdjan 2012/09/12 06:37:05 Why not move the numbers of parameters to uint16 a
regis 2012/09/12 15:42:27 I would be reluctant to restrict the maximum numbe
- intptr_t deoptimization_counter_;
- intptr_t kind_tag_;
+ uint16_t deoptimization_counter_;
+ uint16_t kind_tag_;
};
« no previous file with comments | « vm/object.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698