Index: runtime/vm/raw_object.h |
=================================================================== |
--- runtime/vm/raw_object.h (revision 36912) |
+++ 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_; |
srdjan
2014/06/03 15:45:45
Please add offset_ to the name.
|
+ intptr_t patch_code_pc_; |
+ intptr_t lazy_deopt_pc_; |
+ |
// Variable length data follows here. |
int32_t data_[0]; |