Skip to content

Commit 163a631

Browse files
committed
BREAKING CHANGE: Do not allocate buffers for memory.data(i32, i32?)
MemorySegments can now hold null buffers, which signifies that memory is in fact used in the compiled program, for programs that only reserve zero-filled memories. Using null buffers avoids passing zero-filled buffers to Binaryen, which isn't necessary since Wasm memories are initialized with zeroes when a (data ...) segment isn't present. This change is breaking in that modules using imported memories that contain non-zero values in such memory ranges at the time of instantiation will retain those values, as opposed to being filled. This shouldn't affect most users, however, and it could possibly be desirable. Fixes #2827.
1 parent de174c5 commit 163a631

File tree

160 files changed

+6372
-6608
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

160 files changed

+6372
-6608
lines changed

src/builtins.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3322,7 +3322,7 @@ function builtin_memory_data(ctx: BuiltinFunctionContext): ExpressionRef {
33223322
return module.unreachable();
33233323
}
33243324
}
3325-
offset = compiler.addAlignedMemorySegment(new Uint8Array(size), align).offset;
3325+
offset = compiler.addZeroedMemorySegment(size, align).offset;
33263326
}
33273327
// FIXME: what if recompiles happen? recompiles are bad.
33283328
compiler.currentType = usizeType;

src/compiler.ts

+13-3
Original file line numberDiff line numberDiff line change
@@ -1894,6 +1894,16 @@ export class Compiler extends DiagnosticEmitter {
18941894
return segment;
18951895
}
18961896

