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

Unified Diff: runtime/vm/thread.h

Issue 1192103004: VM: New calling convention for generated code. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: fixed comments Created 5 years, 3 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/stub_code_x64.cc ('k') | runtime/vm/unit_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_, \
« no previous file with comments | « runtime/vm/stub_code_x64.cc ('k') | runtime/vm/unit_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698