entrypoint_others.go
1//go:build (!arm64 && !amd64) || tinygo
2
3package wazevo
4
5import (
6 "runtime"
7)
8
9func entrypoint(preambleExecutable, functionExecutable *byte, executionContextPtr uintptr, moduleContextPtr *byte, paramResultStackPtr *uint64, goAllocatedStackSlicePtr uintptr) {
10 panic(runtime.GOARCH)
11}
12
13func afterGoFunctionCallEntrypoint(executable *byte, executionContextPtr uintptr, stackPointer, framePointer uintptr) {
14 panic(runtime.GOARCH)
15}