diff options
author | Nia Waldvogel <[email protected]> | 2021-07-21 14:30:01 -0400 |
---|---|---|
committer | Ron Evans <[email protected]> | 2021-11-14 10:49:28 +0100 |
commit | 641dcd7c16d60a53faf8b61b509057830441a765 (patch) | |
tree | 2db29ae018645871178727e8c355bc69b24db796 /compiler/testdata/channel.ll | |
parent | 523d1f28cf31ebd398093636b915bbcb3dcd93d5 (diff) | |
download | tinygo-641dcd7c16d60a53faf8b61b509057830441a765.tar.gz tinygo-641dcd7c16d60a53faf8b61b509057830441a765.zip |
internal/task: use asyncify on webassembly
This change implements a new "scheduler" for WebAssembly using binaryen's asyncify transform.
This is more reliable than the current "coroutines" transform, and works with non-Go code in the call stack.
runtime (js/wasm): handle scheduler nesting
If WASM calls into JS which calls back into WASM, it is possible for the scheduler to nest.
The event from the callback must be handled immediately, so the task cannot simply be deferred to the outer scheduler.
This creates a minimal scheduler loop which is used to handle such nesting.
Diffstat (limited to 'compiler/testdata/channel.ll')
-rw-r--r-- | compiler/testdata/channel.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/testdata/channel.ll b/compiler/testdata/channel.ll index 2d4f1475b..04bfa4af1 100644 --- a/compiler/testdata/channel.ll +++ b/compiler/testdata/channel.ll @@ -6,7 +6,8 @@ target triple = "wasm32-unknown-wasi" %runtime.channel = type { i32, i32, i8, %runtime.channelBlockedList*, i32, i32, i32, i8* } %runtime.channelBlockedList = type { %runtime.channelBlockedList*, %"internal/task.Task"*, %runtime.chanSelectState*, { %runtime.channelBlockedList*, i32, i32 } } %"internal/task.Task" = type { %"internal/task.Task"*, i8*, i64, %"internal/task.state" } -%"internal/task.state" = type { i8* } +%"internal/task.state" = type { i32, i8*, %"internal/task.stackState", i1 } +%"internal/task.stackState" = type { i32, i32 } %runtime.chanSelectState = type { %runtime.channel*, i8* } declare noalias nonnull i8* @runtime.alloc(i32, i8*, i8*, i8*) |