Index: runtime/vm/thread.h |
diff --git a/runtime/vm/thread.h b/runtime/vm/thread.h |
index 5e14a8f42671885c8ee8c9b665a52d55890cf885..8587c22dd321cf4819671c8832fbaf4c1f82122e 100644 |
--- a/runtime/vm/thread.h |
+++ b/runtime/vm/thread.h |
@@ -21,6 +21,7 @@ class LongJumpScope; |
class Object; |
class RawBool; |
class RawObject; |
+class RawCode; |
class RawString; |
class RuntimeEntry; |
class StackResource; |
@@ -32,6 +33,15 @@ 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) \ |
+ V(RawCode*, invoke_dart_code_stub_, \ |
+ StubCode::InvokeDartCode_entry()->code(), NULL) \ |
+ |
#define CACHED_ADDRESSES_LIST(V) \ |
V(uword, update_store_buffer_entry_point_, \ |