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 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思