dqxmf02844 2019-08-18 08:42
浏览 113
已采纳

如何将go指针作为wasm上下文数据传递?

I'm looking at wasmer go-ext-wasm example code /go-ext-wasm/wasmer/test/imports.go learning about setting context data. I want to pass a pointer as contextData, what's the best way to do this?

//export sum
func sum(context unsafe.Pointer, x int32, y int32) int32 {
    instanceContext := wasm.IntoInstanceContext(context)
    t := *(*int)(instanceContext.Data())
    log.Print("t: ", t)
    return x + y
}

func testInstanceImport(t *testing.T) {
    imports, err := wasm.NewImports().Namespace("env").Append("sum", sum, C.sum)
    assert.NoError(t, err)

    instance, err := wasm.NewInstanceWithImports(getImportedFunctionBytes("examples", "imported_function.wasm"), imports)
    defer instance.Close()
    assert.NoError(t, err)

    bar := int(2)
    barPtr := &bar

    data := unsafe.Pointer(&bar)
    instance.SetContextData(data)
    log.Printf("bar %v, barPtr %v", bar, barPtr)
    add1, exists := instance.Exports["add1"]
    assert.Equal(t, true, exists)

    result, err := add1(1, 2)
    log.Print("Result: ", result)
    assert.Equal(t, wasm.I32(4), result)
    assert.NoError(t, err)
}

Which gives me the expected value of 2 for context in the sum function. However when I change data := unsafe.Pointer(&bar) to data := unsafe.Pointer(&barPtr) I get a: runtime error: cgo argument has Go pointer to Go pointer error.

It works when I run it with GODEBUG=cgocheck=0 Should I be concerned running with this flag? Is what I'm trying to do a bad idea? I have a struct that contains a pointer that I need to pass as contextData, is using the GODEBUG=cgocheck=0 a bad idea?

  • 写回答

1条回答 默认 最新

  • doupao5296 2019-08-19 07:40
    关注

    I found the solution here: cgo: Go pointers in Go memory The Registry Example (Alternative) solves my issue. Thanks.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题