7
7
"context"
8
8
_ "embed"
9
9
"encoding/binary"
10
- "encoding/hex"
11
10
"errors"
12
11
"os"
13
12
"runtime"
@@ -19,7 +18,6 @@ import (
19
18
"github.com/tetratelabs/wazero/api"
20
19
"github.com/tetratelabs/wazero/experimental"
21
20
"github.com/tetratelabs/wazero/imports/wasi_snapshot_preview1"
22
-
23
21
"github.com/wasilibs/go-re2/internal/memory"
24
22
)
25
23
31
29
//go:embed wasm/libcre2.so
32
30
var libre2 []byte
33
31
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
+
34
37
var (
35
38
wasmRT wazero.Runtime
36
39
wasmCompiled wazero.CompiledModule
@@ -149,11 +152,6 @@ func putChildModule(cm *childModule) {
149
152
}
150
153
151
154
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
-
157
155
maxPages := uint32 (65536 )
158
156
if m := memory .TotalMemory (); m != 0 {
159
157
pages := uint32 (m / 65536 ) // Divide by WASM page size
@@ -162,9 +160,14 @@ func init() {
162
160
}
163
161
}
164
162
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 )
166
169
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 {
168
171
panic (err )
169
172
}
170
173
@@ -651,41 +654,3 @@ func (f *lazyFunction) callWithStack(ctx context.Context, callStack []uint64) (u
651
654
}
652
655
return callStack [0 ], nil
653
656
}
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
- }
0 commit comments