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]; |