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

Unified Diff: runtime/vm/symbols.h

Issue 1274133002: Don't zone-register async callbacks for every await call in the VM. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Move async-classes to async patch. Address comments. Created 5 years, 4 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/symbols.h
diff --git a/runtime/vm/symbols.h b/runtime/vm/symbols.h
index 4f2c72cdb1cba7c1b3617577679b3caafbb0c4d4..dc46cbb6a962a65d40acc9d0de13d25893a4408d 100644
--- a/runtime/vm/symbols.h
+++ b/runtime/vm/symbols.h
@@ -103,11 +103,16 @@ class ObjectPointerVisitor;
V(YieldKw, "yield") \
V(AsyncCompleter, ":async_completer") \
V(AsyncOperation, ":async_op") \
+ V(AsyncThenCallback, ":async_op_then") \
+ V(AsyncCatchErrorCallback, ":async_op_catch_error") \
V(AsyncOperationParam, ":async_result") \
V(AsyncOperationErrorParam, ":async_error_param") \
V(AsyncOperationStackTraceParam, ":async_stack_trace_param") \
V(AsyncSavedTryCtxVarPrefix, ":async_saved_try_ctx_var_") \
V(AsyncCatchHelper, "_asyncCatchHelper") \
+ V(AsyncThenWrapperHelper, "_asyncThenWrapperHelper") \
+ V(AsyncErrorWrapperHelper, "_asyncErrorWrapperHelper") \
+ V(AsyncAwaitHelper, "_awaitHelper") \
V(Await, "await") \
V(AwaitContextVar, ":await_ctx_var") \
V(AwaitJumpVar, ":await_jump_var") \

Powered by Google App Engine
This is Rietveld 408576698