1897+
/** Adds a dummy memory segment. */
1898+
addZeroedMemorySegment(size: i32, alignment: i32 = 16): MemorySegment {
1899+
assert(isPowerOf2(alignment));
1900+
let memoryOffset = i64_align(this.memoryOffset, alignment);
1901+
let segment = new MemorySegment(null, memoryOffset);
1902+
this.memorySegments.push(segment);
1903+
this.memoryOffset = i64_add(memoryOffset, i64_new(size));
1904+
return segment;
1905+
}
1906+
18971907
/** Adds a static memory segment representing a runtime object. */
18981908
addRuntimeMemorySegment(buffer: Uint8Array): MemorySegment {
18991909
let memoryOffset = this.program.computeBlockStart64(this.memoryOffset);
@@ -2043,7 +2053,7 @@ export class Compiler extends DiagnosticEmitter {
20432053
if (!arrayInstance) {
20442054
arrayInstance = assert(this.resolver.resolveClass(this.program.arrayPrototype, [ elementType ]));
20452055
}
2046-
let bufferLength = readI32(bufferSegment.buffer, program.OBJECTInstance.offsetof("rtSize"));
2056+
let bufferLength = readI32(bufferSegment.buffer!, program.OBJECTInstance.offsetof("rtSize"));
20472057
let arrayLength = i32(bufferLength / elementType.byteSize);
20482058
let bufferAddress = i64_add(bufferSegment.offset, i64_new(program.totalOverhead));
20492059
let buf = arrayInstance.createBuffer();
@@ -8060,7 +8070,7 @@ export class Compiler extends DiagnosticEmitter {
80608070
}
80618071
let arrayInstance = assert(this.resolver.resolveClass(this.program.staticArrayPrototype, [ stringType ]));
80628072
let segment = this.addStaticBuffer(stringType, values, arrayInstance.id);
8063-
this.program.OBJECTInstance.writeField("gcInfo", 3, segment.buffer, 0); // use transparent gcinfo
8073+
this.program.OBJECTInstance.writeField("gcInfo", 3, segment.buffer!, 0); // use transparent gcinfo
80648074
let offset = i64_add(segment.offset, i64_new(this.program.totalOverhead));
80658075
let joinInstance = assert(arrayInstance.getMethod("join"));
80668076
let indexedSetInstance = assert(arrayInstance.lookupOverload(OperatorKind.IndexedSet, true));
@@ -8151,7 +8161,7 @@ export class Compiler extends DiagnosticEmitter {
81518161
);
81528162
arrayInstance.writeField("raw",
81538163
i64_add(rawHeaderSegment.offset, i64_new(this.program.totalOverhead)),
8154-
arraySegment.buffer
8164+
arraySegment.buffer!
81558165
);
81568166
} else {
81578167
arraySegment = this.addStaticArrayHeader(stringType,

src/module.ts

+18-9
Original file line numberDiff line numberDiff line change
@@ -1366,7 +1366,7 @@ export const enum ExpressionRunnerFlags {
13661366
export class MemorySegment {
13671367
constructor(
13681368
/** Segment data. */
1369-
public buffer: Uint8Array,
1369+
public buffer: Uint8Array | null,
13701370
/** Segment offset. */
13711371
public offset: i64
13721372
) {}
@@ -2409,22 +2409,31 @@ export class Module {
24092409
let cStr1 = this.allocStringCached(exportName);
24102410
let cStr2 = this.allocStringCached(name);
24112411
let k = segments.length;
2412-
let segs = new Array<usize>(k);
2412+
let empty = 0;
2413+
2414+
let segs = new Array<usize>();
24132415
let psvs = new Uint8Array(k);
2414-
let offs = new Array<ExpressionRef>(k);
2415-
let sizs = new Array<Index>(k);
2416-
for (let i = 0; i < k; ++i) {
2416+
let offs = new Array<ExpressionRef>();
2417+
let sizs = new Array<Index>();
2418+
for (let i = 0; i < k; i++) {
24172419
let segment = unchecked(segments[i]);
24182420
let buffer = segment.buffer;
2421+
if (!buffer) {
2422+
empty++;
2423+
continue;
2424+
}
2425+
24192426
let offset = segment.offset;
2420-
unchecked(segs[i] = allocU8Array(buffer));
2421-
unchecked(psvs[i] = 0); // no passive segments currently
2422-
unchecked(offs[i] = target == Target.Wasm64
2427+
segs.push(allocU8Array(buffer));
2428+
psvs[i - empty] = 0; // no passive segments currently
2429+
offs.push(target == Target.Wasm64
24232430
? this.i64(i64_low(offset), i64_high(offset))
24242431
: this.i32(i64_low(offset))
24252432
);
2426-
unchecked(sizs[i] = buffer.length);
2433+
sizs.push(buffer.length);
24272434
}
2435+
2436+
k -= empty;
24282437
let cArr1 = allocPtrArray(segs);
24292438
let cArr2 = allocU8Array(psvs);
24302439
let cArr3 = allocPtrArray(offs);

tests/compiler/assignment-chain.debug.wat

+5-8
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,11 @@
3535
(memory $0 1)
3636
(data $0 (i32.const 12) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00(\00\00\00A\00l\00l\00o\00c\00a\00t\00i\00o\00n\00 \00t\00o\00o\00 \00l\00a\00r\00g\00e\00\00\00\00\00")
3737
(data $1 (i32.const 76) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00 \00\00\00~\00l\00i\00b\00/\00r\00t\00/\00i\00t\00c\00m\00s\00.\00t\00s\00\00\00\00\00\00\00\00\00\00\00\00\00")
38-
(data $2 (i32.const 144) "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
39-
(data $3 (i32.const 176) "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
40-
(data $4 (i32.const 204) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00$\00\00\00I\00n\00d\00e\00x\00 \00o\00u\00t\00 \00o\00f\00 \00r\00a\00n\00g\00e\00\00\00\00\00\00\00\00\00")
41-
(data $5 (i32.const 268) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\14\00\00\00~\00l\00i\00b\00/\00r\00t\00.\00t\00s\00\00\00\00\00\00\00\00\00")
42-
(data $6 (i32.const 320) "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
43-
(data $7 (i32.const 348) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\1e\00\00\00~\00l\00i\00b\00/\00r\00t\00/\00t\00l\00s\00f\00.\00t\00s\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
44-
(data $8 (i32.const 412) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00&\00\00\00a\00s\00s\00i\00g\00n\00m\00e\00n\00t\00-\00c\00h\00a\00i\00n\00.\00t\00s\00\00\00\00\00\00\00")
45-
(data $9 (i32.const 480) "\06\00\00\00 \00\00\00 \00\00\00 \00\00\00\00\00\00\00 \00\00\00 \00\00\00")
38+
(data $2 (i32.const 204) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00$\00\00\00I\00n\00d\00e\00x\00 \00o\00u\00t\00 \00o\00f\00 \00r\00a\00n\00g\00e\00\00\00\00\00\00\00\00\00")
39+
(data $3 (i32.const 268) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\14\00\00\00~\00l\00i\00b\00/\00r\00t\00.\00t\00s\00\00\00\00\00\00\00\00\00")
40+
(data $4 (i32.const 348) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\1e\00\00\00~\00l\00i\00b\00/\00r\00t\00/\00t\00l\00s\00f\00.\00t\00s\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
41+
(data $5 (i32.const 412) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00&\00\00\00a\00s\00s\00i\00g\00n\00m\00e\00n\00t\00-\00c\00h\00a\00i\00n\00.\00t\00s\00\00\00\00\00\00\00")
42+
(data $6 (i32.const 480) "\06\00\00\00 \00\00\00 \00\00\00 \00\00\00\00\00\00\00 \00\00\00 \00\00\00")
4643
(table $0 1 1 funcref)
4744
(elem $0 (i32.const 1))
4845
(export "normal_assignment_chain" (func $assignment-chain/normal_assignment_chain))

tests/compiler/assignment-chain.release.wat

+9-9
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
2525
(data $0.1 (i32.const 1048) "\02\00\00\00(\00\00\00A\00l\00l\00o\00c\00a\00t\00i\00o\00n\00 \00t\00o\00o\00 \00l\00a\00r\00g\00e")
2626
(data $1 (i32.const 1100) "<")
2727
(data $1.1 (i32.const 1112) "\02\00\00\00 \00\00\00~\00l\00i\00b\00/\00r\00t\00/\00i\00t\00c\00m\00s\00.\00t\00s")
28-
(data $4 (i32.const 1228) "<")
29-
(data $4.1 (i32.const 1240) "\02\00\00\00$\00\00\00I\00n\00d\00e\00x\00 \00o\00u\00t\00 \00o\00f\00 \00r\00a\00n\00g\00e")
30-
(data $5 (i32.const 1292) ",")
31-
(data $5.1 (i32.const 1304) "\02\00\00\00\14\00\00\00~\00l\00i\00b\00/\00r\00t\00.\00t\00s")
32-
(data $7 (i32.const 1372) "<")
33-
(data $7.1 (i32.const 1384) "\02\00\00\00\1e\00\00\00~\00l\00i\00b\00/\00r\00t\00/\00t\00l\00s\00f\00.\00t\00s")
34-
(data $8 (i32.const 1436) "<")
35-
(data $8.1 (i32.const 1448) "\02\00\00\00&\00\00\00a\00s\00s\00i\00g\00n\00m\00e\00n\00t\00-\00c\00h\00a\00i\00n\00.\00t\00s")
36-
(data $9 (i32.const 1504) "\06\00\00\00 \00\00\00 \00\00\00 \00\00\00\00\00\00\00 \00\00\00 ")
28+
(data $2 (i32.const 1228) "<")
29+
(data $2.1 (i32.const 1240) "\02\00\00\00$\00\00\00I\00n\00d\00e\00x\00 \00o\00u\00t\00 \00o\00f\00 \00r\00a\00n\00g\00e")
30+
(data $3 (i32.const 1292) ",")
31+
(data $3.1 (i32.const 1304) "\02\00\00\00\14\00\00\00~\00l\00i\00b\00/\00r\00t\00.\00t\00s")
32+
(data $4 (i32.const 1372) "<")
33+
(data $4.1 (i32.const 1384) "\02\00\00\00\1e\00\00\00~\00l\00i\00b\00/\00r\00t\00/\00t\00l\00s\00f\00.\00t\00s")
34+
(data $5 (i32.const 1436) "<")
35+
(data $5.1 (i32.const 1448) "\02\00\00\00&\00\00\00a\00s\00s\00i\00g\00n\00m\00e\00n\00t\00-\00c\00h\00a\00i\00n\00.\00t\00s")
36+
(data $6 (i32.const 1504) "\06\00\00\00 \00\00\00 \00\00\00 \00\00\00\00\00\00\00 \00\00\00 ")
3737
(export "normal_assignment_chain" (func $assignment-chain/normal_assignment_chain))
3838
(export "setter_assignment_chain" (func $assignment-chain/setter_assignment_chain))
3939
(export "static_setter_assignment_chain" (func $assignment-chain/static_setter_assignment_chain))

tests/compiler/bindings/esm.debug.wat

+11-14
Original file line numberDiff line numberDiff line change
@@ -70,20 +70,17 @@
7070
(data $6 (i32.const 252) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00&\00\00\00~\00l\00i\00b\00/\00a\00r\00r\00a\00y\00b\00u\00f\00f\00e\00r\00.\00t\00s\00\00\00\00\00\00\00")
7171
(data $7 (i32.const 316) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00(\00\00\00A\00l\00l\00o\00c\00a\00t\00i\00o\00n\00 \00t\00o\00o\00 \00l\00a\00r\00g\00e\00\00\00\00\00")
7272
(data $8 (i32.const 380) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00 \00\00\00~\00l\00i\00b\00/\00r\00t\00/\00i\00t\00c\00m\00s\00.\00t\00s\00\00\00\00\00\00\00\00\00\00\00\00\00")
73-
(data $9 (i32.const 448) "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
74-
(data $10 (i32.const 480) "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
75-
(data $11 (i32.const 508) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00$\00\00\00I\00n\00d\00e\00x\00 \00o\00u\00t\00 \00o\00f\00 \00r\00a\00n\00g\00e\00\00\00\00\00\00\00\00\00")
76-
(data $12 (i32.const 572) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\14\00\00\00~\00l\00i\00b\00/\00r\00t\00.\00t\00s\00\00\00\00\00\00\00\00\00")
77-
(data $13 (i32.const 624) "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
78-
(data $14 (i32.const 652) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\1e\00\00\00~\00l\00i\00b\00/\00r\00t\00/\00t\00l\00s\00f\00.\00t\00s\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
79-
(data $15 (i32.const 716) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
80-
(data $16 (i32.const 748) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00$\00\00\00~\00l\00i\00b\00/\00t\00y\00p\00e\00d\00a\00r\00r\00a\00y\00.\00t\00s\00\00\00\00\00\00\00\00\00")
81-
(data $17 (i32.const 812) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00&\00\00\00~\00l\00i\00b\00/\00s\00t\00a\00t\00i\00c\00a\00r\00r\00a\00y\00.\00t\00s\00\00\00\00\00\00\00")
82-
(data $18 (i32.const 876) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\1a\00\00\00~\00l\00i\00b\00/\00a\00r\00r\00a\00y\00.\00t\00s\00\00\00")
83-
(data $19 (i32.const 924) "|\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00^\00\00\00E\00l\00e\00m\00e\00n\00t\00 \00t\00y\00p\00e\00 \00m\00u\00s\00t\00 \00b\00e\00 \00n\00u\00l\00l\00a\00b\00l\00e\00 \00i\00f\00 \00a\00r\00r\00a\00y\00 \00i\00s\00 \00h\00o\00l\00e\00y\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
84-
(data $20 (i32.const 1052) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00*\00\00\00O\00b\00j\00e\00c\00t\00 \00a\00l\00r\00e\00a\00d\00y\00 \00p\00i\00n\00n\00e\00d\00\00\00")
85-
(data $21 (i32.const 1116) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00(\00\00\00O\00b\00j\00e\00c\00t\00 \00i\00s\00 \00n\00o\00t\00 \00p\00i\00n\00n\00e\00d\00\00\00\00\00")
86-
(data $22 (i32.const 1184) "\10\00\00\00 \00\00\00 \00\00\00 \00\00\00\00\00\00\00\00\00\00\00\81\08\00\00\01\19\00\00\01\02\00\00$\t\00\00\a4\00\00\00$\n\00\00\02\t\00\00\02A\00\00\00\00\00\00A\00\00\00 \00\00\00")
73+
(data $9 (i32.const 508) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00$\00\00\00I\00n\00d\00e\00x\00 \00o\00u\00t\00 \00o\00f\00 \00r\00a\00n\00g\00e\00\00\00\00\00\00\00\00\00")
74+
(data $10 (i32.const 572) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\14\00\00\00~\00l\00i\00b\00/\00r\00t\00.\00t\00s\00\00\00\00\00\00\00\00\00")
75+
(data $11 (i32.const 652) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\1e\00\00\00~\00l\00i\00b\00/\00r\00t\00/\00t\00l\00s\00f\00.\00t\00s\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
76+
(data $12 (i32.const 716) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
77+
(data $13 (i32.const 748) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00$\00\00\00~\00l\00i\00b\00/\00t\00y\00p\00e\00d\00a\00r\00r\00a\00y\00.\00t\00s\00\00\00\00\00\00\00\00\00")
78+
(data $14 (i32.const 812) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00&\00\00\00~\00l\00i\00b\00/\00s\00t\00a\00t\00i\00c\00a\00r\00r\00a\00y\00.\00t\00s\00\00\00\00\00\00\00")
79+
(data $15 (i32.const 876) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\1a\00\00\00~\00l\00i\00b\00/\00a\00r\00r\00a\00y\00.\00t\00s\00\00\00")
80+
(data $16 (i32.const 924) "|\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00^\00\00\00E\00l\00e\00m\00e\00n\00t\00 \00t\00y\00p\00e\00 \00m\00u\00s\00t\00 \00b\00e\00 \00n\00u\00l\00l\00a\00b\00l\00e\00 \00i\00f\00 \00a\00r\00r\00a\00y\00 \00i\00s\00 \00h\00o\00l\00e\00y\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
81+
(data $17 (i32.const 1052) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00*\00\00\00O\00b\00j\00e\00c\00t\00 \00a\00l\00r\00e\00a\00d\00y\00 \00p\00i\00n\00n\00e\00d\00\00\00")
82+
(data $18 (i32.const 1116) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00(\00\00\00O\00b\00j\00e\00c\00t\00 \00i\00s\00 \00n\00o\00t\00 \00p\00i\00n\00n\00e\00d\00\00\00\00\00")
83+
(data $19 (i32.const 1184) "\10\00\00\00 \00\00\00 \00\00\00 \00\00\00\00\00\00\00\00\00\00\00\81\08\00\00\01\19\00\00\01\02\00\00$\t\00\00\a4\00\00\00$\n\00\00\02\t\00\00\02A\00\00\00\00\00\00A\00\00\00 \00\00\00")
8784
(table $0 2 2 funcref)
8885
(elem $0 (i32.const 1) $start:bindings/esm~anonymous|0)
8986
(export "plainGlobal" (global $bindings/esm/plainGlobal))

tests/compiler/bindings/esm.release.wat

+22-22
Original file line numberDiff line numberDiff line change
@@ -62,28 +62,28 @@
6262
(data $7.1 (i32.const 1352) "\02\00\00\00(\00\00\00A\00l\00l\00o\00c\00a\00t\00i\00o\00n\00 \00t\00o\00o\00 \00l\00a\00r\00g\00e")
6363
(data $8 (i32.const 1404) "<")
6464
(data $8.1 (i32.const 1416) "\02\00\00\00 \00\00\00~\00l\00i\00b\00/\00r\00t\00/\00i\00t\00c\00m\00s\00.\00t\00s")
65-
(data $11 (i32.const 1532) "<")
66-
(data $11.1 (i32.const 1544) "\02\00\00\00$\00\00\00I\00n\00d\00e\00x\00 \00o\00u\00t\00 \00o\00f\00 \00r\00a\00n\00g\00e")
67-
(data $12 (i32.const 1596) ",")
68-
(data $12.1 (i32.const 1608) "\02\00\00\00\14\00\00\00~\00l\00i\00b\00/\00r\00t\00.\00t\00s")
69-
(data $14 (i32.const 1676) "<")
70-
(data $14.1 (i32.const 1688) "\02\00\00\00\1e\00\00\00~\00l\00i\00b\00/\00r\00t\00/\00t\00l\00s\00f\00.\00t\00s")
71-
(data $15 (i32.const 1740) "\1c")
72-
(data $15.1 (i32.const 1752) "\02")
73-
(data $16 (i32.const 1772) "<")
74-
(data $16.1 (i32.const 1784) "\02\00\00\00$\00\00\00~\00l\00i\00b\00/\00t\00y\00p\00e\00d\00a\00r\00r\00a\00y\00.\00t\00s")
75-
(data $17 (i32.const 1836) "<")
76-
(data $17.1 (i32.const 1848) "\02\00\00\00&\00\00\00~\00l\00i\00b\00/\00s\00t\00a\00t\00i\00c\00a\00r\00r\00a\00y\00.\00t\00s")
77-
(data $18 (i32.const 1900) ",")
78-
(data $18.1 (i32.const 1912) "\02\00\00\00\1a\00\00\00~\00l\00i\00b\00/\00a\00r\00r\00a\00y\00.\00t\00s")
79-
(data $19 (i32.const 1948) "|")
80-
(data $19.1 (i32.const 1960) "\02\00\00\00^\00\00\00E\00l\00e\00m\00e\00n\00t\00 \00t\00y\00p\00e\00 \00m\00u\00s\00t\00 \00b\00e\00 \00n\00u\00l\00l\00a\00b\00l\00e\00 \00i\00f\00 \00a\00r\00r\00a\00y\00 \00i\00s\00 \00h\00o\00l\00e\00y")
81-
(data $20 (i32.const 2076) "<")
82-
(data $20.1 (i32.const 2088) "\02\00\00\00*\00\00\00O\00b\00j\00e\00c\00t\00 \00a\00l\00r\00e\00a\00d\00y\00 \00p\00i\00n\00n\00e\00d")
83-
(data $21 (i32.const 2140) "<")
84-
(data $21.1 (i32.const 2152) "\02\00\00\00(\00\00\00O\00b\00j\00e\00c\00t\00 \00i\00s\00 \00n\00o\00t\00 \00p\00i\00n\00n\00e\00d")
85-
(data $22 (i32.const 2208) "\10\00\00\00 \00\00\00 \00\00\00 ")
86-
(data $22.1 (i32.const 2232) "\81\08\00\00\01\19\00\00\01\02\00\00$\t\00\00\a4\00\00\00$\n\00\00\02\t\00\00\02A\00\00\00\00\00\00A\00\00\00 ")
65+
(data $9 (i32.const 1532) "<")
66+
(data $9.1 (i32.const 1544) "\02\00\00\00$\00\00\00I\00n\00d\00e\00x\00 \00o\00u\00t\00 \00o\00f\00 \00r\00a\00n\00g\00e")
67+
(data $10 (i32.const 1596) ",")
68+
(data $10.1 (i32.const 1608) "\02\00\00\00\14\00\00\00~\00l\00i\00b\00/\00r\00t\00.\00t\00s")
69+
(data $11 (i32.const 1676) "<")
70+
(data $11.1 (i32.const 1688) "\02\00\00\00\1e\00\00\00~\00l\00i\00b\00/\00r\00t\00/\00t\00l\00s\00f\00.\00t\00s")
71+
(data $12 (i32.const 1740) "\1c")
72+
(data $12.1 (i32.const 1752) "\02")
73+
(data $13 (i32.const 1772) "<")
74+
(data $13.1 (i32.const 1784) "\02\00\00\00$\00\00\00~\00l\00i\00b\00/\00t\00y\00p\00e\00d\00a\00r\00r\00a\00y\00.\00t\00s")
75+
(data $14 (i32.const 1836) "<")
76+
(data $14.1 (i32.const 1848) "\02\00\00\00&\00\00\00~\00l\00i\00b\00/\00s\00t\00a\00t\00i\00c\00a\00r\00r\00a\00y\00.\00t\00s")
77+
(data $15 (i32.const 1900) ",")
78+
(data $15.1 (i32.const 1912) "\02\00\00\00\1a\00\00\00~\00l\00i\00b\00/\00a\00r\00r\00a\00y\00.\00t\00s")
79+
(data $16 (i32.const 1948) "|")
80+
(data $16.1 (i32.const 1960) "\02\00\00\00^\00\00\00E\00l\00e\00m\00e\00n\00t\00 \00t\00y\00p\00e\00 \00m\00u\00s\00t\00 \00b\00e\00 \00n\00u\00l\00l\00a\00b\00l\00e\00 \00i\00f\00 \00a\00r\00r\00a\00y\00 \00i\00s\00 \00h\00o\00l\00e\00y")
81+
(data $17 (i32.const 2076) "<")
82+
(data $17.1 (i32.const 2088) "\02\00\00\00*\00\00\00O\00b\00j\00e\00c\00t\00 \00a\00l\00r\00e\00a\00d\00y\00 \00p\00i\00n\00n\00e\00d")
83+
(data $18 (i32.const 2140) "<")
84+
(data $18.1 (i32.const 2152) "\02\00\00\00(\00\00\00O\00b\00j\00e\00c\00t\00 \00i\00s\00 \00n\00o\00t\00 \00p\00i\00n\00n\00e\00d")
85+
(data $19 (i32.const 2208) "\10\00\00\00 \00\00\00 \00\00\00 ")
86+
(data $19.1 (i32.const 2232) "\81\08\00\00\01\19\00\00\01\02\00\00$\t\00\00\a4\00\00\00$\n\00\00\02\t\00\00\02A\00\00\00\00\00\00A\00\00\00 ")
8787
(export "plainGlobal" (global $bindings/esm/plainGlobal))
8888
(export "plainMutableGlobal" (global $bindings/esm/plainMutableGlobal))
8989
(export "stringGlobal" (global $bindings/esm/stringGlobal))

0 commit comments

Comments
 (0)