github.com/tetratelabs/wazero@v1.7.3-0.20240513003603-48f702e154b5/internal/engine/wazevo/entrypoint_others.go (about)

     1  //go:build (!arm64 && !amd64) || tinygo
     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, framePointer uintptr) {
    14  	panic(runtime.GOARCH)
    15  }