mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-17 11:13:27 +00:00
interp: run goroutine starts and checks at runtime
This change prevents interp from trying to execute goroutine starts or checks. This fixes a bug where a goroutine started by an init function would run before the init function.
This commit is contained in:
@@ -197,7 +197,8 @@ func (r *runner) run(fn *function, params []value, parentMem *memoryView, indent
|
|||||||
// which case this call won't even get to this point but will
|
// which case this call won't even get to this point but will
|
||||||
// already be emitted in initAll.
|
// already be emitted in initAll.
|
||||||
continue
|
continue
|
||||||
case strings.HasPrefix(callFn.name, "runtime.print") || callFn.name == "runtime._panic" || callFn.name == "runtime.hashmapGet" || callFn.name == "os.runtime_args":
|
case strings.HasPrefix(callFn.name, "runtime.print") || callFn.name == "runtime._panic" || callFn.name == "runtime.hashmapGet" ||
|
||||||
|
callFn.name == "os.runtime_args" || callFn.name == "internal/task.start" || callFn.name == "internal/task.Current":
|
||||||
// These functions should be run at runtime. Specifically:
|
// These functions should be run at runtime. Specifically:
|
||||||
// * Print and panic functions are best emitted directly without
|
// * Print and panic functions are best emitted directly without
|
||||||
// interpreting them, otherwise we get a ton of putchar (etc.)
|
// interpreting them, otherwise we get a ton of putchar (etc.)
|
||||||
@@ -208,6 +209,8 @@ func (r *runner) run(fn *function, params []value, parentMem *memoryView, indent
|
|||||||
// * os.runtime_args reads globals that are initialized outside
|
// * os.runtime_args reads globals that are initialized outside
|
||||||
// the view of the interp package so it always needs to be run
|
// the view of the interp package so it always needs to be run
|
||||||
// at runtime.
|
// at runtime.
|
||||||
|
// * internal/task.start, internal/task.Current: start and read shcheduler state,
|
||||||
|
// which is modified elsewhere.
|
||||||
err := r.runAtRuntime(fn, inst, locals, &mem, indent)
|
err := r.runAtRuntime(fn, inst, locals, &mem, indent)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, mem, err
|
return nil, mem, err
|
||||||
|
|||||||
Vendored
+6
@@ -6,6 +6,12 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
println("init")
|
||||||
|
go println("goroutine in init")
|
||||||
|
time.Sleep(1 * time.Millisecond)
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
println("main 1")
|
println("main 1")
|
||||||
go sub()
|
go sub()
|
||||||
|
|||||||
Vendored
+2
@@ -1,3 +1,5 @@
|
|||||||
|
init
|
||||||
|
goroutine in init
|
||||||
main 1
|
main 1
|
||||||
sub 1
|
sub 1
|
||||||
main 2
|
main 2
|
||||||
|
|||||||
Reference in New Issue
Block a user