Index: runtime/vm/thread.h |
diff --git a/runtime/vm/thread.h b/runtime/vm/thread.h |
index 16eade4f0563a41b18d7595d22e5429923db2c22..f503d16163523caafb63af2fd0000137db46f654 100644 |
--- a/runtime/vm/thread.h |
+++ b/runtime/vm/thread.h |
@@ -20,6 +20,7 @@ class LongJumpScope; |
class Object; |
class RawBool; |
class RawObject; |
+class RawCode; |
class RawString; |
class RuntimeEntry; |
class StackResource; |
@@ -31,6 +32,13 @@ class Zone; |
V(RawObject*, object_null_, Object::null(), NULL) \ |
V(RawBool*, bool_true_, Object::bool_true().raw(), NULL) \ |
V(RawBool*, bool_false_, Object::bool_false().raw(), NULL) \ |
+ V(RawCode*, update_store_buffer_code_, \ |
+ StubCode::UpdateStoreBuffer_entry()->code(), NULL) \ |
+ V(RawCode*, fix_callers_target_code_, \ |
+ StubCode::FixCallersTarget_entry()->code(), NULL) \ |
+ V(RawCode*, fix_allocation_stub_code_, \ |
+ StubCode::FixAllocationStubTarget_entry()->code(), NULL) \ |
+ |
#define CACHED_ADDRESSES_LIST(V) \ |
V(uword, update_store_buffer_entry_point_, \ |