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

Unified Diff: runtime/vm/isolate.h

Issue 1858283002: Initial SIMDBC interpreter. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: address comments 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/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index e40b3900876e47edc888d878c8ac940b5ac8bc19..9ff36974a3fa5eefe98e781f01627abb80b64a8d 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -257,6 +257,13 @@ class Isolate : public BaseIsolate {
(((limit & kInterruptsMask) & interrupt_bits) != 0);
}
+#if defined(TARGET_ARCH_DBC)
+ // Access to the current stack limit for DBC interpreter.
+ uword stack_limit() const {
+ return stack_limit_;
+ }
+#endif
+
// Access to the current stack limit for generated code. This may be
// overwritten with a special value to trigger interrupts.
uword stack_limit_address() const {

Powered by Google App Engine
This is Rietveld 408576698