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

Unified Diff: runtime/vm/raw_object.h

Issue 315583002: First step in reducing the size of PC descriptors. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: addressed comments, added arm64 file. Created 6 years, 6 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/object.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/raw_object.h
===================================================================
--- runtime/vm/raw_object.h (revision 36988)
+++ runtime/vm/raw_object.h (working copy)
@@ -840,6 +840,11 @@
// architectures.
intptr_t state_bits_; // state, is_optimized, is_alive.
+ // PC offsets for code patching.
+ intptr_t entry_patch_pc_offset_;
Ivan Posva 2014/06/05 22:28:04 Do these have to be intptr_t or would a sized poin
Florian Schneider 2014/06/06 08:54:27 I guess int32_t would be enough for the size of ge
+ intptr_t patch_code_pc_offset_;
+ intptr_t lazy_deopt_pc_offset_;
+
// Variable length data follows here.
int32_t data_[0];
« no previous file with comments | « runtime/vm/object.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698