Files
wazero/internal/engine/wazevo/entrypoint_others.go
Takeshi Yoneda 109ee6c8f5 wazevo(amd64): Go function calls (#1961)
Signed-off-by: Takeshi Yoneda <t.y.mathetake@gmail.com>
2024-01-25 12:16:57 -08:00

16 lines
419 B
Go

//go:build !arm64 && !amd64
package wazevo
import (
"runtime"
)
func entrypoint(preambleExecutable, functionExecutable *byte, executionContextPtr uintptr, moduleContextPtr *byte, paramResultStackPtr *uint64, goAllocatedStackSlicePtr uintptr) {
panic(runtime.GOARCH)
}
func afterGoFunctionCallEntrypoint(executable *byte, executionContextPtr uintptr, stackPointer, framePointer uintptr) {
panic(runtime.GOARCH)
}