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

Unified Diff: runtime/vm/stub_code.h

Issue 1858283002: Initial SIMDBC interpreter. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: cleanup Created 4 years, 8 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
Index: runtime/vm/stub_code.h
diff --git a/runtime/vm/stub_code.h b/runtime/vm/stub_code.h
index f451638f9fc481374e132208dc61024456a86241..bcf307e8812470c5bcf294b78d7b23034ac22ac0 100644
--- a/runtime/vm/stub_code.h
+++ b/runtime/vm/stub_code.h
@@ -18,9 +18,14 @@ class RawCode;
class SnapshotReader;
class SnapshotWriter;
-
// List of stubs created in the VM isolate, these stubs are shared by different
// isolates running in this dart process.
+#if defined(TARGET_ARCH_DBC)
+#define VM_STUB_CODE_LIST(V) \
+ V(LazyCompile) \
+ V(FixCallersTarget) \
+
+#else
#define VM_STUB_CODE_LIST(V) \
V(GetStackPointer) \
V(JumpToExceptionHandler) \
@@ -63,6 +68,8 @@ class SnapshotWriter;
V(Subtype3TestCache) \
V(CallClosureNoSuchMethod) \
+#endif
+
// Is it permitted for the stubs above to refer to Object::null(), which is
// allocated in the VM isolate and shared across all isolates.
// However, in cases where a simple GC-safe placeholder is needed on the stack,

Powered by Google App Engine
This is Rietveld 408576698