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

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: 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
« no previous file with comments | « runtime/vm/stack_frame_dbc.h ('k') | runtime/vm/stub_code.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stub_code.h
diff --git a/runtime/vm/stub_code.h b/runtime/vm/stub_code.h
index fed306ba637e1178e6f9e51759244d01315a6db2..aa20321ec8fe429decbeb6ebe7f0de47c2e54839 100644
--- a/runtime/vm/stub_code.h
+++ b/runtime/vm/stub_code.h
@@ -18,9 +18,9 @@ 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(GetStackPointer) \
V(JumpToExceptionHandler) \
@@ -65,6 +65,13 @@ class SnapshotWriter;
V(CallClosureNoSuchMethod) \
V(FrameAwaitingMaterialization) \
+#else
+#define VM_STUB_CODE_LIST(V) \
+ V(LazyCompile) \
+ V(FixCallersTarget) \
+
+#endif // !defined(TARGET_ARCH_DBC)
+
// 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,
« no previous file with comments | « runtime/vm/stack_frame_dbc.h ('k') | runtime/vm/stub_code.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698