github.com/bananabytelabs/wazero@v0.0.0-20240105073314-54b22a776da8/internal/engine/wazevo/entrypoint_others.go (about) 1 //go:build !arm64 2 3 package wazevo 4 5 import ( 6 "runtime" 7 ) 8 9 func entrypoint(preambleExecutable, functionExecutable *byte, executionContextPtr uintptr, moduleContextPtr *byte, paramResultStackPtr *uint64, goAllocatedStackSlicePtr uintptr) { 10 panic(runtime.GOARCH) 11 } 12 13 func afterGoFunctionCallEntrypoint(executable *byte, executionContextPtr uintptr, stackPointer uintptr) { 14 panic(runtime.GOARCH) 15 }