-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathfunctiontype.go
93 lines (78 loc) · 2.71 KB
/
functiontype.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package wasmer
// #include <wasmer.h>
import "C"
import "runtime"
// FunctionType classifies the signature of functions, mapping a
// vector of parameters to a vector of results. They are also used to
// classify the inputs and outputs of instructions.
//
// See also
//
// Specification: https://webassembly.github.io/spec/core/syntax/types.html#function-types
type FunctionType struct {
_inner *C.wasm_functype_t
_ownedBy interface{}
}
func newFunctionType(pointer *C.wasm_functype_t, ownedBy interface{}) *FunctionType {
functionType := &FunctionType{_inner: pointer, _ownedBy: ownedBy}
if ownedBy == nil {
runtime.SetFinalizer(functionType, func(functionType *FunctionType) {
C.wasm_functype_delete(functionType.inner())
})
}
return functionType
}
// NewFunctionType instantiates a new FunctionType from two ValueType
// arrays: the parameters and the results.
//
// params := wasmer.NewValueTypes()
// results := wasmer.NewValueTypes(wasmer.I32)
// functionType := wasmer.NewFunctionType(params, results)
//
func NewFunctionType(params []*ValueType, results []*ValueType) *FunctionType {
paramsAsValueTypeVec := toValueTypeVec(params)
resultsAsValueTypeVec := toValueTypeVec(results)
pointer := C.wasm_functype_new(¶msAsValueTypeVec, &resultsAsValueTypeVec)
return newFunctionType(pointer, nil)
}
func (self *FunctionType) inner() *C.wasm_functype_t {
return self._inner
}
func (self *FunctionType) ownedBy() interface{} {
if self._ownedBy == nil {
return self
}
return self._ownedBy
}
// Params returns the parameters definitions from the FunctionType as
// a ValueType array
//
// params := wasmer.NewValueTypes()
// results := wasmer.NewValueTypes(wasmer.I32)
// functionType := wasmer.NewFunctionType(params, results)
// paramsValueTypes = functionType.Params()
//
func (self *FunctionType) Params() []*ValueType {
return toValueTypeList(C.wasm_functype_params(self.inner()), self.ownedBy())
}
// Results returns the results definitions from the FunctionType as a
// ValueType array
//
// params := wasmer.NewValueTypes()
// results := wasmer.NewValueTypes(wasmer.I32)
// functionType := wasmer.NewFunctionType(params, results)
// resultsValueTypes = functionType.Results()
//
func (self *FunctionType) Results() []*ValueType {
return toValueTypeList(C.wasm_functype_results(self.inner()), self.ownedBy())
}
// IntoExternType converts the FunctionType into an ExternType.
//
// function, _ := instance.Exports.GetFunction("exported_function")
// functionType := function.Type()
// externType = functionType.IntoExternType()
//
func (self *FunctionType) IntoExternType() *ExternType {
pointer := C.wasm_functype_as_externtype_const(self.inner())
return newExternType(pointer, self.ownedBy())
}