github.com/bananabytelabs/wazero@v0.0.0-20240105073314-54b22a776da8/internal/engine/wazevo/backend/isa/amd64/unwind_stack.go (about)

     1  package amd64
     2  
     3  func UnwindStack(sp, top uintptr, returnAddresses []uintptr) []uintptr {
     4  	panic("implement me")
     5  }
     6  
     7  // GoCallStackView is a function to get a view of the stack before a Go call, which
     8  // is the view of the stack allocated in CompileGoFunctionTrampoline.
     9  func GoCallStackView(stackPointerBeforeGoCall *uint64) []uint64 {
    10  	panic("implement me")
    11  }