-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathglobaltype.go
116 lines (94 loc) · 2.85 KB
/
globaltype.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
package wasmer
// #include <wasmer.h>
import "C"
import "runtime"
type GlobalMutability C.wasm_mutability_t
const (
// Represents a global that is immutable.
IMMUTABLE = GlobalMutability(C.WASM_CONST)
// Represents a global that is mutable.
MUTABLE = GlobalMutability(C.WASM_VAR)
)
// String returns the GlobalMutability as a string.
//
// IMMUTABLE.String() // "const"
// MUTABLE.String() // "var"
//
func (self GlobalMutability) String() string {
switch self {
case IMMUTABLE:
return "const"
case MUTABLE:
return "var"
}
panic("Unknown mutability") // unreachable
}
// GlobalType classifies global variables, which hold a value and can either be mutable or immutable.
//
// See also
//
// Specification: https://webassembly.github.io/spec/core/syntax/types.html#global-types
//
type GlobalType struct {
_inner *C.wasm_globaltype_t
_ownedBy interface{}
}
func newGlobalType(pointer *C.wasm_globaltype_t, ownedBy interface{}) *GlobalType {
globalType := &GlobalType{_inner: pointer, _ownedBy: ownedBy}
if ownedBy == nil {
runtime.SetFinalizer(globalType, func(globalType *GlobalType) {
C.wasm_globaltype_delete(globalType.inner())
})
}
return globalType
}
// NewGlobalType instantiates a new GlobalType from a ValueType and a GlobalMutability
//
// valueType := NewValueType(I32)
// globalType := NewGlobalType(valueType, IMMUTABLE)
//
func NewGlobalType(valueType *ValueType, mutability GlobalMutability) *GlobalType {
pointer := C.wasm_globaltype_new(valueType.inner(), C.wasm_mutability_t(mutability))
return newGlobalType(pointer, nil)
}
func (self *GlobalType) inner() *C.wasm_globaltype_t {
return self._inner
}
func (self *GlobalType) ownedBy() interface{} {
if self._ownedBy == nil {
return self
}
return self._ownedBy
}
// ValueType returns the GlobalType's ValueType
//
// valueType := NewValueType(I32)
// globalType := NewGlobalType(valueType, IMMUTABLE)
// globalType.ValueType().Kind().String() // "i32"
//
func (self *GlobalType) ValueType() *ValueType {
pointer := C.wasm_globaltype_content(self.inner())
runtime.KeepAlive(self)
return newValueType(pointer, self.ownedBy())
}
// Mutability returns the GlobalType's GlobalMutability
//
// valueType := NewValueType(I32)
// globalType := NewGlobalType(valueType, IMMUTABLE)
// globalType.Mutability().String() // "const"
//
func (self *GlobalType) Mutability() GlobalMutability {
mutability := GlobalMutability(C.wasm_globaltype_mutability(self.inner()))
runtime.KeepAlive(self)
return mutability
}
// IntoExternType converts the GlobalType into an ExternType.
//
// valueType := NewValueType(I32)
// globalType := NewGlobalType(valueType, IMMUTABLE)
// externType = globalType.IntoExternType()
//
func (self *GlobalType) IntoExternType() *ExternType {
pointer := C.wasm_globaltype_as_externtype_const(self.inner())
return newExternType(pointer, self.ownedBy())
}