-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathvalue.go
325 lines (280 loc) · 6.89 KB
/
value.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
package wasmer
// #include <wasmer.h>
//
// int32_t to_int32(wasm_val_t *value) {
// return value->of.i32;
// }
//
// int64_t to_int64(wasm_val_t *value) {
// return value->of.i64;
// }
//
// float32_t to_float32(wasm_val_t *value) {
// return value->of.f32;
// }
//
// float64_t to_float64(wasm_val_t *value) {
// return value->of.f64;
// }
//
// wasm_ref_t *to_ref(wasm_val_t *value) {
// return value->of.ref;
// }
import "C"
import (
"fmt"
"unsafe"
)
// Value; WebAssembly computations manipulate values of basic value types:
//
// • Integer (32 or 64 bit width),
//
// • Floating-point (32 or 64 bit width),
//
// • Vectors (128 bits, with 32 or 64 bit lanes).
//
// See Also
//
// Specification: https://webassembly.github.io/spec/core/exec/runtime.html#values
type Value struct {
_inner *C.wasm_val_t
}
func newValue(pointer *C.wasm_val_t) Value {
return Value{_inner: pointer}
}
// NewValue instantiates a new Value with the given value and
// ValueKind.
//
// Note: If a Wasm value cannot be created from the given value,
//
// value := NewValue(42, I32)
func NewValue(value interface{}, kind ValueKind) Value {
output, err := fromGoValue(value, kind)
if err != nil {
panic(fmt.Sprintf("Cannot create a Wasm `%s` value from `%T`", err, value))
}
return newValue(&output)
}
// NewI32 instantiates a new I32 Value with the given value.
//
// Note: If a Wasm value cannot be created from the given value,
// NewI32 will panic.
//
// value := NewI32(42)
func NewI32(value interface{}) Value {
return NewValue(value, I32)
}
// NewI64 instantiates a new I64 Value with the given value.
//
// Note: If a Wasm value cannot be created from the given value,
// NewI64 will panic.
//
// value := NewI64(42)
func NewI64(value interface{}) Value {
return NewValue(value, I64)
}
// NewF32 instantiates a new F32 Value with the given value.
//
// Note: If a Wasm value cannot be created from the given value,
// NewF32 will panic.
//
// value := NewF32(4.2)
func NewF32(value interface{}) Value {
return NewValue(value, F32)
}
// NewF64 instantiates a new F64 Value with the given value.
//
// Note: If a Wasm value cannot be created from the given value,
// NewF64 will panic.
//
// value := NewF64(4.2)
func NewF64(value interface{}) Value {
return NewValue(value, F64)
}
func (self *Value) inner() *C.wasm_val_t {
return self._inner
}
// Kind returns the Value's ValueKind.
//
// value := NewF64(4.2)
// _ = value.Kind()
func (self *Value) Kind() ValueKind {
return ValueKind(self.inner().kind)
}
// Unwrap returns the Value's value as a native Go value.
//
// value := NewF64(4.2)
// _ = value.Unwrap()
func (self *Value) Unwrap() interface{} {
return toGoValue(self.inner())
}
// I32 returns the Value's value as a native Go int32.
//
// Note: It panics if the value is not of type I32.
//
// value := NewI32(42)
// _ = value.I32()
func (self *Value) I32() int32 {
pointer := self.inner()
if ValueKind(pointer.kind) != I32 {
panic("Cannot convert value to `int32`")
}
return int32(C.to_int32(pointer))
}
// I64 returns the Value's value as a native Go int64.
//
// Note: It panics if the value is not of type I64.
//
// value := NewI64(42)
// _ = value.I64()
//
func (self *Value) I64() int64 {
pointer := self.inner()
if ValueKind(pointer.kind) != I64 {
panic("Cannot convert value to `int64`")
}
return int64(C.to_int64(pointer))
}
// F32 returns the Value's value as a native Go float32.
//
// Note: It panics if the value is not of type F32.
//
// value := NewF32(4.2)
// _ = value.F32()
//
func (self *Value) F32() float32 {
pointer := self.inner()
if ValueKind(pointer.kind) != F32 {
panic("Cannot convert value to `float32`")
}
return float32(C.to_float32(pointer))
}
// F64 returns the Value's value as a native Go float64.
//
// Note: It panics if the value is not of type F64.
//
// value := NewF64(4.2)
// _ = value.F64()
//
func (self *Value) F64() float64 {
pointer := self.inner()
if ValueKind(pointer.kind) != F64 {
panic("Cannot convert value to `float64`")
}
return float64(C.to_float64(pointer))
}
func toGoValue(pointer *C.wasm_val_t) interface{} {
switch ValueKind(pointer.kind) {
case I32:
return int32(C.to_int32(pointer))
case I64:
return int64(C.to_int64(pointer))
case F32:
return float32(C.to_float32(pointer))
case F64:
return float64(C.to_float64(pointer))
default:
panic("to do `newValue`")
}
}
func fromGoValue(value interface{}, kind ValueKind) (C.wasm_val_t, error) {
output := C.wasm_val_t{}
switch kind {
case I32:
output.kind = kind.inner()
var of = (*int32)(unsafe.Pointer(&output.of))
switch value.(type) {
case int8:
*of = int32(value.(int8))
case uint8:
*of = int32(value.(uint8))
case int16:
*of = int32(value.(int16))
case uint16:
*of = int32(value.(uint16))
case int32:
*of = value.(int32)
case int:
*of = int32(value.(int))
case uint:
*of = int32(value.(uint))
default:
return output, newErrorWith("i32")
}
case I64:
output.kind = kind.inner()
var of = (*int64)(unsafe.Pointer(&output.of))
switch value.(type) {
case int8:
*of = int64(value.(int8))
case uint8:
*of = int64(value.(uint8))
case int16:
*of = int64(value.(int16))
case uint16:
*of = int64(value.(uint16))
case int32:
*of = int64(value.(int32))
case uint32:
*of = int64(value.(int64))
case int64:
*of = value.(int64)
case int:
*of = int64(value.(int))
case uint:
*of = int64(value.(uint))
default:
return output, newErrorWith("i64")
}
case F32:
output.kind = kind.inner()
var of = (*float32)(unsafe.Pointer(&output.of))
switch value.(type) {
case float32:
*of = value.(float32)
default:
return output, newErrorWith("f32")
}
case F64:
output.kind = kind.inner()
var of = (*float64)(unsafe.Pointer(&output.of))
switch value.(type) {
case float32:
*of = float64(value.(float32))
case float64:
*of = value.(float64)
default:
return output, newErrorWith("f64")
}
default:
panic("To do, `fromGoValue`!")
}
return output, nil
}
func toValueVec(list []Value, vec *C.wasm_val_vec_t) {
numberOfValues := len(list)
values := make([]C.wasm_val_t, numberOfValues)
for nth, item := range list {
value, err := fromGoValue(item.Unwrap(), item.Kind())
if err != nil {
panic(err)
}
values[nth] = value
}
if numberOfValues > 0 {
C.wasm_val_vec_new(vec, C.size_t(numberOfValues), (*C.wasm_val_t)(unsafe.Pointer(&values[0])))
}
}
func toValueList(values *C.wasm_val_vec_t) []Value {
numberOfValues := int(values.size)
list := make([]Value, numberOfValues)
firstValue := unsafe.Pointer(values.data)
sizeOfValuePointer := unsafe.Sizeof(C.wasm_val_t{})
var currentValuePointer *C.wasm_val_t
for nth := 0; nth < numberOfValues; nth++ {
currentValuePointer = (*C.wasm_val_t)(unsafe.Pointer(uintptr(firstValue) + uintptr(nth)*sizeOfValuePointer))
value := newValue(currentValuePointer)
list[nth] = value
}
return list
}