Skip to content

Commit db0038b

Browse files
authored
Use runtime config to limit memory instead of module editing (#82)
1 parent 9f8aa89 commit db0038b

File tree

3 files changed

+13
-47
lines changed

3 files changed

+13
-47
lines changed

internal/re2_wazero.go

+12-47
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import (
77
"context"
88
_ "embed"
99
"encoding/binary"
10-
"encoding/hex"
1110
"errors"
1211
"os"
1312
"runtime"
@@ -19,7 +18,6 @@ import (
1918
"github.com/tetratelabs/wazero/api"
2019
"github.com/tetratelabs/wazero/experimental"
2120
"github.com/tetratelabs/wazero/imports/wasi_snapshot_preview1"
22-
2321
"github.com/wasilibs/go-re2/internal/memory"
2422
)
2523

@@ -31,6 +29,11 @@ var (
3129
//go:embed wasm/libcre2.so
3230
var libre2 []byte
3331

32+
// memoryWasm created by `wat2wasm --enable-threads internal/wasm/memory.wat -o internal/wasm/memory.wasm`
33+
//
34+
//go:embed wasm/memory.wasm
35+
var memoryWasm []byte
36+
3437
var (
3538
wasmRT wazero.Runtime
3639
wasmCompiled wazero.CompiledModule
@@ -149,11 +152,6 @@ func putChildModule(cm *childModule) {
149152
}
150153

151154
func init() {
152-
ctx := context.Background()
153-
rt := wazero.NewRuntimeWithConfig(ctx, wazero.NewRuntimeConfig().WithCoreFeatures(api.CoreFeaturesV2|experimental.CoreFeaturesThreads))
154-
155-
wasi_snapshot_preview1.MustInstantiate(ctx, rt)
156-
157155
maxPages := uint32(65536)
158156
if m := memory.TotalMemory(); m != 0 {
159157
pages := uint32(m / 65536) // Divide by WASM page size
@@ -162,9 +160,14 @@ func init() {
162160
}
163161
}
164162

165-
mem := encodeMemory(maxPages)
163+
ctx := context.Background()
164+
rt := wazero.NewRuntimeWithConfig(ctx, wazero.NewRuntimeConfig().
165+
WithCoreFeatures(api.CoreFeaturesV2|experimental.CoreFeaturesThreads).
166+
WithMemoryLimitPages(maxPages))
167+
168+
wasi_snapshot_preview1.MustInstantiate(ctx, rt)
166169

167-
if _, err := rt.InstantiateWithConfig(ctx, mem, wazero.NewModuleConfig().WithName("env")); err != nil {
170+
if _, err := rt.InstantiateWithConfig(ctx, memoryWasm, wazero.NewModuleConfig().WithName("env")); err != nil {
168171
panic(err)
169172
}
170173

@@ -651,41 +654,3 @@ func (f *lazyFunction) callWithStack(ctx context.Context, callStack []uint64) (u
651654
}
652655
return callStack[0], nil
653656
}
654-
655-
// Memory module is prefix, max pages, suffix, resulting a module looking like
656-
// (module (memory (export "memory") 3 <max> shared))
657-
const (
658-
memoryPrefixHex = "0061736d010000000506010303"
659-
memorySuffixHex = "070a01066d656d6f72790200"
660-
)
661-
662-
func encodeMemory(maxPages uint32) []byte {
663-
memoryPrefix, _ := hex.DecodeString(memoryPrefixHex)
664-
memorySuffix, _ := hex.DecodeString(memorySuffixHex)
665-
pages := encodeUint64(uint64(maxPages))
666-
res := append([]byte(memoryPrefix), pages...)
667-
return append(res, []byte(memorySuffix)...)
668-
}
669-
670-
// From https://github.com/tetratelabs/wazero/blob/main/internal/leb128/leb128.go#L75
671-
672-
func encodeUint64(value uint64) (buf []byte) {
673-
// This is effectively a do/while loop where we take 7 bits of the value and encode them until it is zero.
674-
for {
675-
// Take 7 remaining low-order bits from the value into b.
676-
b := uint8(value & 0x7f)
677-
value = value >> 7
678-
679-
// If there are remaining bits, the value won't be zero: Set the high-
680-
// order bit to tell the reader there are more bytes in this uint.
681-
if value != 0 {
682-
b |= 0x80
683-
}
684-
685-
// Append b into the buffer
686-
buf = append(buf, b)
687-
if b&0x80 == 0 {
688-
return buf
689-
}
690-
}
691-
}

internal/wasm/memory.wasm

28 Bytes
Binary file not shown.

internal/wasm/memory.wat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
(module (memory (export "memory") 3 65536 shared))

0 commit comments

Comments
 (0)