This commit implements the rest of the unimplemented instructions in the bulk-memory-operations proposal. Notably, this adds support for table.init, table.copy and elem.drop instructions toggled by FeatureBulkMemoryOperations. Given that, now wazero has the complete support for the bulk-memory-operations proposal as described in https://github.com/WebAssembly/spec/blob/main/proposals/bulk-memory-operations/Overview.md fixes #321 Signed-off-by: Takeshi Yoneda <takeshi@tetrate.io>
67 lines
1.7 KiB
Go
67 lines
1.7 KiB
Go
package binary
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
|
|
"github.com/tetratelabs/wazero/internal/wasm"
|
|
)
|
|
|
|
// decodeGlobal returns the api.Global decoded with the WebAssembly 1.0 (20191205) Binary Format.
|
|
//
|
|
// See https://www.w3.org/TR/2019/REC-wasm-core-1-20191205/#binary-global
|
|
func decodeGlobal(r *bytes.Reader, enabledFeatures wasm.Features) (*wasm.Global, error) {
|
|
gt, err := decodeGlobalType(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
init, err := decodeConstantExpression(r, enabledFeatures)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &wasm.Global{Type: gt, Init: init}, nil
|
|
}
|
|
|
|
// decodeGlobalType returns the wasm.GlobalType decoded with the WebAssembly 1.0 (20191205) Binary Format.
|
|
//
|
|
// See https://www.w3.org/TR/2019/REC-wasm-core-1-20191205/#binary-globaltype
|
|
func decodeGlobalType(r *bytes.Reader) (*wasm.GlobalType, error) {
|
|
vt, err := decodeValueTypes(r, 1)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("read value type: %w", err)
|
|
}
|
|
|
|
ret := &wasm.GlobalType{
|
|
ValType: vt[0],
|
|
}
|
|
|
|
b, err := r.ReadByte()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("read mutablity: %w", err)
|
|
}
|
|
|
|
switch mut := b; mut {
|
|
case 0x00: // not mutable
|
|
case 0x01: // mutable
|
|
ret.Mutable = true
|
|
default:
|
|
return nil, fmt.Errorf("%w for mutability: %#x != 0x00 or 0x01", ErrInvalidByte, mut)
|
|
}
|
|
return ret, nil
|
|
}
|
|
|
|
// encodeGlobal returns the wasm.Global encoded in WebAssembly 1.0 (20191205) Binary Format.
|
|
//
|
|
// See https://www.w3.org/TR/2019/REC-wasm-core-1-20191205/#global-section%E2%91%A0
|
|
func encodeGlobal(g *wasm.Global) (data []byte) {
|
|
var mutable byte
|
|
if g.Type.Mutable {
|
|
mutable = 1
|
|
}
|
|
data = []byte{g.Type.ValType, mutable}
|
|
data = append(data, encodeConstantExpression(g.Init)...)
|
|
return
|
|
}
|