From 16d8fea98c912339584f4bc71167f57f61695b71 Mon Sep 17 00:00:00 2001 From: Congcong Cai Date: Mon, 10 Feb 2025 20:19:25 +0800 Subject: [PATCH 1/3] feat: enhance `lowMemoryLimit` to support larger than 64k memory limitation --- cli/options.json | 2 +- src/compiler.ts | 4 +- std/assembly/rt/tlsf.ts | 31 +- tests/compiler.js | 29 +- tests/compiler/assignment-chain.debug.wat | 134 +- tests/compiler/assignment-chain.release.wat | 40 +- tests/compiler/bindings/esm.debug.wat | 134 +- tests/compiler/bindings/esm.release.wat | 40 +- .../bindings/noExportRuntime.debug.wat | 134 +- .../bindings/noExportRuntime.release.wat | 40 +- tests/compiler/bindings/raw.debug.wat | 134 +- tests/compiler/bindings/raw.release.wat | 40 +- tests/compiler/call-inferred.debug.wat | 134 +- tests/compiler/call-inferred.release.wat | 40 +- tests/compiler/call-rest.debug.wat | 134 +- tests/compiler/call-rest.release.wat | 40 +- tests/compiler/call-super.debug.wat | 134 +- tests/compiler/call-super.release.wat | 40 +- tests/compiler/class-implements.debug.wat | 134 +- tests/compiler/class-implements.release.wat | 40 +- .../compiler/class-overloading-cast.debug.wat | 134 +- .../class-overloading-cast.release.wat | 34 +- tests/compiler/class-overloading.debug.wat | 134 +- tests/compiler/class-overloading.release.wat | 34 +- tests/compiler/class-override.debug.wat | 134 +- tests/compiler/class-override.release.wat | 34 +- tests/compiler/class.debug.wat | 134 +- tests/compiler/class.release.wat | 40 +- tests/compiler/constructor.debug.wat | 134 +- tests/compiler/constructor.release.wat | 40 +- tests/compiler/do.debug.wat | 134 +- tests/compiler/do.release.wat | 34 +- tests/compiler/duplicate-fields.debug.wat | 134 +- tests/compiler/duplicate-fields.release.wat | 40 +- tests/compiler/empty-exportruntime.debug.wat | 134 +- .../compiler/empty-exportruntime.release.wat | 40 +- tests/compiler/empty-new.debug.wat | 134 +- tests/compiler/empty-new.release.wat | 34 +- .../compiler/exportstar-rereexport.debug.wat | 134 +- .../exportstar-rereexport.release.wat | 34 +- .../compiler/extends-baseaggregate.debug.wat | 134 +- .../extends-baseaggregate.release.wat | 40 +- tests/compiler/extends-recursive.debug.wat | 134 +- tests/compiler/extends-recursive.release.wat | 40 +- tests/compiler/field-initialization.debug.wat | 134 +- .../compiler/field-initialization.release.wat | 40 +- tests/compiler/field.debug.wat | 134 +- tests/compiler/field.release.wat | 40 +- tests/compiler/for.debug.wat | 134 +- tests/compiler/for.release.wat | 34 +- tests/compiler/function-call.debug.wat | 134 +- tests/compiler/function-call.release.wat | 34 +- tests/compiler/function-expression.debug.wat | 134 +- .../compiler/function-expression.release.wat | 34 +- tests/compiler/getter-call.debug.wat | 134 +- tests/compiler/getter-call.release.wat | 34 +- tests/compiler/heap.debug.wat | 134 +- tests/compiler/heap.release.wat | 40 +- tests/compiler/infer-array.debug.wat | 134 +- tests/compiler/infer-array.release.wat | 40 +- tests/compiler/infer-generic.debug.wat | 134 +- tests/compiler/infer-generic.release.wat | 40 +- tests/compiler/inlining.debug.wat | 134 +- tests/compiler/inlining.release.wat | 40 +- tests/compiler/instanceof.debug.wat | 134 +- tests/compiler/instanceof.release.wat | 34 +- tests/compiler/issues/1095.debug.wat | 134 +- tests/compiler/issues/1095.release.wat | 40 +- tests/compiler/issues/1225.debug.wat | 134 +- tests/compiler/issues/1225.release.wat | 34 +- tests/compiler/issues/1699.debug.wat | 134 +- tests/compiler/issues/1699.release.wat | 40 +- tests/compiler/issues/2166.debug.wat | 134 +- tests/compiler/issues/2166.release.wat | 34 +- tests/compiler/issues/2322/index.debug.wat | 134 +- tests/compiler/issues/2322/index.release.wat | 40 +- tests/compiler/issues/2622.debug.wat | 134 +- tests/compiler/issues/2622.release.wat | 34 +- tests/compiler/issues/2707.debug.wat | 134 +- tests/compiler/issues/2707.release.wat | 34 +- tests/compiler/issues/2873.debug.wat | 134 +- tests/compiler/issues/2873.release.wat | 40 +- tests/compiler/logical.debug.wat | 134 +- tests/compiler/logical.release.wat | 34 +- .../less-than-64k-error.debug.wat | 1585 ++++++++++++++++ .../lowMemoryLimit/less-than-64k-error.json | 7 + .../less-than-64k-error.release.wat | 844 +++++++++ .../lowMemoryLimit/less-than-64k-error.ts | 1 + .../lowMemoryLimit/less-than-64k.debug.wat | 1585 ++++++++++++++++ .../lowMemoryLimit/less-than-64k.json | 6 + .../lowMemoryLimit/less-than-64k.release.wat | 844 +++++++++ .../compiler/lowMemoryLimit/less-than-64k.ts | 1 + .../more-than-64k-error.debug.wat | 1600 ++++++++++++++++ .../lowMemoryLimit/more-than-64k-error.json | 6 + .../more-than-64k-error.release.wat | 859 +++++++++ .../lowMemoryLimit/more-than-64k-error.ts | 3 + .../lowMemoryLimit/more-than-64k.debug.wat | 1602 +++++++++++++++++ .../lowMemoryLimit/more-than-64k.json | 5 + .../lowMemoryLimit/more-than-64k.release.wat | 859 +++++++++ .../compiler/lowMemoryLimit/more-than-64k.ts | 3 + tests/compiler/managed-cast.debug.wat | 134 +- tests/compiler/managed-cast.release.wat | 34 +- tests/compiler/new.debug.wat | 134 +- tests/compiler/new.release.wat | 34 +- tests/compiler/object-literal.debug.wat | 134 +- tests/compiler/object-literal.release.wat | 40 +- .../operator-overload-non-ambiguity.debug.wat | 134 +- ...perator-overload-non-ambiguity.release.wat | 34 +- .../optional-typeparameters.debug.wat | 134 +- .../optional-typeparameters.release.wat | 34 +- tests/compiler/reexport.debug.wat | 134 +- tests/compiler/reexport.release.wat | 34 +- tests/compiler/rereexport.debug.wat | 134 +- tests/compiler/rereexport.release.wat | 34 +- tests/compiler/resolve-access.debug.wat | 134 +- tests/compiler/resolve-access.release.wat | 40 +- tests/compiler/resolve-binary.debug.wat | 134 +- tests/compiler/resolve-binary.release.wat | 40 +- .../compiler/resolve-elementaccess.debug.wat | 134 +- .../resolve-elementaccess.release.wat | 40 +- .../resolve-function-expression.debug.wat | 134 +- .../resolve-function-expression.release.wat | 40 +- tests/compiler/resolve-new.debug.wat | 134 +- tests/compiler/resolve-new.release.wat | 34 +- .../compiler/resolve-propertyaccess.debug.wat | 134 +- .../resolve-propertyaccess.release.wat | 40 +- tests/compiler/resolve-ternary.debug.wat | 134 +- tests/compiler/resolve-ternary.release.wat | 40 +- tests/compiler/resolve-unary.debug.wat | 134 +- tests/compiler/resolve-unary.release.wat | 40 +- tests/compiler/return-unreachable.debug.wat | 134 +- tests/compiler/return-unreachable.release.wat | 40 +- .../compiler/rt/alloc-large-memory.debug.wat | 132 +- .../rt/alloc-large-memory.release.wat | 38 +- tests/compiler/rt/finalize.debug.wat | 134 +- tests/compiler/rt/finalize.release.wat | 34 +- tests/compiler/rt/issue-2719.debug.wat | 134 +- tests/compiler/rt/issue-2719.release.wat | 40 +- .../rt/runtime-incremental-export.debug.wat | 134 +- .../rt/runtime-incremental-export.release.wat | 40 +- .../rt/runtime-minimal-export.debug.wat | 134 +- .../rt/runtime-minimal-export.release.wat | 40 +- tests/compiler/simd.debug.wat | 134 +- tests/compiler/simd.release.wat | 40 +- tests/compiler/std/array-literal.debug.wat | 134 +- tests/compiler/std/array-literal.release.wat | 40 +- tests/compiler/std/array.debug.wat | 134 +- tests/compiler/std/array.release.wat | 40 +- tests/compiler/std/arraybuffer.debug.wat | 134 +- tests/compiler/std/arraybuffer.release.wat | 40 +- tests/compiler/std/dataview.debug.wat | 134 +- tests/compiler/std/dataview.release.wat | 40 +- tests/compiler/std/date.debug.wat | 134 +- tests/compiler/std/date.release.wat | 40 +- tests/compiler/std/map.debug.wat | 134 +- tests/compiler/std/map.release.wat | 40 +- tests/compiler/std/math.release.wat | 36 +- tests/compiler/std/new.debug.wat | 134 +- tests/compiler/std/new.release.wat | 34 +- .../std/operator-overloading.debug.wat | 134 +- .../std/operator-overloading.release.wat | 34 +- tests/compiler/std/set.debug.wat | 134 +- tests/compiler/std/set.release.wat | 40 +- tests/compiler/std/static-array.debug.wat | 134 +- tests/compiler/std/static-array.release.wat | 40 +- tests/compiler/std/staticarray.debug.wat | 134 +- tests/compiler/std/staticarray.release.wat | 40 +- .../compiler/std/string-casemapping.debug.wat | 134 +- .../std/string-casemapping.release.wat | 40 +- tests/compiler/std/string-encoding.debug.wat | 134 +- .../compiler/std/string-encoding.release.wat | 40 +- tests/compiler/std/string.debug.wat | 134 +- tests/compiler/std/string.release.wat | 40 +- tests/compiler/std/symbol.debug.wat | 134 +- tests/compiler/std/symbol.release.wat | 40 +- tests/compiler/std/typedarray.debug.wat | 134 +- tests/compiler/std/typedarray.release.wat | 40 +- tests/compiler/std/uri.debug.wat | 134 +- tests/compiler/std/uri.release.wat | 40 +- tests/compiler/super-inline.debug.wat | 134 +- tests/compiler/super-inline.release.wat | 34 +- tests/compiler/templateliteral.debug.wat | 134 +- tests/compiler/templateliteral.release.wat | 40 +- tests/compiler/throw.debug.wat | 86 +- tests/compiler/throw.release.wat | 24 +- tests/compiler/typeof.debug.wat | 134 +- tests/compiler/typeof.release.wat | 34 +- tests/compiler/while.debug.wat | 134 +- tests/compiler/while.release.wat | 34 +- 189 files changed, 17302 insertions(+), 6984 deletions(-) create mode 100644 tests/compiler/lowMemoryLimit/less-than-64k-error.debug.wat create mode 100644 tests/compiler/lowMemoryLimit/less-than-64k-error.json create mode 100644 tests/compiler/lowMemoryLimit/less-than-64k-error.release.wat create mode 100644 tests/compiler/lowMemoryLimit/less-than-64k-error.ts create mode 100644 tests/compiler/lowMemoryLimit/less-than-64k.debug.wat create mode 100644 tests/compiler/lowMemoryLimit/less-than-64k.json create mode 100644 tests/compiler/lowMemoryLimit/less-than-64k.release.wat create mode 100644 tests/compiler/lowMemoryLimit/less-than-64k.ts create mode 100644 tests/compiler/lowMemoryLimit/more-than-64k-error.debug.wat create mode 100644 tests/compiler/lowMemoryLimit/more-than-64k-error.json create mode 100644 tests/compiler/lowMemoryLimit/more-than-64k-error.release.wat create mode 100644 tests/compiler/lowMemoryLimit/more-than-64k-error.ts create mode 100644 tests/compiler/lowMemoryLimit/more-than-64k.debug.wat create mode 100644 tests/compiler/lowMemoryLimit/more-than-64k.json create mode 100644 tests/compiler/lowMemoryLimit/more-than-64k.release.wat create mode 100644 tests/compiler/lowMemoryLimit/more-than-64k.ts diff --git a/cli/options.json b/cli/options.json index f6776dbe26..356dfd3e10 100644 --- a/cli/options.json +++ b/cli/options.json @@ -260,7 +260,7 @@ }, "lowMemoryLimit": { "category": "Features", - "description": "Enforces very low (<64k) memory constraints.", + "description": "Enforces memory constraints.", "default": 0, "type": "i" }, diff --git a/src/compiler.ts b/src/compiler.ts index 421d062a94..470f9dc68a 100644 --- a/src/compiler.ts +++ b/src/compiler.ts @@ -276,7 +276,7 @@ export class Options { noUnsafe: bool = false; /** If true, enables pedantic diagnostics. */ pedantic: bool = false; - /** Indicates a very low (<64k) memory limit. */ + /** Indicates a memory limit. */ lowMemoryLimit: u32 = 0; /** If true, exports the runtime helpers. */ exportRuntime: bool = false; @@ -815,7 +815,7 @@ export class Compiler extends DiagnosticEmitter { // check that we didn't exceed lowMemoryLimit already let lowMemoryLimit32 = options.lowMemoryLimit; if (lowMemoryLimit32) { - let lowMemoryLimit = i64_new(lowMemoryLimit32 & ~15); + let lowMemoryLimit = i64_new(lowMemoryLimit32); if (i64_gt(memoryOffset, lowMemoryLimit)) { this.error( DiagnosticCode.Low_memory_limit_exceeded_by_static_data_0_1, diff --git a/std/assembly/rt/tlsf.ts b/std/assembly/rt/tlsf.ts index 3d135a3bee..1fbc909ce3 100644 --- a/std/assembly/rt/tlsf.ts +++ b/std/assembly/rt/tlsf.ts @@ -196,6 +196,11 @@ import { E_ALLOCATION_TOO_LARGE } from "../util/error"; ); } +// @ts-ignore: decorator +@inline function sizeRoundToPage(size: usize): i32 { + return ((size + 0xffff) >>> 16); +} + /** Inserts a previously used block back into the free list. */ function insertBlock(root: Root, block: Block): void { if (DEBUG) assert(block); // cannot be null @@ -427,10 +432,6 @@ function addMemory(root: Root, start: usize, endU64: u64): bool { /** Grows memory to fit at least another block of the specified size. */ function growMemory(root: Root, size: usize): void { - if (ASC_LOW_MEMORY_LIMIT) { - unreachable(); - return; - } // Here, both rounding performed in searchBlock ... if (size >= SB_SIZE) { size = roundSize(size); @@ -439,13 +440,23 @@ function growMemory(root: Root, size: usize): void { // to merge with the tail block, that's one time, otherwise it's two times. let pagesBefore = memory.size(); size += BLOCK_OVERHEAD << usize((pagesBefore << 16) - BLOCK_OVERHEAD != changetype(GETTAIL(root))); - let pagesNeeded = (((size + 0xffff) & ~0xffff) >>> 16); + if (ASC_LOW_MEMORY_LIMIT) { + if ((pagesBefore << 16) + size > ASC_LOW_MEMORY_LIMIT) unreachable(); + } + let pagesNeeded = sizeRoundToPage(size); let pagesWanted = max(pagesBefore, pagesNeeded); // double memory + if (ASC_LOW_MEMORY_LIMIT) { + pagesWanted = min(pagesWanted, sizeRoundToPage(ASC_LOW_MEMORY_LIMIT) - pagesBefore); + } if (memory.grow(pagesWanted) < 0) { if (memory.grow(pagesNeeded) < 0) unreachable(); } let pagesAfter = memory.size(); - addMemory(root, pagesBefore << 16, pagesAfter << 16); + if (ASC_LOW_MEMORY_LIMIT) { + addMemory(root, pagesBefore << 16, min(pagesAfter << 16, ASC_LOW_MEMORY_LIMIT & ~AL_MASK)); + } else { + addMemory(root, pagesBefore << 16, pagesAfter << 16); + } } /** Computes the size (excl. header) of a block. */ @@ -467,7 +478,7 @@ function initialize(): void { if (isDefined(ASC_RTRACE)) oninit(__heap_base); let rootOffset = (__heap_base + AL_MASK) & ~AL_MASK; let pagesBefore = memory.size(); - let pagesNeeded = ((((rootOffset + ROOT_SIZE) + 0xffff) & ~0xffff) >>> 16); + let pagesNeeded = sizeRoundToPage(rootOffset + ROOT_SIZE); if (pagesNeeded > pagesBefore && memory.grow(pagesNeeded - pagesBefore) < 0) unreachable(); let root = changetype(rootOffset); root.flMap = 0; @@ -480,9 +491,9 @@ function initialize(): void { } let memStart = rootOffset + ROOT_SIZE; if (ASC_LOW_MEMORY_LIMIT) { - const memEnd = ASC_LOW_MEMORY_LIMIT & ~AL_MASK; - if (memStart <= memEnd) addMemory(root, memStart, memEnd); - else unreachable(); // low memory limit already exceeded + const limitedEnd: u64 = min(memory.size() << 16, ASC_LOW_MEMORY_LIMIT & ~AL_MASK); + if (memStart > limitedEnd) unreachable(); // low memory limit already exceeded + addMemory(root, memStart, limitedEnd); } else { addMemory(root, memStart, memory.size() << 16); } diff --git a/tests/compiler.js b/tests/compiler.js index 0b6018fa80..02aa958da2 100644 --- a/tests/compiler.js +++ b/tests/compiler.js @@ -380,14 +380,13 @@ async function runTest(basename) { if (config.skipInstantiate) { instantiateDebug.end(SKIPPED); } else { - - if (!await testInstantiate(debugBuffer, glue, stderr)) { + if (!await testInstantiate(debugBuffer, glue, stderr, !!config.expectedFailed)) { instantiateDebug.end(FAILURE); return prepareResult(FAILURE, "instantiate error (debug)"); } instantiateDebug.end(SUCCESS); const instantiateRelease = section("instantiate release"); - if (!await testInstantiate(releaseBuffer, glue, stderr)) { + if (!await testInstantiate(releaseBuffer, glue, stderr, !!config.expectedFailed)) { instantiateRelease.end(FAILURE); return prepareResult(FAILURE, "instantiate error (release)"); } @@ -423,7 +422,7 @@ async function runTest(basename) { const rtracedBuffer = stdout.toBuffer(); const instantiateRtrace = section("instantiate rtrace"); - if (!await testInstantiate(rtracedBuffer, glue, stderr)) { + if (!await testInstantiate(rtracedBuffer, glue, stderr, !!config.expectedFailed)) { instantiateRtrace.end(FAILURE); return prepareResult(FAILURE, "rtrace error"); } @@ -434,7 +433,7 @@ async function runTest(basename) { } // Tests if instantiation of a module succeeds -async function testInstantiate(binaryBuffer, glue, stderr) { +async function testInstantiate(binaryBuffer, glue, stderr, expectedFailed) { let failed = false; try { const memory = new WebAssembly.Memory({ initial: 10 }); @@ -539,23 +538,21 @@ async function testInstantiate(binaryBuffer, glue, stderr) { failed = true; console.log(` memory leak detected: ${leakCount} leaking`); } - if (!failed) { - if (rtrace.active) { - console.log(" " + - rtrace.allocCount + " allocs, " + - rtrace.freeCount + " frees, " + - rtrace.resizeCount + " resizes, " + - rtrace.moveCount + " moves" - ); - } - return true; + if (rtrace.active) { + console.log(" " + + rtrace.allocCount + " allocs, " + + rtrace.freeCount + " frees, " + + rtrace.resizeCount + " resizes, " + + rtrace.moveCount + " moves" + ); } } catch (err) { + failed = true; stderr.write("---\n"); stderr.write(err.stack); stderr.write("\n---\n"); } - return false; + return failed == expectedFailed; } // Evaluates the overall test result diff --git a/tests/compiler/assignment-chain.debug.wat b/tests/compiler/assignment-chain.debug.wat index 84f831ff37..9e1978f6b0 100644 --- a/tests/compiler/assignment-chain.debug.wat +++ b/tests/compiler/assignment-chain.debug.wat @@ -453,7 +453,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -473,7 +473,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -536,7 +536,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -689,7 +689,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -706,7 +706,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -795,7 +795,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -838,7 +838,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -856,7 +856,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -924,7 +924,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1041,7 +1041,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1087,7 +1087,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1119,7 +1119,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1190,18 +1190,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1216,17 +1217,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1250,10 +1252,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1264,13 +1266,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1284,18 +1286,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1363,7 +1365,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1692,7 +1694,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1794,7 +1796,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1865,7 +1867,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1921,13 +1923,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1956,25 +1957,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1990,6 +1996,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2022,7 +2030,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2137,7 +2145,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2157,7 +2165,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/assignment-chain.release.wat b/tests/compiler/assignment-chain.release.wat index 1af7a549b8..dcb5264c6e 100644 --- a/tests/compiler/assignment-chain.release.wat +++ b/tests/compiler/assignment-chain.release.wat @@ -250,7 +250,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -264,7 +264,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -310,7 +310,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -393,7 +393,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -407,7 +407,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -468,7 +468,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -501,7 +501,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -516,7 +516,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -567,7 +567,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -639,7 +639,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -664,7 +664,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -691,7 +691,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1054,7 +1054,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1139,7 +1139,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1191,7 +1191,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1289,7 +1289,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1353,8 +1353,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1391,7 +1389,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1406,7 +1404,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1425,7 +1423,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/bindings/esm.debug.wat b/tests/compiler/bindings/esm.debug.wat index cebadb0ee0..607171a95c 100644 --- a/tests/compiler/bindings/esm.debug.wat +++ b/tests/compiler/bindings/esm.debug.wat @@ -558,7 +558,7 @@ if i32.const 0 i32.const 672 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -578,7 +578,7 @@ if i32.const 0 i32.const 672 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -641,7 +641,7 @@ if i32.const 0 i32.const 672 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -794,7 +794,7 @@ if i32.const 0 i32.const 672 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -811,7 +811,7 @@ if i32.const 0 i32.const 672 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -900,7 +900,7 @@ if i32.const 0 i32.const 672 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -943,7 +943,7 @@ if i32.const 0 i32.const 672 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -961,7 +961,7 @@ if i32.const 0 i32.const 672 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1029,7 +1029,7 @@ if i32.const 0 i32.const 672 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1146,7 +1146,7 @@ if i32.const 0 i32.const 672 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1192,7 +1192,7 @@ if i32.const 0 i32.const 672 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1224,7 +1224,7 @@ if i32.const 0 i32.const 672 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1295,18 +1295,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1321,17 +1322,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1355,10 +1357,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1369,13 +1371,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1389,18 +1391,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1468,7 +1470,7 @@ if i32.const 0 i32.const 672 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1797,7 +1799,7 @@ if i32.const 336 i32.const 672 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1899,7 +1901,7 @@ if i32.const 0 i32.const 672 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1970,7 +1972,7 @@ if i32.const 0 i32.const 672 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2026,13 +2028,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2061,25 +2062,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2095,6 +2101,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2127,7 +2135,7 @@ if i32.const 0 i32.const 672 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2242,7 +2250,7 @@ if i32.const 0 i32.const 672 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2262,7 +2270,7 @@ if i32.const 0 i32.const 672 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/bindings/esm.release.wat b/tests/compiler/bindings/esm.release.wat index 67cb217984..d59a30e458 100644 --- a/tests/compiler/bindings/esm.release.wat +++ b/tests/compiler/bindings/esm.release.wat @@ -370,7 +370,7 @@ if i32.const 0 i32.const 1696 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -384,7 +384,7 @@ if i32.const 0 i32.const 1696 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -430,7 +430,7 @@ if i32.const 0 i32.const 1696 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -513,7 +513,7 @@ if i32.const 0 i32.const 1696 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -527,7 +527,7 @@ if i32.const 0 i32.const 1696 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -588,7 +588,7 @@ if i32.const 0 i32.const 1696 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -621,7 +621,7 @@ if i32.const 0 i32.const 1696 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -636,7 +636,7 @@ if i32.const 0 i32.const 1696 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -687,7 +687,7 @@ if i32.const 0 i32.const 1696 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -759,7 +759,7 @@ if i32.const 0 i32.const 1696 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -784,7 +784,7 @@ if i32.const 0 i32.const 1696 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -811,7 +811,7 @@ if i32.const 0 i32.const 1696 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1174,7 +1174,7 @@ if i32.const 0 i32.const 1696 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1259,7 +1259,7 @@ if i32.const 0 i32.const 1696 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1311,7 +1311,7 @@ if i32.const 0 i32.const 1696 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1409,7 +1409,7 @@ if i32.const 1360 i32.const 1696 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1473,8 +1473,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1511,7 +1509,7 @@ if i32.const 0 i32.const 1696 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1526,7 +1524,7 @@ if i32.const 0 i32.const 1696 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1545,7 +1543,7 @@ if i32.const 0 i32.const 1696 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/bindings/noExportRuntime.debug.wat b/tests/compiler/bindings/noExportRuntime.debug.wat index bfe4a74937..6f354a5fa6 100644 --- a/tests/compiler/bindings/noExportRuntime.debug.wat +++ b/tests/compiler/bindings/noExportRuntime.debug.wat @@ -474,7 +474,7 @@ if i32.const 0 i32.const 512 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -494,7 +494,7 @@ if i32.const 0 i32.const 512 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -557,7 +557,7 @@ if i32.const 0 i32.const 512 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -710,7 +710,7 @@ if i32.const 0 i32.const 512 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -727,7 +727,7 @@ if i32.const 0 i32.const 512 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -816,7 +816,7 @@ if i32.const 0 i32.const 512 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -859,7 +859,7 @@ if i32.const 0 i32.const 512 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -877,7 +877,7 @@ if i32.const 0 i32.const 512 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -945,7 +945,7 @@ if i32.const 0 i32.const 512 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1062,7 +1062,7 @@ if i32.const 0 i32.const 512 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1108,7 +1108,7 @@ if i32.const 0 i32.const 512 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1140,7 +1140,7 @@ if i32.const 0 i32.const 512 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1211,18 +1211,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1237,17 +1238,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1271,10 +1273,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1285,13 +1287,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1305,18 +1307,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1384,7 +1386,7 @@ if i32.const 0 i32.const 512 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1713,7 +1715,7 @@ if i32.const 176 i32.const 512 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1815,7 +1817,7 @@ if i32.const 0 i32.const 512 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1886,7 +1888,7 @@ if i32.const 0 i32.const 512 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1942,13 +1944,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1977,25 +1978,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2011,6 +2017,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2043,7 +2051,7 @@ if i32.const 0 i32.const 512 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2158,7 +2166,7 @@ if i32.const 0 i32.const 512 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2178,7 +2186,7 @@ if i32.const 0 i32.const 512 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/bindings/noExportRuntime.release.wat b/tests/compiler/bindings/noExportRuntime.release.wat index 7eeb250556..ac2888e15f 100644 --- a/tests/compiler/bindings/noExportRuntime.release.wat +++ b/tests/compiler/bindings/noExportRuntime.release.wat @@ -303,7 +303,7 @@ if i32.const 0 i32.const 1536 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -317,7 +317,7 @@ if i32.const 0 i32.const 1536 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -363,7 +363,7 @@ if i32.const 0 i32.const 1536 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -446,7 +446,7 @@ if i32.const 0 i32.const 1536 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -460,7 +460,7 @@ if i32.const 0 i32.const 1536 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -521,7 +521,7 @@ if i32.const 0 i32.const 1536 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -554,7 +554,7 @@ if i32.const 0 i32.const 1536 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -569,7 +569,7 @@ if i32.const 0 i32.const 1536 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -620,7 +620,7 @@ if i32.const 0 i32.const 1536 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -692,7 +692,7 @@ if i32.const 0 i32.const 1536 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -717,7 +717,7 @@ if i32.const 0 i32.const 1536 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -744,7 +744,7 @@ if i32.const 0 i32.const 1536 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1107,7 +1107,7 @@ if i32.const 0 i32.const 1536 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1192,7 +1192,7 @@ if i32.const 0 i32.const 1536 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1244,7 +1244,7 @@ if i32.const 0 i32.const 1536 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1342,7 +1342,7 @@ if i32.const 1200 i32.const 1536 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1406,8 +1406,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1444,7 +1442,7 @@ if i32.const 0 i32.const 1536 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1459,7 +1457,7 @@ if i32.const 0 i32.const 1536 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1478,7 +1476,7 @@ if i32.const 0 i32.const 1536 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/bindings/raw.debug.wat b/tests/compiler/bindings/raw.debug.wat index 7bf955aa6b..847f546911 100644 --- a/tests/compiler/bindings/raw.debug.wat +++ b/tests/compiler/bindings/raw.debug.wat @@ -561,7 +561,7 @@ if i32.const 0 i32.const 672 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -581,7 +581,7 @@ if i32.const 0 i32.const 672 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -644,7 +644,7 @@ if i32.const 0 i32.const 672 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -797,7 +797,7 @@ if i32.const 0 i32.const 672 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -814,7 +814,7 @@ if i32.const 0 i32.const 672 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -903,7 +903,7 @@ if i32.const 0 i32.const 672 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -946,7 +946,7 @@ if i32.const 0 i32.const 672 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -964,7 +964,7 @@ if i32.const 0 i32.const 672 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1032,7 +1032,7 @@ if i32.const 0 i32.const 672 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1149,7 +1149,7 @@ if i32.const 0 i32.const 672 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1195,7 +1195,7 @@ if i32.const 0 i32.const 672 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1227,7 +1227,7 @@ if i32.const 0 i32.const 672 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1298,18 +1298,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1324,17 +1325,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1358,10 +1360,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1372,13 +1374,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1392,18 +1394,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1471,7 +1473,7 @@ if i32.const 0 i32.const 672 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1800,7 +1802,7 @@ if i32.const 336 i32.const 672 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1902,7 +1904,7 @@ if i32.const 0 i32.const 672 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1973,7 +1975,7 @@ if i32.const 0 i32.const 672 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2029,13 +2031,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2064,25 +2065,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2098,6 +2104,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2130,7 +2138,7 @@ if i32.const 0 i32.const 672 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2245,7 +2253,7 @@ if i32.const 0 i32.const 672 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2265,7 +2273,7 @@ if i32.const 0 i32.const 672 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/bindings/raw.release.wat b/tests/compiler/bindings/raw.release.wat index baa08f6833..799f182e2b 100644 --- a/tests/compiler/bindings/raw.release.wat +++ b/tests/compiler/bindings/raw.release.wat @@ -370,7 +370,7 @@ if i32.const 0 i32.const 1696 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -384,7 +384,7 @@ if i32.const 0 i32.const 1696 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -430,7 +430,7 @@ if i32.const 0 i32.const 1696 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -513,7 +513,7 @@ if i32.const 0 i32.const 1696 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -527,7 +527,7 @@ if i32.const 0 i32.const 1696 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -588,7 +588,7 @@ if i32.const 0 i32.const 1696 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -621,7 +621,7 @@ if i32.const 0 i32.const 1696 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -636,7 +636,7 @@ if i32.const 0 i32.const 1696 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -687,7 +687,7 @@ if i32.const 0 i32.const 1696 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -759,7 +759,7 @@ if i32.const 0 i32.const 1696 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -784,7 +784,7 @@ if i32.const 0 i32.const 1696 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -811,7 +811,7 @@ if i32.const 0 i32.const 1696 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1174,7 +1174,7 @@ if i32.const 0 i32.const 1696 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1259,7 +1259,7 @@ if i32.const 0 i32.const 1696 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1311,7 +1311,7 @@ if i32.const 0 i32.const 1696 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1409,7 +1409,7 @@ if i32.const 1360 i32.const 1696 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1473,8 +1473,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1511,7 +1509,7 @@ if i32.const 0 i32.const 1696 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1526,7 +1524,7 @@ if i32.const 0 i32.const 1696 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1545,7 +1543,7 @@ if i32.const 0 i32.const 1696 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/call-inferred.debug.wat b/tests/compiler/call-inferred.debug.wat index e080fb3da0..d0839f134c 100644 --- a/tests/compiler/call-inferred.debug.wat +++ b/tests/compiler/call-inferred.debug.wat @@ -479,7 +479,7 @@ if i32.const 0 i32.const 432 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -499,7 +499,7 @@ if i32.const 0 i32.const 432 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -562,7 +562,7 @@ if i32.const 0 i32.const 432 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -715,7 +715,7 @@ if i32.const 0 i32.const 432 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -732,7 +732,7 @@ if i32.const 0 i32.const 432 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -821,7 +821,7 @@ if i32.const 0 i32.const 432 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -864,7 +864,7 @@ if i32.const 0 i32.const 432 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -882,7 +882,7 @@ if i32.const 0 i32.const 432 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -950,7 +950,7 @@ if i32.const 0 i32.const 432 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1067,7 +1067,7 @@ if i32.const 0 i32.const 432 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1113,7 +1113,7 @@ if i32.const 0 i32.const 432 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1145,7 +1145,7 @@ if i32.const 0 i32.const 432 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1216,18 +1216,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1242,17 +1243,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1276,10 +1278,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1290,13 +1292,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1310,18 +1312,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1389,7 +1391,7 @@ if i32.const 0 i32.const 432 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1718,7 +1720,7 @@ if i32.const 96 i32.const 432 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1820,7 +1822,7 @@ if i32.const 0 i32.const 432 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1891,7 +1893,7 @@ if i32.const 0 i32.const 432 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1947,13 +1949,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1982,25 +1983,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2016,6 +2022,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2048,7 +2056,7 @@ if i32.const 0 i32.const 432 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2163,7 +2171,7 @@ if i32.const 0 i32.const 432 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2183,7 +2191,7 @@ if i32.const 0 i32.const 432 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/call-inferred.release.wat b/tests/compiler/call-inferred.release.wat index e39cd59cc2..eefa203630 100644 --- a/tests/compiler/call-inferred.release.wat +++ b/tests/compiler/call-inferred.release.wat @@ -246,7 +246,7 @@ if i32.const 0 i32.const 1456 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -260,7 +260,7 @@ if i32.const 0 i32.const 1456 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -306,7 +306,7 @@ if i32.const 0 i32.const 1456 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -389,7 +389,7 @@ if i32.const 0 i32.const 1456 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -403,7 +403,7 @@ if i32.const 0 i32.const 1456 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -464,7 +464,7 @@ if i32.const 0 i32.const 1456 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -497,7 +497,7 @@ if i32.const 0 i32.const 1456 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -512,7 +512,7 @@ if i32.const 0 i32.const 1456 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -563,7 +563,7 @@ if i32.const 0 i32.const 1456 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -635,7 +635,7 @@ if i32.const 0 i32.const 1456 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -660,7 +660,7 @@ if i32.const 0 i32.const 1456 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -687,7 +687,7 @@ if i32.const 0 i32.const 1456 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1050,7 +1050,7 @@ if i32.const 0 i32.const 1456 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1135,7 +1135,7 @@ if i32.const 0 i32.const 1456 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1187,7 +1187,7 @@ if i32.const 0 i32.const 1456 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1285,7 +1285,7 @@ if i32.const 1120 i32.const 1456 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1349,8 +1349,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1387,7 +1385,7 @@ if i32.const 0 i32.const 1456 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1402,7 +1400,7 @@ if i32.const 0 i32.const 1456 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1421,7 +1419,7 @@ if i32.const 0 i32.const 1456 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/call-rest.debug.wat b/tests/compiler/call-rest.debug.wat index d4d20d6b81..72d310edc8 100644 --- a/tests/compiler/call-rest.debug.wat +++ b/tests/compiler/call-rest.debug.wat @@ -476,7 +476,7 @@ if i32.const 0 i32.const 448 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -496,7 +496,7 @@ if i32.const 0 i32.const 448 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -559,7 +559,7 @@ if i32.const 0 i32.const 448 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -712,7 +712,7 @@ if i32.const 0 i32.const 448 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -729,7 +729,7 @@ if i32.const 0 i32.const 448 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -818,7 +818,7 @@ if i32.const 0 i32.const 448 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -861,7 +861,7 @@ if i32.const 0 i32.const 448 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -879,7 +879,7 @@ if i32.const 0 i32.const 448 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -947,7 +947,7 @@ if i32.const 0 i32.const 448 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1064,7 +1064,7 @@ if i32.const 0 i32.const 448 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1110,7 +1110,7 @@ if i32.const 0 i32.const 448 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1142,7 +1142,7 @@ if i32.const 0 i32.const 448 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1213,18 +1213,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1239,17 +1240,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1273,10 +1275,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1287,13 +1289,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1307,18 +1309,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1386,7 +1388,7 @@ if i32.const 0 i32.const 448 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1715,7 +1717,7 @@ if i32.const 176 i32.const 448 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1817,7 +1819,7 @@ if i32.const 0 i32.const 448 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1888,7 +1890,7 @@ if i32.const 0 i32.const 448 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1944,13 +1946,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1979,25 +1980,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2013,6 +2019,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2045,7 +2053,7 @@ if i32.const 0 i32.const 448 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2160,7 +2168,7 @@ if i32.const 0 i32.const 448 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2180,7 +2188,7 @@ if i32.const 0 i32.const 448 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/call-rest.release.wat b/tests/compiler/call-rest.release.wat index 6db2516a91..f149f89310 100644 --- a/tests/compiler/call-rest.release.wat +++ b/tests/compiler/call-rest.release.wat @@ -294,7 +294,7 @@ if i32.const 0 i32.const 1472 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -308,7 +308,7 @@ if i32.const 0 i32.const 1472 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -354,7 +354,7 @@ if i32.const 0 i32.const 1472 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -437,7 +437,7 @@ if i32.const 0 i32.const 1472 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -451,7 +451,7 @@ if i32.const 0 i32.const 1472 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -512,7 +512,7 @@ if i32.const 0 i32.const 1472 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -545,7 +545,7 @@ if i32.const 0 i32.const 1472 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -560,7 +560,7 @@ if i32.const 0 i32.const 1472 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -611,7 +611,7 @@ if i32.const 0 i32.const 1472 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -683,7 +683,7 @@ if i32.const 0 i32.const 1472 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -708,7 +708,7 @@ if i32.const 0 i32.const 1472 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -735,7 +735,7 @@ if i32.const 0 i32.const 1472 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1098,7 +1098,7 @@ if i32.const 0 i32.const 1472 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1183,7 +1183,7 @@ if i32.const 0 i32.const 1472 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1235,7 +1235,7 @@ if i32.const 0 i32.const 1472 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1333,7 +1333,7 @@ if i32.const 1200 i32.const 1472 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1397,8 +1397,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1435,7 +1433,7 @@ if i32.const 0 i32.const 1472 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1450,7 +1448,7 @@ if i32.const 0 i32.const 1472 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1469,7 +1467,7 @@ if i32.const 0 i32.const 1472 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/call-super.debug.wat b/tests/compiler/call-super.debug.wat index 050aff4d05..88c35469f8 100644 --- a/tests/compiler/call-super.debug.wat +++ b/tests/compiler/call-super.debug.wat @@ -449,7 +449,7 @@ if i32.const 0 i32.const 416 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -469,7 +469,7 @@ if i32.const 0 i32.const 416 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -532,7 +532,7 @@ if i32.const 0 i32.const 416 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -685,7 +685,7 @@ if i32.const 0 i32.const 416 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -702,7 +702,7 @@ if i32.const 0 i32.const 416 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -791,7 +791,7 @@ if i32.const 0 i32.const 416 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -834,7 +834,7 @@ if i32.const 0 i32.const 416 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -852,7 +852,7 @@ if i32.const 0 i32.const 416 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -920,7 +920,7 @@ if i32.const 0 i32.const 416 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1037,7 +1037,7 @@ if i32.const 0 i32.const 416 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1083,7 +1083,7 @@ if i32.const 0 i32.const 416 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1115,7 +1115,7 @@ if i32.const 0 i32.const 416 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1186,18 +1186,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1212,17 +1213,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1246,10 +1248,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1260,13 +1262,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1280,18 +1282,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1359,7 +1361,7 @@ if i32.const 0 i32.const 416 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1688,7 +1690,7 @@ if i32.const 80 i32.const 416 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1790,7 +1792,7 @@ if i32.const 0 i32.const 416 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1861,7 +1863,7 @@ if i32.const 0 i32.const 416 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1917,13 +1919,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1952,25 +1953,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1986,6 +1992,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2018,7 +2026,7 @@ if i32.const 0 i32.const 416 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2133,7 +2141,7 @@ if i32.const 0 i32.const 416 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2153,7 +2161,7 @@ if i32.const 0 i32.const 416 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/call-super.release.wat b/tests/compiler/call-super.release.wat index 7cd486f260..63f63e879b 100644 --- a/tests/compiler/call-super.release.wat +++ b/tests/compiler/call-super.release.wat @@ -246,7 +246,7 @@ if i32.const 0 i32.const 1440 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -260,7 +260,7 @@ if i32.const 0 i32.const 1440 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -306,7 +306,7 @@ if i32.const 0 i32.const 1440 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -389,7 +389,7 @@ if i32.const 0 i32.const 1440 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -403,7 +403,7 @@ if i32.const 0 i32.const 1440 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -464,7 +464,7 @@ if i32.const 0 i32.const 1440 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -497,7 +497,7 @@ if i32.const 0 i32.const 1440 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -512,7 +512,7 @@ if i32.const 0 i32.const 1440 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -563,7 +563,7 @@ if i32.const 0 i32.const 1440 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -635,7 +635,7 @@ if i32.const 0 i32.const 1440 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -660,7 +660,7 @@ if i32.const 0 i32.const 1440 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -687,7 +687,7 @@ if i32.const 0 i32.const 1440 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1050,7 +1050,7 @@ if i32.const 0 i32.const 1440 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1135,7 +1135,7 @@ if i32.const 0 i32.const 1440 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1187,7 +1187,7 @@ if i32.const 0 i32.const 1440 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1285,7 +1285,7 @@ if i32.const 1104 i32.const 1440 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1349,8 +1349,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1387,7 +1385,7 @@ if i32.const 0 i32.const 1440 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1402,7 +1400,7 @@ if i32.const 0 i32.const 1440 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1421,7 +1419,7 @@ if i32.const 0 i32.const 1440 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/class-implements.debug.wat b/tests/compiler/class-implements.debug.wat index e967a93f72..2a2b369927 100644 --- a/tests/compiler/class-implements.debug.wat +++ b/tests/compiler/class-implements.debug.wat @@ -452,7 +452,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -472,7 +472,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -535,7 +535,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -688,7 +688,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -705,7 +705,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -794,7 +794,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -837,7 +837,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -855,7 +855,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -923,7 +923,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1040,7 +1040,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1086,7 +1086,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1118,7 +1118,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1189,18 +1189,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1215,17 +1216,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1249,10 +1251,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1263,13 +1265,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1283,18 +1285,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1362,7 +1364,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1691,7 +1693,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1793,7 +1795,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1864,7 +1866,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1920,13 +1922,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1955,25 +1956,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1989,6 +1995,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2021,7 +2029,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2136,7 +2144,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2156,7 +2164,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/class-implements.release.wat b/tests/compiler/class-implements.release.wat index a8a05184e7..f6fc4fd183 100644 --- a/tests/compiler/class-implements.release.wat +++ b/tests/compiler/class-implements.release.wat @@ -295,7 +295,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -309,7 +309,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -355,7 +355,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -438,7 +438,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -452,7 +452,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -513,7 +513,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -546,7 +546,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -561,7 +561,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -612,7 +612,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -684,7 +684,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -709,7 +709,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -736,7 +736,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1099,7 +1099,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1184,7 +1184,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1236,7 +1236,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1334,7 +1334,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1398,8 +1398,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1436,7 +1434,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1451,7 +1449,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1470,7 +1468,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/class-overloading-cast.debug.wat b/tests/compiler/class-overloading-cast.debug.wat index 86441b6a1b..f1e7d51c31 100644 --- a/tests/compiler/class-overloading-cast.debug.wat +++ b/tests/compiler/class-overloading-cast.debug.wat @@ -458,7 +458,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -478,7 +478,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -541,7 +541,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -694,7 +694,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -711,7 +711,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -800,7 +800,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -843,7 +843,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -861,7 +861,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -929,7 +929,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1046,7 +1046,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1092,7 +1092,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1124,7 +1124,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1195,18 +1195,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1221,17 +1222,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1255,10 +1257,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1269,13 +1271,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1289,18 +1291,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1368,7 +1370,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1697,7 +1699,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1799,7 +1801,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1870,7 +1872,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1926,13 +1928,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1961,25 +1962,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1995,6 +2001,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2027,7 +2035,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2142,7 +2150,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2162,7 +2170,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/class-overloading-cast.release.wat b/tests/compiler/class-overloading-cast.release.wat index 3b6a73a719..a3b2b82fb8 100644 --- a/tests/compiler/class-overloading-cast.release.wat +++ b/tests/compiler/class-overloading-cast.release.wat @@ -283,7 +283,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -297,7 +297,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -343,7 +343,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -426,7 +426,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -440,7 +440,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -501,7 +501,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -534,7 +534,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -549,7 +549,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -600,7 +600,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -672,7 +672,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -697,7 +697,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -724,7 +724,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1087,7 +1087,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1153,7 +1153,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1248,8 +1248,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1285,7 +1283,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1300,7 +1298,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/class-overloading.debug.wat b/tests/compiler/class-overloading.debug.wat index 4f55946065..650044aaf9 100644 --- a/tests/compiler/class-overloading.debug.wat +++ b/tests/compiler/class-overloading.debug.wat @@ -462,7 +462,7 @@ if i32.const 0 i32.const 400 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -482,7 +482,7 @@ if i32.const 0 i32.const 400 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -545,7 +545,7 @@ if i32.const 0 i32.const 400 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -698,7 +698,7 @@ if i32.const 0 i32.const 400 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -715,7 +715,7 @@ if i32.const 0 i32.const 400 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -804,7 +804,7 @@ if i32.const 0 i32.const 400 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -847,7 +847,7 @@ if i32.const 0 i32.const 400 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -865,7 +865,7 @@ if i32.const 0 i32.const 400 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -933,7 +933,7 @@ if i32.const 0 i32.const 400 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1050,7 +1050,7 @@ if i32.const 0 i32.const 400 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1096,7 +1096,7 @@ if i32.const 0 i32.const 400 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1128,7 +1128,7 @@ if i32.const 0 i32.const 400 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1199,18 +1199,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1225,17 +1226,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1259,10 +1261,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1273,13 +1275,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1293,18 +1295,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1372,7 +1374,7 @@ if i32.const 0 i32.const 400 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1701,7 +1703,7 @@ if i32.const 64 i32.const 400 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1803,7 +1805,7 @@ if i32.const 0 i32.const 400 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1874,7 +1876,7 @@ if i32.const 0 i32.const 400 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1930,13 +1932,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1965,25 +1966,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1999,6 +2005,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2031,7 +2039,7 @@ if i32.const 0 i32.const 400 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2146,7 +2154,7 @@ if i32.const 0 i32.const 400 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2166,7 +2174,7 @@ if i32.const 0 i32.const 400 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/class-overloading.release.wat b/tests/compiler/class-overloading.release.wat index c389b02f92..4792e6a92d 100644 --- a/tests/compiler/class-overloading.release.wat +++ b/tests/compiler/class-overloading.release.wat @@ -305,7 +305,7 @@ if i32.const 0 i32.const 1424 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -319,7 +319,7 @@ if i32.const 0 i32.const 1424 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -365,7 +365,7 @@ if i32.const 0 i32.const 1424 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -448,7 +448,7 @@ if i32.const 0 i32.const 1424 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -462,7 +462,7 @@ if i32.const 0 i32.const 1424 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -523,7 +523,7 @@ if i32.const 0 i32.const 1424 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -556,7 +556,7 @@ if i32.const 0 i32.const 1424 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -571,7 +571,7 @@ if i32.const 0 i32.const 1424 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -622,7 +622,7 @@ if i32.const 0 i32.const 1424 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -694,7 +694,7 @@ if i32.const 0 i32.const 1424 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -719,7 +719,7 @@ if i32.const 0 i32.const 1424 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -746,7 +746,7 @@ if i32.const 0 i32.const 1424 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1109,7 +1109,7 @@ if i32.const 0 i32.const 1424 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1175,7 +1175,7 @@ if i32.const 0 i32.const 1424 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1270,8 +1270,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1307,7 +1305,7 @@ if i32.const 0 i32.const 1424 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1322,7 +1320,7 @@ if i32.const 0 i32.const 1424 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/class-override.debug.wat b/tests/compiler/class-override.debug.wat index 5fb98225b9..1cf1f3ef97 100644 --- a/tests/compiler/class-override.debug.wat +++ b/tests/compiler/class-override.debug.wat @@ -447,7 +447,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -467,7 +467,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -530,7 +530,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -683,7 +683,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -700,7 +700,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -789,7 +789,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -832,7 +832,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -850,7 +850,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -918,7 +918,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1035,7 +1035,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1081,7 +1081,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1113,7 +1113,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1184,18 +1184,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1210,17 +1211,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1244,10 +1246,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1258,13 +1260,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1278,18 +1280,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1357,7 +1359,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1686,7 +1688,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1788,7 +1790,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1859,7 +1861,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1915,13 +1917,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1950,25 +1951,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1984,6 +1990,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2016,7 +2024,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2131,7 +2139,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2151,7 +2159,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/class-override.release.wat b/tests/compiler/class-override.release.wat index 83f4b7874c..afaf91f9bc 100644 --- a/tests/compiler/class-override.release.wat +++ b/tests/compiler/class-override.release.wat @@ -254,7 +254,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -268,7 +268,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -314,7 +314,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -397,7 +397,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -411,7 +411,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -472,7 +472,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -505,7 +505,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -520,7 +520,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -571,7 +571,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -643,7 +643,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -668,7 +668,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -695,7 +695,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1058,7 +1058,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1124,7 +1124,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1219,8 +1219,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1256,7 +1254,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1271,7 +1269,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/class.debug.wat b/tests/compiler/class.debug.wat index e8f373491e..4c55935ed1 100644 --- a/tests/compiler/class.debug.wat +++ b/tests/compiler/class.debug.wat @@ -530,7 +530,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -550,7 +550,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -613,7 +613,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -766,7 +766,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -783,7 +783,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -872,7 +872,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -915,7 +915,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -933,7 +933,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1001,7 +1001,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1118,7 +1118,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1164,7 +1164,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1196,7 +1196,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1267,18 +1267,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1293,17 +1294,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1327,10 +1329,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1341,13 +1343,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1361,18 +1363,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1440,7 +1442,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1769,7 +1771,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1871,7 +1873,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1942,7 +1944,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1998,13 +2000,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2033,25 +2034,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2067,6 +2073,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2099,7 +2107,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2214,7 +2222,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2234,7 +2242,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/class.release.wat b/tests/compiler/class.release.wat index 77e0ddac27..9839f9dec2 100644 --- a/tests/compiler/class.release.wat +++ b/tests/compiler/class.release.wat @@ -256,7 +256,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -270,7 +270,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -316,7 +316,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -399,7 +399,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -413,7 +413,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -474,7 +474,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -507,7 +507,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -522,7 +522,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -573,7 +573,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -645,7 +645,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -670,7 +670,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -697,7 +697,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1060,7 +1060,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1145,7 +1145,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1197,7 +1197,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1295,7 +1295,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1359,8 +1359,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1397,7 +1395,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1412,7 +1410,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1431,7 +1429,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/constructor.debug.wat b/tests/compiler/constructor.debug.wat index 5ab44a6260..84889ff495 100644 --- a/tests/compiler/constructor.debug.wat +++ b/tests/compiler/constructor.debug.wat @@ -458,7 +458,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -478,7 +478,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -541,7 +541,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -694,7 +694,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -711,7 +711,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -800,7 +800,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -843,7 +843,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -861,7 +861,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -929,7 +929,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1046,7 +1046,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1092,7 +1092,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1124,7 +1124,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1195,18 +1195,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1221,17 +1222,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1255,10 +1257,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1269,13 +1271,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1289,18 +1291,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1368,7 +1370,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1697,7 +1699,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1799,7 +1801,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1870,7 +1872,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1926,13 +1928,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1961,25 +1962,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1995,6 +2001,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2027,7 +2035,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2142,7 +2150,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2162,7 +2170,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/constructor.release.wat b/tests/compiler/constructor.release.wat index f754d4909d..44592b92f0 100644 --- a/tests/compiler/constructor.release.wat +++ b/tests/compiler/constructor.release.wat @@ -309,7 +309,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -323,7 +323,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -369,7 +369,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -452,7 +452,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -466,7 +466,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -527,7 +527,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -560,7 +560,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -575,7 +575,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -626,7 +626,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -698,7 +698,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -723,7 +723,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -750,7 +750,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1113,7 +1113,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1198,7 +1198,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1250,7 +1250,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1348,7 +1348,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1412,8 +1412,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1450,7 +1448,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1465,7 +1463,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1484,7 +1482,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/do.debug.wat b/tests/compiler/do.debug.wat index 1327ed8a52..9c84a13673 100644 --- a/tests/compiler/do.debug.wat +++ b/tests/compiler/do.debug.wat @@ -852,7 +852,7 @@ if i32.const 0 i32.const 400 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -872,7 +872,7 @@ if i32.const 0 i32.const 400 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -935,7 +935,7 @@ if i32.const 0 i32.const 400 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -1088,7 +1088,7 @@ if i32.const 0 i32.const 400 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -1105,7 +1105,7 @@ if i32.const 0 i32.const 400 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -1194,7 +1194,7 @@ if i32.const 0 i32.const 400 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1237,7 +1237,7 @@ if i32.const 0 i32.const 400 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1255,7 +1255,7 @@ if i32.const 0 i32.const 400 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1323,7 +1323,7 @@ if i32.const 0 i32.const 400 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1440,7 +1440,7 @@ if i32.const 0 i32.const 400 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1486,7 +1486,7 @@ if i32.const 0 i32.const 400 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1518,7 +1518,7 @@ if i32.const 0 i32.const 400 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1589,18 +1589,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1615,17 +1616,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1649,10 +1651,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1663,13 +1665,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1683,18 +1685,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1762,7 +1764,7 @@ if i32.const 0 i32.const 400 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -2091,7 +2093,7 @@ if i32.const 64 i32.const 400 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -2193,7 +2195,7 @@ if i32.const 0 i32.const 400 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -2264,7 +2266,7 @@ if i32.const 0 i32.const 400 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2320,13 +2322,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2355,25 +2356,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2389,6 +2395,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2421,7 +2429,7 @@ if i32.const 0 i32.const 400 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2536,7 +2544,7 @@ if i32.const 0 i32.const 400 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2556,7 +2564,7 @@ if i32.const 0 i32.const 400 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/do.release.wat b/tests/compiler/do.release.wat index 0078d1c8a8..2086d360ce 100644 --- a/tests/compiler/do.release.wat +++ b/tests/compiler/do.release.wat @@ -245,7 +245,7 @@ if i32.const 0 i32.const 1424 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -259,7 +259,7 @@ if i32.const 0 i32.const 1424 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -305,7 +305,7 @@ if i32.const 0 i32.const 1424 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -388,7 +388,7 @@ if i32.const 0 i32.const 1424 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -402,7 +402,7 @@ if i32.const 0 i32.const 1424 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -463,7 +463,7 @@ if i32.const 0 i32.const 1424 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -496,7 +496,7 @@ if i32.const 0 i32.const 1424 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -511,7 +511,7 @@ if i32.const 0 i32.const 1424 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -562,7 +562,7 @@ if i32.const 0 i32.const 1424 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -634,7 +634,7 @@ if i32.const 0 i32.const 1424 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -659,7 +659,7 @@ if i32.const 0 i32.const 1424 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -686,7 +686,7 @@ if i32.const 0 i32.const 1424 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1049,7 +1049,7 @@ if i32.const 0 i32.const 1424 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1115,7 +1115,7 @@ if i32.const 0 i32.const 1424 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1210,8 +1210,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1247,7 +1245,7 @@ if i32.const 0 i32.const 1424 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1262,7 +1260,7 @@ if i32.const 0 i32.const 1424 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/duplicate-fields.debug.wat b/tests/compiler/duplicate-fields.debug.wat index 79b3b9b121..dfccfdb55c 100644 --- a/tests/compiler/duplicate-fields.debug.wat +++ b/tests/compiler/duplicate-fields.debug.wat @@ -452,7 +452,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -472,7 +472,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -535,7 +535,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -688,7 +688,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -705,7 +705,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -794,7 +794,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -837,7 +837,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -855,7 +855,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -923,7 +923,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1040,7 +1040,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1086,7 +1086,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1118,7 +1118,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1189,18 +1189,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1215,17 +1216,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1249,10 +1251,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1263,13 +1265,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1283,18 +1285,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1362,7 +1364,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1691,7 +1693,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1793,7 +1795,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1864,7 +1866,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1920,13 +1922,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1955,25 +1956,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1989,6 +1995,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2021,7 +2029,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2136,7 +2144,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2156,7 +2164,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/duplicate-fields.release.wat b/tests/compiler/duplicate-fields.release.wat index 6aff8c65a7..412f227708 100644 --- a/tests/compiler/duplicate-fields.release.wat +++ b/tests/compiler/duplicate-fields.release.wat @@ -263,7 +263,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -277,7 +277,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -323,7 +323,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -406,7 +406,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -420,7 +420,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -481,7 +481,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -514,7 +514,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -529,7 +529,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -580,7 +580,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -652,7 +652,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -677,7 +677,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -704,7 +704,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1067,7 +1067,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1152,7 +1152,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1204,7 +1204,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1302,7 +1302,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1366,8 +1366,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1404,7 +1402,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1419,7 +1417,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1438,7 +1436,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/empty-exportruntime.debug.wat b/tests/compiler/empty-exportruntime.debug.wat index e0441f24cb..ac3d3d604e 100644 --- a/tests/compiler/empty-exportruntime.debug.wat +++ b/tests/compiler/empty-exportruntime.debug.wat @@ -451,7 +451,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -471,7 +471,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -534,7 +534,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -687,7 +687,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -704,7 +704,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -793,7 +793,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -836,7 +836,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -854,7 +854,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -922,7 +922,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1039,7 +1039,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1085,7 +1085,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1117,7 +1117,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1188,18 +1188,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1214,17 +1215,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1248,10 +1250,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1262,13 +1264,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1282,18 +1284,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1361,7 +1363,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1690,7 +1692,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1792,7 +1794,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1863,7 +1865,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1919,13 +1921,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1954,25 +1955,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1988,6 +1994,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2020,7 +2028,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2135,7 +2143,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2155,7 +2163,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/empty-exportruntime.release.wat b/tests/compiler/empty-exportruntime.release.wat index 6372bb77d3..6ae1b84337 100644 --- a/tests/compiler/empty-exportruntime.release.wat +++ b/tests/compiler/empty-exportruntime.release.wat @@ -264,7 +264,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -278,7 +278,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -324,7 +324,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -407,7 +407,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -421,7 +421,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -482,7 +482,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -515,7 +515,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -530,7 +530,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -581,7 +581,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -653,7 +653,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -678,7 +678,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -705,7 +705,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1068,7 +1068,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1153,7 +1153,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1205,7 +1205,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1303,7 +1303,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1367,8 +1367,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1405,7 +1403,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1420,7 +1418,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1439,7 +1437,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/empty-new.debug.wat b/tests/compiler/empty-new.debug.wat index dc8a97157f..e29de340a0 100644 --- a/tests/compiler/empty-new.debug.wat +++ b/tests/compiler/empty-new.debug.wat @@ -444,7 +444,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -464,7 +464,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -527,7 +527,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -680,7 +680,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -697,7 +697,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -786,7 +786,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -829,7 +829,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -847,7 +847,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -915,7 +915,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1032,7 +1032,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1078,7 +1078,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1110,7 +1110,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1181,18 +1181,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1207,17 +1208,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1241,10 +1243,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1255,13 +1257,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1275,18 +1277,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1354,7 +1356,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1683,7 +1685,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1785,7 +1787,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1856,7 +1858,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1912,13 +1914,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1947,25 +1948,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1981,6 +1987,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2013,7 +2021,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2128,7 +2136,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2148,7 +2156,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/empty-new.release.wat b/tests/compiler/empty-new.release.wat index 1d975a97eb..00a457a907 100644 --- a/tests/compiler/empty-new.release.wat +++ b/tests/compiler/empty-new.release.wat @@ -242,7 +242,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -256,7 +256,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -302,7 +302,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -385,7 +385,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -399,7 +399,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -460,7 +460,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -493,7 +493,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -508,7 +508,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -559,7 +559,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -631,7 +631,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -656,7 +656,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -683,7 +683,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1046,7 +1046,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1112,7 +1112,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1207,8 +1207,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -1244,7 +1242,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1259,7 +1257,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/exportstar-rereexport.debug.wat b/tests/compiler/exportstar-rereexport.debug.wat index 22900fa807..d167d85350 100644 --- a/tests/compiler/exportstar-rereexport.debug.wat +++ b/tests/compiler/exportstar-rereexport.debug.wat @@ -484,7 +484,7 @@ if i32.const 0 i32.const 416 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -504,7 +504,7 @@ if i32.const 0 i32.const 416 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -567,7 +567,7 @@ if i32.const 0 i32.const 416 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -720,7 +720,7 @@ if i32.const 0 i32.const 416 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -737,7 +737,7 @@ if i32.const 0 i32.const 416 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -826,7 +826,7 @@ if i32.const 0 i32.const 416 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -869,7 +869,7 @@ if i32.const 0 i32.const 416 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -887,7 +887,7 @@ if i32.const 0 i32.const 416 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -955,7 +955,7 @@ if i32.const 0 i32.const 416 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1072,7 +1072,7 @@ if i32.const 0 i32.const 416 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1118,7 +1118,7 @@ if i32.const 0 i32.const 416 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1150,7 +1150,7 @@ if i32.const 0 i32.const 416 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1221,18 +1221,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1247,17 +1248,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1281,10 +1283,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1295,13 +1297,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1315,18 +1317,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1394,7 +1396,7 @@ if i32.const 0 i32.const 416 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1723,7 +1725,7 @@ if i32.const 80 i32.const 416 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1825,7 +1827,7 @@ if i32.const 0 i32.const 416 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1896,7 +1898,7 @@ if i32.const 0 i32.const 416 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1952,13 +1954,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1987,25 +1988,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2021,6 +2027,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2053,7 +2061,7 @@ if i32.const 0 i32.const 416 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2168,7 +2176,7 @@ if i32.const 0 i32.const 416 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2188,7 +2196,7 @@ if i32.const 0 i32.const 416 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/exportstar-rereexport.release.wat b/tests/compiler/exportstar-rereexport.release.wat index c16cf9f6b4..5d2f9d5d7b 100644 --- a/tests/compiler/exportstar-rereexport.release.wat +++ b/tests/compiler/exportstar-rereexport.release.wat @@ -276,7 +276,7 @@ if i32.const 0 i32.const 1440 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -290,7 +290,7 @@ if i32.const 0 i32.const 1440 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -336,7 +336,7 @@ if i32.const 0 i32.const 1440 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -419,7 +419,7 @@ if i32.const 0 i32.const 1440 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -433,7 +433,7 @@ if i32.const 0 i32.const 1440 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -494,7 +494,7 @@ if i32.const 0 i32.const 1440 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -527,7 +527,7 @@ if i32.const 0 i32.const 1440 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -542,7 +542,7 @@ if i32.const 0 i32.const 1440 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -593,7 +593,7 @@ if i32.const 0 i32.const 1440 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -665,7 +665,7 @@ if i32.const 0 i32.const 1440 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -690,7 +690,7 @@ if i32.const 0 i32.const 1440 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -717,7 +717,7 @@ if i32.const 0 i32.const 1440 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1080,7 +1080,7 @@ if i32.const 0 i32.const 1440 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1146,7 +1146,7 @@ if i32.const 0 i32.const 1440 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1241,8 +1241,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -1278,7 +1276,7 @@ if i32.const 0 i32.const 1440 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1293,7 +1291,7 @@ if i32.const 0 i32.const 1440 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/extends-baseaggregate.debug.wat b/tests/compiler/extends-baseaggregate.debug.wat index 42df283bce..16e02512fe 100644 --- a/tests/compiler/extends-baseaggregate.debug.wat +++ b/tests/compiler/extends-baseaggregate.debug.wat @@ -454,7 +454,7 @@ if i32.const 0 i32.const 528 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -474,7 +474,7 @@ if i32.const 0 i32.const 528 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -537,7 +537,7 @@ if i32.const 0 i32.const 528 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -690,7 +690,7 @@ if i32.const 0 i32.const 528 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -707,7 +707,7 @@ if i32.const 0 i32.const 528 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -796,7 +796,7 @@ if i32.const 0 i32.const 528 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -839,7 +839,7 @@ if i32.const 0 i32.const 528 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -857,7 +857,7 @@ if i32.const 0 i32.const 528 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -925,7 +925,7 @@ if i32.const 0 i32.const 528 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1042,7 +1042,7 @@ if i32.const 0 i32.const 528 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1088,7 +1088,7 @@ if i32.const 0 i32.const 528 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1120,7 +1120,7 @@ if i32.const 0 i32.const 528 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1191,18 +1191,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1217,17 +1218,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1251,10 +1253,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1265,13 +1267,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1285,18 +1287,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1364,7 +1366,7 @@ if i32.const 0 i32.const 528 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1693,7 +1695,7 @@ if i32.const 192 i32.const 528 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1795,7 +1797,7 @@ if i32.const 0 i32.const 528 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1866,7 +1868,7 @@ if i32.const 0 i32.const 528 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1922,13 +1924,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1957,25 +1958,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1991,6 +1997,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2023,7 +2031,7 @@ if i32.const 0 i32.const 528 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2138,7 +2146,7 @@ if i32.const 0 i32.const 528 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2158,7 +2166,7 @@ if i32.const 0 i32.const 528 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/extends-baseaggregate.release.wat b/tests/compiler/extends-baseaggregate.release.wat index a0bc28bb44..dad0426edf 100644 --- a/tests/compiler/extends-baseaggregate.release.wat +++ b/tests/compiler/extends-baseaggregate.release.wat @@ -267,7 +267,7 @@ if i32.const 0 i32.const 1552 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -281,7 +281,7 @@ if i32.const 0 i32.const 1552 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -327,7 +327,7 @@ if i32.const 0 i32.const 1552 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -410,7 +410,7 @@ if i32.const 0 i32.const 1552 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -424,7 +424,7 @@ if i32.const 0 i32.const 1552 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -485,7 +485,7 @@ if i32.const 0 i32.const 1552 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -518,7 +518,7 @@ if i32.const 0 i32.const 1552 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -533,7 +533,7 @@ if i32.const 0 i32.const 1552 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -584,7 +584,7 @@ if i32.const 0 i32.const 1552 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -656,7 +656,7 @@ if i32.const 0 i32.const 1552 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -681,7 +681,7 @@ if i32.const 0 i32.const 1552 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -708,7 +708,7 @@ if i32.const 0 i32.const 1552 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1071,7 +1071,7 @@ if i32.const 0 i32.const 1552 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1156,7 +1156,7 @@ if i32.const 0 i32.const 1552 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1208,7 +1208,7 @@ if i32.const 0 i32.const 1552 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1306,7 +1306,7 @@ if i32.const 1216 i32.const 1552 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1370,8 +1370,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1408,7 +1406,7 @@ if i32.const 0 i32.const 1552 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1423,7 +1421,7 @@ if i32.const 0 i32.const 1552 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1442,7 +1440,7 @@ if i32.const 0 i32.const 1552 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/extends-recursive.debug.wat b/tests/compiler/extends-recursive.debug.wat index e0074d457f..e1a6402599 100644 --- a/tests/compiler/extends-recursive.debug.wat +++ b/tests/compiler/extends-recursive.debug.wat @@ -444,7 +444,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -464,7 +464,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -527,7 +527,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -680,7 +680,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -697,7 +697,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -786,7 +786,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -829,7 +829,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -847,7 +847,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -915,7 +915,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1032,7 +1032,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1078,7 +1078,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1110,7 +1110,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1181,18 +1181,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1207,17 +1208,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1241,10 +1243,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1255,13 +1257,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1275,18 +1277,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1354,7 +1356,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1683,7 +1685,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1785,7 +1787,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1856,7 +1858,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1912,13 +1914,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1947,25 +1948,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1981,6 +1987,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2013,7 +2021,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2128,7 +2136,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2148,7 +2156,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/extends-recursive.release.wat b/tests/compiler/extends-recursive.release.wat index 95652de9f5..f997dd68b6 100644 --- a/tests/compiler/extends-recursive.release.wat +++ b/tests/compiler/extends-recursive.release.wat @@ -243,7 +243,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -257,7 +257,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -303,7 +303,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -386,7 +386,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -400,7 +400,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -461,7 +461,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -494,7 +494,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -509,7 +509,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -560,7 +560,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -632,7 +632,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -657,7 +657,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -684,7 +684,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1047,7 +1047,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1132,7 +1132,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1184,7 +1184,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1282,7 +1282,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1346,8 +1346,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1384,7 +1382,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1399,7 +1397,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1418,7 +1416,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/field-initialization.debug.wat b/tests/compiler/field-initialization.debug.wat index d94296464e..528bd3e5f1 100644 --- a/tests/compiler/field-initialization.debug.wat +++ b/tests/compiler/field-initialization.debug.wat @@ -455,7 +455,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -475,7 +475,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -538,7 +538,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -691,7 +691,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -708,7 +708,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -797,7 +797,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -840,7 +840,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -858,7 +858,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -926,7 +926,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1043,7 +1043,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1089,7 +1089,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1121,7 +1121,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1192,18 +1192,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1218,17 +1219,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1252,10 +1254,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1266,13 +1268,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1286,18 +1288,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1365,7 +1367,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1694,7 +1696,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1796,7 +1798,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1867,7 +1869,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1923,13 +1925,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1958,25 +1959,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1992,6 +1998,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2024,7 +2032,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2139,7 +2147,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2159,7 +2167,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/field-initialization.release.wat b/tests/compiler/field-initialization.release.wat index 1d7d656f3a..4635d0959a 100644 --- a/tests/compiler/field-initialization.release.wat +++ b/tests/compiler/field-initialization.release.wat @@ -267,7 +267,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -281,7 +281,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -327,7 +327,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -410,7 +410,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -424,7 +424,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -485,7 +485,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -518,7 +518,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -533,7 +533,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -584,7 +584,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -656,7 +656,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -681,7 +681,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -708,7 +708,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1071,7 +1071,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1156,7 +1156,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1208,7 +1208,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1306,7 +1306,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1370,8 +1370,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1408,7 +1406,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1423,7 +1421,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1442,7 +1440,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/field.debug.wat b/tests/compiler/field.debug.wat index 551564caf0..d7bafaad8d 100644 --- a/tests/compiler/field.debug.wat +++ b/tests/compiler/field.debug.wat @@ -447,7 +447,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -467,7 +467,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -530,7 +530,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -683,7 +683,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -700,7 +700,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -789,7 +789,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -832,7 +832,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -850,7 +850,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -918,7 +918,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1035,7 +1035,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1081,7 +1081,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1113,7 +1113,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1184,18 +1184,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1210,17 +1211,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1244,10 +1246,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1258,13 +1260,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1278,18 +1280,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1357,7 +1359,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1686,7 +1688,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1788,7 +1790,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1859,7 +1861,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1915,13 +1917,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1950,25 +1951,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1984,6 +1990,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2016,7 +2024,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2131,7 +2139,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2151,7 +2159,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/field.release.wat b/tests/compiler/field.release.wat index 4efb7bbd51..93fb50c11e 100644 --- a/tests/compiler/field.release.wat +++ b/tests/compiler/field.release.wat @@ -250,7 +250,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -264,7 +264,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -310,7 +310,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -393,7 +393,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -407,7 +407,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -468,7 +468,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -501,7 +501,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -516,7 +516,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -567,7 +567,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -639,7 +639,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -664,7 +664,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -691,7 +691,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1054,7 +1054,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1139,7 +1139,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1191,7 +1191,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1289,7 +1289,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1353,8 +1353,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1391,7 +1389,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1406,7 +1404,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1425,7 +1423,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/for.debug.wat b/tests/compiler/for.debug.wat index b83cf2740a..4c455f8935 100644 --- a/tests/compiler/for.debug.wat +++ b/tests/compiler/for.debug.wat @@ -833,7 +833,7 @@ if i32.const 0 i32.const 400 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -853,7 +853,7 @@ if i32.const 0 i32.const 400 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -916,7 +916,7 @@ if i32.const 0 i32.const 400 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -1069,7 +1069,7 @@ if i32.const 0 i32.const 400 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -1086,7 +1086,7 @@ if i32.const 0 i32.const 400 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -1175,7 +1175,7 @@ if i32.const 0 i32.const 400 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1218,7 +1218,7 @@ if i32.const 0 i32.const 400 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1236,7 +1236,7 @@ if i32.const 0 i32.const 400 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1304,7 +1304,7 @@ if i32.const 0 i32.const 400 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1421,7 +1421,7 @@ if i32.const 0 i32.const 400 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1467,7 +1467,7 @@ if i32.const 0 i32.const 400 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1499,7 +1499,7 @@ if i32.const 0 i32.const 400 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1570,18 +1570,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1596,17 +1597,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1630,10 +1632,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1644,13 +1646,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1664,18 +1666,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1743,7 +1745,7 @@ if i32.const 0 i32.const 400 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -2072,7 +2074,7 @@ if i32.const 64 i32.const 400 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -2174,7 +2176,7 @@ if i32.const 0 i32.const 400 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -2245,7 +2247,7 @@ if i32.const 0 i32.const 400 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2301,13 +2303,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2336,25 +2337,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2370,6 +2376,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2402,7 +2410,7 @@ if i32.const 0 i32.const 400 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2517,7 +2525,7 @@ if i32.const 0 i32.const 400 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2537,7 +2545,7 @@ if i32.const 0 i32.const 400 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/for.release.wat b/tests/compiler/for.release.wat index d6b3fb5e06..8bb229ddda 100644 --- a/tests/compiler/for.release.wat +++ b/tests/compiler/for.release.wat @@ -245,7 +245,7 @@ if i32.const 0 i32.const 1424 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -259,7 +259,7 @@ if i32.const 0 i32.const 1424 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -305,7 +305,7 @@ if i32.const 0 i32.const 1424 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -388,7 +388,7 @@ if i32.const 0 i32.const 1424 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -402,7 +402,7 @@ if i32.const 0 i32.const 1424 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -463,7 +463,7 @@ if i32.const 0 i32.const 1424 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -496,7 +496,7 @@ if i32.const 0 i32.const 1424 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -511,7 +511,7 @@ if i32.const 0 i32.const 1424 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -562,7 +562,7 @@ if i32.const 0 i32.const 1424 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -634,7 +634,7 @@ if i32.const 0 i32.const 1424 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -659,7 +659,7 @@ if i32.const 0 i32.const 1424 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -686,7 +686,7 @@ if i32.const 0 i32.const 1424 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1049,7 +1049,7 @@ if i32.const 0 i32.const 1424 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1115,7 +1115,7 @@ if i32.const 0 i32.const 1424 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1210,8 +1210,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1247,7 +1245,7 @@ if i32.const 0 i32.const 1424 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1262,7 +1260,7 @@ if i32.const 0 i32.const 1424 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/function-call.debug.wat b/tests/compiler/function-call.debug.wat index 067a7f4fc0..e44b3fa5bc 100644 --- a/tests/compiler/function-call.debug.wat +++ b/tests/compiler/function-call.debug.wat @@ -481,7 +481,7 @@ if i32.const 0 i32.const 592 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -501,7 +501,7 @@ if i32.const 0 i32.const 592 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -564,7 +564,7 @@ if i32.const 0 i32.const 592 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -717,7 +717,7 @@ if i32.const 0 i32.const 592 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -734,7 +734,7 @@ if i32.const 0 i32.const 592 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -823,7 +823,7 @@ if i32.const 0 i32.const 592 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -866,7 +866,7 @@ if i32.const 0 i32.const 592 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -884,7 +884,7 @@ if i32.const 0 i32.const 592 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -952,7 +952,7 @@ if i32.const 0 i32.const 592 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1069,7 +1069,7 @@ if i32.const 0 i32.const 592 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1115,7 +1115,7 @@ if i32.const 0 i32.const 592 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1147,7 +1147,7 @@ if i32.const 0 i32.const 592 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1218,18 +1218,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1244,17 +1245,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1278,10 +1280,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1292,13 +1294,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1312,18 +1314,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1391,7 +1393,7 @@ if i32.const 0 i32.const 592 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1720,7 +1722,7 @@ if i32.const 256 i32.const 592 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1822,7 +1824,7 @@ if i32.const 0 i32.const 592 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1893,7 +1895,7 @@ if i32.const 0 i32.const 592 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1949,13 +1951,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1984,25 +1985,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2018,6 +2024,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2050,7 +2058,7 @@ if i32.const 0 i32.const 592 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2165,7 +2173,7 @@ if i32.const 0 i32.const 592 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2185,7 +2193,7 @@ if i32.const 0 i32.const 592 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/function-call.release.wat b/tests/compiler/function-call.release.wat index 56a60fbf1f..2eb1146305 100644 --- a/tests/compiler/function-call.release.wat +++ b/tests/compiler/function-call.release.wat @@ -283,7 +283,7 @@ if i32.const 0 i32.const 1616 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -297,7 +297,7 @@ if i32.const 0 i32.const 1616 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -343,7 +343,7 @@ if i32.const 0 i32.const 1616 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -426,7 +426,7 @@ if i32.const 0 i32.const 1616 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -440,7 +440,7 @@ if i32.const 0 i32.const 1616 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -501,7 +501,7 @@ if i32.const 0 i32.const 1616 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -534,7 +534,7 @@ if i32.const 0 i32.const 1616 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -549,7 +549,7 @@ if i32.const 0 i32.const 1616 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -600,7 +600,7 @@ if i32.const 0 i32.const 1616 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -672,7 +672,7 @@ if i32.const 0 i32.const 1616 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -697,7 +697,7 @@ if i32.const 0 i32.const 1616 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -724,7 +724,7 @@ if i32.const 0 i32.const 1616 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1087,7 +1087,7 @@ if i32.const 0 i32.const 1616 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1153,7 +1153,7 @@ if i32.const 0 i32.const 1616 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1248,8 +1248,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1285,7 +1283,7 @@ if i32.const 0 i32.const 1616 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1300,7 +1298,7 @@ if i32.const 0 i32.const 1616 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/function-expression.debug.wat b/tests/compiler/function-expression.debug.wat index 4d60cddafc..a6efa89fd7 100644 --- a/tests/compiler/function-expression.debug.wat +++ b/tests/compiler/function-expression.debug.wat @@ -639,7 +639,7 @@ if i32.const 0 i32.const 912 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -659,7 +659,7 @@ if i32.const 0 i32.const 912 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -722,7 +722,7 @@ if i32.const 0 i32.const 912 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -875,7 +875,7 @@ if i32.const 0 i32.const 912 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -892,7 +892,7 @@ if i32.const 0 i32.const 912 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -981,7 +981,7 @@ if i32.const 0 i32.const 912 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1024,7 +1024,7 @@ if i32.const 0 i32.const 912 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1042,7 +1042,7 @@ if i32.const 0 i32.const 912 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1110,7 +1110,7 @@ if i32.const 0 i32.const 912 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1227,7 +1227,7 @@ if i32.const 0 i32.const 912 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1273,7 +1273,7 @@ if i32.const 0 i32.const 912 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1305,7 +1305,7 @@ if i32.const 0 i32.const 912 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1376,18 +1376,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1402,17 +1403,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1436,10 +1438,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1450,13 +1452,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1470,18 +1472,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1549,7 +1551,7 @@ if i32.const 0 i32.const 912 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1878,7 +1880,7 @@ if i32.const 576 i32.const 912 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1980,7 +1982,7 @@ if i32.const 0 i32.const 912 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -2051,7 +2053,7 @@ if i32.const 0 i32.const 912 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2107,13 +2109,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2142,25 +2143,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2176,6 +2182,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2208,7 +2216,7 @@ if i32.const 0 i32.const 912 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2323,7 +2331,7 @@ if i32.const 0 i32.const 912 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2343,7 +2351,7 @@ if i32.const 0 i32.const 912 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/function-expression.release.wat b/tests/compiler/function-expression.release.wat index da44972113..71024e8b5a 100644 --- a/tests/compiler/function-expression.release.wat +++ b/tests/compiler/function-expression.release.wat @@ -313,7 +313,7 @@ if i32.const 0 i32.const 1936 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -327,7 +327,7 @@ if i32.const 0 i32.const 1936 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -373,7 +373,7 @@ if i32.const 0 i32.const 1936 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -456,7 +456,7 @@ if i32.const 0 i32.const 1936 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -470,7 +470,7 @@ if i32.const 0 i32.const 1936 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -531,7 +531,7 @@ if i32.const 0 i32.const 1936 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -564,7 +564,7 @@ if i32.const 0 i32.const 1936 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -579,7 +579,7 @@ if i32.const 0 i32.const 1936 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -630,7 +630,7 @@ if i32.const 0 i32.const 1936 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -702,7 +702,7 @@ if i32.const 0 i32.const 1936 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -727,7 +727,7 @@ if i32.const 0 i32.const 1936 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -754,7 +754,7 @@ if i32.const 0 i32.const 1936 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1117,7 +1117,7 @@ if i32.const 0 i32.const 1936 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1183,7 +1183,7 @@ if i32.const 0 i32.const 1936 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1278,8 +1278,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -1315,7 +1313,7 @@ if i32.const 0 i32.const 1936 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1330,7 +1328,7 @@ if i32.const 0 i32.const 1936 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/getter-call.debug.wat b/tests/compiler/getter-call.debug.wat index 593954b022..0d01567523 100644 --- a/tests/compiler/getter-call.debug.wat +++ b/tests/compiler/getter-call.debug.wat @@ -447,7 +447,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -467,7 +467,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -530,7 +530,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -683,7 +683,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -700,7 +700,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -789,7 +789,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -832,7 +832,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -850,7 +850,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -918,7 +918,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1035,7 +1035,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1081,7 +1081,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1113,7 +1113,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1184,18 +1184,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1210,17 +1211,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1244,10 +1246,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1258,13 +1260,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1278,18 +1280,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1357,7 +1359,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1686,7 +1688,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1788,7 +1790,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1859,7 +1861,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1915,13 +1917,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1950,25 +1951,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1984,6 +1990,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2016,7 +2024,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2131,7 +2139,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2151,7 +2159,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/getter-call.release.wat b/tests/compiler/getter-call.release.wat index 3c2bec13dc..977b69d31f 100644 --- a/tests/compiler/getter-call.release.wat +++ b/tests/compiler/getter-call.release.wat @@ -248,7 +248,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -262,7 +262,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -308,7 +308,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -391,7 +391,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -405,7 +405,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -466,7 +466,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -499,7 +499,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -514,7 +514,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -565,7 +565,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -637,7 +637,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -662,7 +662,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -689,7 +689,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1052,7 +1052,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1118,7 +1118,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1213,8 +1213,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1250,7 +1248,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1265,7 +1263,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/heap.debug.wat b/tests/compiler/heap.debug.wat index 3b82eebc93..887d141ffd 100644 --- a/tests/compiler/heap.debug.wat +++ b/tests/compiler/heap.debug.wat @@ -93,7 +93,7 @@ if i32.const 0 i32.const 32 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -113,7 +113,7 @@ if i32.const 0 i32.const 32 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -176,7 +176,7 @@ if i32.const 0 i32.const 32 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -329,7 +329,7 @@ if i32.const 0 i32.const 32 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -346,7 +346,7 @@ if i32.const 0 i32.const 32 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -435,7 +435,7 @@ if i32.const 0 i32.const 32 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -478,7 +478,7 @@ if i32.const 0 i32.const 32 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -496,7 +496,7 @@ if i32.const 0 i32.const 32 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -564,7 +564,7 @@ if i32.const 0 i32.const 32 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -681,7 +681,7 @@ if i32.const 0 i32.const 32 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -727,7 +727,7 @@ if i32.const 0 i32.const 32 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -759,7 +759,7 @@ if i32.const 0 i32.const 32 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -830,18 +830,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -856,17 +857,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -890,10 +892,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -904,13 +906,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -924,18 +926,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1001,7 +1003,7 @@ if i32.const 96 i32.const 32 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1103,7 +1105,7 @@ if i32.const 0 i32.const 32 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1174,7 +1176,7 @@ if i32.const 0 i32.const 32 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1230,13 +1232,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1265,25 +1266,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1299,6 +1305,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -1331,7 +1339,7 @@ if i32.const 0 i32.const 32 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -1446,7 +1454,7 @@ if i32.const 0 i32.const 32 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1466,7 +1474,7 @@ if i32.const 0 i32.const 32 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1531,7 +1539,7 @@ if i32.const 0 i32.const 32 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/heap.release.wat b/tests/compiler/heap.release.wat index caf0699557..87d19f389a 100644 --- a/tests/compiler/heap.release.wat +++ b/tests/compiler/heap.release.wat @@ -30,7 +30,7 @@ if i32.const 0 i32.const 1056 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -44,7 +44,7 @@ if i32.const 0 i32.const 1056 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -90,7 +90,7 @@ if i32.const 0 i32.const 1056 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -173,7 +173,7 @@ if i32.const 0 i32.const 1056 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -187,7 +187,7 @@ if i32.const 0 i32.const 1056 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -248,7 +248,7 @@ if i32.const 0 i32.const 1056 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -281,7 +281,7 @@ if i32.const 0 i32.const 1056 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -296,7 +296,7 @@ if i32.const 0 i32.const 1056 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -347,7 +347,7 @@ if i32.const 0 i32.const 1056 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -419,7 +419,7 @@ if i32.const 0 i32.const 1056 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -444,7 +444,7 @@ if i32.const 0 i32.const 1056 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -471,7 +471,7 @@ if i32.const 0 i32.const 1056 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -609,7 +609,7 @@ if i32.const 1120 i32.const 1056 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -684,7 +684,7 @@ if i32.const 0 i32.const 1056 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -736,7 +736,7 @@ if i32.const 0 i32.const 1056 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -771,7 +771,7 @@ if i32.const 0 i32.const 1056 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -879,8 +879,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $1 @@ -917,7 +915,7 @@ if i32.const 0 i32.const 1056 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -932,7 +930,7 @@ if i32.const 0 i32.const 1056 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -969,7 +967,7 @@ if i32.const 0 i32.const 1056 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/infer-array.debug.wat b/tests/compiler/infer-array.debug.wat index c54bf07db8..71e1515e38 100644 --- a/tests/compiler/infer-array.debug.wat +++ b/tests/compiler/infer-array.debug.wat @@ -466,7 +466,7 @@ if i32.const 0 i32.const 400 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -486,7 +486,7 @@ if i32.const 0 i32.const 400 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -549,7 +549,7 @@ if i32.const 0 i32.const 400 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -702,7 +702,7 @@ if i32.const 0 i32.const 400 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -719,7 +719,7 @@ if i32.const 0 i32.const 400 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -808,7 +808,7 @@ if i32.const 0 i32.const 400 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -851,7 +851,7 @@ if i32.const 0 i32.const 400 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -869,7 +869,7 @@ if i32.const 0 i32.const 400 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -937,7 +937,7 @@ if i32.const 0 i32.const 400 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1054,7 +1054,7 @@ if i32.const 0 i32.const 400 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1100,7 +1100,7 @@ if i32.const 0 i32.const 400 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1132,7 +1132,7 @@ if i32.const 0 i32.const 400 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1203,18 +1203,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1229,17 +1230,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1263,10 +1265,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1277,13 +1279,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1297,18 +1299,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1376,7 +1378,7 @@ if i32.const 0 i32.const 400 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1705,7 +1707,7 @@ if i32.const 64 i32.const 400 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1807,7 +1809,7 @@ if i32.const 0 i32.const 400 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1878,7 +1880,7 @@ if i32.const 0 i32.const 400 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1934,13 +1936,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1969,25 +1970,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2003,6 +2009,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2035,7 +2043,7 @@ if i32.const 0 i32.const 400 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2150,7 +2158,7 @@ if i32.const 0 i32.const 400 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2170,7 +2178,7 @@ if i32.const 0 i32.const 400 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/infer-array.release.wat b/tests/compiler/infer-array.release.wat index 48e8f1344f..d7e90148c0 100644 --- a/tests/compiler/infer-array.release.wat +++ b/tests/compiler/infer-array.release.wat @@ -289,7 +289,7 @@ if i32.const 0 i32.const 1424 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -303,7 +303,7 @@ if i32.const 0 i32.const 1424 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -349,7 +349,7 @@ if i32.const 0 i32.const 1424 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -432,7 +432,7 @@ if i32.const 0 i32.const 1424 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -446,7 +446,7 @@ if i32.const 0 i32.const 1424 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -507,7 +507,7 @@ if i32.const 0 i32.const 1424 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -540,7 +540,7 @@ if i32.const 0 i32.const 1424 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -555,7 +555,7 @@ if i32.const 0 i32.const 1424 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -606,7 +606,7 @@ if i32.const 0 i32.const 1424 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -678,7 +678,7 @@ if i32.const 0 i32.const 1424 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -703,7 +703,7 @@ if i32.const 0 i32.const 1424 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -730,7 +730,7 @@ if i32.const 0 i32.const 1424 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1093,7 +1093,7 @@ if i32.const 0 i32.const 1424 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1178,7 +1178,7 @@ if i32.const 0 i32.const 1424 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1230,7 +1230,7 @@ if i32.const 0 i32.const 1424 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1328,7 +1328,7 @@ if i32.const 1088 i32.const 1424 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1392,8 +1392,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1430,7 +1428,7 @@ if i32.const 0 i32.const 1424 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1445,7 +1443,7 @@ if i32.const 0 i32.const 1424 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1464,7 +1462,7 @@ if i32.const 0 i32.const 1424 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/infer-generic.debug.wat b/tests/compiler/infer-generic.debug.wat index a2399cf78b..bf88730dcd 100644 --- a/tests/compiler/infer-generic.debug.wat +++ b/tests/compiler/infer-generic.debug.wat @@ -493,7 +493,7 @@ if i32.const 0 i32.const 544 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -513,7 +513,7 @@ if i32.const 0 i32.const 544 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -576,7 +576,7 @@ if i32.const 0 i32.const 544 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -729,7 +729,7 @@ if i32.const 0 i32.const 544 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -746,7 +746,7 @@ if i32.const 0 i32.const 544 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -835,7 +835,7 @@ if i32.const 0 i32.const 544 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -878,7 +878,7 @@ if i32.const 0 i32.const 544 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -896,7 +896,7 @@ if i32.const 0 i32.const 544 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -964,7 +964,7 @@ if i32.const 0 i32.const 544 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1081,7 +1081,7 @@ if i32.const 0 i32.const 544 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1127,7 +1127,7 @@ if i32.const 0 i32.const 544 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1159,7 +1159,7 @@ if i32.const 0 i32.const 544 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1230,18 +1230,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1256,17 +1257,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1290,10 +1292,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1304,13 +1306,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1324,18 +1326,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1403,7 +1405,7 @@ if i32.const 0 i32.const 544 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1732,7 +1734,7 @@ if i32.const 208 i32.const 544 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1834,7 +1836,7 @@ if i32.const 0 i32.const 544 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1905,7 +1907,7 @@ if i32.const 0 i32.const 544 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1961,13 +1963,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1996,25 +1997,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2030,6 +2036,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2062,7 +2070,7 @@ if i32.const 0 i32.const 544 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2177,7 +2185,7 @@ if i32.const 0 i32.const 544 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2197,7 +2205,7 @@ if i32.const 0 i32.const 544 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/infer-generic.release.wat b/tests/compiler/infer-generic.release.wat index a76738b5c8..810a236d1c 100644 --- a/tests/compiler/infer-generic.release.wat +++ b/tests/compiler/infer-generic.release.wat @@ -272,7 +272,7 @@ if i32.const 0 i32.const 1568 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -286,7 +286,7 @@ if i32.const 0 i32.const 1568 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -332,7 +332,7 @@ if i32.const 0 i32.const 1568 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -415,7 +415,7 @@ if i32.const 0 i32.const 1568 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -429,7 +429,7 @@ if i32.const 0 i32.const 1568 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -490,7 +490,7 @@ if i32.const 0 i32.const 1568 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -523,7 +523,7 @@ if i32.const 0 i32.const 1568 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -538,7 +538,7 @@ if i32.const 0 i32.const 1568 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -589,7 +589,7 @@ if i32.const 0 i32.const 1568 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -661,7 +661,7 @@ if i32.const 0 i32.const 1568 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -686,7 +686,7 @@ if i32.const 0 i32.const 1568 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -713,7 +713,7 @@ if i32.const 0 i32.const 1568 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1076,7 +1076,7 @@ if i32.const 0 i32.const 1568 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1161,7 +1161,7 @@ if i32.const 0 i32.const 1568 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1213,7 +1213,7 @@ if i32.const 0 i32.const 1568 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1311,7 +1311,7 @@ if i32.const 1232 i32.const 1568 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1375,8 +1375,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1413,7 +1411,7 @@ if i32.const 0 i32.const 1568 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1428,7 +1426,7 @@ if i32.const 0 i32.const 1568 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1447,7 +1445,7 @@ if i32.const 0 i32.const 1568 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/inlining.debug.wat b/tests/compiler/inlining.debug.wat index 68a7fd21cd..e0931f290c 100644 --- a/tests/compiler/inlining.debug.wat +++ b/tests/compiler/inlining.debug.wat @@ -712,7 +712,7 @@ if i32.const 0 i32.const 448 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -732,7 +732,7 @@ if i32.const 0 i32.const 448 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -795,7 +795,7 @@ if i32.const 0 i32.const 448 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -948,7 +948,7 @@ if i32.const 0 i32.const 448 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -965,7 +965,7 @@ if i32.const 0 i32.const 448 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -1054,7 +1054,7 @@ if i32.const 0 i32.const 448 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1097,7 +1097,7 @@ if i32.const 0 i32.const 448 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1115,7 +1115,7 @@ if i32.const 0 i32.const 448 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1183,7 +1183,7 @@ if i32.const 0 i32.const 448 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1300,7 +1300,7 @@ if i32.const 0 i32.const 448 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1346,7 +1346,7 @@ if i32.const 0 i32.const 448 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1378,7 +1378,7 @@ if i32.const 0 i32.const 448 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1449,18 +1449,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1475,17 +1476,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1509,10 +1511,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1523,13 +1525,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1543,18 +1545,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1622,7 +1624,7 @@ if i32.const 0 i32.const 448 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1951,7 +1953,7 @@ if i32.const 112 i32.const 448 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -2053,7 +2055,7 @@ if i32.const 0 i32.const 448 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -2124,7 +2126,7 @@ if i32.const 0 i32.const 448 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2180,13 +2182,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2215,25 +2216,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2249,6 +2255,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2281,7 +2289,7 @@ if i32.const 0 i32.const 448 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2396,7 +2404,7 @@ if i32.const 0 i32.const 448 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2416,7 +2424,7 @@ if i32.const 0 i32.const 448 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/inlining.release.wat b/tests/compiler/inlining.release.wat index d8ff242546..6f6730a7fa 100644 --- a/tests/compiler/inlining.release.wat +++ b/tests/compiler/inlining.release.wat @@ -258,7 +258,7 @@ if i32.const 0 i32.const 1472 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -272,7 +272,7 @@ if i32.const 0 i32.const 1472 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -318,7 +318,7 @@ if i32.const 0 i32.const 1472 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -401,7 +401,7 @@ if i32.const 0 i32.const 1472 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -415,7 +415,7 @@ if i32.const 0 i32.const 1472 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -476,7 +476,7 @@ if i32.const 0 i32.const 1472 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -509,7 +509,7 @@ if i32.const 0 i32.const 1472 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -524,7 +524,7 @@ if i32.const 0 i32.const 1472 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -575,7 +575,7 @@ if i32.const 0 i32.const 1472 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -647,7 +647,7 @@ if i32.const 0 i32.const 1472 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -672,7 +672,7 @@ if i32.const 0 i32.const 1472 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -699,7 +699,7 @@ if i32.const 0 i32.const 1472 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1062,7 +1062,7 @@ if i32.const 0 i32.const 1472 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1147,7 +1147,7 @@ if i32.const 0 i32.const 1472 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1199,7 +1199,7 @@ if i32.const 0 i32.const 1472 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1297,7 +1297,7 @@ if i32.const 1136 i32.const 1472 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1361,8 +1361,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1399,7 +1397,7 @@ if i32.const 0 i32.const 1472 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1414,7 +1412,7 @@ if i32.const 0 i32.const 1472 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1433,7 +1431,7 @@ if i32.const 0 i32.const 1472 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/instanceof.debug.wat b/tests/compiler/instanceof.debug.wat index 79d6b3b7cb..2ccc367859 100644 --- a/tests/compiler/instanceof.debug.wat +++ b/tests/compiler/instanceof.debug.wat @@ -468,7 +468,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -488,7 +488,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -551,7 +551,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -704,7 +704,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -721,7 +721,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -810,7 +810,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -853,7 +853,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -871,7 +871,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -939,7 +939,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1056,7 +1056,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1102,7 +1102,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1134,7 +1134,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1205,18 +1205,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1231,17 +1232,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1265,10 +1267,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1279,13 +1281,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1299,18 +1301,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1378,7 +1380,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1707,7 +1709,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1809,7 +1811,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1880,7 +1882,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1936,13 +1938,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1971,25 +1972,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2005,6 +2011,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2037,7 +2045,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2152,7 +2160,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2172,7 +2180,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/instanceof.release.wat b/tests/compiler/instanceof.release.wat index 17c9936fff..847043aaca 100644 --- a/tests/compiler/instanceof.release.wat +++ b/tests/compiler/instanceof.release.wat @@ -350,7 +350,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -364,7 +364,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -410,7 +410,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -493,7 +493,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -507,7 +507,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -568,7 +568,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -601,7 +601,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -616,7 +616,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -667,7 +667,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -739,7 +739,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -764,7 +764,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -791,7 +791,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1154,7 +1154,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1220,7 +1220,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1315,8 +1315,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1352,7 +1350,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1367,7 +1365,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/1095.debug.wat b/tests/compiler/issues/1095.debug.wat index 8d55faf3bc..08cf6f865f 100644 --- a/tests/compiler/issues/1095.debug.wat +++ b/tests/compiler/issues/1095.debug.wat @@ -447,7 +447,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -467,7 +467,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -530,7 +530,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -683,7 +683,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -700,7 +700,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -789,7 +789,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -832,7 +832,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -850,7 +850,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -918,7 +918,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1035,7 +1035,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1081,7 +1081,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1113,7 +1113,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1184,18 +1184,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1210,17 +1211,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1244,10 +1246,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1258,13 +1260,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1278,18 +1280,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1357,7 +1359,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1686,7 +1688,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1788,7 +1790,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1859,7 +1861,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1915,13 +1917,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1950,25 +1951,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1984,6 +1990,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2016,7 +2024,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2131,7 +2139,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2151,7 +2159,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/1095.release.wat b/tests/compiler/issues/1095.release.wat index 59a7187755..c88dc09588 100644 --- a/tests/compiler/issues/1095.release.wat +++ b/tests/compiler/issues/1095.release.wat @@ -253,7 +253,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -267,7 +267,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -313,7 +313,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -396,7 +396,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -410,7 +410,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -471,7 +471,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -504,7 +504,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -519,7 +519,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -570,7 +570,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -642,7 +642,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -667,7 +667,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -694,7 +694,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1057,7 +1057,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1142,7 +1142,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1194,7 +1194,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1292,7 +1292,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1356,8 +1356,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1394,7 +1392,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1409,7 +1407,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1428,7 +1426,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/1225.debug.wat b/tests/compiler/issues/1225.debug.wat index 73eec5c752..dbeecfb49c 100644 --- a/tests/compiler/issues/1225.debug.wat +++ b/tests/compiler/issues/1225.debug.wat @@ -462,7 +462,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -482,7 +482,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -545,7 +545,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -698,7 +698,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -715,7 +715,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -804,7 +804,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -847,7 +847,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -865,7 +865,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -933,7 +933,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1050,7 +1050,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1096,7 +1096,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1128,7 +1128,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1199,18 +1199,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1225,17 +1226,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1259,10 +1261,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1273,13 +1275,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1293,18 +1295,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1372,7 +1374,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1701,7 +1703,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1803,7 +1805,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1874,7 +1876,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1930,13 +1932,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1965,25 +1966,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1999,6 +2005,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2031,7 +2039,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2146,7 +2154,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2166,7 +2174,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/1225.release.wat b/tests/compiler/issues/1225.release.wat index 454dc7a7a0..976bfc8e0d 100644 --- a/tests/compiler/issues/1225.release.wat +++ b/tests/compiler/issues/1225.release.wat @@ -254,7 +254,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -268,7 +268,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -314,7 +314,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -397,7 +397,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -411,7 +411,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -472,7 +472,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -505,7 +505,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -520,7 +520,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -571,7 +571,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -643,7 +643,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -668,7 +668,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -695,7 +695,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1058,7 +1058,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1124,7 +1124,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1219,8 +1219,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -1256,7 +1254,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1271,7 +1269,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/1699.debug.wat b/tests/compiler/issues/1699.debug.wat index bec13bbd0b..b399c8b1f3 100644 --- a/tests/compiler/issues/1699.debug.wat +++ b/tests/compiler/issues/1699.debug.wat @@ -449,7 +449,7 @@ if i32.const 0 i32.const 464 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -469,7 +469,7 @@ if i32.const 0 i32.const 464 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -532,7 +532,7 @@ if i32.const 0 i32.const 464 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -685,7 +685,7 @@ if i32.const 0 i32.const 464 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -702,7 +702,7 @@ if i32.const 0 i32.const 464 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -791,7 +791,7 @@ if i32.const 0 i32.const 464 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -834,7 +834,7 @@ if i32.const 0 i32.const 464 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -852,7 +852,7 @@ if i32.const 0 i32.const 464 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -920,7 +920,7 @@ if i32.const 0 i32.const 464 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1037,7 +1037,7 @@ if i32.const 0 i32.const 464 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1083,7 +1083,7 @@ if i32.const 0 i32.const 464 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1115,7 +1115,7 @@ if i32.const 0 i32.const 464 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1186,18 +1186,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1212,17 +1213,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1246,10 +1248,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1260,13 +1262,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1280,18 +1282,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1359,7 +1361,7 @@ if i32.const 0 i32.const 464 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1688,7 +1690,7 @@ if i32.const 128 i32.const 464 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1790,7 +1792,7 @@ if i32.const 0 i32.const 464 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1861,7 +1863,7 @@ if i32.const 0 i32.const 464 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1917,13 +1919,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1952,25 +1953,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1986,6 +1992,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2018,7 +2026,7 @@ if i32.const 0 i32.const 464 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2133,7 +2141,7 @@ if i32.const 0 i32.const 464 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2153,7 +2161,7 @@ if i32.const 0 i32.const 464 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/1699.release.wat b/tests/compiler/issues/1699.release.wat index 0bcdd37e25..eac0a69f5c 100644 --- a/tests/compiler/issues/1699.release.wat +++ b/tests/compiler/issues/1699.release.wat @@ -260,7 +260,7 @@ if i32.const 0 i32.const 1488 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -274,7 +274,7 @@ if i32.const 0 i32.const 1488 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -320,7 +320,7 @@ if i32.const 0 i32.const 1488 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -403,7 +403,7 @@ if i32.const 0 i32.const 1488 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -417,7 +417,7 @@ if i32.const 0 i32.const 1488 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -478,7 +478,7 @@ if i32.const 0 i32.const 1488 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -511,7 +511,7 @@ if i32.const 0 i32.const 1488 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -526,7 +526,7 @@ if i32.const 0 i32.const 1488 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -577,7 +577,7 @@ if i32.const 0 i32.const 1488 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -649,7 +649,7 @@ if i32.const 0 i32.const 1488 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -674,7 +674,7 @@ if i32.const 0 i32.const 1488 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -701,7 +701,7 @@ if i32.const 0 i32.const 1488 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1064,7 +1064,7 @@ if i32.const 0 i32.const 1488 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1149,7 +1149,7 @@ if i32.const 0 i32.const 1488 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1201,7 +1201,7 @@ if i32.const 0 i32.const 1488 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1299,7 +1299,7 @@ if i32.const 1152 i32.const 1488 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1363,8 +1363,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1401,7 +1399,7 @@ if i32.const 0 i32.const 1488 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1416,7 +1414,7 @@ if i32.const 0 i32.const 1488 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1435,7 +1433,7 @@ if i32.const 0 i32.const 1488 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/2166.debug.wat b/tests/compiler/issues/2166.debug.wat index 6d3ac1a299..0f45313ffe 100644 --- a/tests/compiler/issues/2166.debug.wat +++ b/tests/compiler/issues/2166.debug.wat @@ -451,7 +451,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -471,7 +471,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -534,7 +534,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -687,7 +687,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -704,7 +704,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -793,7 +793,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -836,7 +836,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -854,7 +854,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -922,7 +922,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1039,7 +1039,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1085,7 +1085,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1117,7 +1117,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1188,18 +1188,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1214,17 +1215,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1248,10 +1250,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1262,13 +1264,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1282,18 +1284,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1361,7 +1363,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1690,7 +1692,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1792,7 +1794,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1863,7 +1865,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1919,13 +1921,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1954,25 +1955,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1988,6 +1994,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2020,7 +2028,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2135,7 +2143,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2155,7 +2163,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/2166.release.wat b/tests/compiler/issues/2166.release.wat index 05a0ac6baa..2e1a2ab76c 100644 --- a/tests/compiler/issues/2166.release.wat +++ b/tests/compiler/issues/2166.release.wat @@ -254,7 +254,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -268,7 +268,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -314,7 +314,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -397,7 +397,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -411,7 +411,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -472,7 +472,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -505,7 +505,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -520,7 +520,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -571,7 +571,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -643,7 +643,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -668,7 +668,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -695,7 +695,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1058,7 +1058,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1124,7 +1124,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1219,8 +1219,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1256,7 +1254,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1271,7 +1269,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/2322/index.debug.wat b/tests/compiler/issues/2322/index.debug.wat index 63522c906a..c15371804f 100644 --- a/tests/compiler/issues/2322/index.debug.wat +++ b/tests/compiler/issues/2322/index.debug.wat @@ -445,7 +445,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -465,7 +465,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -528,7 +528,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -681,7 +681,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -698,7 +698,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -787,7 +787,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -830,7 +830,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -848,7 +848,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -916,7 +916,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1033,7 +1033,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1079,7 +1079,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1111,7 +1111,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1182,18 +1182,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1208,17 +1209,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1242,10 +1244,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1256,13 +1258,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1276,18 +1278,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1355,7 +1357,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1684,7 +1686,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1786,7 +1788,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1857,7 +1859,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1913,13 +1915,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1948,25 +1949,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1982,6 +1988,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2014,7 +2022,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2129,7 +2137,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2149,7 +2157,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/2322/index.release.wat b/tests/compiler/issues/2322/index.release.wat index a33403cbc1..0dff764b37 100644 --- a/tests/compiler/issues/2322/index.release.wat +++ b/tests/compiler/issues/2322/index.release.wat @@ -244,7 +244,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -258,7 +258,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -304,7 +304,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -387,7 +387,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -401,7 +401,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -462,7 +462,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -495,7 +495,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -510,7 +510,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -561,7 +561,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -633,7 +633,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -658,7 +658,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -685,7 +685,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1048,7 +1048,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1133,7 +1133,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1185,7 +1185,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1283,7 +1283,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1347,8 +1347,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1385,7 +1383,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1400,7 +1398,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1419,7 +1417,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/2622.debug.wat b/tests/compiler/issues/2622.debug.wat index 134f40c571..4f09df4aa6 100644 --- a/tests/compiler/issues/2622.debug.wat +++ b/tests/compiler/issues/2622.debug.wat @@ -448,7 +448,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -468,7 +468,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -531,7 +531,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -684,7 +684,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -701,7 +701,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -790,7 +790,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -833,7 +833,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -851,7 +851,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -919,7 +919,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1036,7 +1036,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1082,7 +1082,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1114,7 +1114,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1185,18 +1185,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1211,17 +1212,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1245,10 +1247,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1259,13 +1261,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1279,18 +1281,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1358,7 +1360,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1687,7 +1689,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1789,7 +1791,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1860,7 +1862,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1916,13 +1918,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1951,25 +1952,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1985,6 +1991,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2017,7 +2025,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2132,7 +2140,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2152,7 +2160,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/2622.release.wat b/tests/compiler/issues/2622.release.wat index 2a8c6bd0e0..a736e7bb18 100644 --- a/tests/compiler/issues/2622.release.wat +++ b/tests/compiler/issues/2622.release.wat @@ -283,7 +283,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -297,7 +297,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -343,7 +343,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -426,7 +426,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -440,7 +440,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -501,7 +501,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -534,7 +534,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -549,7 +549,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -600,7 +600,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -672,7 +672,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -697,7 +697,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -724,7 +724,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1087,7 +1087,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1153,7 +1153,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1248,8 +1248,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1285,7 +1283,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1300,7 +1298,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/2707.debug.wat b/tests/compiler/issues/2707.debug.wat index c844be10d1..8197e7f995 100644 --- a/tests/compiler/issues/2707.debug.wat +++ b/tests/compiler/issues/2707.debug.wat @@ -454,7 +454,7 @@ if i32.const 0 i32.const 448 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -474,7 +474,7 @@ if i32.const 0 i32.const 448 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -537,7 +537,7 @@ if i32.const 0 i32.const 448 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -690,7 +690,7 @@ if i32.const 0 i32.const 448 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -707,7 +707,7 @@ if i32.const 0 i32.const 448 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -796,7 +796,7 @@ if i32.const 0 i32.const 448 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -839,7 +839,7 @@ if i32.const 0 i32.const 448 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -857,7 +857,7 @@ if i32.const 0 i32.const 448 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -925,7 +925,7 @@ if i32.const 0 i32.const 448 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1042,7 +1042,7 @@ if i32.const 0 i32.const 448 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1088,7 +1088,7 @@ if i32.const 0 i32.const 448 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1120,7 +1120,7 @@ if i32.const 0 i32.const 448 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1191,18 +1191,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1217,17 +1218,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1251,10 +1253,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1265,13 +1267,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1285,18 +1287,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1364,7 +1366,7 @@ if i32.const 0 i32.const 448 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1693,7 +1695,7 @@ if i32.const 112 i32.const 448 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1795,7 +1797,7 @@ if i32.const 0 i32.const 448 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1866,7 +1868,7 @@ if i32.const 0 i32.const 448 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1922,13 +1924,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1957,25 +1958,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1991,6 +1997,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2023,7 +2031,7 @@ if i32.const 0 i32.const 448 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2138,7 +2146,7 @@ if i32.const 0 i32.const 448 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2158,7 +2166,7 @@ if i32.const 0 i32.const 448 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/2707.release.wat b/tests/compiler/issues/2707.release.wat index 9ca1161cf6..aba32c1ada 100644 --- a/tests/compiler/issues/2707.release.wat +++ b/tests/compiler/issues/2707.release.wat @@ -256,7 +256,7 @@ if i32.const 0 i32.const 1472 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -270,7 +270,7 @@ if i32.const 0 i32.const 1472 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -316,7 +316,7 @@ if i32.const 0 i32.const 1472 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -399,7 +399,7 @@ if i32.const 0 i32.const 1472 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -413,7 +413,7 @@ if i32.const 0 i32.const 1472 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -474,7 +474,7 @@ if i32.const 0 i32.const 1472 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -507,7 +507,7 @@ if i32.const 0 i32.const 1472 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -522,7 +522,7 @@ if i32.const 0 i32.const 1472 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -573,7 +573,7 @@ if i32.const 0 i32.const 1472 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -645,7 +645,7 @@ if i32.const 0 i32.const 1472 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -670,7 +670,7 @@ if i32.const 0 i32.const 1472 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -697,7 +697,7 @@ if i32.const 0 i32.const 1472 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1060,7 +1060,7 @@ if i32.const 0 i32.const 1472 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1126,7 +1126,7 @@ if i32.const 0 i32.const 1472 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1221,8 +1221,6 @@ i32.shl i32.const 65579 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1258,7 +1256,7 @@ if i32.const 0 i32.const 1472 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1273,7 +1271,7 @@ if i32.const 0 i32.const 1472 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/2873.debug.wat b/tests/compiler/issues/2873.debug.wat index bcb0349a4e..1f50d95e3d 100644 --- a/tests/compiler/issues/2873.debug.wat +++ b/tests/compiler/issues/2873.debug.wat @@ -2046,7 +2046,7 @@ if i32.const 0 i32.const 1904 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -2066,7 +2066,7 @@ if i32.const 0 i32.const 1904 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -2129,7 +2129,7 @@ if i32.const 0 i32.const 1904 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -2282,7 +2282,7 @@ if i32.const 0 i32.const 1904 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -2299,7 +2299,7 @@ if i32.const 0 i32.const 1904 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -2388,7 +2388,7 @@ if i32.const 0 i32.const 1904 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -2431,7 +2431,7 @@ if i32.const 0 i32.const 1904 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -2449,7 +2449,7 @@ if i32.const 0 i32.const 1904 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -2517,7 +2517,7 @@ if i32.const 0 i32.const 1904 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -2634,7 +2634,7 @@ if i32.const 0 i32.const 1904 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -2680,7 +2680,7 @@ if i32.const 0 i32.const 1904 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -2712,7 +2712,7 @@ if i32.const 0 i32.const 1904 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -2783,18 +2783,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -2809,17 +2810,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -2843,10 +2845,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -2857,13 +2859,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -2877,18 +2879,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -2956,7 +2958,7 @@ if i32.const 0 i32.const 1904 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -3285,7 +3287,7 @@ if i32.const 1568 i32.const 1904 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -3387,7 +3389,7 @@ if i32.const 0 i32.const 1904 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -3458,7 +3460,7 @@ if i32.const 0 i32.const 1904 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -3514,13 +3516,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -3549,25 +3550,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -3583,6 +3589,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -3615,7 +3623,7 @@ if i32.const 0 i32.const 1904 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -3730,7 +3738,7 @@ if i32.const 0 i32.const 1904 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -3750,7 +3758,7 @@ if i32.const 0 i32.const 1904 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/issues/2873.release.wat b/tests/compiler/issues/2873.release.wat index aba1809221..e713f1cba9 100644 --- a/tests/compiler/issues/2873.release.wat +++ b/tests/compiler/issues/2873.release.wat @@ -1463,7 +1463,7 @@ if i32.const 0 i32.const 2928 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -1477,7 +1477,7 @@ if i32.const 0 i32.const 2928 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -1523,7 +1523,7 @@ if i32.const 0 i32.const 2928 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -1606,7 +1606,7 @@ if i32.const 0 i32.const 2928 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -1620,7 +1620,7 @@ if i32.const 0 i32.const 2928 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -1681,7 +1681,7 @@ if i32.const 0 i32.const 2928 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1714,7 +1714,7 @@ if i32.const 0 i32.const 2928 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1729,7 +1729,7 @@ if i32.const 0 i32.const 2928 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1780,7 +1780,7 @@ if i32.const 0 i32.const 2928 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1852,7 +1852,7 @@ if i32.const 0 i32.const 2928 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1877,7 +1877,7 @@ if i32.const 0 i32.const 2928 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1904,7 +1904,7 @@ if i32.const 0 i32.const 2928 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -2267,7 +2267,7 @@ if i32.const 0 i32.const 2928 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -2352,7 +2352,7 @@ if i32.const 0 i32.const 2928 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -2404,7 +2404,7 @@ if i32.const 0 i32.const 2928 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2502,7 +2502,7 @@ if i32.const 2592 i32.const 2928 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -2566,8 +2566,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -2604,7 +2602,7 @@ if i32.const 0 i32.const 2928 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2619,7 +2617,7 @@ if i32.const 0 i32.const 2928 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -2638,7 +2636,7 @@ if i32.const 0 i32.const 2928 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/logical.debug.wat b/tests/compiler/logical.debug.wat index c5d2e58444..c13fd5df6f 100644 --- a/tests/compiler/logical.debug.wat +++ b/tests/compiler/logical.debug.wat @@ -474,7 +474,7 @@ if i32.const 0 i32.const 416 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -494,7 +494,7 @@ if i32.const 0 i32.const 416 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -557,7 +557,7 @@ if i32.const 0 i32.const 416 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -710,7 +710,7 @@ if i32.const 0 i32.const 416 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -727,7 +727,7 @@ if i32.const 0 i32.const 416 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -816,7 +816,7 @@ if i32.const 0 i32.const 416 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -859,7 +859,7 @@ if i32.const 0 i32.const 416 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -877,7 +877,7 @@ if i32.const 0 i32.const 416 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -945,7 +945,7 @@ if i32.const 0 i32.const 416 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1062,7 +1062,7 @@ if i32.const 0 i32.const 416 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1108,7 +1108,7 @@ if i32.const 0 i32.const 416 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1140,7 +1140,7 @@ if i32.const 0 i32.const 416 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1211,18 +1211,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1237,17 +1238,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1271,10 +1273,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1285,13 +1287,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1305,18 +1307,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1384,7 +1386,7 @@ if i32.const 0 i32.const 416 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1713,7 +1715,7 @@ if i32.const 80 i32.const 416 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1815,7 +1817,7 @@ if i32.const 0 i32.const 416 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1886,7 +1888,7 @@ if i32.const 0 i32.const 416 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1942,13 +1944,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1977,25 +1978,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2011,6 +2017,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2043,7 +2051,7 @@ if i32.const 0 i32.const 416 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2158,7 +2166,7 @@ if i32.const 0 i32.const 416 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2178,7 +2186,7 @@ if i32.const 0 i32.const 416 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/logical.release.wat b/tests/compiler/logical.release.wat index 6bd42c186f..c4e09d7c7b 100644 --- a/tests/compiler/logical.release.wat +++ b/tests/compiler/logical.release.wat @@ -259,7 +259,7 @@ if i32.const 0 i32.const 1440 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -273,7 +273,7 @@ if i32.const 0 i32.const 1440 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -319,7 +319,7 @@ if i32.const 0 i32.const 1440 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -402,7 +402,7 @@ if i32.const 0 i32.const 1440 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -416,7 +416,7 @@ if i32.const 0 i32.const 1440 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -477,7 +477,7 @@ if i32.const 0 i32.const 1440 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -510,7 +510,7 @@ if i32.const 0 i32.const 1440 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -525,7 +525,7 @@ if i32.const 0 i32.const 1440 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -576,7 +576,7 @@ if i32.const 0 i32.const 1440 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -648,7 +648,7 @@ if i32.const 0 i32.const 1440 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -673,7 +673,7 @@ if i32.const 0 i32.const 1440 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -700,7 +700,7 @@ if i32.const 0 i32.const 1440 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1063,7 +1063,7 @@ if i32.const 0 i32.const 1440 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1129,7 +1129,7 @@ if i32.const 0 i32.const 1440 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1224,8 +1224,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1261,7 +1259,7 @@ if i32.const 0 i32.const 1440 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1276,7 +1274,7 @@ if i32.const 0 i32.const 1440 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/lowMemoryLimit/less-than-64k-error.debug.wat b/tests/compiler/lowMemoryLimit/less-than-64k-error.debug.wat new file mode 100644 index 0000000000..02d08105af --- /dev/null +++ b/tests/compiler/lowMemoryLimit/less-than-64k-error.debug.wat @@ -0,0 +1,1585 @@ +(module + (type $0 (func (param i32) (result i32))) + (type $1 (func (param i32 i32))) + (type $2 (func)) + (type $3 (func (param i32 i32) (result i32))) + (type $4 (func (param i32 i32 i32 i32))) + (type $5 (func (param i32 i32 i64) (result i32))) + (type $6 (func (param i32 i32 i32))) + (import "env" "abort" (func $~lib/builtins/abort (param i32 i32 i32 i32))) + (global $~lib/rt/tlsf/ROOT (mut i32) (i32.const 0)) + (global $~lib/native/ASC_LOW_MEMORY_LIMIT i32 (i32.const 4096)) + (global $~lib/memory/__data_end i32 (i32.const 140)) + (global $~lib/memory/__stack_pointer (mut i32) (i32.const 268)) + (global $~lib/memory/__heap_base i32 (i32.const 268)) + (memory $0 1) + (data $0 (i32.const 12) "<\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") + (data $1 (i32.const 76) "<\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") + (table $0 1 1 funcref) + (elem $0 (i32.const 1)) + (export "memory" (memory $0)) + (start $~start) + (func $~lib/rt/tlsf/Root#set:flMap (param $this i32) (param $flMap i32) + local.get $this + local.get $flMap + i32.store + ) + (func $~lib/rt/common/BLOCK#get:mmInfo (param $this i32) (result i32) + local.get $this + i32.load + ) + (func $~lib/rt/common/BLOCK#set:mmInfo (param $this i32) (param $mmInfo i32) + local.get $this + local.get $mmInfo + i32.store + ) + (func $~lib/rt/tlsf/Block#set:prev (param $this i32) (param $prev i32) + local.get $this + local.get $prev + i32.store offset=4 + ) + (func $~lib/rt/tlsf/Block#set:next (param $this i32) (param $next i32) + local.get $this + local.get $next + i32.store offset=8 + ) + (func $~lib/rt/tlsf/Block#get:prev (param $this i32) (result i32) + local.get $this + i32.load offset=4 + ) + (func $~lib/rt/tlsf/Block#get:next (param $this i32) (result i32) + local.get $this + i32.load offset=8 + ) + (func $~lib/rt/tlsf/Root#get:flMap (param $this i32) (result i32) + local.get $this + i32.load + ) + (func $~lib/rt/tlsf/removeBlock (param $root i32) (param $block i32) + (local $blockInfo i32) + (local $size i32) + (local $fl i32) + (local $sl i32) + (local $6 i32) + (local $7 i32) + (local $boundedSize i32) + (local $prev i32) + (local $next i32) + (local $root|11 i32) + (local $fl|12 i32) + (local $sl|13 i32) + (local $root|14 i32) + (local $fl|15 i32) + (local $sl|16 i32) + (local $head i32) + (local $root|18 i32) + (local $fl|19 i32) + (local $slMap i32) + (local $root|21 i32) + (local $fl|22 i32) + (local $slMap|23 i32) + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $blockInfo + i32.const 1 + drop + local.get $blockInfo + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 273 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.set $size + i32.const 1 + drop + local.get $size + i32.const 12 + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 275 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $size + i32.const 256 + i32.lt_u + if + i32.const 0 + local.set $fl + local.get $size + i32.const 4 + i32.shr_u + local.set $sl + else + local.get $size + local.tee $6 + i32.const 1073741820 + local.tee $7 + local.get $6 + local.get $7 + i32.lt_u + select + local.set $boundedSize + i32.const 31 + local.get $boundedSize + i32.clz + i32.sub + local.set $fl + local.get $boundedSize + local.get $fl + i32.const 4 + i32.sub + i32.shr_u + i32.const 1 + i32.const 4 + i32.shl + i32.xor + local.set $sl + local.get $fl + i32.const 8 + i32.const 1 + i32.sub + i32.sub + local.set $fl + end + i32.const 1 + drop + local.get $fl + i32.const 23 + i32.lt_u + if (result i32) + local.get $sl + i32.const 16 + i32.lt_u + else + i32.const 0 + end + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 289 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $block + call $~lib/rt/tlsf/Block#get:prev + local.set $prev + local.get $block + call $~lib/rt/tlsf/Block#get:next + local.set $next + local.get $prev + if + local.get $prev + local.get $next + call $~lib/rt/tlsf/Block#set:next + end + local.get $next + if + local.get $next + local.get $prev + call $~lib/rt/tlsf/Block#set:prev + end + local.get $block + block $~lib/rt/tlsf/GETHEAD|inlined.0 (result i32) + local.get $root + local.set $root|11 + local.get $fl + local.set $fl|12 + local.get $sl + local.set $sl|13 + local.get $root|11 + local.get $fl|12 + i32.const 4 + i32.shl + local.get $sl|13 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.0 + end + i32.eq + if + local.get $root + local.set $root|14 + local.get $fl + local.set $fl|15 + local.get $sl + local.set $sl|16 + local.get $next + local.set $head + local.get $root|14 + local.get $fl|15 + i32.const 4 + i32.shl + local.get $sl|16 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $head + i32.store offset=96 + local.get $next + i32.eqz + if + block $~lib/rt/tlsf/GETSL|inlined.0 (result i32) + local.get $root + local.set $root|18 + local.get $fl + local.set $fl|19 + local.get $root|18 + local.get $fl|19 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.0 + end + local.set $slMap + local.get $root + local.set $root|21 + local.get $fl + local.set $fl|22 + local.get $slMap + i32.const 1 + local.get $sl + i32.shl + i32.const -1 + i32.xor + i32.and + local.tee $slMap + local.set $slMap|23 + local.get $root|21 + local.get $fl|22 + i32.const 2 + i32.shl + i32.add + local.get $slMap|23 + i32.store offset=4 + local.get $slMap + i32.eqz + if + local.get $root + local.get $root + call $~lib/rt/tlsf/Root#get:flMap + i32.const 1 + local.get $fl + i32.shl + i32.const -1 + i32.xor + i32.and + call $~lib/rt/tlsf/Root#set:flMap + end + end + end + ) + (func $~lib/rt/tlsf/insertBlock (param $root i32) (param $block i32) + (local $blockInfo i32) + (local $block|3 i32) + (local $right i32) + (local $rightInfo i32) + (local $block|6 i32) + (local $block|7 i32) + (local $left i32) + (local $leftInfo i32) + (local $size i32) + (local $fl i32) + (local $sl i32) + (local $13 i32) + (local $14 i32) + (local $boundedSize i32) + (local $root|16 i32) + (local $fl|17 i32) + (local $sl|18 i32) + (local $head i32) + (local $root|20 i32) + (local $fl|21 i32) + (local $sl|22 i32) + (local $head|23 i32) + (local $root|24 i32) + (local $fl|25 i32) + (local $root|26 i32) + (local $fl|27 i32) + (local $slMap i32) + i32.const 1 + drop + local.get $block + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 206 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $blockInfo + i32.const 1 + drop + local.get $blockInfo + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 208 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETRIGHT|inlined.0 (result i32) + local.get $block + local.set $block|3 + local.get $block|3 + i32.const 4 + i32.add + local.get $block|3 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.0 + end + local.set $right + local.get $right + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $rightInfo + local.get $rightInfo + i32.const 1 + i32.and + if + local.get $root + local.get $right + call $~lib/rt/tlsf/removeBlock + local.get $block + local.get $blockInfo + i32.const 4 + i32.add + local.get $rightInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + local.tee $blockInfo + call $~lib/rt/common/BLOCK#set:mmInfo + block $~lib/rt/tlsf/GETRIGHT|inlined.1 (result i32) + local.get $block + local.set $block|6 + local.get $block|6 + i32.const 4 + i32.add + local.get $block|6 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.1 + end + local.set $right + local.get $right + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $rightInfo + end + local.get $blockInfo + i32.const 2 + i32.and + if + block $~lib/rt/tlsf/GETFREELEFT|inlined.0 (result i32) + local.get $block + local.set $block|7 + local.get $block|7 + i32.const 4 + i32.sub + i32.load + br $~lib/rt/tlsf/GETFREELEFT|inlined.0 + end + local.set $left + local.get $left + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $leftInfo + i32.const 1 + drop + local.get $leftInfo + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 226 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $root + local.get $left + call $~lib/rt/tlsf/removeBlock + local.get $left + local.set $block + local.get $block + local.get $leftInfo + i32.const 4 + i32.add + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + local.tee $blockInfo + call $~lib/rt/common/BLOCK#set:mmInfo + end + local.get $right + local.get $rightInfo + i32.const 2 + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.set $size + i32.const 1 + drop + local.get $size + i32.const 12 + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 238 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + i32.const 1 + drop + local.get $block + i32.const 4 + i32.add + local.get $size + i32.add + local.get $right + i32.eq + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 239 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $right + i32.const 4 + i32.sub + local.get $block + i32.store + local.get $size + i32.const 256 + i32.lt_u + if + i32.const 0 + local.set $fl + local.get $size + i32.const 4 + i32.shr_u + local.set $sl + else + local.get $size + local.tee $13 + i32.const 1073741820 + local.tee $14 + local.get $13 + local.get $14 + i32.lt_u + select + local.set $boundedSize + i32.const 31 + local.get $boundedSize + i32.clz + i32.sub + local.set $fl + local.get $boundedSize + local.get $fl + i32.const 4 + i32.sub + i32.shr_u + i32.const 1 + i32.const 4 + i32.shl + i32.xor + local.set $sl + local.get $fl + i32.const 8 + i32.const 1 + i32.sub + i32.sub + local.set $fl + end + i32.const 1 + drop + local.get $fl + i32.const 23 + i32.lt_u + if (result i32) + local.get $sl + i32.const 16 + i32.lt_u + else + i32.const 0 + end + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 256 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETHEAD|inlined.1 (result i32) + local.get $root + local.set $root|16 + local.get $fl + local.set $fl|17 + local.get $sl + local.set $sl|18 + local.get $root|16 + local.get $fl|17 + i32.const 4 + i32.shl + local.get $sl|18 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.1 + end + local.set $head + local.get $block + i32.const 0 + call $~lib/rt/tlsf/Block#set:prev + local.get $block + local.get $head + call $~lib/rt/tlsf/Block#set:next + local.get $head + if + local.get $head + local.get $block + call $~lib/rt/tlsf/Block#set:prev + end + local.get $root + local.set $root|20 + local.get $fl + local.set $fl|21 + local.get $sl + local.set $sl|22 + local.get $block + local.set $head|23 + local.get $root|20 + local.get $fl|21 + i32.const 4 + i32.shl + local.get $sl|22 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $head|23 + i32.store offset=96 + local.get $root + local.get $root + call $~lib/rt/tlsf/Root#get:flMap + i32.const 1 + local.get $fl + i32.shl + i32.or + call $~lib/rt/tlsf/Root#set:flMap + local.get $root + local.set $root|26 + local.get $fl + local.set $fl|27 + block $~lib/rt/tlsf/GETSL|inlined.1 (result i32) + local.get $root + local.set $root|24 + local.get $fl + local.set $fl|25 + local.get $root|24 + local.get $fl|25 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.1 + end + i32.const 1 + local.get $sl + i32.shl + i32.or + local.set $slMap + local.get $root|26 + local.get $fl|27 + i32.const 2 + i32.shl + i32.add + local.get $slMap + i32.store offset=4 + ) + (func $~lib/rt/tlsf/addMemory (param $root i32) (param $start i32) (param $endU64 i64) (result i32) + (local $end i32) + (local $root|4 i32) + (local $tail i32) + (local $tailInfo i32) + (local $size i32) + (local $leftSize i32) + (local $left i32) + (local $root|10 i32) + (local $tail|11 i32) + local.get $endU64 + i32.wrap_i64 + local.set $end + i32.const 1 + drop + local.get $start + i64.extend_i32_u + local.get $endU64 + i64.le_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 387 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $start + i32.const 4 + i32.add + i32.const 15 + i32.add + i32.const 15 + i32.const -1 + i32.xor + i32.and + i32.const 4 + i32.sub + local.set $start + local.get $end + i32.const 15 + i32.const -1 + i32.xor + i32.and + local.set $end + block $~lib/rt/tlsf/GETTAIL|inlined.0 (result i32) + local.get $root + local.set $root|4 + local.get $root|4 + i32.load offset=1568 + br $~lib/rt/tlsf/GETTAIL|inlined.0 + end + local.set $tail + i32.const 0 + local.set $tailInfo + local.get $tail + if + i32.const 1 + drop + local.get $start + local.get $tail + i32.const 4 + i32.add + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 394 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $start + i32.const 16 + i32.sub + local.get $tail + i32.eq + if + local.get $start + i32.const 16 + i32.sub + local.set $start + local.get $tail + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $tailInfo + else + end + else + i32.const 1 + drop + local.get $start + local.get $root + i32.const 1572 + i32.add + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 407 + i32.const 5 + call $~lib/builtins/abort + unreachable + end + end + local.get $end + local.get $start + i32.sub + local.set $size + local.get $size + i32.const 4 + i32.const 12 + i32.add + i32.const 4 + i32.add + i32.lt_u + if + i32.const 0 + return + end + local.get $size + i32.const 2 + i32.const 4 + i32.mul + i32.sub + local.set $leftSize + local.get $start + local.set $left + local.get $left + local.get $leftSize + i32.const 1 + i32.or + local.get $tailInfo + i32.const 2 + i32.and + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $left + i32.const 0 + call $~lib/rt/tlsf/Block#set:prev + local.get $left + i32.const 0 + call $~lib/rt/tlsf/Block#set:next + local.get $start + i32.const 4 + i32.add + local.get $leftSize + i32.add + local.set $tail + local.get $tail + i32.const 0 + i32.const 2 + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $root + local.set $root|10 + local.get $tail + local.set $tail|11 + local.get $root|10 + local.get $tail|11 + i32.store offset=1568 + local.get $root + local.get $left + call $~lib/rt/tlsf/insertBlock + i32.const 1 + return + ) + (func $~lib/rt/tlsf/initialize + (local $rootOffset i32) + (local $pagesBefore i32) + (local $size i32) + (local $pagesNeeded i32) + (local $root i32) + (local $root|5 i32) + (local $tail i32) + (local $fl i32) + (local $root|8 i32) + (local $fl|9 i32) + (local $slMap i32) + (local $sl i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) + (local $head i32) + (local $memStart i32) + (local $17 i64) + (local $18 i64) + (local $limitedEnd i64) + i32.const 0 + drop + global.get $~lib/memory/__heap_base + i32.const 15 + i32.add + i32.const 15 + i32.const -1 + i32.xor + i32.and + local.set $rootOffset + memory.size + local.set $pagesBefore + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end + local.set $pagesNeeded + local.get $pagesNeeded + local.get $pagesBefore + i32.gt_s + if (result i32) + local.get $pagesNeeded + local.get $pagesBefore + i32.sub + memory.grow + i32.const 0 + i32.lt_s + else + i32.const 0 + end + if + unreachable + end + local.get $rootOffset + local.set $root + local.get $root + i32.const 0 + call $~lib/rt/tlsf/Root#set:flMap + local.get $root + local.set $root|5 + i32.const 0 + local.set $tail + local.get $root|5 + local.get $tail + i32.store offset=1568 + i32.const 0 + local.set $fl + loop $for-loop|0 + local.get $fl + i32.const 23 + i32.lt_u + if + local.get $root + local.set $root|8 + local.get $fl + local.set $fl|9 + i32.const 0 + local.set $slMap + local.get $root|8 + local.get $fl|9 + i32.const 2 + i32.shl + i32.add + local.get $slMap + i32.store offset=4 + i32.const 0 + local.set $sl + loop $for-loop|1 + local.get $sl + i32.const 16 + i32.lt_u + if + local.get $root + local.set $root|12 + local.get $fl + local.set $fl|13 + local.get $sl + local.set $sl|14 + i32.const 0 + local.set $head + local.get $root|12 + local.get $fl|13 + i32.const 4 + i32.shl + local.get $sl|14 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $head + i32.store offset=96 + local.get $sl + i32.const 1 + i32.add + local.set $sl + br $for-loop|1 + end + end + local.get $fl + i32.const 1 + i32.add + local.set $fl + br $for-loop|0 + end + end + local.get $rootOffset + i32.const 1572 + i32.add + local.set $memStart + i32.const 4096 + drop + memory.size + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $17 + i32.const 4096 + i64.extend_i32_s + i32.const 15 + i32.const -1 + i32.xor + i64.extend_i32_u + i64.and + local.tee $18 + local.get $17 + local.get $18 + i64.lt_u + select + local.set $limitedEnd + local.get $memStart + i64.extend_i32_u + local.get $limitedEnd + i64.gt_u + if + unreachable + end + local.get $root + local.get $memStart + local.get $limitedEnd + call $~lib/rt/tlsf/addMemory + drop + local.get $root + global.set $~lib/rt/tlsf/ROOT + ) + (func $~lib/rt/tlsf/computeSize (param $size i32) (result i32) + local.get $size + i32.const 12 + i32.le_u + if (result i32) + i32.const 12 + else + local.get $size + i32.const 4 + i32.add + i32.const 15 + i32.add + i32.const 15 + i32.const -1 + i32.xor + i32.and + i32.const 4 + i32.sub + end + return + ) + (func $~lib/rt/tlsf/prepareSize (param $size i32) (result i32) + local.get $size + i32.const 1073741820 + i32.gt_u + if + i32.const 96 + i32.const 32 + i32.const 472 + i32.const 29 + call $~lib/builtins/abort + unreachable + end + local.get $size + call $~lib/rt/tlsf/computeSize + return + ) + (func $~lib/rt/tlsf/roundSize (param $size i32) (result i32) + local.get $size + i32.const 536870910 + i32.lt_u + if (result i32) + local.get $size + i32.const 1 + i32.const 27 + local.get $size + i32.clz + i32.sub + i32.shl + i32.add + i32.const 1 + i32.sub + else + local.get $size + end + return + ) + (func $~lib/rt/tlsf/searchBlock (param $root i32) (param $size i32) (result i32) + (local $fl i32) + (local $sl i32) + (local $requestSize i32) + (local $root|5 i32) + (local $fl|6 i32) + (local $slMap i32) + (local $head i32) + (local $flMap i32) + (local $root|10 i32) + (local $fl|11 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) + (local $root|15 i32) + (local $fl|16 i32) + (local $sl|17 i32) + local.get $size + i32.const 256 + i32.lt_u + if + i32.const 0 + local.set $fl + local.get $size + i32.const 4 + i32.shr_u + local.set $sl + else + local.get $size + call $~lib/rt/tlsf/roundSize + local.set $requestSize + i32.const 4 + i32.const 8 + i32.mul + i32.const 1 + i32.sub + local.get $requestSize + i32.clz + i32.sub + local.set $fl + local.get $requestSize + local.get $fl + i32.const 4 + i32.sub + i32.shr_u + i32.const 1 + i32.const 4 + i32.shl + i32.xor + local.set $sl + local.get $fl + i32.const 8 + i32.const 1 + i32.sub + i32.sub + local.set $fl + end + i32.const 1 + drop + local.get $fl + i32.const 23 + i32.lt_u + if (result i32) + local.get $sl + i32.const 16 + i32.lt_u + else + i32.const 0 + end + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 339 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETSL|inlined.2 (result i32) + local.get $root + local.set $root|5 + local.get $fl + local.set $fl|6 + local.get $root|5 + local.get $fl|6 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.2 + end + i32.const 0 + i32.const -1 + i32.xor + local.get $sl + i32.shl + i32.and + local.set $slMap + i32.const 0 + local.set $head + local.get $slMap + i32.eqz + if + local.get $root + call $~lib/rt/tlsf/Root#get:flMap + i32.const 0 + i32.const -1 + i32.xor + local.get $fl + i32.const 1 + i32.add + i32.shl + i32.and + local.set $flMap + local.get $flMap + i32.eqz + if + i32.const 0 + local.set $head + else + local.get $flMap + i32.ctz + local.set $fl + block $~lib/rt/tlsf/GETSL|inlined.3 (result i32) + local.get $root + local.set $root|10 + local.get $fl + local.set $fl|11 + local.get $root|10 + local.get $fl|11 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.3 + end + local.set $slMap + i32.const 1 + drop + local.get $slMap + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 352 + i32.const 18 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETHEAD|inlined.2 (result i32) + local.get $root + local.set $root|12 + local.get $fl + local.set $fl|13 + local.get $slMap + i32.ctz + local.set $sl|14 + local.get $root|12 + local.get $fl|13 + i32.const 4 + i32.shl + local.get $sl|14 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.2 + end + local.set $head + end + else + block $~lib/rt/tlsf/GETHEAD|inlined.3 (result i32) + local.get $root + local.set $root|15 + local.get $fl + local.set $fl|16 + local.get $slMap + i32.ctz + local.set $sl|17 + local.get $root|15 + local.get $fl|16 + i32.const 4 + i32.shl + local.get $sl|17 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.3 + end + local.set $head + end + local.get $head + return + ) + (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) + (local $pagesBefore i32) + (local $root|3 i32) + (local $size|4 i32) + (local $pagesNeeded i32) + (local $6 i32) + (local $7 i32) + (local $pagesWanted i32) + (local $size|9 i32) + (local $10 i32) + (local $11 i32) + (local $pagesAfter i32) + (local $13 i64) + (local $14 i64) + local.get $size + i32.const 256 + i32.ge_u + if + local.get $size + call $~lib/rt/tlsf/roundSize + local.set $size + end + memory.size + local.set $pagesBefore + local.get $size + i32.const 4 + local.get $pagesBefore + i32.const 16 + i32.shl + i32.const 4 + i32.sub + block $~lib/rt/tlsf/GETTAIL|inlined.1 (result i32) + local.get $root + local.set $root|3 + local.get $root|3 + i32.load offset=1568 + br $~lib/rt/tlsf/GETTAIL|inlined.1 + end + i32.ne + i32.shl + i32.add + local.set $size + i32.const 4096 + drop + local.get $pagesBefore + i32.const 16 + i32.shl + local.get $size + i32.add + i32.const 4096 + i32.gt_u + if + unreachable + end + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end + local.set $pagesNeeded + local.get $pagesBefore + local.tee $6 + local.get $pagesNeeded + local.tee $7 + local.get $6 + local.get $7 + i32.gt_s + select + local.set $pagesWanted + i32.const 4096 + drop + local.get $pagesWanted + local.tee $10 + block $~lib/rt/tlsf/sizeRoundToPage|inlined.2 (result i32) + i32.const 4096 + local.set $size|9 + local.get $size|9 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.2 + end + local.get $pagesBefore + i32.sub + local.tee $11 + local.get $10 + local.get $11 + i32.lt_s + select + local.set $pagesWanted + local.get $pagesWanted + memory.grow + i32.const 0 + i32.lt_s + if + local.get $pagesNeeded + memory.grow + i32.const 0 + i32.lt_s + if + unreachable + end + end + memory.size + local.set $pagesAfter + i32.const 4096 + drop + local.get $root + local.get $pagesBefore + i32.const 16 + i32.shl + local.get $pagesAfter + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $13 + i32.const 4096 + i64.extend_i32_s + i32.const 15 + i32.const -1 + i32.xor + i64.extend_i32_u + i64.and + local.tee $14 + local.get $13 + local.get $14 + i64.lt_u + select + call $~lib/rt/tlsf/addMemory + drop + ) + (func $~lib/rt/tlsf/prepareBlock (param $root i32) (param $block i32) (param $size i32) + (local $blockInfo i32) + (local $remaining i32) + (local $spare i32) + (local $block|6 i32) + (local $block|7 i32) + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $blockInfo + i32.const 1 + drop + local.get $size + i32.const 4 + i32.add + i32.const 15 + i32.and + i32.eqz + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 366 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.get $size + i32.sub + local.set $remaining + local.get $remaining + i32.const 4 + i32.const 12 + i32.add + i32.ge_u + if + local.get $block + local.get $size + local.get $blockInfo + i32.const 2 + i32.and + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $block + i32.const 4 + i32.add + local.get $size + i32.add + local.set $spare + local.get $spare + local.get $remaining + i32.const 4 + i32.sub + i32.const 1 + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $root + local.get $spare + call $~lib/rt/tlsf/insertBlock + else + local.get $block + local.get $blockInfo + i32.const 1 + i32.const -1 + i32.xor + i32.and + call $~lib/rt/common/BLOCK#set:mmInfo + block $~lib/rt/tlsf/GETRIGHT|inlined.3 (result i32) + local.get $block + local.set $block|7 + local.get $block|7 + i32.const 4 + i32.add + local.get $block|7 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.3 + end + block $~lib/rt/tlsf/GETRIGHT|inlined.2 (result i32) + local.get $block + local.set $block|6 + local.get $block|6 + i32.const 4 + i32.add + local.get $block|6 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.2 + end + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 2 + i32.const -1 + i32.xor + i32.and + call $~lib/rt/common/BLOCK#set:mmInfo + end + ) + (func $~lib/rt/tlsf/allocateBlock (param $root i32) (param $size i32) (result i32) + (local $payloadSize i32) + (local $block i32) + local.get $size + call $~lib/rt/tlsf/prepareSize + local.set $payloadSize + local.get $root + local.get $payloadSize + call $~lib/rt/tlsf/searchBlock + local.set $block + local.get $block + i32.eqz + if + local.get $root + local.get $payloadSize + call $~lib/rt/tlsf/growMemory + local.get $root + local.get $payloadSize + call $~lib/rt/tlsf/searchBlock + local.set $block + i32.const 1 + drop + local.get $block + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 510 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + end + i32.const 1 + drop + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.get $payloadSize + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 512 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $root + local.get $block + call $~lib/rt/tlsf/removeBlock + local.get $root + local.get $block + local.get $payloadSize + call $~lib/rt/tlsf/prepareBlock + i32.const 0 + drop + local.get $block + return + ) + (func $~lib/rt/tlsf/__alloc (param $size i32) (result i32) + global.get $~lib/rt/tlsf/ROOT + i32.eqz + if + call $~lib/rt/tlsf/initialize + end + global.get $~lib/rt/tlsf/ROOT + local.get $size + call $~lib/rt/tlsf/allocateBlock + i32.const 4 + i32.add + return + ) + (func $start:lowMemoryLimit/less-than-64k-error + i32.const 4096 + call $~lib/rt/tlsf/__alloc + drop + ) + (func $~start + call $start:lowMemoryLimit/less-than-64k-error + ) +) diff --git a/tests/compiler/lowMemoryLimit/less-than-64k-error.json b/tests/compiler/lowMemoryLimit/less-than-64k-error.json new file mode 100644 index 0000000000..8cd0673c95 --- /dev/null +++ b/tests/compiler/lowMemoryLimit/less-than-64k-error.json @@ -0,0 +1,7 @@ +{ + "asc_flags": [ + "--lowMemoryLimit", "4096", + "--stackSize", "128" + ], + "expectedFailed": true +} diff --git a/tests/compiler/lowMemoryLimit/less-than-64k-error.release.wat b/tests/compiler/lowMemoryLimit/less-than-64k-error.release.wat new file mode 100644 index 0000000000..9cb8fad66b --- /dev/null +++ b/tests/compiler/lowMemoryLimit/less-than-64k-error.release.wat @@ -0,0 +1,844 @@ +(module + (type $0 (func (param i32 i32))) + (type $1 (func)) + (type $2 (func (param i32 i32 i32 i32))) + (type $3 (func (param i32 i32 i64))) + (type $4 (func (param i32) (result i32))) + (import "env" "abort" (func $~lib/builtins/abort (param i32 i32 i32 i32))) + (global $~lib/rt/tlsf/ROOT (mut i32) (i32.const 0)) + (memory $0 1) + (data $0 (i32.const 12) "<") + (data $0.1 (i32.const 24) "\02\00\00\00\1e\00\00\00~\00l\00i\00b\00/\00r\00t\00/\00t\00l\00s\00f\00.\00t\00s") + (data $1 (i32.const 76) "<") + (data $1.1 (i32.const 88) "\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") + (export "memory" (memory $0)) + (start $~start) + (func $~lib/rt/tlsf/removeBlock (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + local.get $1 + i32.load + local.tee $3 + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 273 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $3 + i32.const -4 + i32.and + local.tee $3 + i32.const 12 + i32.lt_u + if + i32.const 0 + i32.const 32 + i32.const 275 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $3 + i32.const 256 + i32.lt_u + if (result i32) + local.get $3 + i32.const 4 + i32.shr_u + else + i32.const 31 + i32.const 1073741820 + local.get $3 + local.get $3 + i32.const 1073741820 + i32.ge_u + select + local.tee $3 + i32.clz + i32.sub + local.tee $4 + i32.const 7 + i32.sub + local.set $2 + local.get $3 + local.get $4 + i32.const 4 + i32.sub + i32.shr_u + i32.const 16 + i32.xor + end + local.tee $3 + i32.const 16 + i32.lt_u + local.get $2 + i32.const 23 + i32.lt_u + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 289 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.load offset=8 + local.set $5 + local.get $1 + i32.load offset=4 + local.tee $4 + if + local.get $4 + local.get $5 + i32.store offset=8 + end + local.get $5 + if + local.get $5 + local.get $4 + i32.store offset=4 + end + local.get $1 + local.get $0 + local.get $2 + i32.const 4 + i32.shl + local.get $3 + i32.add + i32.const 2 + i32.shl + i32.add + local.tee $1 + i32.load offset=96 + i32.eq + if + local.get $1 + local.get $5 + i32.store offset=96 + local.get $5 + i32.eqz + if + local.get $0 + local.get $2 + i32.const 2 + i32.shl + i32.add + local.tee $1 + i32.load offset=4 + i32.const -2 + local.get $3 + i32.rotl + i32.and + local.set $3 + local.get $1 + local.get $3 + i32.store offset=4 + local.get $3 + i32.eqz + if + local.get $0 + local.get $0 + i32.load + i32.const -2 + local.get $2 + i32.rotl + i32.and + i32.store + end + end + end + ) + (func $~lib/rt/tlsf/insertBlock (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + local.get $1 + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 206 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.load + local.tee $3 + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 208 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.const 4 + i32.add + local.get $1 + i32.load + i32.const -4 + i32.and + i32.add + local.tee $4 + i32.load + local.tee $2 + i32.const 1 + i32.and + if + local.get $0 + local.get $4 + call $~lib/rt/tlsf/removeBlock + local.get $1 + local.get $3 + i32.const 4 + i32.add + local.get $2 + i32.const -4 + i32.and + i32.add + local.tee $3 + i32.store + local.get $1 + i32.const 4 + i32.add + local.get $1 + i32.load + i32.const -4 + i32.and + i32.add + local.tee $4 + i32.load + local.set $2 + end + local.get $3 + i32.const 2 + i32.and + if + local.get $1 + i32.const 4 + i32.sub + i32.load + local.tee $1 + i32.load + local.tee $6 + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 226 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $0 + local.get $1 + call $~lib/rt/tlsf/removeBlock + local.get $1 + local.get $6 + i32.const 4 + i32.add + local.get $3 + i32.const -4 + i32.and + i32.add + local.tee $3 + i32.store + end + local.get $4 + local.get $2 + i32.const 2 + i32.or + i32.store + local.get $3 + i32.const -4 + i32.and + local.tee $2 + i32.const 12 + i32.lt_u + if + i32.const 0 + i32.const 32 + i32.const 238 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $4 + local.get $1 + i32.const 4 + i32.add + local.get $2 + i32.add + i32.ne + if + i32.const 0 + i32.const 32 + i32.const 239 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $4 + i32.const 4 + i32.sub + local.get $1 + i32.store + local.get $2 + i32.const 256 + i32.lt_u + if (result i32) + local.get $2 + i32.const 4 + i32.shr_u + else + i32.const 31 + i32.const 1073741820 + local.get $2 + local.get $2 + i32.const 1073741820 + i32.ge_u + select + local.tee $2 + i32.clz + i32.sub + local.tee $3 + i32.const 7 + i32.sub + local.set $5 + local.get $2 + local.get $3 + i32.const 4 + i32.sub + i32.shr_u + i32.const 16 + i32.xor + end + local.tee $2 + i32.const 16 + i32.lt_u + local.get $5 + i32.const 23 + i32.lt_u + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 256 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $0 + local.get $5 + i32.const 4 + i32.shl + local.get $2 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + local.set $3 + local.get $1 + i32.const 0 + i32.store offset=4 + local.get $1 + local.get $3 + i32.store offset=8 + local.get $3 + if + local.get $3 + local.get $1 + i32.store offset=4 + end + local.get $0 + local.get $5 + i32.const 4 + i32.shl + local.get $2 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $1 + i32.store offset=96 + local.get $0 + local.get $0 + i32.load + i32.const 1 + local.get $5 + i32.shl + i32.or + i32.store + local.get $0 + local.get $5 + i32.const 2 + i32.shl + i32.add + local.tee $0 + local.get $0 + i32.load offset=4 + i32.const 1 + local.get $2 + i32.shl + i32.or + i32.store offset=4 + ) + (func $~lib/rt/tlsf/addMemory (param $0 i32) (param $1 i32) (param $2 i64) + (local $3 i32) + (local $4 i32) + (local $5 i32) + local.get $2 + local.get $1 + i64.extend_i32_u + i64.lt_u + if + i32.const 0 + i32.const 32 + i32.const 387 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.const 19 + i32.add + i32.const -16 + i32.and + i32.const 4 + i32.sub + local.set $1 + local.get $0 + i32.load offset=1568 + local.tee $3 + if + local.get $3 + i32.const 4 + i32.add + local.get $1 + i32.gt_u + if + i32.const 0 + i32.const 32 + i32.const 394 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $3 + local.get $1 + i32.const 16 + i32.sub + local.tee $5 + i32.eq + if + local.get $3 + i32.load + local.set $4 + local.get $5 + local.set $1 + end + else + local.get $0 + i32.const 1572 + i32.add + local.get $1 + i32.gt_u + if + i32.const 0 + i32.const 32 + i32.const 407 + i32.const 5 + call $~lib/builtins/abort + unreachable + end + end + local.get $2 + i32.wrap_i64 + i32.const -16 + i32.and + local.get $1 + i32.sub + local.tee $3 + i32.const 20 + i32.lt_u + if + return + end + local.get $1 + local.get $4 + i32.const 2 + i32.and + local.get $3 + i32.const 8 + i32.sub + local.tee $3 + i32.const 1 + i32.or + i32.or + i32.store + local.get $1 + i32.const 0 + i32.store offset=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $1 + i32.const 4 + i32.add + local.get $3 + i32.add + local.tee $3 + i32.const 2 + i32.store + local.get $0 + local.get $3 + i32.store offset=1568 + local.get $0 + local.get $1 + call $~lib/rt/tlsf/insertBlock + ) + (func $~lib/rt/tlsf/searchBlock (param $0 i32) (result i32) + (local $1 i32) + (local $2 i32) + local.get $0 + i32.const 20 + i32.add + i32.load offset=4 + i32.const -2 + i32.and + local.tee $1 + if (result i32) + local.get $0 + local.get $1 + i32.ctz + i32.const 80 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + else + local.get $0 + i32.load + i32.const -64 + i32.and + local.tee $1 + if (result i32) + local.get $0 + local.get $1 + i32.ctz + local.tee $2 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + local.tee $1 + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 352 + i32.const 18 + call $~lib/builtins/abort + unreachable + end + local.get $0 + local.get $1 + i32.ctz + local.get $2 + i32.const 4 + i32.shl + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + else + i32.const 0 + end + end + ) + (func $start:lowMemoryLimit/less-than-64k-error + (local $0 i32) + (local $1 i32) + (local $2 i64) + (local $3 i32) + (local $4 i32) + (local $5 i32) + global.get $~lib/rt/tlsf/ROOT + i32.eqz + if + memory.size + local.tee $1 + i32.const 0 + i32.le_s + if (result i32) + i32.const 1 + local.get $1 + i32.sub + memory.grow + i32.const 0 + i32.lt_s + else + i32.const 0 + end + if + unreachable + end + i32.const 272 + i32.const 0 + i32.store + i32.const 1840 + i32.const 0 + i32.store + loop $for-loop|0 + local.get $0 + i32.const 23 + i32.lt_u + if + local.get $0 + i32.const 2 + i32.shl + i32.const 272 + i32.add + i32.const 0 + i32.store offset=4 + i32.const 0 + local.set $1 + loop $for-loop|1 + local.get $1 + i32.const 16 + i32.lt_u + if + local.get $0 + i32.const 4 + i32.shl + local.get $1 + i32.add + i32.const 2 + i32.shl + i32.const 272 + i32.add + i32.const 0 + i32.store offset=96 + local.get $1 + i32.const 1 + i32.add + local.set $1 + br $for-loop|1 + end + end + local.get $0 + i32.const 1 + i32.add + local.set $0 + br $for-loop|0 + end + end + i64.const 4096 + memory.size + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $2 + local.get $2 + i64.const 4096 + i64.ge_u + select + local.tee $2 + i64.const 1844 + i64.lt_u + if + unreachable + end + i32.const 272 + i32.const 1844 + local.get $2 + call $~lib/rt/tlsf/addMemory + i32.const 272 + global.set $~lib/rt/tlsf/ROOT + end + global.get $~lib/rt/tlsf/ROOT + local.tee $1 + call $~lib/rt/tlsf/searchBlock + local.tee $0 + i32.eqz + if + memory.size + local.tee $3 + i32.const 16 + i32.shl + local.tee $0 + i32.const 4 + local.get $1 + i32.load offset=1568 + local.get $0 + i32.const 4 + i32.sub + i32.ne + i32.shl + i32.const 4363 + i32.add + local.tee $0 + i32.add + i32.const 4096 + i32.gt_u + if + unreachable + end + local.get $3 + local.get $0 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + local.tee $4 + local.get $3 + local.get $4 + i32.gt_s + select + local.tee $0 + i32.const 1 + local.get $3 + i32.sub + local.tee $5 + local.get $0 + local.get $5 + i32.lt_s + select + memory.grow + i32.const 0 + i32.lt_s + if + local.get $4 + memory.grow + i32.const 0 + i32.lt_s + if + unreachable + end + end + local.get $1 + local.get $3 + i32.const 16 + i32.shl + i64.const 4096 + memory.size + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $2 + local.get $2 + i64.const 4096 + i64.ge_u + select + call $~lib/rt/tlsf/addMemory + local.get $1 + call $~lib/rt/tlsf/searchBlock + local.tee $0 + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 510 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + end + local.get $0 + i32.load + i32.const -4 + i32.and + i32.const 4108 + i32.lt_u + if + i32.const 0 + i32.const 32 + i32.const 512 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + local.get $0 + call $~lib/rt/tlsf/removeBlock + local.get $0 + i32.load + local.tee $3 + i32.const -4 + i32.and + i32.const 4108 + i32.sub + local.tee $4 + i32.const 16 + i32.ge_u + if + local.get $0 + local.get $3 + i32.const 2 + i32.and + i32.const 4108 + i32.or + i32.store + local.get $0 + i32.const 4112 + i32.add + local.tee $0 + local.get $4 + i32.const 4 + i32.sub + i32.const 1 + i32.or + i32.store + local.get $1 + local.get $0 + call $~lib/rt/tlsf/insertBlock + else + local.get $0 + local.get $3 + i32.const -2 + i32.and + i32.store + local.get $0 + i32.const 4 + i32.add + local.get $0 + i32.load + i32.const -4 + i32.and + i32.add + local.tee $0 + local.get $0 + i32.load + i32.const -3 + i32.and + i32.store + end + ) + (func $~start + call $start:lowMemoryLimit/less-than-64k-error + ) +) diff --git a/tests/compiler/lowMemoryLimit/less-than-64k-error.ts b/tests/compiler/lowMemoryLimit/less-than-64k-error.ts new file mode 100644 index 0000000000..4c225f42a1 --- /dev/null +++ b/tests/compiler/lowMemoryLimit/less-than-64k-error.ts @@ -0,0 +1 @@ +__alloc(4096) diff --git a/tests/compiler/lowMemoryLimit/less-than-64k.debug.wat b/tests/compiler/lowMemoryLimit/less-than-64k.debug.wat new file mode 100644 index 0000000000..625904a6a0 --- /dev/null +++ b/tests/compiler/lowMemoryLimit/less-than-64k.debug.wat @@ -0,0 +1,1585 @@ +(module + (type $0 (func (param i32) (result i32))) + (type $1 (func (param i32 i32))) + (type $2 (func)) + (type $3 (func (param i32 i32) (result i32))) + (type $4 (func (param i32 i32 i32 i32))) + (type $5 (func (param i32 i32 i64) (result i32))) + (type $6 (func (param i32 i32 i32))) + (import "env" "abort" (func $~lib/builtins/abort (param i32 i32 i32 i32))) + (global $~lib/rt/tlsf/ROOT (mut i32) (i32.const 0)) + (global $~lib/native/ASC_LOW_MEMORY_LIMIT i32 (i32.const 4096)) + (global $~lib/memory/__data_end i32 (i32.const 140)) + (global $~lib/memory/__stack_pointer (mut i32) (i32.const 268)) + (global $~lib/memory/__heap_base i32 (i32.const 268)) + (memory $0 1) + (data $0 (i32.const 12) "<\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") + (data $1 (i32.const 76) "<\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") + (table $0 1 1 funcref) + (elem $0 (i32.const 1)) + (export "memory" (memory $0)) + (start $~start) + (func $~lib/rt/tlsf/Root#set:flMap (param $this i32) (param $flMap i32) + local.get $this + local.get $flMap + i32.store + ) + (func $~lib/rt/common/BLOCK#get:mmInfo (param $this i32) (result i32) + local.get $this + i32.load + ) + (func $~lib/rt/common/BLOCK#set:mmInfo (param $this i32) (param $mmInfo i32) + local.get $this + local.get $mmInfo + i32.store + ) + (func $~lib/rt/tlsf/Block#set:prev (param $this i32) (param $prev i32) + local.get $this + local.get $prev + i32.store offset=4 + ) + (func $~lib/rt/tlsf/Block#set:next (param $this i32) (param $next i32) + local.get $this + local.get $next + i32.store offset=8 + ) + (func $~lib/rt/tlsf/Block#get:prev (param $this i32) (result i32) + local.get $this + i32.load offset=4 + ) + (func $~lib/rt/tlsf/Block#get:next (param $this i32) (result i32) + local.get $this + i32.load offset=8 + ) + (func $~lib/rt/tlsf/Root#get:flMap (param $this i32) (result i32) + local.get $this + i32.load + ) + (func $~lib/rt/tlsf/removeBlock (param $root i32) (param $block i32) + (local $blockInfo i32) + (local $size i32) + (local $fl i32) + (local $sl i32) + (local $6 i32) + (local $7 i32) + (local $boundedSize i32) + (local $prev i32) + (local $next i32) + (local $root|11 i32) + (local $fl|12 i32) + (local $sl|13 i32) + (local $root|14 i32) + (local $fl|15 i32) + (local $sl|16 i32) + (local $head i32) + (local $root|18 i32) + (local $fl|19 i32) + (local $slMap i32) + (local $root|21 i32) + (local $fl|22 i32) + (local $slMap|23 i32) + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $blockInfo + i32.const 1 + drop + local.get $blockInfo + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 273 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.set $size + i32.const 1 + drop + local.get $size + i32.const 12 + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 275 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $size + i32.const 256 + i32.lt_u + if + i32.const 0 + local.set $fl + local.get $size + i32.const 4 + i32.shr_u + local.set $sl + else + local.get $size + local.tee $6 + i32.const 1073741820 + local.tee $7 + local.get $6 + local.get $7 + i32.lt_u + select + local.set $boundedSize + i32.const 31 + local.get $boundedSize + i32.clz + i32.sub + local.set $fl + local.get $boundedSize + local.get $fl + i32.const 4 + i32.sub + i32.shr_u + i32.const 1 + i32.const 4 + i32.shl + i32.xor + local.set $sl + local.get $fl + i32.const 8 + i32.const 1 + i32.sub + i32.sub + local.set $fl + end + i32.const 1 + drop + local.get $fl + i32.const 23 + i32.lt_u + if (result i32) + local.get $sl + i32.const 16 + i32.lt_u + else + i32.const 0 + end + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 289 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $block + call $~lib/rt/tlsf/Block#get:prev + local.set $prev + local.get $block + call $~lib/rt/tlsf/Block#get:next + local.set $next + local.get $prev + if + local.get $prev + local.get $next + call $~lib/rt/tlsf/Block#set:next + end + local.get $next + if + local.get $next + local.get $prev + call $~lib/rt/tlsf/Block#set:prev + end + local.get $block + block $~lib/rt/tlsf/GETHEAD|inlined.0 (result i32) + local.get $root + local.set $root|11 + local.get $fl + local.set $fl|12 + local.get $sl + local.set $sl|13 + local.get $root|11 + local.get $fl|12 + i32.const 4 + i32.shl + local.get $sl|13 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.0 + end + i32.eq + if + local.get $root + local.set $root|14 + local.get $fl + local.set $fl|15 + local.get $sl + local.set $sl|16 + local.get $next + local.set $head + local.get $root|14 + local.get $fl|15 + i32.const 4 + i32.shl + local.get $sl|16 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $head + i32.store offset=96 + local.get $next + i32.eqz + if + block $~lib/rt/tlsf/GETSL|inlined.0 (result i32) + local.get $root + local.set $root|18 + local.get $fl + local.set $fl|19 + local.get $root|18 + local.get $fl|19 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.0 + end + local.set $slMap + local.get $root + local.set $root|21 + local.get $fl + local.set $fl|22 + local.get $slMap + i32.const 1 + local.get $sl + i32.shl + i32.const -1 + i32.xor + i32.and + local.tee $slMap + local.set $slMap|23 + local.get $root|21 + local.get $fl|22 + i32.const 2 + i32.shl + i32.add + local.get $slMap|23 + i32.store offset=4 + local.get $slMap + i32.eqz + if + local.get $root + local.get $root + call $~lib/rt/tlsf/Root#get:flMap + i32.const 1 + local.get $fl + i32.shl + i32.const -1 + i32.xor + i32.and + call $~lib/rt/tlsf/Root#set:flMap + end + end + end + ) + (func $~lib/rt/tlsf/insertBlock (param $root i32) (param $block i32) + (local $blockInfo i32) + (local $block|3 i32) + (local $right i32) + (local $rightInfo i32) + (local $block|6 i32) + (local $block|7 i32) + (local $left i32) + (local $leftInfo i32) + (local $size i32) + (local $fl i32) + (local $sl i32) + (local $13 i32) + (local $14 i32) + (local $boundedSize i32) + (local $root|16 i32) + (local $fl|17 i32) + (local $sl|18 i32) + (local $head i32) + (local $root|20 i32) + (local $fl|21 i32) + (local $sl|22 i32) + (local $head|23 i32) + (local $root|24 i32) + (local $fl|25 i32) + (local $root|26 i32) + (local $fl|27 i32) + (local $slMap i32) + i32.const 1 + drop + local.get $block + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 206 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $blockInfo + i32.const 1 + drop + local.get $blockInfo + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 208 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETRIGHT|inlined.0 (result i32) + local.get $block + local.set $block|3 + local.get $block|3 + i32.const 4 + i32.add + local.get $block|3 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.0 + end + local.set $right + local.get $right + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $rightInfo + local.get $rightInfo + i32.const 1 + i32.and + if + local.get $root + local.get $right + call $~lib/rt/tlsf/removeBlock + local.get $block + local.get $blockInfo + i32.const 4 + i32.add + local.get $rightInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + local.tee $blockInfo + call $~lib/rt/common/BLOCK#set:mmInfo + block $~lib/rt/tlsf/GETRIGHT|inlined.1 (result i32) + local.get $block + local.set $block|6 + local.get $block|6 + i32.const 4 + i32.add + local.get $block|6 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.1 + end + local.set $right + local.get $right + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $rightInfo + end + local.get $blockInfo + i32.const 2 + i32.and + if + block $~lib/rt/tlsf/GETFREELEFT|inlined.0 (result i32) + local.get $block + local.set $block|7 + local.get $block|7 + i32.const 4 + i32.sub + i32.load + br $~lib/rt/tlsf/GETFREELEFT|inlined.0 + end + local.set $left + local.get $left + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $leftInfo + i32.const 1 + drop + local.get $leftInfo + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 226 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $root + local.get $left + call $~lib/rt/tlsf/removeBlock + local.get $left + local.set $block + local.get $block + local.get $leftInfo + i32.const 4 + i32.add + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + local.tee $blockInfo + call $~lib/rt/common/BLOCK#set:mmInfo + end + local.get $right + local.get $rightInfo + i32.const 2 + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.set $size + i32.const 1 + drop + local.get $size + i32.const 12 + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 238 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + i32.const 1 + drop + local.get $block + i32.const 4 + i32.add + local.get $size + i32.add + local.get $right + i32.eq + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 239 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $right + i32.const 4 + i32.sub + local.get $block + i32.store + local.get $size + i32.const 256 + i32.lt_u + if + i32.const 0 + local.set $fl + local.get $size + i32.const 4 + i32.shr_u + local.set $sl + else + local.get $size + local.tee $13 + i32.const 1073741820 + local.tee $14 + local.get $13 + local.get $14 + i32.lt_u + select + local.set $boundedSize + i32.const 31 + local.get $boundedSize + i32.clz + i32.sub + local.set $fl + local.get $boundedSize + local.get $fl + i32.const 4 + i32.sub + i32.shr_u + i32.const 1 + i32.const 4 + i32.shl + i32.xor + local.set $sl + local.get $fl + i32.const 8 + i32.const 1 + i32.sub + i32.sub + local.set $fl + end + i32.const 1 + drop + local.get $fl + i32.const 23 + i32.lt_u + if (result i32) + local.get $sl + i32.const 16 + i32.lt_u + else + i32.const 0 + end + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 256 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETHEAD|inlined.1 (result i32) + local.get $root + local.set $root|16 + local.get $fl + local.set $fl|17 + local.get $sl + local.set $sl|18 + local.get $root|16 + local.get $fl|17 + i32.const 4 + i32.shl + local.get $sl|18 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.1 + end + local.set $head + local.get $block + i32.const 0 + call $~lib/rt/tlsf/Block#set:prev + local.get $block + local.get $head + call $~lib/rt/tlsf/Block#set:next + local.get $head + if + local.get $head + local.get $block + call $~lib/rt/tlsf/Block#set:prev + end + local.get $root + local.set $root|20 + local.get $fl + local.set $fl|21 + local.get $sl + local.set $sl|22 + local.get $block + local.set $head|23 + local.get $root|20 + local.get $fl|21 + i32.const 4 + i32.shl + local.get $sl|22 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $head|23 + i32.store offset=96 + local.get $root + local.get $root + call $~lib/rt/tlsf/Root#get:flMap + i32.const 1 + local.get $fl + i32.shl + i32.or + call $~lib/rt/tlsf/Root#set:flMap + local.get $root + local.set $root|26 + local.get $fl + local.set $fl|27 + block $~lib/rt/tlsf/GETSL|inlined.1 (result i32) + local.get $root + local.set $root|24 + local.get $fl + local.set $fl|25 + local.get $root|24 + local.get $fl|25 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.1 + end + i32.const 1 + local.get $sl + i32.shl + i32.or + local.set $slMap + local.get $root|26 + local.get $fl|27 + i32.const 2 + i32.shl + i32.add + local.get $slMap + i32.store offset=4 + ) + (func $~lib/rt/tlsf/addMemory (param $root i32) (param $start i32) (param $endU64 i64) (result i32) + (local $end i32) + (local $root|4 i32) + (local $tail i32) + (local $tailInfo i32) + (local $size i32) + (local $leftSize i32) + (local $left i32) + (local $root|10 i32) + (local $tail|11 i32) + local.get $endU64 + i32.wrap_i64 + local.set $end + i32.const 1 + drop + local.get $start + i64.extend_i32_u + local.get $endU64 + i64.le_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 387 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $start + i32.const 4 + i32.add + i32.const 15 + i32.add + i32.const 15 + i32.const -1 + i32.xor + i32.and + i32.const 4 + i32.sub + local.set $start + local.get $end + i32.const 15 + i32.const -1 + i32.xor + i32.and + local.set $end + block $~lib/rt/tlsf/GETTAIL|inlined.0 (result i32) + local.get $root + local.set $root|4 + local.get $root|4 + i32.load offset=1568 + br $~lib/rt/tlsf/GETTAIL|inlined.0 + end + local.set $tail + i32.const 0 + local.set $tailInfo + local.get $tail + if + i32.const 1 + drop + local.get $start + local.get $tail + i32.const 4 + i32.add + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 394 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $start + i32.const 16 + i32.sub + local.get $tail + i32.eq + if + local.get $start + i32.const 16 + i32.sub + local.set $start + local.get $tail + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $tailInfo + else + end + else + i32.const 1 + drop + local.get $start + local.get $root + i32.const 1572 + i32.add + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 407 + i32.const 5 + call $~lib/builtins/abort + unreachable + end + end + local.get $end + local.get $start + i32.sub + local.set $size + local.get $size + i32.const 4 + i32.const 12 + i32.add + i32.const 4 + i32.add + i32.lt_u + if + i32.const 0 + return + end + local.get $size + i32.const 2 + i32.const 4 + i32.mul + i32.sub + local.set $leftSize + local.get $start + local.set $left + local.get $left + local.get $leftSize + i32.const 1 + i32.or + local.get $tailInfo + i32.const 2 + i32.and + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $left + i32.const 0 + call $~lib/rt/tlsf/Block#set:prev + local.get $left + i32.const 0 + call $~lib/rt/tlsf/Block#set:next + local.get $start + i32.const 4 + i32.add + local.get $leftSize + i32.add + local.set $tail + local.get $tail + i32.const 0 + i32.const 2 + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $root + local.set $root|10 + local.get $tail + local.set $tail|11 + local.get $root|10 + local.get $tail|11 + i32.store offset=1568 + local.get $root + local.get $left + call $~lib/rt/tlsf/insertBlock + i32.const 1 + return + ) + (func $~lib/rt/tlsf/initialize + (local $rootOffset i32) + (local $pagesBefore i32) + (local $size i32) + (local $pagesNeeded i32) + (local $root i32) + (local $root|5 i32) + (local $tail i32) + (local $fl i32) + (local $root|8 i32) + (local $fl|9 i32) + (local $slMap i32) + (local $sl i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) + (local $head i32) + (local $memStart i32) + (local $17 i64) + (local $18 i64) + (local $limitedEnd i64) + i32.const 0 + drop + global.get $~lib/memory/__heap_base + i32.const 15 + i32.add + i32.const 15 + i32.const -1 + i32.xor + i32.and + local.set $rootOffset + memory.size + local.set $pagesBefore + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end + local.set $pagesNeeded + local.get $pagesNeeded + local.get $pagesBefore + i32.gt_s + if (result i32) + local.get $pagesNeeded + local.get $pagesBefore + i32.sub + memory.grow + i32.const 0 + i32.lt_s + else + i32.const 0 + end + if + unreachable + end + local.get $rootOffset + local.set $root + local.get $root + i32.const 0 + call $~lib/rt/tlsf/Root#set:flMap + local.get $root + local.set $root|5 + i32.const 0 + local.set $tail + local.get $root|5 + local.get $tail + i32.store offset=1568 + i32.const 0 + local.set $fl + loop $for-loop|0 + local.get $fl + i32.const 23 + i32.lt_u + if + local.get $root + local.set $root|8 + local.get $fl + local.set $fl|9 + i32.const 0 + local.set $slMap + local.get $root|8 + local.get $fl|9 + i32.const 2 + i32.shl + i32.add + local.get $slMap + i32.store offset=4 + i32.const 0 + local.set $sl + loop $for-loop|1 + local.get $sl + i32.const 16 + i32.lt_u + if + local.get $root + local.set $root|12 + local.get $fl + local.set $fl|13 + local.get $sl + local.set $sl|14 + i32.const 0 + local.set $head + local.get $root|12 + local.get $fl|13 + i32.const 4 + i32.shl + local.get $sl|14 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $head + i32.store offset=96 + local.get $sl + i32.const 1 + i32.add + local.set $sl + br $for-loop|1 + end + end + local.get $fl + i32.const 1 + i32.add + local.set $fl + br $for-loop|0 + end + end + local.get $rootOffset + i32.const 1572 + i32.add + local.set $memStart + i32.const 4096 + drop + memory.size + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $17 + i32.const 4096 + i64.extend_i32_s + i32.const 15 + i32.const -1 + i32.xor + i64.extend_i32_u + i64.and + local.tee $18 + local.get $17 + local.get $18 + i64.lt_u + select + local.set $limitedEnd + local.get $memStart + i64.extend_i32_u + local.get $limitedEnd + i64.gt_u + if + unreachable + end + local.get $root + local.get $memStart + local.get $limitedEnd + call $~lib/rt/tlsf/addMemory + drop + local.get $root + global.set $~lib/rt/tlsf/ROOT + ) + (func $~lib/rt/tlsf/computeSize (param $size i32) (result i32) + local.get $size + i32.const 12 + i32.le_u + if (result i32) + i32.const 12 + else + local.get $size + i32.const 4 + i32.add + i32.const 15 + i32.add + i32.const 15 + i32.const -1 + i32.xor + i32.and + i32.const 4 + i32.sub + end + return + ) + (func $~lib/rt/tlsf/prepareSize (param $size i32) (result i32) + local.get $size + i32.const 1073741820 + i32.gt_u + if + i32.const 96 + i32.const 32 + i32.const 472 + i32.const 29 + call $~lib/builtins/abort + unreachable + end + local.get $size + call $~lib/rt/tlsf/computeSize + return + ) + (func $~lib/rt/tlsf/roundSize (param $size i32) (result i32) + local.get $size + i32.const 536870910 + i32.lt_u + if (result i32) + local.get $size + i32.const 1 + i32.const 27 + local.get $size + i32.clz + i32.sub + i32.shl + i32.add + i32.const 1 + i32.sub + else + local.get $size + end + return + ) + (func $~lib/rt/tlsf/searchBlock (param $root i32) (param $size i32) (result i32) + (local $fl i32) + (local $sl i32) + (local $requestSize i32) + (local $root|5 i32) + (local $fl|6 i32) + (local $slMap i32) + (local $head i32) + (local $flMap i32) + (local $root|10 i32) + (local $fl|11 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) + (local $root|15 i32) + (local $fl|16 i32) + (local $sl|17 i32) + local.get $size + i32.const 256 + i32.lt_u + if + i32.const 0 + local.set $fl + local.get $size + i32.const 4 + i32.shr_u + local.set $sl + else + local.get $size + call $~lib/rt/tlsf/roundSize + local.set $requestSize + i32.const 4 + i32.const 8 + i32.mul + i32.const 1 + i32.sub + local.get $requestSize + i32.clz + i32.sub + local.set $fl + local.get $requestSize + local.get $fl + i32.const 4 + i32.sub + i32.shr_u + i32.const 1 + i32.const 4 + i32.shl + i32.xor + local.set $sl + local.get $fl + i32.const 8 + i32.const 1 + i32.sub + i32.sub + local.set $fl + end + i32.const 1 + drop + local.get $fl + i32.const 23 + i32.lt_u + if (result i32) + local.get $sl + i32.const 16 + i32.lt_u + else + i32.const 0 + end + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 339 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETSL|inlined.2 (result i32) + local.get $root + local.set $root|5 + local.get $fl + local.set $fl|6 + local.get $root|5 + local.get $fl|6 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.2 + end + i32.const 0 + i32.const -1 + i32.xor + local.get $sl + i32.shl + i32.and + local.set $slMap + i32.const 0 + local.set $head + local.get $slMap + i32.eqz + if + local.get $root + call $~lib/rt/tlsf/Root#get:flMap + i32.const 0 + i32.const -1 + i32.xor + local.get $fl + i32.const 1 + i32.add + i32.shl + i32.and + local.set $flMap + local.get $flMap + i32.eqz + if + i32.const 0 + local.set $head + else + local.get $flMap + i32.ctz + local.set $fl + block $~lib/rt/tlsf/GETSL|inlined.3 (result i32) + local.get $root + local.set $root|10 + local.get $fl + local.set $fl|11 + local.get $root|10 + local.get $fl|11 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.3 + end + local.set $slMap + i32.const 1 + drop + local.get $slMap + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 352 + i32.const 18 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETHEAD|inlined.2 (result i32) + local.get $root + local.set $root|12 + local.get $fl + local.set $fl|13 + local.get $slMap + i32.ctz + local.set $sl|14 + local.get $root|12 + local.get $fl|13 + i32.const 4 + i32.shl + local.get $sl|14 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.2 + end + local.set $head + end + else + block $~lib/rt/tlsf/GETHEAD|inlined.3 (result i32) + local.get $root + local.set $root|15 + local.get $fl + local.set $fl|16 + local.get $slMap + i32.ctz + local.set $sl|17 + local.get $root|15 + local.get $fl|16 + i32.const 4 + i32.shl + local.get $sl|17 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.3 + end + local.set $head + end + local.get $head + return + ) + (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) + (local $pagesBefore i32) + (local $root|3 i32) + (local $size|4 i32) + (local $pagesNeeded i32) + (local $6 i32) + (local $7 i32) + (local $pagesWanted i32) + (local $size|9 i32) + (local $10 i32) + (local $11 i32) + (local $pagesAfter i32) + (local $13 i64) + (local $14 i64) + local.get $size + i32.const 256 + i32.ge_u + if + local.get $size + call $~lib/rt/tlsf/roundSize + local.set $size + end + memory.size + local.set $pagesBefore + local.get $size + i32.const 4 + local.get $pagesBefore + i32.const 16 + i32.shl + i32.const 4 + i32.sub + block $~lib/rt/tlsf/GETTAIL|inlined.1 (result i32) + local.get $root + local.set $root|3 + local.get $root|3 + i32.load offset=1568 + br $~lib/rt/tlsf/GETTAIL|inlined.1 + end + i32.ne + i32.shl + i32.add + local.set $size + i32.const 4096 + drop + local.get $pagesBefore + i32.const 16 + i32.shl + local.get $size + i32.add + i32.const 4096 + i32.gt_u + if + unreachable + end + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end + local.set $pagesNeeded + local.get $pagesBefore + local.tee $6 + local.get $pagesNeeded + local.tee $7 + local.get $6 + local.get $7 + i32.gt_s + select + local.set $pagesWanted + i32.const 4096 + drop + local.get $pagesWanted + local.tee $10 + block $~lib/rt/tlsf/sizeRoundToPage|inlined.2 (result i32) + i32.const 4096 + local.set $size|9 + local.get $size|9 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.2 + end + local.get $pagesBefore + i32.sub + local.tee $11 + local.get $10 + local.get $11 + i32.lt_s + select + local.set $pagesWanted + local.get $pagesWanted + memory.grow + i32.const 0 + i32.lt_s + if + local.get $pagesNeeded + memory.grow + i32.const 0 + i32.lt_s + if + unreachable + end + end + memory.size + local.set $pagesAfter + i32.const 4096 + drop + local.get $root + local.get $pagesBefore + i32.const 16 + i32.shl + local.get $pagesAfter + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $13 + i32.const 4096 + i64.extend_i32_s + i32.const 15 + i32.const -1 + i32.xor + i64.extend_i32_u + i64.and + local.tee $14 + local.get $13 + local.get $14 + i64.lt_u + select + call $~lib/rt/tlsf/addMemory + drop + ) + (func $~lib/rt/tlsf/prepareBlock (param $root i32) (param $block i32) (param $size i32) + (local $blockInfo i32) + (local $remaining i32) + (local $spare i32) + (local $block|6 i32) + (local $block|7 i32) + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $blockInfo + i32.const 1 + drop + local.get $size + i32.const 4 + i32.add + i32.const 15 + i32.and + i32.eqz + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 366 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.get $size + i32.sub + local.set $remaining + local.get $remaining + i32.const 4 + i32.const 12 + i32.add + i32.ge_u + if + local.get $block + local.get $size + local.get $blockInfo + i32.const 2 + i32.and + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $block + i32.const 4 + i32.add + local.get $size + i32.add + local.set $spare + local.get $spare + local.get $remaining + i32.const 4 + i32.sub + i32.const 1 + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $root + local.get $spare + call $~lib/rt/tlsf/insertBlock + else + local.get $block + local.get $blockInfo + i32.const 1 + i32.const -1 + i32.xor + i32.and + call $~lib/rt/common/BLOCK#set:mmInfo + block $~lib/rt/tlsf/GETRIGHT|inlined.3 (result i32) + local.get $block + local.set $block|7 + local.get $block|7 + i32.const 4 + i32.add + local.get $block|7 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.3 + end + block $~lib/rt/tlsf/GETRIGHT|inlined.2 (result i32) + local.get $block + local.set $block|6 + local.get $block|6 + i32.const 4 + i32.add + local.get $block|6 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.2 + end + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 2 + i32.const -1 + i32.xor + i32.and + call $~lib/rt/common/BLOCK#set:mmInfo + end + ) + (func $~lib/rt/tlsf/allocateBlock (param $root i32) (param $size i32) (result i32) + (local $payloadSize i32) + (local $block i32) + local.get $size + call $~lib/rt/tlsf/prepareSize + local.set $payloadSize + local.get $root + local.get $payloadSize + call $~lib/rt/tlsf/searchBlock + local.set $block + local.get $block + i32.eqz + if + local.get $root + local.get $payloadSize + call $~lib/rt/tlsf/growMemory + local.get $root + local.get $payloadSize + call $~lib/rt/tlsf/searchBlock + local.set $block + i32.const 1 + drop + local.get $block + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 510 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + end + i32.const 1 + drop + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.get $payloadSize + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 512 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $root + local.get $block + call $~lib/rt/tlsf/removeBlock + local.get $root + local.get $block + local.get $payloadSize + call $~lib/rt/tlsf/prepareBlock + i32.const 0 + drop + local.get $block + return + ) + (func $~lib/rt/tlsf/__alloc (param $size i32) (result i32) + global.get $~lib/rt/tlsf/ROOT + i32.eqz + if + call $~lib/rt/tlsf/initialize + end + global.get $~lib/rt/tlsf/ROOT + local.get $size + call $~lib/rt/tlsf/allocateBlock + i32.const 4 + i32.add + return + ) + (func $start:lowMemoryLimit/less-than-64k + i32.const 1024 + call $~lib/rt/tlsf/__alloc + drop + ) + (func $~start + call $start:lowMemoryLimit/less-than-64k + ) +) diff --git a/tests/compiler/lowMemoryLimit/less-than-64k.json b/tests/compiler/lowMemoryLimit/less-than-64k.json new file mode 100644 index 0000000000..e82e9f8ed4 --- /dev/null +++ b/tests/compiler/lowMemoryLimit/less-than-64k.json @@ -0,0 +1,6 @@ +{ + "asc_flags": [ + "--lowMemoryLimit", "4096", + "--stackSize", "128" + ] +} diff --git a/tests/compiler/lowMemoryLimit/less-than-64k.release.wat b/tests/compiler/lowMemoryLimit/less-than-64k.release.wat new file mode 100644 index 0000000000..66b95baf98 --- /dev/null +++ b/tests/compiler/lowMemoryLimit/less-than-64k.release.wat @@ -0,0 +1,844 @@ +(module + (type $0 (func (param i32 i32))) + (type $1 (func)) + (type $2 (func (param i32 i32 i32 i32))) + (type $3 (func (param i32 i32 i64))) + (type $4 (func (param i32) (result i32))) + (import "env" "abort" (func $~lib/builtins/abort (param i32 i32 i32 i32))) + (global $~lib/rt/tlsf/ROOT (mut i32) (i32.const 0)) + (memory $0 1) + (data $0 (i32.const 12) "<") + (data $0.1 (i32.const 24) "\02\00\00\00\1e\00\00\00~\00l\00i\00b\00/\00r\00t\00/\00t\00l\00s\00f\00.\00t\00s") + (data $1 (i32.const 76) "<") + (data $1.1 (i32.const 88) "\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") + (export "memory" (memory $0)) + (start $~start) + (func $~lib/rt/tlsf/removeBlock (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + local.get $1 + i32.load + local.tee $3 + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 273 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $3 + i32.const -4 + i32.and + local.tee $3 + i32.const 12 + i32.lt_u + if + i32.const 0 + i32.const 32 + i32.const 275 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $3 + i32.const 256 + i32.lt_u + if (result i32) + local.get $3 + i32.const 4 + i32.shr_u + else + i32.const 31 + i32.const 1073741820 + local.get $3 + local.get $3 + i32.const 1073741820 + i32.ge_u + select + local.tee $3 + i32.clz + i32.sub + local.tee $4 + i32.const 7 + i32.sub + local.set $2 + local.get $3 + local.get $4 + i32.const 4 + i32.sub + i32.shr_u + i32.const 16 + i32.xor + end + local.tee $3 + i32.const 16 + i32.lt_u + local.get $2 + i32.const 23 + i32.lt_u + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 289 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.load offset=8 + local.set $5 + local.get $1 + i32.load offset=4 + local.tee $4 + if + local.get $4 + local.get $5 + i32.store offset=8 + end + local.get $5 + if + local.get $5 + local.get $4 + i32.store offset=4 + end + local.get $1 + local.get $0 + local.get $2 + i32.const 4 + i32.shl + local.get $3 + i32.add + i32.const 2 + i32.shl + i32.add + local.tee $1 + i32.load offset=96 + i32.eq + if + local.get $1 + local.get $5 + i32.store offset=96 + local.get $5 + i32.eqz + if + local.get $0 + local.get $2 + i32.const 2 + i32.shl + i32.add + local.tee $1 + i32.load offset=4 + i32.const -2 + local.get $3 + i32.rotl + i32.and + local.set $3 + local.get $1 + local.get $3 + i32.store offset=4 + local.get $3 + i32.eqz + if + local.get $0 + local.get $0 + i32.load + i32.const -2 + local.get $2 + i32.rotl + i32.and + i32.store + end + end + end + ) + (func $~lib/rt/tlsf/insertBlock (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + local.get $1 + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 206 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.load + local.tee $3 + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 208 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.const 4 + i32.add + local.get $1 + i32.load + i32.const -4 + i32.and + i32.add + local.tee $4 + i32.load + local.tee $2 + i32.const 1 + i32.and + if + local.get $0 + local.get $4 + call $~lib/rt/tlsf/removeBlock + local.get $1 + local.get $3 + i32.const 4 + i32.add + local.get $2 + i32.const -4 + i32.and + i32.add + local.tee $3 + i32.store + local.get $1 + i32.const 4 + i32.add + local.get $1 + i32.load + i32.const -4 + i32.and + i32.add + local.tee $4 + i32.load + local.set $2 + end + local.get $3 + i32.const 2 + i32.and + if + local.get $1 + i32.const 4 + i32.sub + i32.load + local.tee $1 + i32.load + local.tee $6 + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 226 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $0 + local.get $1 + call $~lib/rt/tlsf/removeBlock + local.get $1 + local.get $6 + i32.const 4 + i32.add + local.get $3 + i32.const -4 + i32.and + i32.add + local.tee $3 + i32.store + end + local.get $4 + local.get $2 + i32.const 2 + i32.or + i32.store + local.get $3 + i32.const -4 + i32.and + local.tee $2 + i32.const 12 + i32.lt_u + if + i32.const 0 + i32.const 32 + i32.const 238 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $4 + local.get $1 + i32.const 4 + i32.add + local.get $2 + i32.add + i32.ne + if + i32.const 0 + i32.const 32 + i32.const 239 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $4 + i32.const 4 + i32.sub + local.get $1 + i32.store + local.get $2 + i32.const 256 + i32.lt_u + if (result i32) + local.get $2 + i32.const 4 + i32.shr_u + else + i32.const 31 + i32.const 1073741820 + local.get $2 + local.get $2 + i32.const 1073741820 + i32.ge_u + select + local.tee $2 + i32.clz + i32.sub + local.tee $3 + i32.const 7 + i32.sub + local.set $5 + local.get $2 + local.get $3 + i32.const 4 + i32.sub + i32.shr_u + i32.const 16 + i32.xor + end + local.tee $2 + i32.const 16 + i32.lt_u + local.get $5 + i32.const 23 + i32.lt_u + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 256 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $0 + local.get $5 + i32.const 4 + i32.shl + local.get $2 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + local.set $3 + local.get $1 + i32.const 0 + i32.store offset=4 + local.get $1 + local.get $3 + i32.store offset=8 + local.get $3 + if + local.get $3 + local.get $1 + i32.store offset=4 + end + local.get $0 + local.get $5 + i32.const 4 + i32.shl + local.get $2 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $1 + i32.store offset=96 + local.get $0 + local.get $0 + i32.load + i32.const 1 + local.get $5 + i32.shl + i32.or + i32.store + local.get $0 + local.get $5 + i32.const 2 + i32.shl + i32.add + local.tee $0 + local.get $0 + i32.load offset=4 + i32.const 1 + local.get $2 + i32.shl + i32.or + i32.store offset=4 + ) + (func $~lib/rt/tlsf/addMemory (param $0 i32) (param $1 i32) (param $2 i64) + (local $3 i32) + (local $4 i32) + (local $5 i32) + local.get $2 + local.get $1 + i64.extend_i32_u + i64.lt_u + if + i32.const 0 + i32.const 32 + i32.const 387 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.const 19 + i32.add + i32.const -16 + i32.and + i32.const 4 + i32.sub + local.set $1 + local.get $0 + i32.load offset=1568 + local.tee $3 + if + local.get $3 + i32.const 4 + i32.add + local.get $1 + i32.gt_u + if + i32.const 0 + i32.const 32 + i32.const 394 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $3 + local.get $1 + i32.const 16 + i32.sub + local.tee $5 + i32.eq + if + local.get $3 + i32.load + local.set $4 + local.get $5 + local.set $1 + end + else + local.get $0 + i32.const 1572 + i32.add + local.get $1 + i32.gt_u + if + i32.const 0 + i32.const 32 + i32.const 407 + i32.const 5 + call $~lib/builtins/abort + unreachable + end + end + local.get $2 + i32.wrap_i64 + i32.const -16 + i32.and + local.get $1 + i32.sub + local.tee $3 + i32.const 20 + i32.lt_u + if + return + end + local.get $1 + local.get $4 + i32.const 2 + i32.and + local.get $3 + i32.const 8 + i32.sub + local.tee $3 + i32.const 1 + i32.or + i32.or + i32.store + local.get $1 + i32.const 0 + i32.store offset=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $1 + i32.const 4 + i32.add + local.get $3 + i32.add + local.tee $3 + i32.const 2 + i32.store + local.get $0 + local.get $3 + i32.store offset=1568 + local.get $0 + local.get $1 + call $~lib/rt/tlsf/insertBlock + ) + (func $~lib/rt/tlsf/searchBlock (param $0 i32) (result i32) + (local $1 i32) + (local $2 i32) + local.get $0 + i32.const 12 + i32.add + i32.load offset=4 + i32.const -2 + i32.and + local.tee $1 + if (result i32) + local.get $0 + local.get $1 + i32.ctz + i32.const 48 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + else + local.get $0 + i32.load + i32.const -16 + i32.and + local.tee $1 + if (result i32) + local.get $0 + local.get $1 + i32.ctz + local.tee $2 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + local.tee $1 + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 352 + i32.const 18 + call $~lib/builtins/abort + unreachable + end + local.get $0 + local.get $1 + i32.ctz + local.get $2 + i32.const 4 + i32.shl + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + else + i32.const 0 + end + end + ) + (func $start:lowMemoryLimit/less-than-64k + (local $0 i32) + (local $1 i32) + (local $2 i64) + (local $3 i32) + (local $4 i32) + (local $5 i32) + global.get $~lib/rt/tlsf/ROOT + i32.eqz + if + memory.size + local.tee $1 + i32.const 0 + i32.le_s + if (result i32) + i32.const 1 + local.get $1 + i32.sub + memory.grow + i32.const 0 + i32.lt_s + else + i32.const 0 + end + if + unreachable + end + i32.const 272 + i32.const 0 + i32.store + i32.const 1840 + i32.const 0 + i32.store + loop $for-loop|0 + local.get $0 + i32.const 23 + i32.lt_u + if + local.get $0 + i32.const 2 + i32.shl + i32.const 272 + i32.add + i32.const 0 + i32.store offset=4 + i32.const 0 + local.set $1 + loop $for-loop|1 + local.get $1 + i32.const 16 + i32.lt_u + if + local.get $0 + i32.const 4 + i32.shl + local.get $1 + i32.add + i32.const 2 + i32.shl + i32.const 272 + i32.add + i32.const 0 + i32.store offset=96 + local.get $1 + i32.const 1 + i32.add + local.set $1 + br $for-loop|1 + end + end + local.get $0 + i32.const 1 + i32.add + local.set $0 + br $for-loop|0 + end + end + i64.const 4096 + memory.size + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $2 + local.get $2 + i64.const 4096 + i64.ge_u + select + local.tee $2 + i64.const 1844 + i64.lt_u + if + unreachable + end + i32.const 272 + i32.const 1844 + local.get $2 + call $~lib/rt/tlsf/addMemory + i32.const 272 + global.set $~lib/rt/tlsf/ROOT + end + global.get $~lib/rt/tlsf/ROOT + local.tee $1 + call $~lib/rt/tlsf/searchBlock + local.tee $0 + i32.eqz + if + memory.size + local.tee $3 + i32.const 16 + i32.shl + local.tee $0 + i32.const 4 + local.get $1 + i32.load offset=1568 + local.get $0 + i32.const 4 + i32.sub + i32.ne + i32.shl + i32.const 1099 + i32.add + local.tee $0 + i32.add + i32.const 4096 + i32.gt_u + if + unreachable + end + local.get $3 + local.get $0 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + local.tee $4 + local.get $3 + local.get $4 + i32.gt_s + select + local.tee $0 + i32.const 1 + local.get $3 + i32.sub + local.tee $5 + local.get $0 + local.get $5 + i32.lt_s + select + memory.grow + i32.const 0 + i32.lt_s + if + local.get $4 + memory.grow + i32.const 0 + i32.lt_s + if + unreachable + end + end + local.get $1 + local.get $3 + i32.const 16 + i32.shl + i64.const 4096 + memory.size + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $2 + local.get $2 + i64.const 4096 + i64.ge_u + select + call $~lib/rt/tlsf/addMemory + local.get $1 + call $~lib/rt/tlsf/searchBlock + local.tee $0 + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 510 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + end + local.get $0 + i32.load + i32.const -4 + i32.and + i32.const 1036 + i32.lt_u + if + i32.const 0 + i32.const 32 + i32.const 512 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + local.get $0 + call $~lib/rt/tlsf/removeBlock + local.get $0 + i32.load + local.tee $3 + i32.const -4 + i32.and + i32.const 1036 + i32.sub + local.tee $4 + i32.const 16 + i32.ge_u + if + local.get $0 + local.get $3 + i32.const 2 + i32.and + i32.const 1036 + i32.or + i32.store + local.get $0 + i32.const 1040 + i32.add + local.tee $0 + local.get $4 + i32.const 4 + i32.sub + i32.const 1 + i32.or + i32.store + local.get $1 + local.get $0 + call $~lib/rt/tlsf/insertBlock + else + local.get $0 + local.get $3 + i32.const -2 + i32.and + i32.store + local.get $0 + i32.const 4 + i32.add + local.get $0 + i32.load + i32.const -4 + i32.and + i32.add + local.tee $0 + local.get $0 + i32.load + i32.const -3 + i32.and + i32.store + end + ) + (func $~start + call $start:lowMemoryLimit/less-than-64k + ) +) diff --git a/tests/compiler/lowMemoryLimit/less-than-64k.ts b/tests/compiler/lowMemoryLimit/less-than-64k.ts new file mode 100644 index 0000000000..80da800c56 --- /dev/null +++ b/tests/compiler/lowMemoryLimit/less-than-64k.ts @@ -0,0 +1 @@ +__alloc(1024) diff --git a/tests/compiler/lowMemoryLimit/more-than-64k-error.debug.wat b/tests/compiler/lowMemoryLimit/more-than-64k-error.debug.wat new file mode 100644 index 0000000000..d20a7bc00f --- /dev/null +++ b/tests/compiler/lowMemoryLimit/more-than-64k-error.debug.wat @@ -0,0 +1,1600 @@ +(module + (type $0 (func (param i32) (result i32))) + (type $1 (func (param i32 i32))) + (type $2 (func)) + (type $3 (func (param i32 i32) (result i32))) + (type $4 (func (param i32 i32 i32 i32))) + (type $5 (func (param i32 i32 i64) (result i32))) + (type $6 (func (param i32 i32 i32))) + (import "env" "abort" (func $~lib/builtins/abort (param i32 i32 i32 i32))) + (global $~lib/rt/tlsf/ROOT (mut i32) (i32.const 0)) + (global $~lib/native/ASC_LOW_MEMORY_LIMIT i32 (i32.const 655360)) + (global $~lib/memory/__data_end i32 (i32.const 140)) + (global $~lib/memory/__stack_pointer (mut i32) (i32.const 32908)) + (global $~lib/memory/__heap_base i32 (i32.const 32908)) + (memory $0 1) + (data $0 (i32.const 12) "<\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") + (data $1 (i32.const 76) "<\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") + (table $0 1 1 funcref) + (elem $0 (i32.const 1)) + (export "memory" (memory $0)) + (start $~start) + (func $~lib/rt/tlsf/Root#set:flMap (param $this i32) (param $flMap i32) + local.get $this + local.get $flMap + i32.store + ) + (func $~lib/rt/common/BLOCK#get:mmInfo (param $this i32) (result i32) + local.get $this + i32.load + ) + (func $~lib/rt/common/BLOCK#set:mmInfo (param $this i32) (param $mmInfo i32) + local.get $this + local.get $mmInfo + i32.store + ) + (func $~lib/rt/tlsf/Block#set:prev (param $this i32) (param $prev i32) + local.get $this + local.get $prev + i32.store offset=4 + ) + (func $~lib/rt/tlsf/Block#set:next (param $this i32) (param $next i32) + local.get $this + local.get $next + i32.store offset=8 + ) + (func $~lib/rt/tlsf/Block#get:prev (param $this i32) (result i32) + local.get $this + i32.load offset=4 + ) + (func $~lib/rt/tlsf/Block#get:next (param $this i32) (result i32) + local.get $this + i32.load offset=8 + ) + (func $~lib/rt/tlsf/Root#get:flMap (param $this i32) (result i32) + local.get $this + i32.load + ) + (func $~lib/rt/tlsf/removeBlock (param $root i32) (param $block i32) + (local $blockInfo i32) + (local $size i32) + (local $fl i32) + (local $sl i32) + (local $6 i32) + (local $7 i32) + (local $boundedSize i32) + (local $prev i32) + (local $next i32) + (local $root|11 i32) + (local $fl|12 i32) + (local $sl|13 i32) + (local $root|14 i32) + (local $fl|15 i32) + (local $sl|16 i32) + (local $head i32) + (local $root|18 i32) + (local $fl|19 i32) + (local $slMap i32) + (local $root|21 i32) + (local $fl|22 i32) + (local $slMap|23 i32) + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $blockInfo + i32.const 1 + drop + local.get $blockInfo + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 273 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.set $size + i32.const 1 + drop + local.get $size + i32.const 12 + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 275 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $size + i32.const 256 + i32.lt_u + if + i32.const 0 + local.set $fl + local.get $size + i32.const 4 + i32.shr_u + local.set $sl + else + local.get $size + local.tee $6 + i32.const 1073741820 + local.tee $7 + local.get $6 + local.get $7 + i32.lt_u + select + local.set $boundedSize + i32.const 31 + local.get $boundedSize + i32.clz + i32.sub + local.set $fl + local.get $boundedSize + local.get $fl + i32.const 4 + i32.sub + i32.shr_u + i32.const 1 + i32.const 4 + i32.shl + i32.xor + local.set $sl + local.get $fl + i32.const 8 + i32.const 1 + i32.sub + i32.sub + local.set $fl + end + i32.const 1 + drop + local.get $fl + i32.const 23 + i32.lt_u + if (result i32) + local.get $sl + i32.const 16 + i32.lt_u + else + i32.const 0 + end + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 289 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $block + call $~lib/rt/tlsf/Block#get:prev + local.set $prev + local.get $block + call $~lib/rt/tlsf/Block#get:next + local.set $next + local.get $prev + if + local.get $prev + local.get $next + call $~lib/rt/tlsf/Block#set:next + end + local.get $next + if + local.get $next + local.get $prev + call $~lib/rt/tlsf/Block#set:prev + end + local.get $block + block $~lib/rt/tlsf/GETHEAD|inlined.0 (result i32) + local.get $root + local.set $root|11 + local.get $fl + local.set $fl|12 + local.get $sl + local.set $sl|13 + local.get $root|11 + local.get $fl|12 + i32.const 4 + i32.shl + local.get $sl|13 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.0 + end + i32.eq + if + local.get $root + local.set $root|14 + local.get $fl + local.set $fl|15 + local.get $sl + local.set $sl|16 + local.get $next + local.set $head + local.get $root|14 + local.get $fl|15 + i32.const 4 + i32.shl + local.get $sl|16 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $head + i32.store offset=96 + local.get $next + i32.eqz + if + block $~lib/rt/tlsf/GETSL|inlined.0 (result i32) + local.get $root + local.set $root|18 + local.get $fl + local.set $fl|19 + local.get $root|18 + local.get $fl|19 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.0 + end + local.set $slMap + local.get $root + local.set $root|21 + local.get $fl + local.set $fl|22 + local.get $slMap + i32.const 1 + local.get $sl + i32.shl + i32.const -1 + i32.xor + i32.and + local.tee $slMap + local.set $slMap|23 + local.get $root|21 + local.get $fl|22 + i32.const 2 + i32.shl + i32.add + local.get $slMap|23 + i32.store offset=4 + local.get $slMap + i32.eqz + if + local.get $root + local.get $root + call $~lib/rt/tlsf/Root#get:flMap + i32.const 1 + local.get $fl + i32.shl + i32.const -1 + i32.xor + i32.and + call $~lib/rt/tlsf/Root#set:flMap + end + end + end + ) + (func $~lib/rt/tlsf/insertBlock (param $root i32) (param $block i32) + (local $blockInfo i32) + (local $block|3 i32) + (local $right i32) + (local $rightInfo i32) + (local $block|6 i32) + (local $block|7 i32) + (local $left i32) + (local $leftInfo i32) + (local $size i32) + (local $fl i32) + (local $sl i32) + (local $13 i32) + (local $14 i32) + (local $boundedSize i32) + (local $root|16 i32) + (local $fl|17 i32) + (local $sl|18 i32) + (local $head i32) + (local $root|20 i32) + (local $fl|21 i32) + (local $sl|22 i32) + (local $head|23 i32) + (local $root|24 i32) + (local $fl|25 i32) + (local $root|26 i32) + (local $fl|27 i32) + (local $slMap i32) + i32.const 1 + drop + local.get $block + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 206 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $blockInfo + i32.const 1 + drop + local.get $blockInfo + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 208 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETRIGHT|inlined.0 (result i32) + local.get $block + local.set $block|3 + local.get $block|3 + i32.const 4 + i32.add + local.get $block|3 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.0 + end + local.set $right + local.get $right + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $rightInfo + local.get $rightInfo + i32.const 1 + i32.and + if + local.get $root + local.get $right + call $~lib/rt/tlsf/removeBlock + local.get $block + local.get $blockInfo + i32.const 4 + i32.add + local.get $rightInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + local.tee $blockInfo + call $~lib/rt/common/BLOCK#set:mmInfo + block $~lib/rt/tlsf/GETRIGHT|inlined.1 (result i32) + local.get $block + local.set $block|6 + local.get $block|6 + i32.const 4 + i32.add + local.get $block|6 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.1 + end + local.set $right + local.get $right + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $rightInfo + end + local.get $blockInfo + i32.const 2 + i32.and + if + block $~lib/rt/tlsf/GETFREELEFT|inlined.0 (result i32) + local.get $block + local.set $block|7 + local.get $block|7 + i32.const 4 + i32.sub + i32.load + br $~lib/rt/tlsf/GETFREELEFT|inlined.0 + end + local.set $left + local.get $left + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $leftInfo + i32.const 1 + drop + local.get $leftInfo + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 226 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $root + local.get $left + call $~lib/rt/tlsf/removeBlock + local.get $left + local.set $block + local.get $block + local.get $leftInfo + i32.const 4 + i32.add + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + local.tee $blockInfo + call $~lib/rt/common/BLOCK#set:mmInfo + end + local.get $right + local.get $rightInfo + i32.const 2 + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.set $size + i32.const 1 + drop + local.get $size + i32.const 12 + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 238 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + i32.const 1 + drop + local.get $block + i32.const 4 + i32.add + local.get $size + i32.add + local.get $right + i32.eq + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 239 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $right + i32.const 4 + i32.sub + local.get $block + i32.store + local.get $size + i32.const 256 + i32.lt_u + if + i32.const 0 + local.set $fl + local.get $size + i32.const 4 + i32.shr_u + local.set $sl + else + local.get $size + local.tee $13 + i32.const 1073741820 + local.tee $14 + local.get $13 + local.get $14 + i32.lt_u + select + local.set $boundedSize + i32.const 31 + local.get $boundedSize + i32.clz + i32.sub + local.set $fl + local.get $boundedSize + local.get $fl + i32.const 4 + i32.sub + i32.shr_u + i32.const 1 + i32.const 4 + i32.shl + i32.xor + local.set $sl + local.get $fl + i32.const 8 + i32.const 1 + i32.sub + i32.sub + local.set $fl + end + i32.const 1 + drop + local.get $fl + i32.const 23 + i32.lt_u + if (result i32) + local.get $sl + i32.const 16 + i32.lt_u + else + i32.const 0 + end + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 256 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETHEAD|inlined.1 (result i32) + local.get $root + local.set $root|16 + local.get $fl + local.set $fl|17 + local.get $sl + local.set $sl|18 + local.get $root|16 + local.get $fl|17 + i32.const 4 + i32.shl + local.get $sl|18 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.1 + end + local.set $head + local.get $block + i32.const 0 + call $~lib/rt/tlsf/Block#set:prev + local.get $block + local.get $head + call $~lib/rt/tlsf/Block#set:next + local.get $head + if + local.get $head + local.get $block + call $~lib/rt/tlsf/Block#set:prev + end + local.get $root + local.set $root|20 + local.get $fl + local.set $fl|21 + local.get $sl + local.set $sl|22 + local.get $block + local.set $head|23 + local.get $root|20 + local.get $fl|21 + i32.const 4 + i32.shl + local.get $sl|22 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $head|23 + i32.store offset=96 + local.get $root + local.get $root + call $~lib/rt/tlsf/Root#get:flMap + i32.const 1 + local.get $fl + i32.shl + i32.or + call $~lib/rt/tlsf/Root#set:flMap + local.get $root + local.set $root|26 + local.get $fl + local.set $fl|27 + block $~lib/rt/tlsf/GETSL|inlined.1 (result i32) + local.get $root + local.set $root|24 + local.get $fl + local.set $fl|25 + local.get $root|24 + local.get $fl|25 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.1 + end + i32.const 1 + local.get $sl + i32.shl + i32.or + local.set $slMap + local.get $root|26 + local.get $fl|27 + i32.const 2 + i32.shl + i32.add + local.get $slMap + i32.store offset=4 + ) + (func $~lib/rt/tlsf/addMemory (param $root i32) (param $start i32) (param $endU64 i64) (result i32) + (local $end i32) + (local $root|4 i32) + (local $tail i32) + (local $tailInfo i32) + (local $size i32) + (local $leftSize i32) + (local $left i32) + (local $root|10 i32) + (local $tail|11 i32) + local.get $endU64 + i32.wrap_i64 + local.set $end + i32.const 1 + drop + local.get $start + i64.extend_i32_u + local.get $endU64 + i64.le_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 387 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $start + i32.const 4 + i32.add + i32.const 15 + i32.add + i32.const 15 + i32.const -1 + i32.xor + i32.and + i32.const 4 + i32.sub + local.set $start + local.get $end + i32.const 15 + i32.const -1 + i32.xor + i32.and + local.set $end + block $~lib/rt/tlsf/GETTAIL|inlined.0 (result i32) + local.get $root + local.set $root|4 + local.get $root|4 + i32.load offset=1568 + br $~lib/rt/tlsf/GETTAIL|inlined.0 + end + local.set $tail + i32.const 0 + local.set $tailInfo + local.get $tail + if + i32.const 1 + drop + local.get $start + local.get $tail + i32.const 4 + i32.add + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 394 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $start + i32.const 16 + i32.sub + local.get $tail + i32.eq + if + local.get $start + i32.const 16 + i32.sub + local.set $start + local.get $tail + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $tailInfo + else + end + else + i32.const 1 + drop + local.get $start + local.get $root + i32.const 1572 + i32.add + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 407 + i32.const 5 + call $~lib/builtins/abort + unreachable + end + end + local.get $end + local.get $start + i32.sub + local.set $size + local.get $size + i32.const 4 + i32.const 12 + i32.add + i32.const 4 + i32.add + i32.lt_u + if + i32.const 0 + return + end + local.get $size + i32.const 2 + i32.const 4 + i32.mul + i32.sub + local.set $leftSize + local.get $start + local.set $left + local.get $left + local.get $leftSize + i32.const 1 + i32.or + local.get $tailInfo + i32.const 2 + i32.and + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $left + i32.const 0 + call $~lib/rt/tlsf/Block#set:prev + local.get $left + i32.const 0 + call $~lib/rt/tlsf/Block#set:next + local.get $start + i32.const 4 + i32.add + local.get $leftSize + i32.add + local.set $tail + local.get $tail + i32.const 0 + i32.const 2 + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $root + local.set $root|10 + local.get $tail + local.set $tail|11 + local.get $root|10 + local.get $tail|11 + i32.store offset=1568 + local.get $root + local.get $left + call $~lib/rt/tlsf/insertBlock + i32.const 1 + return + ) + (func $~lib/rt/tlsf/initialize + (local $rootOffset i32) + (local $pagesBefore i32) + (local $size i32) + (local $pagesNeeded i32) + (local $root i32) + (local $root|5 i32) + (local $tail i32) + (local $fl i32) + (local $root|8 i32) + (local $fl|9 i32) + (local $slMap i32) + (local $sl i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) + (local $head i32) + (local $memStart i32) + (local $17 i64) + (local $18 i64) + (local $limitedEnd i64) + i32.const 0 + drop + global.get $~lib/memory/__heap_base + i32.const 15 + i32.add + i32.const 15 + i32.const -1 + i32.xor + i32.and + local.set $rootOffset + memory.size + local.set $pagesBefore + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end + local.set $pagesNeeded + local.get $pagesNeeded + local.get $pagesBefore + i32.gt_s + if (result i32) + local.get $pagesNeeded + local.get $pagesBefore + i32.sub + memory.grow + i32.const 0 + i32.lt_s + else + i32.const 0 + end + if + unreachable + end + local.get $rootOffset + local.set $root + local.get $root + i32.const 0 + call $~lib/rt/tlsf/Root#set:flMap + local.get $root + local.set $root|5 + i32.const 0 + local.set $tail + local.get $root|5 + local.get $tail + i32.store offset=1568 + i32.const 0 + local.set $fl + loop $for-loop|0 + local.get $fl + i32.const 23 + i32.lt_u + if + local.get $root + local.set $root|8 + local.get $fl + local.set $fl|9 + i32.const 0 + local.set $slMap + local.get $root|8 + local.get $fl|9 + i32.const 2 + i32.shl + i32.add + local.get $slMap + i32.store offset=4 + i32.const 0 + local.set $sl + loop $for-loop|1 + local.get $sl + i32.const 16 + i32.lt_u + if + local.get $root + local.set $root|12 + local.get $fl + local.set $fl|13 + local.get $sl + local.set $sl|14 + i32.const 0 + local.set $head + local.get $root|12 + local.get $fl|13 + i32.const 4 + i32.shl + local.get $sl|14 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $head + i32.store offset=96 + local.get $sl + i32.const 1 + i32.add + local.set $sl + br $for-loop|1 + end + end + local.get $fl + i32.const 1 + i32.add + local.set $fl + br $for-loop|0 + end + end + local.get $rootOffset + i32.const 1572 + i32.add + local.set $memStart + i32.const 655360 + drop + memory.size + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $17 + i32.const 655360 + i64.extend_i32_s + i32.const 15 + i32.const -1 + i32.xor + i64.extend_i32_u + i64.and + local.tee $18 + local.get $17 + local.get $18 + i64.lt_u + select + local.set $limitedEnd + local.get $memStart + i64.extend_i32_u + local.get $limitedEnd + i64.gt_u + if + unreachable + end + local.get $root + local.get $memStart + local.get $limitedEnd + call $~lib/rt/tlsf/addMemory + drop + local.get $root + global.set $~lib/rt/tlsf/ROOT + ) + (func $~lib/rt/tlsf/computeSize (param $size i32) (result i32) + local.get $size + i32.const 12 + i32.le_u + if (result i32) + i32.const 12 + else + local.get $size + i32.const 4 + i32.add + i32.const 15 + i32.add + i32.const 15 + i32.const -1 + i32.xor + i32.and + i32.const 4 + i32.sub + end + return + ) + (func $~lib/rt/tlsf/prepareSize (param $size i32) (result i32) + local.get $size + i32.const 1073741820 + i32.gt_u + if + i32.const 96 + i32.const 32 + i32.const 472 + i32.const 29 + call $~lib/builtins/abort + unreachable + end + local.get $size + call $~lib/rt/tlsf/computeSize + return + ) + (func $~lib/rt/tlsf/roundSize (param $size i32) (result i32) + local.get $size + i32.const 536870910 + i32.lt_u + if (result i32) + local.get $size + i32.const 1 + i32.const 27 + local.get $size + i32.clz + i32.sub + i32.shl + i32.add + i32.const 1 + i32.sub + else + local.get $size + end + return + ) + (func $~lib/rt/tlsf/searchBlock (param $root i32) (param $size i32) (result i32) + (local $fl i32) + (local $sl i32) + (local $requestSize i32) + (local $root|5 i32) + (local $fl|6 i32) + (local $slMap i32) + (local $head i32) + (local $flMap i32) + (local $root|10 i32) + (local $fl|11 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) + (local $root|15 i32) + (local $fl|16 i32) + (local $sl|17 i32) + local.get $size + i32.const 256 + i32.lt_u + if + i32.const 0 + local.set $fl + local.get $size + i32.const 4 + i32.shr_u + local.set $sl + else + local.get $size + call $~lib/rt/tlsf/roundSize + local.set $requestSize + i32.const 4 + i32.const 8 + i32.mul + i32.const 1 + i32.sub + local.get $requestSize + i32.clz + i32.sub + local.set $fl + local.get $requestSize + local.get $fl + i32.const 4 + i32.sub + i32.shr_u + i32.const 1 + i32.const 4 + i32.shl + i32.xor + local.set $sl + local.get $fl + i32.const 8 + i32.const 1 + i32.sub + i32.sub + local.set $fl + end + i32.const 1 + drop + local.get $fl + i32.const 23 + i32.lt_u + if (result i32) + local.get $sl + i32.const 16 + i32.lt_u + else + i32.const 0 + end + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 339 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETSL|inlined.2 (result i32) + local.get $root + local.set $root|5 + local.get $fl + local.set $fl|6 + local.get $root|5 + local.get $fl|6 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.2 + end + i32.const 0 + i32.const -1 + i32.xor + local.get $sl + i32.shl + i32.and + local.set $slMap + i32.const 0 + local.set $head + local.get $slMap + i32.eqz + if + local.get $root + call $~lib/rt/tlsf/Root#get:flMap + i32.const 0 + i32.const -1 + i32.xor + local.get $fl + i32.const 1 + i32.add + i32.shl + i32.and + local.set $flMap + local.get $flMap + i32.eqz + if + i32.const 0 + local.set $head + else + local.get $flMap + i32.ctz + local.set $fl + block $~lib/rt/tlsf/GETSL|inlined.3 (result i32) + local.get $root + local.set $root|10 + local.get $fl + local.set $fl|11 + local.get $root|10 + local.get $fl|11 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.3 + end + local.set $slMap + i32.const 1 + drop + local.get $slMap + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 352 + i32.const 18 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETHEAD|inlined.2 (result i32) + local.get $root + local.set $root|12 + local.get $fl + local.set $fl|13 + local.get $slMap + i32.ctz + local.set $sl|14 + local.get $root|12 + local.get $fl|13 + i32.const 4 + i32.shl + local.get $sl|14 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.2 + end + local.set $head + end + else + block $~lib/rt/tlsf/GETHEAD|inlined.3 (result i32) + local.get $root + local.set $root|15 + local.get $fl + local.set $fl|16 + local.get $slMap + i32.ctz + local.set $sl|17 + local.get $root|15 + local.get $fl|16 + i32.const 4 + i32.shl + local.get $sl|17 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.3 + end + local.set $head + end + local.get $head + return + ) + (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) + (local $pagesBefore i32) + (local $root|3 i32) + (local $size|4 i32) + (local $pagesNeeded i32) + (local $6 i32) + (local $7 i32) + (local $pagesWanted i32) + (local $size|9 i32) + (local $10 i32) + (local $11 i32) + (local $pagesAfter i32) + (local $13 i64) + (local $14 i64) + local.get $size + i32.const 256 + i32.ge_u + if + local.get $size + call $~lib/rt/tlsf/roundSize + local.set $size + end + memory.size + local.set $pagesBefore + local.get $size + i32.const 4 + local.get $pagesBefore + i32.const 16 + i32.shl + i32.const 4 + i32.sub + block $~lib/rt/tlsf/GETTAIL|inlined.1 (result i32) + local.get $root + local.set $root|3 + local.get $root|3 + i32.load offset=1568 + br $~lib/rt/tlsf/GETTAIL|inlined.1 + end + i32.ne + i32.shl + i32.add + local.set $size + i32.const 655360 + drop + local.get $pagesBefore + i32.const 16 + i32.shl + local.get $size + i32.add + i32.const 655360 + i32.gt_u + if + unreachable + end + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end + local.set $pagesNeeded + local.get $pagesBefore + local.tee $6 + local.get $pagesNeeded + local.tee $7 + local.get $6 + local.get $7 + i32.gt_s + select + local.set $pagesWanted + i32.const 655360 + drop + local.get $pagesWanted + local.tee $10 + block $~lib/rt/tlsf/sizeRoundToPage|inlined.2 (result i32) + i32.const 655360 + local.set $size|9 + local.get $size|9 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.2 + end + local.get $pagesBefore + i32.sub + local.tee $11 + local.get $10 + local.get $11 + i32.lt_s + select + local.set $pagesWanted + local.get $pagesWanted + memory.grow + i32.const 0 + i32.lt_s + if + local.get $pagesNeeded + memory.grow + i32.const 0 + i32.lt_s + if + unreachable + end + end + memory.size + local.set $pagesAfter + i32.const 655360 + drop + local.get $root + local.get $pagesBefore + i32.const 16 + i32.shl + local.get $pagesAfter + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $13 + i32.const 655360 + i64.extend_i32_s + i32.const 15 + i32.const -1 + i32.xor + i64.extend_i32_u + i64.and + local.tee $14 + local.get $13 + local.get $14 + i64.lt_u + select + call $~lib/rt/tlsf/addMemory + drop + ) + (func $~lib/rt/tlsf/prepareBlock (param $root i32) (param $block i32) (param $size i32) + (local $blockInfo i32) + (local $remaining i32) + (local $spare i32) + (local $block|6 i32) + (local $block|7 i32) + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $blockInfo + i32.const 1 + drop + local.get $size + i32.const 4 + i32.add + i32.const 15 + i32.and + i32.eqz + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 366 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.get $size + i32.sub + local.set $remaining + local.get $remaining + i32.const 4 + i32.const 12 + i32.add + i32.ge_u + if + local.get $block + local.get $size + local.get $blockInfo + i32.const 2 + i32.and + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $block + i32.const 4 + i32.add + local.get $size + i32.add + local.set $spare + local.get $spare + local.get $remaining + i32.const 4 + i32.sub + i32.const 1 + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $root + local.get $spare + call $~lib/rt/tlsf/insertBlock + else + local.get $block + local.get $blockInfo + i32.const 1 + i32.const -1 + i32.xor + i32.and + call $~lib/rt/common/BLOCK#set:mmInfo + block $~lib/rt/tlsf/GETRIGHT|inlined.3 (result i32) + local.get $block + local.set $block|7 + local.get $block|7 + i32.const 4 + i32.add + local.get $block|7 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.3 + end + block $~lib/rt/tlsf/GETRIGHT|inlined.2 (result i32) + local.get $block + local.set $block|6 + local.get $block|6 + i32.const 4 + i32.add + local.get $block|6 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.2 + end + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 2 + i32.const -1 + i32.xor + i32.and + call $~lib/rt/common/BLOCK#set:mmInfo + end + ) + (func $~lib/rt/tlsf/allocateBlock (param $root i32) (param $size i32) (result i32) + (local $payloadSize i32) + (local $block i32) + local.get $size + call $~lib/rt/tlsf/prepareSize + local.set $payloadSize + local.get $root + local.get $payloadSize + call $~lib/rt/tlsf/searchBlock + local.set $block + local.get $block + i32.eqz + if + local.get $root + local.get $payloadSize + call $~lib/rt/tlsf/growMemory + local.get $root + local.get $payloadSize + call $~lib/rt/tlsf/searchBlock + local.set $block + i32.const 1 + drop + local.get $block + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 510 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + end + i32.const 1 + drop + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.get $payloadSize + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 512 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $root + local.get $block + call $~lib/rt/tlsf/removeBlock + local.get $root + local.get $block + local.get $payloadSize + call $~lib/rt/tlsf/prepareBlock + i32.const 0 + drop + local.get $block + return + ) + (func $~lib/rt/tlsf/__alloc (param $size i32) (result i32) + global.get $~lib/rt/tlsf/ROOT + i32.eqz + if + call $~lib/rt/tlsf/initialize + end + global.get $~lib/rt/tlsf/ROOT + local.get $size + call $~lib/rt/tlsf/allocateBlock + i32.const 4 + i32.add + return + ) + (func $start:lowMemoryLimit/more-than-64k-error + (local $i i32) + i32.const 0 + local.set $i + loop $for-loop|0 + local.get $i + i32.const 640 + i32.lt_s + if + i32.const 1024 + call $~lib/rt/tlsf/__alloc + drop + local.get $i + i32.const 1 + i32.add + local.set $i + br $for-loop|0 + end + end + ) + (func $~start + call $start:lowMemoryLimit/more-than-64k-error + ) +) diff --git a/tests/compiler/lowMemoryLimit/more-than-64k-error.json b/tests/compiler/lowMemoryLimit/more-than-64k-error.json new file mode 100644 index 0000000000..58f85e8e45 --- /dev/null +++ b/tests/compiler/lowMemoryLimit/more-than-64k-error.json @@ -0,0 +1,6 @@ +{ + "asc_flags": [ + "--lowMemoryLimit", "655360" + ], + "expectedFailed": true +} diff --git a/tests/compiler/lowMemoryLimit/more-than-64k-error.release.wat b/tests/compiler/lowMemoryLimit/more-than-64k-error.release.wat new file mode 100644 index 0000000000..a799f910d6 --- /dev/null +++ b/tests/compiler/lowMemoryLimit/more-than-64k-error.release.wat @@ -0,0 +1,859 @@ +(module + (type $0 (func (param i32 i32))) + (type $1 (func)) + (type $2 (func (param i32 i32 i32 i32))) + (type $3 (func (param i32 i32 i64))) + (type $4 (func (param i32) (result i32))) + (import "env" "abort" (func $~lib/builtins/abort (param i32 i32 i32 i32))) + (global $~lib/rt/tlsf/ROOT (mut i32) (i32.const 0)) + (memory $0 1) + (data $0 (i32.const 12) "<") + (data $0.1 (i32.const 24) "\02\00\00\00\1e\00\00\00~\00l\00i\00b\00/\00r\00t\00/\00t\00l\00s\00f\00.\00t\00s") + (data $1 (i32.const 76) "<") + (data $1.1 (i32.const 88) "\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") + (export "memory" (memory $0)) + (start $~start) + (func $~lib/rt/tlsf/removeBlock (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + local.get $1 + i32.load + local.tee $3 + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 273 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $3 + i32.const -4 + i32.and + local.tee $3 + i32.const 12 + i32.lt_u + if + i32.const 0 + i32.const 32 + i32.const 275 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $3 + i32.const 256 + i32.lt_u + if (result i32) + local.get $3 + i32.const 4 + i32.shr_u + else + i32.const 31 + i32.const 1073741820 + local.get $3 + local.get $3 + i32.const 1073741820 + i32.ge_u + select + local.tee $3 + i32.clz + i32.sub + local.tee $4 + i32.const 7 + i32.sub + local.set $2 + local.get $3 + local.get $4 + i32.const 4 + i32.sub + i32.shr_u + i32.const 16 + i32.xor + end + local.tee $3 + i32.const 16 + i32.lt_u + local.get $2 + i32.const 23 + i32.lt_u + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 289 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.load offset=8 + local.set $5 + local.get $1 + i32.load offset=4 + local.tee $4 + if + local.get $4 + local.get $5 + i32.store offset=8 + end + local.get $5 + if + local.get $5 + local.get $4 + i32.store offset=4 + end + local.get $1 + local.get $0 + local.get $2 + i32.const 4 + i32.shl + local.get $3 + i32.add + i32.const 2 + i32.shl + i32.add + local.tee $1 + i32.load offset=96 + i32.eq + if + local.get $1 + local.get $5 + i32.store offset=96 + local.get $5 + i32.eqz + if + local.get $0 + local.get $2 + i32.const 2 + i32.shl + i32.add + local.tee $1 + i32.load offset=4 + i32.const -2 + local.get $3 + i32.rotl + i32.and + local.set $3 + local.get $1 + local.get $3 + i32.store offset=4 + local.get $3 + i32.eqz + if + local.get $0 + local.get $0 + i32.load + i32.const -2 + local.get $2 + i32.rotl + i32.and + i32.store + end + end + end + ) + (func $~lib/rt/tlsf/insertBlock (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + local.get $1 + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 206 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.load + local.tee $3 + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 208 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.const 4 + i32.add + local.get $1 + i32.load + i32.const -4 + i32.and + i32.add + local.tee $4 + i32.load + local.tee $2 + i32.const 1 + i32.and + if + local.get $0 + local.get $4 + call $~lib/rt/tlsf/removeBlock + local.get $1 + local.get $3 + i32.const 4 + i32.add + local.get $2 + i32.const -4 + i32.and + i32.add + local.tee $3 + i32.store + local.get $1 + i32.const 4 + i32.add + local.get $1 + i32.load + i32.const -4 + i32.and + i32.add + local.tee $4 + i32.load + local.set $2 + end + local.get $3 + i32.const 2 + i32.and + if + local.get $1 + i32.const 4 + i32.sub + i32.load + local.tee $1 + i32.load + local.tee $6 + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 226 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $0 + local.get $1 + call $~lib/rt/tlsf/removeBlock + local.get $1 + local.get $6 + i32.const 4 + i32.add + local.get $3 + i32.const -4 + i32.and + i32.add + local.tee $3 + i32.store + end + local.get $4 + local.get $2 + i32.const 2 + i32.or + i32.store + local.get $3 + i32.const -4 + i32.and + local.tee $2 + i32.const 12 + i32.lt_u + if + i32.const 0 + i32.const 32 + i32.const 238 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $4 + local.get $1 + i32.const 4 + i32.add + local.get $2 + i32.add + i32.ne + if + i32.const 0 + i32.const 32 + i32.const 239 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $4 + i32.const 4 + i32.sub + local.get $1 + i32.store + local.get $2 + i32.const 256 + i32.lt_u + if (result i32) + local.get $2 + i32.const 4 + i32.shr_u + else + i32.const 31 + i32.const 1073741820 + local.get $2 + local.get $2 + i32.const 1073741820 + i32.ge_u + select + local.tee $2 + i32.clz + i32.sub + local.tee $3 + i32.const 7 + i32.sub + local.set $5 + local.get $2 + local.get $3 + i32.const 4 + i32.sub + i32.shr_u + i32.const 16 + i32.xor + end + local.tee $2 + i32.const 16 + i32.lt_u + local.get $5 + i32.const 23 + i32.lt_u + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 256 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $0 + local.get $5 + i32.const 4 + i32.shl + local.get $2 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + local.set $3 + local.get $1 + i32.const 0 + i32.store offset=4 + local.get $1 + local.get $3 + i32.store offset=8 + local.get $3 + if + local.get $3 + local.get $1 + i32.store offset=4 + end + local.get $0 + local.get $5 + i32.const 4 + i32.shl + local.get $2 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $1 + i32.store offset=96 + local.get $0 + local.get $0 + i32.load + i32.const 1 + local.get $5 + i32.shl + i32.or + i32.store + local.get $0 + local.get $5 + i32.const 2 + i32.shl + i32.add + local.tee $0 + local.get $0 + i32.load offset=4 + i32.const 1 + local.get $2 + i32.shl + i32.or + i32.store offset=4 + ) + (func $~lib/rt/tlsf/addMemory (param $0 i32) (param $1 i32) (param $2 i64) + (local $3 i32) + (local $4 i32) + (local $5 i32) + local.get $2 + local.get $1 + i64.extend_i32_u + i64.lt_u + if + i32.const 0 + i32.const 32 + i32.const 387 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.const 19 + i32.add + i32.const -16 + i32.and + i32.const 4 + i32.sub + local.set $1 + local.get $0 + i32.load offset=1568 + local.tee $3 + if + local.get $3 + i32.const 4 + i32.add + local.get $1 + i32.gt_u + if + i32.const 0 + i32.const 32 + i32.const 394 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $3 + local.get $1 + i32.const 16 + i32.sub + local.tee $5 + i32.eq + if + local.get $3 + i32.load + local.set $4 + local.get $5 + local.set $1 + end + else + local.get $0 + i32.const 1572 + i32.add + local.get $1 + i32.gt_u + if + i32.const 0 + i32.const 32 + i32.const 407 + i32.const 5 + call $~lib/builtins/abort + unreachable + end + end + local.get $2 + i32.wrap_i64 + i32.const -16 + i32.and + local.get $1 + i32.sub + local.tee $3 + i32.const 20 + i32.lt_u + if + return + end + local.get $1 + local.get $4 + i32.const 2 + i32.and + local.get $3 + i32.const 8 + i32.sub + local.tee $3 + i32.const 1 + i32.or + i32.or + i32.store + local.get $1 + i32.const 0 + i32.store offset=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $1 + i32.const 4 + i32.add + local.get $3 + i32.add + local.tee $3 + i32.const 2 + i32.store + local.get $0 + local.get $3 + i32.store offset=1568 + local.get $0 + local.get $1 + call $~lib/rt/tlsf/insertBlock + ) + (func $~lib/rt/tlsf/searchBlock (param $0 i32) (result i32) + (local $1 i32) + (local $2 i32) + local.get $0 + i32.const 12 + i32.add + i32.load offset=4 + i32.const -2 + i32.and + local.tee $1 + if (result i32) + local.get $0 + local.get $1 + i32.ctz + i32.const 48 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + else + local.get $0 + i32.load + i32.const -16 + i32.and + local.tee $1 + if (result i32) + local.get $0 + local.get $1 + i32.ctz + local.tee $2 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + local.tee $1 + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 352 + i32.const 18 + call $~lib/builtins/abort + unreachable + end + local.get $0 + local.get $1 + i32.ctz + local.get $2 + i32.const 4 + i32.shl + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + else + i32.const 0 + end + end + ) + (func $start:lowMemoryLimit/more-than-64k-error + (local $0 i32) + (local $1 i32) + (local $2 i64) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + loop $for-loop|0 + local.get $3 + i32.const 640 + i32.lt_s + if + global.get $~lib/rt/tlsf/ROOT + i32.eqz + if + memory.size + local.tee $0 + i32.const 0 + i32.le_s + if (result i32) + i32.const 1 + local.get $0 + i32.sub + memory.grow + i32.const 0 + i32.lt_s + else + i32.const 0 + end + if + unreachable + end + i32.const 32912 + i32.const 0 + i32.store + i32.const 34480 + i32.const 0 + i32.store + i32.const 0 + local.set $0 + loop $for-loop|00 + local.get $0 + i32.const 23 + i32.lt_u + if + local.get $0 + i32.const 2 + i32.shl + i32.const 32912 + i32.add + i32.const 0 + i32.store offset=4 + i32.const 0 + local.set $1 + loop $for-loop|1 + local.get $1 + i32.const 16 + i32.lt_u + if + local.get $0 + i32.const 4 + i32.shl + local.get $1 + i32.add + i32.const 2 + i32.shl + i32.const 32912 + i32.add + i32.const 0 + i32.store offset=96 + local.get $1 + i32.const 1 + i32.add + local.set $1 + br $for-loop|1 + end + end + local.get $0 + i32.const 1 + i32.add + local.set $0 + br $for-loop|00 + end + end + i64.const 655360 + memory.size + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $2 + local.get $2 + i64.const 655360 + i64.ge_u + select + local.tee $2 + i64.const 34484 + i64.lt_u + if + unreachable + end + i32.const 32912 + i32.const 34484 + local.get $2 + call $~lib/rt/tlsf/addMemory + i32.const 32912 + global.set $~lib/rt/tlsf/ROOT + end + global.get $~lib/rt/tlsf/ROOT + local.tee $1 + call $~lib/rt/tlsf/searchBlock + local.tee $0 + i32.eqz + if + memory.size + local.tee $4 + i32.const 16 + i32.shl + local.tee $0 + i32.const 4 + local.get $1 + i32.load offset=1568 + local.get $0 + i32.const 4 + i32.sub + i32.ne + i32.shl + i32.const 1099 + i32.add + local.tee $0 + i32.add + i32.const 655360 + i32.gt_u + if + unreachable + end + local.get $4 + local.get $0 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + local.tee $5 + local.get $4 + local.get $5 + i32.gt_s + select + local.tee $0 + i32.const 10 + local.get $4 + i32.sub + local.tee $6 + local.get $0 + local.get $6 + i32.lt_s + select + memory.grow + i32.const 0 + i32.lt_s + if + local.get $5 + memory.grow + i32.const 0 + i32.lt_s + if + unreachable + end + end + local.get $1 + local.get $4 + i32.const 16 + i32.shl + i64.const 655360 + memory.size + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $2 + local.get $2 + i64.const 655360 + i64.ge_u + select + call $~lib/rt/tlsf/addMemory + local.get $1 + call $~lib/rt/tlsf/searchBlock + local.tee $0 + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 510 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + end + local.get $0 + i32.load + i32.const -4 + i32.and + i32.const 1036 + i32.lt_u + if + i32.const 0 + i32.const 32 + i32.const 512 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + local.get $0 + call $~lib/rt/tlsf/removeBlock + local.get $0 + i32.load + local.tee $4 + i32.const -4 + i32.and + i32.const 1036 + i32.sub + local.tee $5 + i32.const 16 + i32.ge_u + if + local.get $0 + local.get $4 + i32.const 2 + i32.and + i32.const 1036 + i32.or + i32.store + local.get $0 + i32.const 1040 + i32.add + local.tee $0 + local.get $5 + i32.const 4 + i32.sub + i32.const 1 + i32.or + i32.store + local.get $1 + local.get $0 + call $~lib/rt/tlsf/insertBlock + else + local.get $0 + local.get $4 + i32.const -2 + i32.and + i32.store + local.get $0 + i32.const 4 + i32.add + local.get $0 + i32.load + i32.const -4 + i32.and + i32.add + local.tee $0 + local.get $0 + i32.load + i32.const -3 + i32.and + i32.store + end + local.get $3 + i32.const 1 + i32.add + local.set $3 + br $for-loop|0 + end + end + ) + (func $~start + call $start:lowMemoryLimit/more-than-64k-error + ) +) diff --git a/tests/compiler/lowMemoryLimit/more-than-64k-error.ts b/tests/compiler/lowMemoryLimit/more-than-64k-error.ts new file mode 100644 index 0000000000..781850a140 --- /dev/null +++ b/tests/compiler/lowMemoryLimit/more-than-64k-error.ts @@ -0,0 +1,3 @@ +for (let i = 0; i < 640; i++) { + __alloc(1024) +} diff --git a/tests/compiler/lowMemoryLimit/more-than-64k.debug.wat b/tests/compiler/lowMemoryLimit/more-than-64k.debug.wat new file mode 100644 index 0000000000..b8a2ab7968 --- /dev/null +++ b/tests/compiler/lowMemoryLimit/more-than-64k.debug.wat @@ -0,0 +1,1602 @@ +(module + (type $0 (func (param i32) (result i32))) + (type $1 (func (param i32 i32))) + (type $2 (func)) + (type $3 (func (param i32 i32) (result i32))) + (type $4 (func (param i32 i32 i32 i32))) + (type $5 (func (param i32 i32 i64) (result i32))) + (type $6 (func (param i32 i32 i32))) + (import "env" "abort" (func $~lib/builtins/abort (param i32 i32 i32 i32))) + (global $~lib/rt/tlsf/ROOT (mut i32) (i32.const 0)) + (global $~lib/native/ASC_LOW_MEMORY_LIMIT i32 (i32.const 655360)) + (global $~lib/memory/__data_end i32 (i32.const 140)) + (global $~lib/memory/__stack_pointer (mut i32) (i32.const 32908)) + (global $~lib/memory/__heap_base i32 (i32.const 32908)) + (memory $0 1) + (data $0 (i32.const 12) "<\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") + (data $1 (i32.const 76) "<\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") + (table $0 1 1 funcref) + (elem $0 (i32.const 1)) + (export "memory" (memory $0)) + (start $~start) + (func $~lib/rt/tlsf/Root#set:flMap (param $this i32) (param $flMap i32) + local.get $this + local.get $flMap + i32.store + ) + (func $~lib/rt/common/BLOCK#get:mmInfo (param $this i32) (result i32) + local.get $this + i32.load + ) + (func $~lib/rt/common/BLOCK#set:mmInfo (param $this i32) (param $mmInfo i32) + local.get $this + local.get $mmInfo + i32.store + ) + (func $~lib/rt/tlsf/Block#set:prev (param $this i32) (param $prev i32) + local.get $this + local.get $prev + i32.store offset=4 + ) + (func $~lib/rt/tlsf/Block#set:next (param $this i32) (param $next i32) + local.get $this + local.get $next + i32.store offset=8 + ) + (func $~lib/rt/tlsf/Block#get:prev (param $this i32) (result i32) + local.get $this + i32.load offset=4 + ) + (func $~lib/rt/tlsf/Block#get:next (param $this i32) (result i32) + local.get $this + i32.load offset=8 + ) + (func $~lib/rt/tlsf/Root#get:flMap (param $this i32) (result i32) + local.get $this + i32.load + ) + (func $~lib/rt/tlsf/removeBlock (param $root i32) (param $block i32) + (local $blockInfo i32) + (local $size i32) + (local $fl i32) + (local $sl i32) + (local $6 i32) + (local $7 i32) + (local $boundedSize i32) + (local $prev i32) + (local $next i32) + (local $root|11 i32) + (local $fl|12 i32) + (local $sl|13 i32) + (local $root|14 i32) + (local $fl|15 i32) + (local $sl|16 i32) + (local $head i32) + (local $root|18 i32) + (local $fl|19 i32) + (local $slMap i32) + (local $root|21 i32) + (local $fl|22 i32) + (local $slMap|23 i32) + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $blockInfo + i32.const 1 + drop + local.get $blockInfo + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 273 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.set $size + i32.const 1 + drop + local.get $size + i32.const 12 + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 275 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $size + i32.const 256 + i32.lt_u + if + i32.const 0 + local.set $fl + local.get $size + i32.const 4 + i32.shr_u + local.set $sl + else + local.get $size + local.tee $6 + i32.const 1073741820 + local.tee $7 + local.get $6 + local.get $7 + i32.lt_u + select + local.set $boundedSize + i32.const 31 + local.get $boundedSize + i32.clz + i32.sub + local.set $fl + local.get $boundedSize + local.get $fl + i32.const 4 + i32.sub + i32.shr_u + i32.const 1 + i32.const 4 + i32.shl + i32.xor + local.set $sl + local.get $fl + i32.const 8 + i32.const 1 + i32.sub + i32.sub + local.set $fl + end + i32.const 1 + drop + local.get $fl + i32.const 23 + i32.lt_u + if (result i32) + local.get $sl + i32.const 16 + i32.lt_u + else + i32.const 0 + end + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 289 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $block + call $~lib/rt/tlsf/Block#get:prev + local.set $prev + local.get $block + call $~lib/rt/tlsf/Block#get:next + local.set $next + local.get $prev + if + local.get $prev + local.get $next + call $~lib/rt/tlsf/Block#set:next + end + local.get $next + if + local.get $next + local.get $prev + call $~lib/rt/tlsf/Block#set:prev + end + local.get $block + block $~lib/rt/tlsf/GETHEAD|inlined.0 (result i32) + local.get $root + local.set $root|11 + local.get $fl + local.set $fl|12 + local.get $sl + local.set $sl|13 + local.get $root|11 + local.get $fl|12 + i32.const 4 + i32.shl + local.get $sl|13 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.0 + end + i32.eq + if + local.get $root + local.set $root|14 + local.get $fl + local.set $fl|15 + local.get $sl + local.set $sl|16 + local.get $next + local.set $head + local.get $root|14 + local.get $fl|15 + i32.const 4 + i32.shl + local.get $sl|16 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $head + i32.store offset=96 + local.get $next + i32.eqz + if + block $~lib/rt/tlsf/GETSL|inlined.0 (result i32) + local.get $root + local.set $root|18 + local.get $fl + local.set $fl|19 + local.get $root|18 + local.get $fl|19 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.0 + end + local.set $slMap + local.get $root + local.set $root|21 + local.get $fl + local.set $fl|22 + local.get $slMap + i32.const 1 + local.get $sl + i32.shl + i32.const -1 + i32.xor + i32.and + local.tee $slMap + local.set $slMap|23 + local.get $root|21 + local.get $fl|22 + i32.const 2 + i32.shl + i32.add + local.get $slMap|23 + i32.store offset=4 + local.get $slMap + i32.eqz + if + local.get $root + local.get $root + call $~lib/rt/tlsf/Root#get:flMap + i32.const 1 + local.get $fl + i32.shl + i32.const -1 + i32.xor + i32.and + call $~lib/rt/tlsf/Root#set:flMap + end + end + end + ) + (func $~lib/rt/tlsf/insertBlock (param $root i32) (param $block i32) + (local $blockInfo i32) + (local $block|3 i32) + (local $right i32) + (local $rightInfo i32) + (local $block|6 i32) + (local $block|7 i32) + (local $left i32) + (local $leftInfo i32) + (local $size i32) + (local $fl i32) + (local $sl i32) + (local $13 i32) + (local $14 i32) + (local $boundedSize i32) + (local $root|16 i32) + (local $fl|17 i32) + (local $sl|18 i32) + (local $head i32) + (local $root|20 i32) + (local $fl|21 i32) + (local $sl|22 i32) + (local $head|23 i32) + (local $root|24 i32) + (local $fl|25 i32) + (local $root|26 i32) + (local $fl|27 i32) + (local $slMap i32) + i32.const 1 + drop + local.get $block + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 206 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $blockInfo + i32.const 1 + drop + local.get $blockInfo + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 208 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETRIGHT|inlined.0 (result i32) + local.get $block + local.set $block|3 + local.get $block|3 + i32.const 4 + i32.add + local.get $block|3 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.0 + end + local.set $right + local.get $right + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $rightInfo + local.get $rightInfo + i32.const 1 + i32.and + if + local.get $root + local.get $right + call $~lib/rt/tlsf/removeBlock + local.get $block + local.get $blockInfo + i32.const 4 + i32.add + local.get $rightInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + local.tee $blockInfo + call $~lib/rt/common/BLOCK#set:mmInfo + block $~lib/rt/tlsf/GETRIGHT|inlined.1 (result i32) + local.get $block + local.set $block|6 + local.get $block|6 + i32.const 4 + i32.add + local.get $block|6 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.1 + end + local.set $right + local.get $right + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $rightInfo + end + local.get $blockInfo + i32.const 2 + i32.and + if + block $~lib/rt/tlsf/GETFREELEFT|inlined.0 (result i32) + local.get $block + local.set $block|7 + local.get $block|7 + i32.const 4 + i32.sub + i32.load + br $~lib/rt/tlsf/GETFREELEFT|inlined.0 + end + local.set $left + local.get $left + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $leftInfo + i32.const 1 + drop + local.get $leftInfo + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 226 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $root + local.get $left + call $~lib/rt/tlsf/removeBlock + local.get $left + local.set $block + local.get $block + local.get $leftInfo + i32.const 4 + i32.add + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + local.tee $blockInfo + call $~lib/rt/common/BLOCK#set:mmInfo + end + local.get $right + local.get $rightInfo + i32.const 2 + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.set $size + i32.const 1 + drop + local.get $size + i32.const 12 + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 238 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + i32.const 1 + drop + local.get $block + i32.const 4 + i32.add + local.get $size + i32.add + local.get $right + i32.eq + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 239 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $right + i32.const 4 + i32.sub + local.get $block + i32.store + local.get $size + i32.const 256 + i32.lt_u + if + i32.const 0 + local.set $fl + local.get $size + i32.const 4 + i32.shr_u + local.set $sl + else + local.get $size + local.tee $13 + i32.const 1073741820 + local.tee $14 + local.get $13 + local.get $14 + i32.lt_u + select + local.set $boundedSize + i32.const 31 + local.get $boundedSize + i32.clz + i32.sub + local.set $fl + local.get $boundedSize + local.get $fl + i32.const 4 + i32.sub + i32.shr_u + i32.const 1 + i32.const 4 + i32.shl + i32.xor + local.set $sl + local.get $fl + i32.const 8 + i32.const 1 + i32.sub + i32.sub + local.set $fl + end + i32.const 1 + drop + local.get $fl + i32.const 23 + i32.lt_u + if (result i32) + local.get $sl + i32.const 16 + i32.lt_u + else + i32.const 0 + end + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 256 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETHEAD|inlined.1 (result i32) + local.get $root + local.set $root|16 + local.get $fl + local.set $fl|17 + local.get $sl + local.set $sl|18 + local.get $root|16 + local.get $fl|17 + i32.const 4 + i32.shl + local.get $sl|18 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.1 + end + local.set $head + local.get $block + i32.const 0 + call $~lib/rt/tlsf/Block#set:prev + local.get $block + local.get $head + call $~lib/rt/tlsf/Block#set:next + local.get $head + if + local.get $head + local.get $block + call $~lib/rt/tlsf/Block#set:prev + end + local.get $root + local.set $root|20 + local.get $fl + local.set $fl|21 + local.get $sl + local.set $sl|22 + local.get $block + local.set $head|23 + local.get $root|20 + local.get $fl|21 + i32.const 4 + i32.shl + local.get $sl|22 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $head|23 + i32.store offset=96 + local.get $root + local.get $root + call $~lib/rt/tlsf/Root#get:flMap + i32.const 1 + local.get $fl + i32.shl + i32.or + call $~lib/rt/tlsf/Root#set:flMap + local.get $root + local.set $root|26 + local.get $fl + local.set $fl|27 + block $~lib/rt/tlsf/GETSL|inlined.1 (result i32) + local.get $root + local.set $root|24 + local.get $fl + local.set $fl|25 + local.get $root|24 + local.get $fl|25 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.1 + end + i32.const 1 + local.get $sl + i32.shl + i32.or + local.set $slMap + local.get $root|26 + local.get $fl|27 + i32.const 2 + i32.shl + i32.add + local.get $slMap + i32.store offset=4 + ) + (func $~lib/rt/tlsf/addMemory (param $root i32) (param $start i32) (param $endU64 i64) (result i32) + (local $end i32) + (local $root|4 i32) + (local $tail i32) + (local $tailInfo i32) + (local $size i32) + (local $leftSize i32) + (local $left i32) + (local $root|10 i32) + (local $tail|11 i32) + local.get $endU64 + i32.wrap_i64 + local.set $end + i32.const 1 + drop + local.get $start + i64.extend_i32_u + local.get $endU64 + i64.le_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 387 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $start + i32.const 4 + i32.add + i32.const 15 + i32.add + i32.const 15 + i32.const -1 + i32.xor + i32.and + i32.const 4 + i32.sub + local.set $start + local.get $end + i32.const 15 + i32.const -1 + i32.xor + i32.and + local.set $end + block $~lib/rt/tlsf/GETTAIL|inlined.0 (result i32) + local.get $root + local.set $root|4 + local.get $root|4 + i32.load offset=1568 + br $~lib/rt/tlsf/GETTAIL|inlined.0 + end + local.set $tail + i32.const 0 + local.set $tailInfo + local.get $tail + if + i32.const 1 + drop + local.get $start + local.get $tail + i32.const 4 + i32.add + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 394 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $start + i32.const 16 + i32.sub + local.get $tail + i32.eq + if + local.get $start + i32.const 16 + i32.sub + local.set $start + local.get $tail + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $tailInfo + else + end + else + i32.const 1 + drop + local.get $start + local.get $root + i32.const 1572 + i32.add + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 407 + i32.const 5 + call $~lib/builtins/abort + unreachable + end + end + local.get $end + local.get $start + i32.sub + local.set $size + local.get $size + i32.const 4 + i32.const 12 + i32.add + i32.const 4 + i32.add + i32.lt_u + if + i32.const 0 + return + end + local.get $size + i32.const 2 + i32.const 4 + i32.mul + i32.sub + local.set $leftSize + local.get $start + local.set $left + local.get $left + local.get $leftSize + i32.const 1 + i32.or + local.get $tailInfo + i32.const 2 + i32.and + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $left + i32.const 0 + call $~lib/rt/tlsf/Block#set:prev + local.get $left + i32.const 0 + call $~lib/rt/tlsf/Block#set:next + local.get $start + i32.const 4 + i32.add + local.get $leftSize + i32.add + local.set $tail + local.get $tail + i32.const 0 + i32.const 2 + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $root + local.set $root|10 + local.get $tail + local.set $tail|11 + local.get $root|10 + local.get $tail|11 + i32.store offset=1568 + local.get $root + local.get $left + call $~lib/rt/tlsf/insertBlock + i32.const 1 + return + ) + (func $~lib/rt/tlsf/initialize + (local $rootOffset i32) + (local $pagesBefore i32) + (local $size i32) + (local $pagesNeeded i32) + (local $root i32) + (local $root|5 i32) + (local $tail i32) + (local $fl i32) + (local $root|8 i32) + (local $fl|9 i32) + (local $slMap i32) + (local $sl i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) + (local $head i32) + (local $memStart i32) + (local $17 i64) + (local $18 i64) + (local $limitedEnd i64) + i32.const 0 + drop + global.get $~lib/memory/__heap_base + i32.const 15 + i32.add + i32.const 15 + i32.const -1 + i32.xor + i32.and + local.set $rootOffset + memory.size + local.set $pagesBefore + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end + local.set $pagesNeeded + local.get $pagesNeeded + local.get $pagesBefore + i32.gt_s + if (result i32) + local.get $pagesNeeded + local.get $pagesBefore + i32.sub + memory.grow + i32.const 0 + i32.lt_s + else + i32.const 0 + end + if + unreachable + end + local.get $rootOffset + local.set $root + local.get $root + i32.const 0 + call $~lib/rt/tlsf/Root#set:flMap + local.get $root + local.set $root|5 + i32.const 0 + local.set $tail + local.get $root|5 + local.get $tail + i32.store offset=1568 + i32.const 0 + local.set $fl + loop $for-loop|0 + local.get $fl + i32.const 23 + i32.lt_u + if + local.get $root + local.set $root|8 + local.get $fl + local.set $fl|9 + i32.const 0 + local.set $slMap + local.get $root|8 + local.get $fl|9 + i32.const 2 + i32.shl + i32.add + local.get $slMap + i32.store offset=4 + i32.const 0 + local.set $sl + loop $for-loop|1 + local.get $sl + i32.const 16 + i32.lt_u + if + local.get $root + local.set $root|12 + local.get $fl + local.set $fl|13 + local.get $sl + local.set $sl|14 + i32.const 0 + local.set $head + local.get $root|12 + local.get $fl|13 + i32.const 4 + i32.shl + local.get $sl|14 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $head + i32.store offset=96 + local.get $sl + i32.const 1 + i32.add + local.set $sl + br $for-loop|1 + end + end + local.get $fl + i32.const 1 + i32.add + local.set $fl + br $for-loop|0 + end + end + local.get $rootOffset + i32.const 1572 + i32.add + local.set $memStart + i32.const 655360 + drop + memory.size + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $17 + i32.const 655360 + i64.extend_i32_s + i32.const 15 + i32.const -1 + i32.xor + i64.extend_i32_u + i64.and + local.tee $18 + local.get $17 + local.get $18 + i64.lt_u + select + local.set $limitedEnd + local.get $memStart + i64.extend_i32_u + local.get $limitedEnd + i64.gt_u + if + unreachable + end + local.get $root + local.get $memStart + local.get $limitedEnd + call $~lib/rt/tlsf/addMemory + drop + local.get $root + global.set $~lib/rt/tlsf/ROOT + ) + (func $~lib/rt/tlsf/computeSize (param $size i32) (result i32) + local.get $size + i32.const 12 + i32.le_u + if (result i32) + i32.const 12 + else + local.get $size + i32.const 4 + i32.add + i32.const 15 + i32.add + i32.const 15 + i32.const -1 + i32.xor + i32.and + i32.const 4 + i32.sub + end + return + ) + (func $~lib/rt/tlsf/prepareSize (param $size i32) (result i32) + local.get $size + i32.const 1073741820 + i32.gt_u + if + i32.const 96 + i32.const 32 + i32.const 472 + i32.const 29 + call $~lib/builtins/abort + unreachable + end + local.get $size + call $~lib/rt/tlsf/computeSize + return + ) + (func $~lib/rt/tlsf/roundSize (param $size i32) (result i32) + local.get $size + i32.const 536870910 + i32.lt_u + if (result i32) + local.get $size + i32.const 1 + i32.const 27 + local.get $size + i32.clz + i32.sub + i32.shl + i32.add + i32.const 1 + i32.sub + else + local.get $size + end + return + ) + (func $~lib/rt/tlsf/searchBlock (param $root i32) (param $size i32) (result i32) + (local $fl i32) + (local $sl i32) + (local $requestSize i32) + (local $root|5 i32) + (local $fl|6 i32) + (local $slMap i32) + (local $head i32) + (local $flMap i32) + (local $root|10 i32) + (local $fl|11 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) + (local $root|15 i32) + (local $fl|16 i32) + (local $sl|17 i32) + local.get $size + i32.const 256 + i32.lt_u + if + i32.const 0 + local.set $fl + local.get $size + i32.const 4 + i32.shr_u + local.set $sl + else + local.get $size + call $~lib/rt/tlsf/roundSize + local.set $requestSize + i32.const 4 + i32.const 8 + i32.mul + i32.const 1 + i32.sub + local.get $requestSize + i32.clz + i32.sub + local.set $fl + local.get $requestSize + local.get $fl + i32.const 4 + i32.sub + i32.shr_u + i32.const 1 + i32.const 4 + i32.shl + i32.xor + local.set $sl + local.get $fl + i32.const 8 + i32.const 1 + i32.sub + i32.sub + local.set $fl + end + i32.const 1 + drop + local.get $fl + i32.const 23 + i32.lt_u + if (result i32) + local.get $sl + i32.const 16 + i32.lt_u + else + i32.const 0 + end + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 339 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETSL|inlined.2 (result i32) + local.get $root + local.set $root|5 + local.get $fl + local.set $fl|6 + local.get $root|5 + local.get $fl|6 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.2 + end + i32.const 0 + i32.const -1 + i32.xor + local.get $sl + i32.shl + i32.and + local.set $slMap + i32.const 0 + local.set $head + local.get $slMap + i32.eqz + if + local.get $root + call $~lib/rt/tlsf/Root#get:flMap + i32.const 0 + i32.const -1 + i32.xor + local.get $fl + i32.const 1 + i32.add + i32.shl + i32.and + local.set $flMap + local.get $flMap + i32.eqz + if + i32.const 0 + local.set $head + else + local.get $flMap + i32.ctz + local.set $fl + block $~lib/rt/tlsf/GETSL|inlined.3 (result i32) + local.get $root + local.set $root|10 + local.get $fl + local.set $fl|11 + local.get $root|10 + local.get $fl|11 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + br $~lib/rt/tlsf/GETSL|inlined.3 + end + local.set $slMap + i32.const 1 + drop + local.get $slMap + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 352 + i32.const 18 + call $~lib/builtins/abort + unreachable + end + block $~lib/rt/tlsf/GETHEAD|inlined.2 (result i32) + local.get $root + local.set $root|12 + local.get $fl + local.set $fl|13 + local.get $slMap + i32.ctz + local.set $sl|14 + local.get $root|12 + local.get $fl|13 + i32.const 4 + i32.shl + local.get $sl|14 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.2 + end + local.set $head + end + else + block $~lib/rt/tlsf/GETHEAD|inlined.3 (result i32) + local.get $root + local.set $root|15 + local.get $fl + local.set $fl|16 + local.get $slMap + i32.ctz + local.set $sl|17 + local.get $root|15 + local.get $fl|16 + i32.const 4 + i32.shl + local.get $sl|17 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + br $~lib/rt/tlsf/GETHEAD|inlined.3 + end + local.set $head + end + local.get $head + return + ) + (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) + (local $pagesBefore i32) + (local $root|3 i32) + (local $size|4 i32) + (local $pagesNeeded i32) + (local $6 i32) + (local $7 i32) + (local $pagesWanted i32) + (local $size|9 i32) + (local $10 i32) + (local $11 i32) + (local $pagesAfter i32) + (local $13 i64) + (local $14 i64) + local.get $size + i32.const 256 + i32.ge_u + if + local.get $size + call $~lib/rt/tlsf/roundSize + local.set $size + end + memory.size + local.set $pagesBefore + local.get $size + i32.const 4 + local.get $pagesBefore + i32.const 16 + i32.shl + i32.const 4 + i32.sub + block $~lib/rt/tlsf/GETTAIL|inlined.1 (result i32) + local.get $root + local.set $root|3 + local.get $root|3 + i32.load offset=1568 + br $~lib/rt/tlsf/GETTAIL|inlined.1 + end + i32.ne + i32.shl + i32.add + local.set $size + i32.const 655360 + drop + local.get $pagesBefore + i32.const 16 + i32.shl + local.get $size + i32.add + i32.const 655360 + i32.gt_u + if + unreachable + end + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end + local.set $pagesNeeded + local.get $pagesBefore + local.tee $6 + local.get $pagesNeeded + local.tee $7 + local.get $6 + local.get $7 + i32.gt_s + select + local.set $pagesWanted + i32.const 655360 + drop + local.get $pagesWanted + local.tee $10 + block $~lib/rt/tlsf/sizeRoundToPage|inlined.2 (result i32) + i32.const 655360 + local.set $size|9 + local.get $size|9 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.2 + end + local.get $pagesBefore + i32.sub + local.tee $11 + local.get $10 + local.get $11 + i32.lt_s + select + local.set $pagesWanted + local.get $pagesWanted + memory.grow + i32.const 0 + i32.lt_s + if + local.get $pagesNeeded + memory.grow + i32.const 0 + i32.lt_s + if + unreachable + end + end + memory.size + local.set $pagesAfter + i32.const 655360 + drop + local.get $root + local.get $pagesBefore + i32.const 16 + i32.shl + local.get $pagesAfter + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $13 + i32.const 655360 + i64.extend_i32_s + i32.const 15 + i32.const -1 + i32.xor + i64.extend_i32_u + i64.and + local.tee $14 + local.get $13 + local.get $14 + i64.lt_u + select + call $~lib/rt/tlsf/addMemory + drop + ) + (func $~lib/rt/tlsf/prepareBlock (param $root i32) (param $block i32) (param $size i32) + (local $blockInfo i32) + (local $remaining i32) + (local $spare i32) + (local $block|6 i32) + (local $block|7 i32) + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + local.set $blockInfo + i32.const 1 + drop + local.get $size + i32.const 4 + i32.add + i32.const 15 + i32.and + i32.eqz + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 366 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $blockInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.get $size + i32.sub + local.set $remaining + local.get $remaining + i32.const 4 + i32.const 12 + i32.add + i32.ge_u + if + local.get $block + local.get $size + local.get $blockInfo + i32.const 2 + i32.and + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $block + i32.const 4 + i32.add + local.get $size + i32.add + local.set $spare + local.get $spare + local.get $remaining + i32.const 4 + i32.sub + i32.const 1 + i32.or + call $~lib/rt/common/BLOCK#set:mmInfo + local.get $root + local.get $spare + call $~lib/rt/tlsf/insertBlock + else + local.get $block + local.get $blockInfo + i32.const 1 + i32.const -1 + i32.xor + i32.and + call $~lib/rt/common/BLOCK#set:mmInfo + block $~lib/rt/tlsf/GETRIGHT|inlined.3 (result i32) + local.get $block + local.set $block|7 + local.get $block|7 + i32.const 4 + i32.add + local.get $block|7 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.3 + end + block $~lib/rt/tlsf/GETRIGHT|inlined.2 (result i32) + local.get $block + local.set $block|6 + local.get $block|6 + i32.const 4 + i32.add + local.get $block|6 + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + i32.add + br $~lib/rt/tlsf/GETRIGHT|inlined.2 + end + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 2 + i32.const -1 + i32.xor + i32.and + call $~lib/rt/common/BLOCK#set:mmInfo + end + ) + (func $~lib/rt/tlsf/allocateBlock (param $root i32) (param $size i32) (result i32) + (local $payloadSize i32) + (local $block i32) + local.get $size + call $~lib/rt/tlsf/prepareSize + local.set $payloadSize + local.get $root + local.get $payloadSize + call $~lib/rt/tlsf/searchBlock + local.set $block + local.get $block + i32.eqz + if + local.get $root + local.get $payloadSize + call $~lib/rt/tlsf/growMemory + local.get $root + local.get $payloadSize + call $~lib/rt/tlsf/searchBlock + local.set $block + i32.const 1 + drop + local.get $block + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 510 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + end + i32.const 1 + drop + local.get $block + call $~lib/rt/common/BLOCK#get:mmInfo + i32.const 3 + i32.const -1 + i32.xor + i32.and + local.get $payloadSize + i32.ge_u + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 512 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $root + local.get $block + call $~lib/rt/tlsf/removeBlock + local.get $root + local.get $block + local.get $payloadSize + call $~lib/rt/tlsf/prepareBlock + i32.const 0 + drop + local.get $block + return + ) + (func $~lib/rt/tlsf/__alloc (param $size i32) (result i32) + global.get $~lib/rt/tlsf/ROOT + i32.eqz + if + call $~lib/rt/tlsf/initialize + end + global.get $~lib/rt/tlsf/ROOT + local.get $size + call $~lib/rt/tlsf/allocateBlock + i32.const 4 + i32.add + return + ) + (func $start:lowMemoryLimit/more-than-64k + (local $i i32) + i32.const 0 + local.set $i + loop $for-loop|0 + local.get $i + i32.const 9 + i32.lt_s + if + i32.const 64 + i32.const 1024 + i32.mul + call $~lib/rt/tlsf/__alloc + drop + local.get $i + i32.const 1 + i32.add + local.set $i + br $for-loop|0 + end + end + ) + (func $~start + call $start:lowMemoryLimit/more-than-64k + ) +) diff --git a/tests/compiler/lowMemoryLimit/more-than-64k.json b/tests/compiler/lowMemoryLimit/more-than-64k.json new file mode 100644 index 0000000000..d3b43e19d8 --- /dev/null +++ b/tests/compiler/lowMemoryLimit/more-than-64k.json @@ -0,0 +1,5 @@ +{ + "asc_flags": [ + "--lowMemoryLimit", "655360" + ] +} diff --git a/tests/compiler/lowMemoryLimit/more-than-64k.release.wat b/tests/compiler/lowMemoryLimit/more-than-64k.release.wat new file mode 100644 index 0000000000..1bf667dee1 --- /dev/null +++ b/tests/compiler/lowMemoryLimit/more-than-64k.release.wat @@ -0,0 +1,859 @@ +(module + (type $0 (func (param i32 i32))) + (type $1 (func)) + (type $2 (func (param i32 i32 i32 i32))) + (type $3 (func (param i32 i32 i64))) + (type $4 (func (param i32) (result i32))) + (import "env" "abort" (func $~lib/builtins/abort (param i32 i32 i32 i32))) + (global $~lib/rt/tlsf/ROOT (mut i32) (i32.const 0)) + (memory $0 1) + (data $0 (i32.const 12) "<") + (data $0.1 (i32.const 24) "\02\00\00\00\1e\00\00\00~\00l\00i\00b\00/\00r\00t\00/\00t\00l\00s\00f\00.\00t\00s") + (data $1 (i32.const 76) "<") + (data $1.1 (i32.const 88) "\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") + (export "memory" (memory $0)) + (start $~start) + (func $~lib/rt/tlsf/removeBlock (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + local.get $1 + i32.load + local.tee $3 + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 273 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $3 + i32.const -4 + i32.and + local.tee $3 + i32.const 12 + i32.lt_u + if + i32.const 0 + i32.const 32 + i32.const 275 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $3 + i32.const 256 + i32.lt_u + if (result i32) + local.get $3 + i32.const 4 + i32.shr_u + else + i32.const 31 + i32.const 1073741820 + local.get $3 + local.get $3 + i32.const 1073741820 + i32.ge_u + select + local.tee $3 + i32.clz + i32.sub + local.tee $4 + i32.const 7 + i32.sub + local.set $2 + local.get $3 + local.get $4 + i32.const 4 + i32.sub + i32.shr_u + i32.const 16 + i32.xor + end + local.tee $3 + i32.const 16 + i32.lt_u + local.get $2 + i32.const 23 + i32.lt_u + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 289 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.load offset=8 + local.set $5 + local.get $1 + i32.load offset=4 + local.tee $4 + if + local.get $4 + local.get $5 + i32.store offset=8 + end + local.get $5 + if + local.get $5 + local.get $4 + i32.store offset=4 + end + local.get $1 + local.get $0 + local.get $2 + i32.const 4 + i32.shl + local.get $3 + i32.add + i32.const 2 + i32.shl + i32.add + local.tee $1 + i32.load offset=96 + i32.eq + if + local.get $1 + local.get $5 + i32.store offset=96 + local.get $5 + i32.eqz + if + local.get $0 + local.get $2 + i32.const 2 + i32.shl + i32.add + local.tee $1 + i32.load offset=4 + i32.const -2 + local.get $3 + i32.rotl + i32.and + local.set $3 + local.get $1 + local.get $3 + i32.store offset=4 + local.get $3 + i32.eqz + if + local.get $0 + local.get $0 + i32.load + i32.const -2 + local.get $2 + i32.rotl + i32.and + i32.store + end + end + end + ) + (func $~lib/rt/tlsf/insertBlock (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + local.get $1 + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 206 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.load + local.tee $3 + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 208 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.const 4 + i32.add + local.get $1 + i32.load + i32.const -4 + i32.and + i32.add + local.tee $4 + i32.load + local.tee $2 + i32.const 1 + i32.and + if + local.get $0 + local.get $4 + call $~lib/rt/tlsf/removeBlock + local.get $1 + local.get $3 + i32.const 4 + i32.add + local.get $2 + i32.const -4 + i32.and + i32.add + local.tee $3 + i32.store + local.get $1 + i32.const 4 + i32.add + local.get $1 + i32.load + i32.const -4 + i32.and + i32.add + local.tee $4 + i32.load + local.set $2 + end + local.get $3 + i32.const 2 + i32.and + if + local.get $1 + i32.const 4 + i32.sub + i32.load + local.tee $1 + i32.load + local.tee $6 + i32.const 1 + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 226 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $0 + local.get $1 + call $~lib/rt/tlsf/removeBlock + local.get $1 + local.get $6 + i32.const 4 + i32.add + local.get $3 + i32.const -4 + i32.and + i32.add + local.tee $3 + i32.store + end + local.get $4 + local.get $2 + i32.const 2 + i32.or + i32.store + local.get $3 + i32.const -4 + i32.and + local.tee $2 + i32.const 12 + i32.lt_u + if + i32.const 0 + i32.const 32 + i32.const 238 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $4 + local.get $1 + i32.const 4 + i32.add + local.get $2 + i32.add + i32.ne + if + i32.const 0 + i32.const 32 + i32.const 239 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $4 + i32.const 4 + i32.sub + local.get $1 + i32.store + local.get $2 + i32.const 256 + i32.lt_u + if (result i32) + local.get $2 + i32.const 4 + i32.shr_u + else + i32.const 31 + i32.const 1073741820 + local.get $2 + local.get $2 + i32.const 1073741820 + i32.ge_u + select + local.tee $2 + i32.clz + i32.sub + local.tee $3 + i32.const 7 + i32.sub + local.set $5 + local.get $2 + local.get $3 + i32.const 4 + i32.sub + i32.shr_u + i32.const 16 + i32.xor + end + local.tee $2 + i32.const 16 + i32.lt_u + local.get $5 + i32.const 23 + i32.lt_u + i32.and + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 256 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $0 + local.get $5 + i32.const 4 + i32.shl + local.get $2 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + local.set $3 + local.get $1 + i32.const 0 + i32.store offset=4 + local.get $1 + local.get $3 + i32.store offset=8 + local.get $3 + if + local.get $3 + local.get $1 + i32.store offset=4 + end + local.get $0 + local.get $5 + i32.const 4 + i32.shl + local.get $2 + i32.add + i32.const 2 + i32.shl + i32.add + local.get $1 + i32.store offset=96 + local.get $0 + local.get $0 + i32.load + i32.const 1 + local.get $5 + i32.shl + i32.or + i32.store + local.get $0 + local.get $5 + i32.const 2 + i32.shl + i32.add + local.tee $0 + local.get $0 + i32.load offset=4 + i32.const 1 + local.get $2 + i32.shl + i32.or + i32.store offset=4 + ) + (func $~lib/rt/tlsf/addMemory (param $0 i32) (param $1 i32) (param $2 i64) + (local $3 i32) + (local $4 i32) + (local $5 i32) + local.get $2 + local.get $1 + i64.extend_i32_u + i64.lt_u + if + i32.const 0 + i32.const 32 + i32.const 387 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + i32.const 19 + i32.add + i32.const -16 + i32.and + i32.const 4 + i32.sub + local.set $1 + local.get $0 + i32.load offset=1568 + local.tee $3 + if + local.get $3 + i32.const 4 + i32.add + local.get $1 + i32.gt_u + if + i32.const 0 + i32.const 32 + i32.const 394 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + local.get $3 + local.get $1 + i32.const 16 + i32.sub + local.tee $5 + i32.eq + if + local.get $3 + i32.load + local.set $4 + local.get $5 + local.set $1 + end + else + local.get $0 + i32.const 1572 + i32.add + local.get $1 + i32.gt_u + if + i32.const 0 + i32.const 32 + i32.const 407 + i32.const 5 + call $~lib/builtins/abort + unreachable + end + end + local.get $2 + i32.wrap_i64 + i32.const -16 + i32.and + local.get $1 + i32.sub + local.tee $3 + i32.const 20 + i32.lt_u + if + return + end + local.get $1 + local.get $4 + i32.const 2 + i32.and + local.get $3 + i32.const 8 + i32.sub + local.tee $3 + i32.const 1 + i32.or + i32.or + i32.store + local.get $1 + i32.const 0 + i32.store offset=4 + local.get $1 + i32.const 0 + i32.store offset=8 + local.get $1 + i32.const 4 + i32.add + local.get $3 + i32.add + local.tee $3 + i32.const 2 + i32.store + local.get $0 + local.get $3 + i32.store offset=1568 + local.get $0 + local.get $1 + call $~lib/rt/tlsf/insertBlock + ) + (func $~lib/rt/tlsf/searchBlock (param $0 i32) (result i32) + (local $1 i32) + (local $2 i32) + local.get $0 + i32.const 36 + i32.add + i32.load offset=4 + i32.const -2 + i32.and + local.tee $1 + if (result i32) + local.get $0 + local.get $1 + i32.ctz + i32.const 144 + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + else + local.get $0 + i32.load + i32.const -1024 + i32.and + local.tee $1 + if (result i32) + local.get $0 + local.get $1 + i32.ctz + local.tee $2 + i32.const 2 + i32.shl + i32.add + i32.load offset=4 + local.tee $1 + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 352 + i32.const 18 + call $~lib/builtins/abort + unreachable + end + local.get $0 + local.get $1 + i32.ctz + local.get $2 + i32.const 4 + i32.shl + i32.add + i32.const 2 + i32.shl + i32.add + i32.load offset=96 + else + i32.const 0 + end + end + ) + (func $start:lowMemoryLimit/more-than-64k + (local $0 i32) + (local $1 i32) + (local $2 i64) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + loop $for-loop|0 + local.get $3 + i32.const 9 + i32.lt_s + if + global.get $~lib/rt/tlsf/ROOT + i32.eqz + if + memory.size + local.tee $0 + i32.const 0 + i32.le_s + if (result i32) + i32.const 1 + local.get $0 + i32.sub + memory.grow + i32.const 0 + i32.lt_s + else + i32.const 0 + end + if + unreachable + end + i32.const 32912 + i32.const 0 + i32.store + i32.const 34480 + i32.const 0 + i32.store + i32.const 0 + local.set $0 + loop $for-loop|00 + local.get $0 + i32.const 23 + i32.lt_u + if + local.get $0 + i32.const 2 + i32.shl + i32.const 32912 + i32.add + i32.const 0 + i32.store offset=4 + i32.const 0 + local.set $1 + loop $for-loop|1 + local.get $1 + i32.const 16 + i32.lt_u + if + local.get $0 + i32.const 4 + i32.shl + local.get $1 + i32.add + i32.const 2 + i32.shl + i32.const 32912 + i32.add + i32.const 0 + i32.store offset=96 + local.get $1 + i32.const 1 + i32.add + local.set $1 + br $for-loop|1 + end + end + local.get $0 + i32.const 1 + i32.add + local.set $0 + br $for-loop|00 + end + end + i64.const 655360 + memory.size + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $2 + local.get $2 + i64.const 655360 + i64.ge_u + select + local.tee $2 + i64.const 34484 + i64.lt_u + if + unreachable + end + i32.const 32912 + i32.const 34484 + local.get $2 + call $~lib/rt/tlsf/addMemory + i32.const 32912 + global.set $~lib/rt/tlsf/ROOT + end + global.get $~lib/rt/tlsf/ROOT + local.tee $1 + call $~lib/rt/tlsf/searchBlock + local.tee $0 + i32.eqz + if + memory.size + local.tee $4 + i32.const 16 + i32.shl + local.tee $0 + i32.const 4 + local.get $1 + i32.load offset=1568 + local.get $0 + i32.const 4 + i32.sub + i32.ne + i32.shl + i32.const 69643 + i32.add + local.tee $0 + i32.add + i32.const 655360 + i32.gt_u + if + unreachable + end + local.get $4 + local.get $0 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + local.tee $5 + local.get $4 + local.get $5 + i32.gt_s + select + local.tee $0 + i32.const 10 + local.get $4 + i32.sub + local.tee $6 + local.get $0 + local.get $6 + i32.lt_s + select + memory.grow + i32.const 0 + i32.lt_s + if + local.get $5 + memory.grow + i32.const 0 + i32.lt_s + if + unreachable + end + end + local.get $1 + local.get $4 + i32.const 16 + i32.shl + i64.const 655360 + memory.size + i64.extend_i32_s + i64.const 16 + i64.shl + local.tee $2 + local.get $2 + i64.const 655360 + i64.ge_u + select + call $~lib/rt/tlsf/addMemory + local.get $1 + call $~lib/rt/tlsf/searchBlock + local.tee $0 + i32.eqz + if + i32.const 0 + i32.const 32 + i32.const 510 + i32.const 16 + call $~lib/builtins/abort + unreachable + end + end + local.get $0 + i32.load + i32.const -4 + i32.and + i32.const 65548 + i32.lt_u + if + i32.const 0 + i32.const 32 + i32.const 512 + i32.const 14 + call $~lib/builtins/abort + unreachable + end + local.get $1 + local.get $0 + call $~lib/rt/tlsf/removeBlock + local.get $0 + i32.load + local.tee $4 + i32.const -4 + i32.and + i32.const 65548 + i32.sub + local.tee $5 + i32.const 16 + i32.ge_u + if + local.get $0 + local.get $4 + i32.const 2 + i32.and + i32.const 65548 + i32.or + i32.store + local.get $0 + i32.const 65552 + i32.add + local.tee $0 + local.get $5 + i32.const 4 + i32.sub + i32.const 1 + i32.or + i32.store + local.get $1 + local.get $0 + call $~lib/rt/tlsf/insertBlock + else + local.get $0 + local.get $4 + i32.const -2 + i32.and + i32.store + local.get $0 + i32.const 4 + i32.add + local.get $0 + i32.load + i32.const -4 + i32.and + i32.add + local.tee $0 + local.get $0 + i32.load + i32.const -3 + i32.and + i32.store + end + local.get $3 + i32.const 1 + i32.add + local.set $3 + br $for-loop|0 + end + end + ) + (func $~start + call $start:lowMemoryLimit/more-than-64k + ) +) diff --git a/tests/compiler/lowMemoryLimit/more-than-64k.ts b/tests/compiler/lowMemoryLimit/more-than-64k.ts new file mode 100644 index 0000000000..0bb0cf73f4 --- /dev/null +++ b/tests/compiler/lowMemoryLimit/more-than-64k.ts @@ -0,0 +1,3 @@ +for (let i = 0; i < 9; i++) { + __alloc(64 * 1024) +} diff --git a/tests/compiler/managed-cast.debug.wat b/tests/compiler/managed-cast.debug.wat index 38367f2b11..2e02879682 100644 --- a/tests/compiler/managed-cast.debug.wat +++ b/tests/compiler/managed-cast.debug.wat @@ -447,7 +447,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -467,7 +467,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -530,7 +530,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -683,7 +683,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -700,7 +700,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -789,7 +789,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -832,7 +832,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -850,7 +850,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -918,7 +918,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1035,7 +1035,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1081,7 +1081,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1113,7 +1113,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1184,18 +1184,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1210,17 +1211,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1244,10 +1246,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1258,13 +1260,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1278,18 +1280,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1357,7 +1359,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1686,7 +1688,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1788,7 +1790,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1859,7 +1861,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1915,13 +1917,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1950,25 +1951,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1984,6 +1990,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2016,7 +2024,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2131,7 +2139,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2151,7 +2159,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/managed-cast.release.wat b/tests/compiler/managed-cast.release.wat index 79b3669b1f..8a6f82551c 100644 --- a/tests/compiler/managed-cast.release.wat +++ b/tests/compiler/managed-cast.release.wat @@ -249,7 +249,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -263,7 +263,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -309,7 +309,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -392,7 +392,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -406,7 +406,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -467,7 +467,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -500,7 +500,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -515,7 +515,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -566,7 +566,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -638,7 +638,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -663,7 +663,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -690,7 +690,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1053,7 +1053,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1119,7 +1119,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1214,8 +1214,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1251,7 +1249,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1266,7 +1264,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/new.debug.wat b/tests/compiler/new.debug.wat index 8714ae4b69..01caa6bac8 100644 --- a/tests/compiler/new.debug.wat +++ b/tests/compiler/new.debug.wat @@ -450,7 +450,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -470,7 +470,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -533,7 +533,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -686,7 +686,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -703,7 +703,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -792,7 +792,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -835,7 +835,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -853,7 +853,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -921,7 +921,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1038,7 +1038,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1084,7 +1084,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1116,7 +1116,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1187,18 +1187,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1213,17 +1214,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1247,10 +1249,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1261,13 +1263,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1281,18 +1283,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1360,7 +1362,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1689,7 +1691,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1791,7 +1793,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1862,7 +1864,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1918,13 +1920,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1953,25 +1954,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1987,6 +1993,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2019,7 +2027,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2134,7 +2142,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2154,7 +2162,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/new.release.wat b/tests/compiler/new.release.wat index 1828d48d23..6f4520ee9b 100644 --- a/tests/compiler/new.release.wat +++ b/tests/compiler/new.release.wat @@ -285,7 +285,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -299,7 +299,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -345,7 +345,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -428,7 +428,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -442,7 +442,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -503,7 +503,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -536,7 +536,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -551,7 +551,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -602,7 +602,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -674,7 +674,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -699,7 +699,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -726,7 +726,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1089,7 +1089,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1155,7 +1155,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1250,8 +1250,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1287,7 +1285,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1302,7 +1300,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/object-literal.debug.wat b/tests/compiler/object-literal.debug.wat index e66ee803a9..7dbcfc12ae 100644 --- a/tests/compiler/object-literal.debug.wat +++ b/tests/compiler/object-literal.debug.wat @@ -542,7 +542,7 @@ if i32.const 0 i32.const 416 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -562,7 +562,7 @@ if i32.const 0 i32.const 416 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -625,7 +625,7 @@ if i32.const 0 i32.const 416 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -778,7 +778,7 @@ if i32.const 0 i32.const 416 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -795,7 +795,7 @@ if i32.const 0 i32.const 416 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -884,7 +884,7 @@ if i32.const 0 i32.const 416 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -927,7 +927,7 @@ if i32.const 0 i32.const 416 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -945,7 +945,7 @@ if i32.const 0 i32.const 416 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1013,7 +1013,7 @@ if i32.const 0 i32.const 416 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1130,7 +1130,7 @@ if i32.const 0 i32.const 416 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1176,7 +1176,7 @@ if i32.const 0 i32.const 416 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1208,7 +1208,7 @@ if i32.const 0 i32.const 416 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1279,18 +1279,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1305,17 +1306,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1339,10 +1341,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1353,13 +1355,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1373,18 +1375,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1452,7 +1454,7 @@ if i32.const 0 i32.const 416 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1781,7 +1783,7 @@ if i32.const 288 i32.const 416 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1883,7 +1885,7 @@ if i32.const 0 i32.const 416 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1954,7 +1956,7 @@ if i32.const 0 i32.const 416 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2010,13 +2012,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2045,25 +2046,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2079,6 +2085,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2111,7 +2119,7 @@ if i32.const 0 i32.const 416 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2226,7 +2234,7 @@ if i32.const 0 i32.const 416 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2246,7 +2254,7 @@ if i32.const 0 i32.const 416 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/object-literal.release.wat b/tests/compiler/object-literal.release.wat index cc215c26e8..5e09e6b679 100644 --- a/tests/compiler/object-literal.release.wat +++ b/tests/compiler/object-literal.release.wat @@ -317,7 +317,7 @@ if i32.const 0 i32.const 1440 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -331,7 +331,7 @@ if i32.const 0 i32.const 1440 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -377,7 +377,7 @@ if i32.const 0 i32.const 1440 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -460,7 +460,7 @@ if i32.const 0 i32.const 1440 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -474,7 +474,7 @@ if i32.const 0 i32.const 1440 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -535,7 +535,7 @@ if i32.const 0 i32.const 1440 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -568,7 +568,7 @@ if i32.const 0 i32.const 1440 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -583,7 +583,7 @@ if i32.const 0 i32.const 1440 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -634,7 +634,7 @@ if i32.const 0 i32.const 1440 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -706,7 +706,7 @@ if i32.const 0 i32.const 1440 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -731,7 +731,7 @@ if i32.const 0 i32.const 1440 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -758,7 +758,7 @@ if i32.const 0 i32.const 1440 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -926,7 +926,7 @@ if i32.const 0 i32.const 1440 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1212,7 +1212,7 @@ if i32.const 0 i32.const 1440 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1264,7 +1264,7 @@ if i32.const 0 i32.const 1440 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1295,7 +1295,7 @@ if i32.const 1312 i32.const 1440 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1359,8 +1359,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -1397,7 +1395,7 @@ if i32.const 0 i32.const 1440 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1412,7 +1410,7 @@ if i32.const 0 i32.const 1440 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1431,7 +1429,7 @@ if i32.const 0 i32.const 1440 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/operator-overload-non-ambiguity.debug.wat b/tests/compiler/operator-overload-non-ambiguity.debug.wat index 4906ce43bf..afb2a4b972 100644 --- a/tests/compiler/operator-overload-non-ambiguity.debug.wat +++ b/tests/compiler/operator-overload-non-ambiguity.debug.wat @@ -445,7 +445,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -465,7 +465,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -528,7 +528,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -681,7 +681,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -698,7 +698,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -787,7 +787,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -830,7 +830,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -848,7 +848,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -916,7 +916,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1033,7 +1033,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1079,7 +1079,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1111,7 +1111,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1182,18 +1182,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1208,17 +1209,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1242,10 +1244,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1256,13 +1258,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1276,18 +1278,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1355,7 +1357,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1684,7 +1686,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1786,7 +1788,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1857,7 +1859,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1913,13 +1915,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1948,25 +1949,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1982,6 +1988,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2014,7 +2022,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2129,7 +2137,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2149,7 +2157,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/operator-overload-non-ambiguity.release.wat b/tests/compiler/operator-overload-non-ambiguity.release.wat index abbf89d89c..376a7c5341 100644 --- a/tests/compiler/operator-overload-non-ambiguity.release.wat +++ b/tests/compiler/operator-overload-non-ambiguity.release.wat @@ -245,7 +245,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -259,7 +259,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -305,7 +305,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -388,7 +388,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -402,7 +402,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -463,7 +463,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -496,7 +496,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -511,7 +511,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -562,7 +562,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -634,7 +634,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -659,7 +659,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -686,7 +686,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1049,7 +1049,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1115,7 +1115,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1210,8 +1210,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1247,7 +1245,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1262,7 +1260,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/optional-typeparameters.debug.wat b/tests/compiler/optional-typeparameters.debug.wat index f74a3d0ef3..32fcf5ade2 100644 --- a/tests/compiler/optional-typeparameters.debug.wat +++ b/tests/compiler/optional-typeparameters.debug.wat @@ -458,7 +458,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -478,7 +478,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -541,7 +541,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -694,7 +694,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -711,7 +711,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -800,7 +800,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -843,7 +843,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -861,7 +861,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -929,7 +929,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1046,7 +1046,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1092,7 +1092,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1124,7 +1124,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1195,18 +1195,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1221,17 +1222,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1255,10 +1257,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1269,13 +1271,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1289,18 +1291,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1368,7 +1370,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1697,7 +1699,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1799,7 +1801,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1870,7 +1872,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1926,13 +1928,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1961,25 +1962,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1995,6 +2001,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2027,7 +2035,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2142,7 +2150,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2162,7 +2170,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/optional-typeparameters.release.wat b/tests/compiler/optional-typeparameters.release.wat index 9c4eecb2ab..ab9b42dc00 100644 --- a/tests/compiler/optional-typeparameters.release.wat +++ b/tests/compiler/optional-typeparameters.release.wat @@ -271,7 +271,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -285,7 +285,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -331,7 +331,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -414,7 +414,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -428,7 +428,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -489,7 +489,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -522,7 +522,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -537,7 +537,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -588,7 +588,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -660,7 +660,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -685,7 +685,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -712,7 +712,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1075,7 +1075,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1141,7 +1141,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1236,8 +1236,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1273,7 +1271,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1288,7 +1286,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/reexport.debug.wat b/tests/compiler/reexport.debug.wat index 627d155d23..678d06d0e8 100644 --- a/tests/compiler/reexport.debug.wat +++ b/tests/compiler/reexport.debug.wat @@ -491,7 +491,7 @@ if i32.const 0 i32.const 416 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -511,7 +511,7 @@ if i32.const 0 i32.const 416 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -574,7 +574,7 @@ if i32.const 0 i32.const 416 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -727,7 +727,7 @@ if i32.const 0 i32.const 416 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -744,7 +744,7 @@ if i32.const 0 i32.const 416 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -833,7 +833,7 @@ if i32.const 0 i32.const 416 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -876,7 +876,7 @@ if i32.const 0 i32.const 416 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -894,7 +894,7 @@ if i32.const 0 i32.const 416 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -962,7 +962,7 @@ if i32.const 0 i32.const 416 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1079,7 +1079,7 @@ if i32.const 0 i32.const 416 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1125,7 +1125,7 @@ if i32.const 0 i32.const 416 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1157,7 +1157,7 @@ if i32.const 0 i32.const 416 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1228,18 +1228,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1254,17 +1255,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1288,10 +1290,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1302,13 +1304,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1322,18 +1324,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1401,7 +1403,7 @@ if i32.const 0 i32.const 416 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1730,7 +1732,7 @@ if i32.const 80 i32.const 416 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1832,7 +1834,7 @@ if i32.const 0 i32.const 416 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1903,7 +1905,7 @@ if i32.const 0 i32.const 416 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1959,13 +1961,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1994,25 +1995,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2028,6 +2034,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2060,7 +2068,7 @@ if i32.const 0 i32.const 416 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2175,7 +2183,7 @@ if i32.const 0 i32.const 416 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2195,7 +2203,7 @@ if i32.const 0 i32.const 416 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/reexport.release.wat b/tests/compiler/reexport.release.wat index aa9a780b2d..ded0dac85b 100644 --- a/tests/compiler/reexport.release.wat +++ b/tests/compiler/reexport.release.wat @@ -278,7 +278,7 @@ if i32.const 0 i32.const 1440 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -292,7 +292,7 @@ if i32.const 0 i32.const 1440 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -338,7 +338,7 @@ if i32.const 0 i32.const 1440 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -421,7 +421,7 @@ if i32.const 0 i32.const 1440 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -435,7 +435,7 @@ if i32.const 0 i32.const 1440 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -496,7 +496,7 @@ if i32.const 0 i32.const 1440 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -529,7 +529,7 @@ if i32.const 0 i32.const 1440 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -544,7 +544,7 @@ if i32.const 0 i32.const 1440 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -595,7 +595,7 @@ if i32.const 0 i32.const 1440 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -667,7 +667,7 @@ if i32.const 0 i32.const 1440 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -692,7 +692,7 @@ if i32.const 0 i32.const 1440 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -719,7 +719,7 @@ if i32.const 0 i32.const 1440 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1082,7 +1082,7 @@ if i32.const 0 i32.const 1440 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1148,7 +1148,7 @@ if i32.const 0 i32.const 1440 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1243,8 +1243,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -1280,7 +1278,7 @@ if i32.const 0 i32.const 1440 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1295,7 +1293,7 @@ if i32.const 0 i32.const 1440 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/rereexport.debug.wat b/tests/compiler/rereexport.debug.wat index f915695912..b3112d2203 100644 --- a/tests/compiler/rereexport.debug.wat +++ b/tests/compiler/rereexport.debug.wat @@ -484,7 +484,7 @@ if i32.const 0 i32.const 416 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -504,7 +504,7 @@ if i32.const 0 i32.const 416 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -567,7 +567,7 @@ if i32.const 0 i32.const 416 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -720,7 +720,7 @@ if i32.const 0 i32.const 416 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -737,7 +737,7 @@ if i32.const 0 i32.const 416 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -826,7 +826,7 @@ if i32.const 0 i32.const 416 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -869,7 +869,7 @@ if i32.const 0 i32.const 416 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -887,7 +887,7 @@ if i32.const 0 i32.const 416 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -955,7 +955,7 @@ if i32.const 0 i32.const 416 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1072,7 +1072,7 @@ if i32.const 0 i32.const 416 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1118,7 +1118,7 @@ if i32.const 0 i32.const 416 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1150,7 +1150,7 @@ if i32.const 0 i32.const 416 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1221,18 +1221,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1247,17 +1248,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1281,10 +1283,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1295,13 +1297,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1315,18 +1317,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1394,7 +1396,7 @@ if i32.const 0 i32.const 416 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1723,7 +1725,7 @@ if i32.const 80 i32.const 416 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1825,7 +1827,7 @@ if i32.const 0 i32.const 416 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1896,7 +1898,7 @@ if i32.const 0 i32.const 416 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1952,13 +1954,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1987,25 +1988,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2021,6 +2027,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2053,7 +2061,7 @@ if i32.const 0 i32.const 416 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2168,7 +2176,7 @@ if i32.const 0 i32.const 416 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2188,7 +2196,7 @@ if i32.const 0 i32.const 416 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/rereexport.release.wat b/tests/compiler/rereexport.release.wat index b57ed1cc78..473833e587 100644 --- a/tests/compiler/rereexport.release.wat +++ b/tests/compiler/rereexport.release.wat @@ -276,7 +276,7 @@ if i32.const 0 i32.const 1440 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -290,7 +290,7 @@ if i32.const 0 i32.const 1440 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -336,7 +336,7 @@ if i32.const 0 i32.const 1440 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -419,7 +419,7 @@ if i32.const 0 i32.const 1440 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -433,7 +433,7 @@ if i32.const 0 i32.const 1440 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -494,7 +494,7 @@ if i32.const 0 i32.const 1440 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -527,7 +527,7 @@ if i32.const 0 i32.const 1440 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -542,7 +542,7 @@ if i32.const 0 i32.const 1440 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -593,7 +593,7 @@ if i32.const 0 i32.const 1440 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -665,7 +665,7 @@ if i32.const 0 i32.const 1440 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -690,7 +690,7 @@ if i32.const 0 i32.const 1440 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -717,7 +717,7 @@ if i32.const 0 i32.const 1440 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1080,7 +1080,7 @@ if i32.const 0 i32.const 1440 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1146,7 +1146,7 @@ if i32.const 0 i32.const 1440 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1241,8 +1241,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -1278,7 +1276,7 @@ if i32.const 0 i32.const 1440 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1293,7 +1291,7 @@ if i32.const 0 i32.const 1440 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-access.debug.wat b/tests/compiler/resolve-access.debug.wat index 9c7b8ab2d7..ae0399d299 100644 --- a/tests/compiler/resolve-access.debug.wat +++ b/tests/compiler/resolve-access.debug.wat @@ -466,7 +466,7 @@ if i32.const 0 i32.const 400 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -486,7 +486,7 @@ if i32.const 0 i32.const 400 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -549,7 +549,7 @@ if i32.const 0 i32.const 400 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -702,7 +702,7 @@ if i32.const 0 i32.const 400 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -719,7 +719,7 @@ if i32.const 0 i32.const 400 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -808,7 +808,7 @@ if i32.const 0 i32.const 400 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -851,7 +851,7 @@ if i32.const 0 i32.const 400 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -869,7 +869,7 @@ if i32.const 0 i32.const 400 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -937,7 +937,7 @@ if i32.const 0 i32.const 400 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1054,7 +1054,7 @@ if i32.const 0 i32.const 400 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1100,7 +1100,7 @@ if i32.const 0 i32.const 400 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1132,7 +1132,7 @@ if i32.const 0 i32.const 400 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1203,18 +1203,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1229,17 +1230,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1263,10 +1265,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1277,13 +1279,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1297,18 +1299,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1376,7 +1378,7 @@ if i32.const 0 i32.const 400 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1705,7 +1707,7 @@ if i32.const 64 i32.const 400 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1807,7 +1809,7 @@ if i32.const 0 i32.const 400 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1878,7 +1880,7 @@ if i32.const 0 i32.const 400 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1934,13 +1936,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1969,25 +1970,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2003,6 +2009,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2035,7 +2043,7 @@ if i32.const 0 i32.const 400 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2150,7 +2158,7 @@ if i32.const 0 i32.const 400 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2170,7 +2178,7 @@ if i32.const 0 i32.const 400 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-access.release.wat b/tests/compiler/resolve-access.release.wat index 61d868fd17..558e8b7035 100644 --- a/tests/compiler/resolve-access.release.wat +++ b/tests/compiler/resolve-access.release.wat @@ -271,7 +271,7 @@ if i32.const 0 i32.const 1424 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -285,7 +285,7 @@ if i32.const 0 i32.const 1424 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -331,7 +331,7 @@ if i32.const 0 i32.const 1424 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -414,7 +414,7 @@ if i32.const 0 i32.const 1424 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -428,7 +428,7 @@ if i32.const 0 i32.const 1424 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -489,7 +489,7 @@ if i32.const 0 i32.const 1424 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -522,7 +522,7 @@ if i32.const 0 i32.const 1424 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -537,7 +537,7 @@ if i32.const 0 i32.const 1424 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -588,7 +588,7 @@ if i32.const 0 i32.const 1424 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -660,7 +660,7 @@ if i32.const 0 i32.const 1424 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -685,7 +685,7 @@ if i32.const 0 i32.const 1424 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -712,7 +712,7 @@ if i32.const 0 i32.const 1424 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1075,7 +1075,7 @@ if i32.const 0 i32.const 1424 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1160,7 +1160,7 @@ if i32.const 0 i32.const 1424 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1212,7 +1212,7 @@ if i32.const 0 i32.const 1424 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1310,7 +1310,7 @@ if i32.const 1088 i32.const 1424 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1374,8 +1374,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1412,7 +1410,7 @@ if i32.const 0 i32.const 1424 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1427,7 +1425,7 @@ if i32.const 0 i32.const 1424 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1446,7 +1444,7 @@ if i32.const 0 i32.const 1424 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-binary.debug.wat b/tests/compiler/resolve-binary.debug.wat index f911a1e884..e75e838f2b 100644 --- a/tests/compiler/resolve-binary.debug.wat +++ b/tests/compiler/resolve-binary.debug.wat @@ -686,7 +686,7 @@ if i32.const 0 i32.const 720 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -706,7 +706,7 @@ if i32.const 0 i32.const 720 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -769,7 +769,7 @@ if i32.const 0 i32.const 720 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -922,7 +922,7 @@ if i32.const 0 i32.const 720 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -939,7 +939,7 @@ if i32.const 0 i32.const 720 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -1028,7 +1028,7 @@ if i32.const 0 i32.const 720 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1071,7 +1071,7 @@ if i32.const 0 i32.const 720 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1089,7 +1089,7 @@ if i32.const 0 i32.const 720 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1157,7 +1157,7 @@ if i32.const 0 i32.const 720 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1274,7 +1274,7 @@ if i32.const 0 i32.const 720 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1320,7 +1320,7 @@ if i32.const 0 i32.const 720 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1352,7 +1352,7 @@ if i32.const 0 i32.const 720 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1423,18 +1423,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1449,17 +1450,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1483,10 +1485,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1497,13 +1499,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1517,18 +1519,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1596,7 +1598,7 @@ if i32.const 0 i32.const 720 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1925,7 +1927,7 @@ if i32.const 384 i32.const 720 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -2027,7 +2029,7 @@ if i32.const 0 i32.const 720 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -2098,7 +2100,7 @@ if i32.const 0 i32.const 720 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2154,13 +2156,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2189,25 +2190,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2223,6 +2229,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2255,7 +2263,7 @@ if i32.const 0 i32.const 720 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2370,7 +2378,7 @@ if i32.const 0 i32.const 720 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2390,7 +2398,7 @@ if i32.const 0 i32.const 720 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-binary.release.wat b/tests/compiler/resolve-binary.release.wat index f82a4d1b73..17e2e018e2 100644 --- a/tests/compiler/resolve-binary.release.wat +++ b/tests/compiler/resolve-binary.release.wat @@ -476,7 +476,7 @@ if i32.const 0 i32.const 1744 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -490,7 +490,7 @@ if i32.const 0 i32.const 1744 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -536,7 +536,7 @@ if i32.const 0 i32.const 1744 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -619,7 +619,7 @@ if i32.const 0 i32.const 1744 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -633,7 +633,7 @@ if i32.const 0 i32.const 1744 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -694,7 +694,7 @@ if i32.const 0 i32.const 1744 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -727,7 +727,7 @@ if i32.const 0 i32.const 1744 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -742,7 +742,7 @@ if i32.const 0 i32.const 1744 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -793,7 +793,7 @@ if i32.const 0 i32.const 1744 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -865,7 +865,7 @@ if i32.const 0 i32.const 1744 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -890,7 +890,7 @@ if i32.const 0 i32.const 1744 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -917,7 +917,7 @@ if i32.const 0 i32.const 1744 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1280,7 +1280,7 @@ if i32.const 0 i32.const 1744 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1365,7 +1365,7 @@ if i32.const 0 i32.const 1744 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1417,7 +1417,7 @@ if i32.const 0 i32.const 1744 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1515,7 +1515,7 @@ if i32.const 1408 i32.const 1744 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1579,8 +1579,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1617,7 +1615,7 @@ if i32.const 0 i32.const 1744 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1632,7 +1630,7 @@ if i32.const 0 i32.const 1744 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1651,7 +1649,7 @@ if i32.const 0 i32.const 1744 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-elementaccess.debug.wat b/tests/compiler/resolve-elementaccess.debug.wat index ec97507c90..a627233b81 100644 --- a/tests/compiler/resolve-elementaccess.debug.wat +++ b/tests/compiler/resolve-elementaccess.debug.wat @@ -489,7 +489,7 @@ if i32.const 0 i32.const 480 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -509,7 +509,7 @@ if i32.const 0 i32.const 480 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -572,7 +572,7 @@ if i32.const 0 i32.const 480 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -725,7 +725,7 @@ if i32.const 0 i32.const 480 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -742,7 +742,7 @@ if i32.const 0 i32.const 480 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -831,7 +831,7 @@ if i32.const 0 i32.const 480 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -874,7 +874,7 @@ if i32.const 0 i32.const 480 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -892,7 +892,7 @@ if i32.const 0 i32.const 480 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -960,7 +960,7 @@ if i32.const 0 i32.const 480 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1077,7 +1077,7 @@ if i32.const 0 i32.const 480 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1123,7 +1123,7 @@ if i32.const 0 i32.const 480 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1155,7 +1155,7 @@ if i32.const 0 i32.const 480 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1226,18 +1226,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1252,17 +1253,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1286,10 +1288,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1300,13 +1302,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1320,18 +1322,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1399,7 +1401,7 @@ if i32.const 0 i32.const 480 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1728,7 +1730,7 @@ if i32.const 144 i32.const 480 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1830,7 +1832,7 @@ if i32.const 0 i32.const 480 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1901,7 +1903,7 @@ if i32.const 0 i32.const 480 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1957,13 +1959,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1992,25 +1993,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2026,6 +2032,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2058,7 +2066,7 @@ if i32.const 0 i32.const 480 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2173,7 +2181,7 @@ if i32.const 0 i32.const 480 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2193,7 +2201,7 @@ if i32.const 0 i32.const 480 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-elementaccess.release.wat b/tests/compiler/resolve-elementaccess.release.wat index a161cce7e3..7c3a154a7b 100644 --- a/tests/compiler/resolve-elementaccess.release.wat +++ b/tests/compiler/resolve-elementaccess.release.wat @@ -323,7 +323,7 @@ if i32.const 0 i32.const 1504 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -337,7 +337,7 @@ if i32.const 0 i32.const 1504 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -383,7 +383,7 @@ if i32.const 0 i32.const 1504 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -466,7 +466,7 @@ if i32.const 0 i32.const 1504 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -480,7 +480,7 @@ if i32.const 0 i32.const 1504 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -541,7 +541,7 @@ if i32.const 0 i32.const 1504 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -574,7 +574,7 @@ if i32.const 0 i32.const 1504 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -589,7 +589,7 @@ if i32.const 0 i32.const 1504 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -640,7 +640,7 @@ if i32.const 0 i32.const 1504 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -712,7 +712,7 @@ if i32.const 0 i32.const 1504 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -737,7 +737,7 @@ if i32.const 0 i32.const 1504 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -764,7 +764,7 @@ if i32.const 0 i32.const 1504 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1127,7 +1127,7 @@ if i32.const 0 i32.const 1504 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1212,7 +1212,7 @@ if i32.const 0 i32.const 1504 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1264,7 +1264,7 @@ if i32.const 0 i32.const 1504 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1362,7 +1362,7 @@ if i32.const 1168 i32.const 1504 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1426,8 +1426,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1464,7 +1462,7 @@ if i32.const 0 i32.const 1504 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1479,7 +1477,7 @@ if i32.const 0 i32.const 1504 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1498,7 +1496,7 @@ if i32.const 0 i32.const 1504 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-function-expression.debug.wat b/tests/compiler/resolve-function-expression.debug.wat index 96ada2500c..8af7f0b97b 100644 --- a/tests/compiler/resolve-function-expression.debug.wat +++ b/tests/compiler/resolve-function-expression.debug.wat @@ -532,7 +532,7 @@ if i32.const 0 i32.const 768 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -552,7 +552,7 @@ if i32.const 0 i32.const 768 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -615,7 +615,7 @@ if i32.const 0 i32.const 768 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -768,7 +768,7 @@ if i32.const 0 i32.const 768 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -785,7 +785,7 @@ if i32.const 0 i32.const 768 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -874,7 +874,7 @@ if i32.const 0 i32.const 768 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -917,7 +917,7 @@ if i32.const 0 i32.const 768 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -935,7 +935,7 @@ if i32.const 0 i32.const 768 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1003,7 +1003,7 @@ if i32.const 0 i32.const 768 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1120,7 +1120,7 @@ if i32.const 0 i32.const 768 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1166,7 +1166,7 @@ if i32.const 0 i32.const 768 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1198,7 +1198,7 @@ if i32.const 0 i32.const 768 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1269,18 +1269,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1295,17 +1296,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1329,10 +1331,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1343,13 +1345,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1363,18 +1365,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1442,7 +1444,7 @@ if i32.const 0 i32.const 768 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1771,7 +1773,7 @@ if i32.const 432 i32.const 768 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1873,7 +1875,7 @@ if i32.const 0 i32.const 768 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1944,7 +1946,7 @@ if i32.const 0 i32.const 768 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2000,13 +2002,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2035,25 +2036,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2069,6 +2075,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2101,7 +2109,7 @@ if i32.const 0 i32.const 768 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2216,7 +2224,7 @@ if i32.const 0 i32.const 768 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2236,7 +2244,7 @@ if i32.const 0 i32.const 768 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-function-expression.release.wat b/tests/compiler/resolve-function-expression.release.wat index b4a7f27f3c..7a1e45623e 100644 --- a/tests/compiler/resolve-function-expression.release.wat +++ b/tests/compiler/resolve-function-expression.release.wat @@ -286,7 +286,7 @@ if i32.const 0 i32.const 1792 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -300,7 +300,7 @@ if i32.const 0 i32.const 1792 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -346,7 +346,7 @@ if i32.const 0 i32.const 1792 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -429,7 +429,7 @@ if i32.const 0 i32.const 1792 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -443,7 +443,7 @@ if i32.const 0 i32.const 1792 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -504,7 +504,7 @@ if i32.const 0 i32.const 1792 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -537,7 +537,7 @@ if i32.const 0 i32.const 1792 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -552,7 +552,7 @@ if i32.const 0 i32.const 1792 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -603,7 +603,7 @@ if i32.const 0 i32.const 1792 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -675,7 +675,7 @@ if i32.const 0 i32.const 1792 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -700,7 +700,7 @@ if i32.const 0 i32.const 1792 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -727,7 +727,7 @@ if i32.const 0 i32.const 1792 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1090,7 +1090,7 @@ if i32.const 0 i32.const 1792 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1175,7 +1175,7 @@ if i32.const 0 i32.const 1792 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1227,7 +1227,7 @@ if i32.const 0 i32.const 1792 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1423,7 +1423,7 @@ if i32.const 1456 i32.const 1792 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1487,8 +1487,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $4 @@ -1525,7 +1523,7 @@ if i32.const 0 i32.const 1792 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1540,7 +1538,7 @@ if i32.const 0 i32.const 1792 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1559,7 +1557,7 @@ if i32.const 0 i32.const 1792 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-new.debug.wat b/tests/compiler/resolve-new.debug.wat index 915a1b52a1..f598ececf3 100644 --- a/tests/compiler/resolve-new.debug.wat +++ b/tests/compiler/resolve-new.debug.wat @@ -445,7 +445,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -465,7 +465,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -528,7 +528,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -681,7 +681,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -698,7 +698,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -787,7 +787,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -830,7 +830,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -848,7 +848,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -916,7 +916,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1033,7 +1033,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1079,7 +1079,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1111,7 +1111,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1182,18 +1182,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1208,17 +1209,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1242,10 +1244,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1256,13 +1258,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1276,18 +1278,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1355,7 +1357,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1684,7 +1686,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1786,7 +1788,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1857,7 +1859,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1913,13 +1915,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1948,25 +1949,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1982,6 +1988,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2014,7 +2022,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2129,7 +2137,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2149,7 +2157,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-new.release.wat b/tests/compiler/resolve-new.release.wat index d5630d2d1f..550fce0094 100644 --- a/tests/compiler/resolve-new.release.wat +++ b/tests/compiler/resolve-new.release.wat @@ -250,7 +250,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -264,7 +264,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -310,7 +310,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -393,7 +393,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -407,7 +407,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -468,7 +468,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -501,7 +501,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -516,7 +516,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -567,7 +567,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -639,7 +639,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -664,7 +664,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -691,7 +691,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1054,7 +1054,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1120,7 +1120,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1215,8 +1215,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1252,7 +1250,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1267,7 +1265,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-propertyaccess.debug.wat b/tests/compiler/resolve-propertyaccess.debug.wat index 7c13c3bb67..f10f30a4dc 100644 --- a/tests/compiler/resolve-propertyaccess.debug.wat +++ b/tests/compiler/resolve-propertyaccess.debug.wat @@ -532,7 +532,7 @@ if i32.const 0 i32.const 592 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -552,7 +552,7 @@ if i32.const 0 i32.const 592 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -615,7 +615,7 @@ if i32.const 0 i32.const 592 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -768,7 +768,7 @@ if i32.const 0 i32.const 592 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -785,7 +785,7 @@ if i32.const 0 i32.const 592 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -874,7 +874,7 @@ if i32.const 0 i32.const 592 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -917,7 +917,7 @@ if i32.const 0 i32.const 592 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -935,7 +935,7 @@ if i32.const 0 i32.const 592 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1003,7 +1003,7 @@ if i32.const 0 i32.const 592 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1120,7 +1120,7 @@ if i32.const 0 i32.const 592 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1166,7 +1166,7 @@ if i32.const 0 i32.const 592 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1198,7 +1198,7 @@ if i32.const 0 i32.const 592 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1269,18 +1269,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1295,17 +1296,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1329,10 +1331,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1343,13 +1345,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1363,18 +1365,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1442,7 +1444,7 @@ if i32.const 0 i32.const 592 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1771,7 +1773,7 @@ if i32.const 256 i32.const 592 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1873,7 +1875,7 @@ if i32.const 0 i32.const 592 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1944,7 +1946,7 @@ if i32.const 0 i32.const 592 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2000,13 +2002,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2035,25 +2036,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2069,6 +2075,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2101,7 +2109,7 @@ if i32.const 0 i32.const 592 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2216,7 +2224,7 @@ if i32.const 0 i32.const 592 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2236,7 +2244,7 @@ if i32.const 0 i32.const 592 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-propertyaccess.release.wat b/tests/compiler/resolve-propertyaccess.release.wat index 3767d16019..ebb23cf915 100644 --- a/tests/compiler/resolve-propertyaccess.release.wat +++ b/tests/compiler/resolve-propertyaccess.release.wat @@ -285,7 +285,7 @@ if i32.const 0 i32.const 1616 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -299,7 +299,7 @@ if i32.const 0 i32.const 1616 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -345,7 +345,7 @@ if i32.const 0 i32.const 1616 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -428,7 +428,7 @@ if i32.const 0 i32.const 1616 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -442,7 +442,7 @@ if i32.const 0 i32.const 1616 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -503,7 +503,7 @@ if i32.const 0 i32.const 1616 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -536,7 +536,7 @@ if i32.const 0 i32.const 1616 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -551,7 +551,7 @@ if i32.const 0 i32.const 1616 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -602,7 +602,7 @@ if i32.const 0 i32.const 1616 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -674,7 +674,7 @@ if i32.const 0 i32.const 1616 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -699,7 +699,7 @@ if i32.const 0 i32.const 1616 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -726,7 +726,7 @@ if i32.const 0 i32.const 1616 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1089,7 +1089,7 @@ if i32.const 0 i32.const 1616 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1174,7 +1174,7 @@ if i32.const 0 i32.const 1616 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1226,7 +1226,7 @@ if i32.const 0 i32.const 1616 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1324,7 +1324,7 @@ if i32.const 1280 i32.const 1616 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1388,8 +1388,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1426,7 +1424,7 @@ if i32.const 0 i32.const 1616 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1441,7 +1439,7 @@ if i32.const 0 i32.const 1616 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1460,7 +1458,7 @@ if i32.const 0 i32.const 1616 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-ternary.debug.wat b/tests/compiler/resolve-ternary.debug.wat index 65d9fa68c2..60d6acfdf9 100644 --- a/tests/compiler/resolve-ternary.debug.wat +++ b/tests/compiler/resolve-ternary.debug.wat @@ -540,7 +540,7 @@ if i32.const 0 i32.const 592 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -560,7 +560,7 @@ if i32.const 0 i32.const 592 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -623,7 +623,7 @@ if i32.const 0 i32.const 592 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -776,7 +776,7 @@ if i32.const 0 i32.const 592 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -793,7 +793,7 @@ if i32.const 0 i32.const 592 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -882,7 +882,7 @@ if i32.const 0 i32.const 592 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -925,7 +925,7 @@ if i32.const 0 i32.const 592 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -943,7 +943,7 @@ if i32.const 0 i32.const 592 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1011,7 +1011,7 @@ if i32.const 0 i32.const 592 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1128,7 +1128,7 @@ if i32.const 0 i32.const 592 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1174,7 +1174,7 @@ if i32.const 0 i32.const 592 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1206,7 +1206,7 @@ if i32.const 0 i32.const 592 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1277,18 +1277,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1303,17 +1304,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1337,10 +1339,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1351,13 +1353,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1371,18 +1373,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1450,7 +1452,7 @@ if i32.const 0 i32.const 592 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1779,7 +1781,7 @@ if i32.const 256 i32.const 592 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1881,7 +1883,7 @@ if i32.const 0 i32.const 592 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1952,7 +1954,7 @@ if i32.const 0 i32.const 592 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2008,13 +2010,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2043,25 +2044,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2077,6 +2083,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2109,7 +2117,7 @@ if i32.const 0 i32.const 592 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2224,7 +2232,7 @@ if i32.const 0 i32.const 592 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2244,7 +2252,7 @@ if i32.const 0 i32.const 592 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-ternary.release.wat b/tests/compiler/resolve-ternary.release.wat index 9637f6a402..99c327b42b 100644 --- a/tests/compiler/resolve-ternary.release.wat +++ b/tests/compiler/resolve-ternary.release.wat @@ -291,7 +291,7 @@ if i32.const 0 i32.const 1616 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -305,7 +305,7 @@ if i32.const 0 i32.const 1616 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -351,7 +351,7 @@ if i32.const 0 i32.const 1616 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -434,7 +434,7 @@ if i32.const 0 i32.const 1616 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -448,7 +448,7 @@ if i32.const 0 i32.const 1616 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -509,7 +509,7 @@ if i32.const 0 i32.const 1616 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -542,7 +542,7 @@ if i32.const 0 i32.const 1616 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -557,7 +557,7 @@ if i32.const 0 i32.const 1616 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -608,7 +608,7 @@ if i32.const 0 i32.const 1616 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -680,7 +680,7 @@ if i32.const 0 i32.const 1616 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -705,7 +705,7 @@ if i32.const 0 i32.const 1616 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -732,7 +732,7 @@ if i32.const 0 i32.const 1616 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1095,7 +1095,7 @@ if i32.const 0 i32.const 1616 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1180,7 +1180,7 @@ if i32.const 0 i32.const 1616 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1232,7 +1232,7 @@ if i32.const 0 i32.const 1616 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1330,7 +1330,7 @@ if i32.const 1280 i32.const 1616 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1394,8 +1394,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -1432,7 +1430,7 @@ if i32.const 0 i32.const 1616 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1447,7 +1445,7 @@ if i32.const 0 i32.const 1616 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1466,7 +1464,7 @@ if i32.const 0 i32.const 1616 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-unary.debug.wat b/tests/compiler/resolve-unary.debug.wat index f22d05a02b..e5a224e5e7 100644 --- a/tests/compiler/resolve-unary.debug.wat +++ b/tests/compiler/resolve-unary.debug.wat @@ -532,7 +532,7 @@ if i32.const 0 i32.const 592 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -552,7 +552,7 @@ if i32.const 0 i32.const 592 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -615,7 +615,7 @@ if i32.const 0 i32.const 592 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -768,7 +768,7 @@ if i32.const 0 i32.const 592 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -785,7 +785,7 @@ if i32.const 0 i32.const 592 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -874,7 +874,7 @@ if i32.const 0 i32.const 592 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -917,7 +917,7 @@ if i32.const 0 i32.const 592 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -935,7 +935,7 @@ if i32.const 0 i32.const 592 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1003,7 +1003,7 @@ if i32.const 0 i32.const 592 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1120,7 +1120,7 @@ if i32.const 0 i32.const 592 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1166,7 +1166,7 @@ if i32.const 0 i32.const 592 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1198,7 +1198,7 @@ if i32.const 0 i32.const 592 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1269,18 +1269,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1295,17 +1296,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1329,10 +1331,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1343,13 +1345,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1363,18 +1365,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1442,7 +1444,7 @@ if i32.const 0 i32.const 592 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1771,7 +1773,7 @@ if i32.const 256 i32.const 592 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1873,7 +1875,7 @@ if i32.const 0 i32.const 592 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1944,7 +1946,7 @@ if i32.const 0 i32.const 592 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2000,13 +2002,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2035,25 +2036,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2069,6 +2075,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2101,7 +2109,7 @@ if i32.const 0 i32.const 592 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2216,7 +2224,7 @@ if i32.const 0 i32.const 592 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2236,7 +2244,7 @@ if i32.const 0 i32.const 592 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/resolve-unary.release.wat b/tests/compiler/resolve-unary.release.wat index 379afd054b..773bc7fcf9 100644 --- a/tests/compiler/resolve-unary.release.wat +++ b/tests/compiler/resolve-unary.release.wat @@ -311,7 +311,7 @@ if i32.const 0 i32.const 1616 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -325,7 +325,7 @@ if i32.const 0 i32.const 1616 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -371,7 +371,7 @@ if i32.const 0 i32.const 1616 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -454,7 +454,7 @@ if i32.const 0 i32.const 1616 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -468,7 +468,7 @@ if i32.const 0 i32.const 1616 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -529,7 +529,7 @@ if i32.const 0 i32.const 1616 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -562,7 +562,7 @@ if i32.const 0 i32.const 1616 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -577,7 +577,7 @@ if i32.const 0 i32.const 1616 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -628,7 +628,7 @@ if i32.const 0 i32.const 1616 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -700,7 +700,7 @@ if i32.const 0 i32.const 1616 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -725,7 +725,7 @@ if i32.const 0 i32.const 1616 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -752,7 +752,7 @@ if i32.const 0 i32.const 1616 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1115,7 +1115,7 @@ if i32.const 0 i32.const 1616 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1200,7 +1200,7 @@ if i32.const 0 i32.const 1616 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1252,7 +1252,7 @@ if i32.const 0 i32.const 1616 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1350,7 +1350,7 @@ if i32.const 1280 i32.const 1616 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1414,8 +1414,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1452,7 +1450,7 @@ if i32.const 0 i32.const 1616 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1467,7 +1465,7 @@ if i32.const 0 i32.const 1616 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1486,7 +1484,7 @@ if i32.const 0 i32.const 1616 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/return-unreachable.debug.wat b/tests/compiler/return-unreachable.debug.wat index c08d881355..f63248776a 100644 --- a/tests/compiler/return-unreachable.debug.wat +++ b/tests/compiler/return-unreachable.debug.wat @@ -448,7 +448,7 @@ if i32.const 0 i32.const 464 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -468,7 +468,7 @@ if i32.const 0 i32.const 464 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -531,7 +531,7 @@ if i32.const 0 i32.const 464 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -684,7 +684,7 @@ if i32.const 0 i32.const 464 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -701,7 +701,7 @@ if i32.const 0 i32.const 464 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -790,7 +790,7 @@ if i32.const 0 i32.const 464 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -833,7 +833,7 @@ if i32.const 0 i32.const 464 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -851,7 +851,7 @@ if i32.const 0 i32.const 464 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -919,7 +919,7 @@ if i32.const 0 i32.const 464 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1036,7 +1036,7 @@ if i32.const 0 i32.const 464 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1082,7 +1082,7 @@ if i32.const 0 i32.const 464 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1114,7 +1114,7 @@ if i32.const 0 i32.const 464 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1185,18 +1185,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1211,17 +1212,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1245,10 +1247,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1259,13 +1261,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1279,18 +1281,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1358,7 +1360,7 @@ if i32.const 0 i32.const 464 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1687,7 +1689,7 @@ if i32.const 128 i32.const 464 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1789,7 +1791,7 @@ if i32.const 0 i32.const 464 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1860,7 +1862,7 @@ if i32.const 0 i32.const 464 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1916,13 +1918,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1951,25 +1952,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1985,6 +1991,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2017,7 +2025,7 @@ if i32.const 0 i32.const 464 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2132,7 +2140,7 @@ if i32.const 0 i32.const 464 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2152,7 +2160,7 @@ if i32.const 0 i32.const 464 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/return-unreachable.release.wat b/tests/compiler/return-unreachable.release.wat index 0331dc96e8..8ededfe3e4 100644 --- a/tests/compiler/return-unreachable.release.wat +++ b/tests/compiler/return-unreachable.release.wat @@ -255,7 +255,7 @@ if i32.const 0 i32.const 1488 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -269,7 +269,7 @@ if i32.const 0 i32.const 1488 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -315,7 +315,7 @@ if i32.const 0 i32.const 1488 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -398,7 +398,7 @@ if i32.const 0 i32.const 1488 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -412,7 +412,7 @@ if i32.const 0 i32.const 1488 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -473,7 +473,7 @@ if i32.const 0 i32.const 1488 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -506,7 +506,7 @@ if i32.const 0 i32.const 1488 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -521,7 +521,7 @@ if i32.const 0 i32.const 1488 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -572,7 +572,7 @@ if i32.const 0 i32.const 1488 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -644,7 +644,7 @@ if i32.const 0 i32.const 1488 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -669,7 +669,7 @@ if i32.const 0 i32.const 1488 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -696,7 +696,7 @@ if i32.const 0 i32.const 1488 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1059,7 +1059,7 @@ if i32.const 0 i32.const 1488 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1144,7 +1144,7 @@ if i32.const 0 i32.const 1488 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1196,7 +1196,7 @@ if i32.const 0 i32.const 1488 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1294,7 +1294,7 @@ if i32.const 1152 i32.const 1488 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1358,8 +1358,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1396,7 +1394,7 @@ if i32.const 0 i32.const 1488 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1411,7 +1409,7 @@ if i32.const 0 i32.const 1488 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1430,7 +1428,7 @@ if i32.const 0 i32.const 1488 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/rt/alloc-large-memory.debug.wat b/tests/compiler/rt/alloc-large-memory.debug.wat index 9d12c607e6..9975aefa4f 100644 --- a/tests/compiler/rt/alloc-large-memory.debug.wat +++ b/tests/compiler/rt/alloc-large-memory.debug.wat @@ -90,7 +90,7 @@ if i32.const 0 i32.const 32 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -110,7 +110,7 @@ if i32.const 0 i32.const 32 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -173,7 +173,7 @@ if i32.const 0 i32.const 32 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -326,7 +326,7 @@ if i32.const 0 i32.const 32 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -343,7 +343,7 @@ if i32.const 0 i32.const 32 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -432,7 +432,7 @@ if i32.const 0 i32.const 32 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -475,7 +475,7 @@ if i32.const 0 i32.const 32 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -493,7 +493,7 @@ if i32.const 0 i32.const 32 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -561,7 +561,7 @@ if i32.const 0 i32.const 32 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -678,7 +678,7 @@ if i32.const 0 i32.const 32 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -724,7 +724,7 @@ if i32.const 0 i32.const 32 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -756,7 +756,7 @@ if i32.const 0 i32.const 32 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -827,18 +827,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -853,17 +854,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -887,10 +889,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -901,13 +903,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -921,18 +923,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -998,7 +1000,7 @@ if i32.const 96 i32.const 32 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1100,7 +1102,7 @@ if i32.const 0 i32.const 32 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1171,7 +1173,7 @@ if i32.const 0 i32.const 32 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1227,13 +1229,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1262,25 +1263,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1296,6 +1302,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -1328,7 +1336,7 @@ if i32.const 0 i32.const 32 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -1443,7 +1451,7 @@ if i32.const 0 i32.const 32 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1463,7 +1471,7 @@ if i32.const 0 i32.const 32 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/rt/alloc-large-memory.release.wat b/tests/compiler/rt/alloc-large-memory.release.wat index 7430833f99..3cc0237fe5 100644 --- a/tests/compiler/rt/alloc-large-memory.release.wat +++ b/tests/compiler/rt/alloc-large-memory.release.wat @@ -28,7 +28,7 @@ if i32.const 0 i32.const 1056 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -42,7 +42,7 @@ if i32.const 0 i32.const 1056 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -88,7 +88,7 @@ if i32.const 0 i32.const 1056 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -171,7 +171,7 @@ if i32.const 0 i32.const 1056 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -185,7 +185,7 @@ if i32.const 0 i32.const 1056 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -246,7 +246,7 @@ if i32.const 0 i32.const 1056 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -279,7 +279,7 @@ if i32.const 0 i32.const 1056 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -294,7 +294,7 @@ if i32.const 0 i32.const 1056 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -345,7 +345,7 @@ if i32.const 0 i32.const 1056 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -417,7 +417,7 @@ if i32.const 0 i32.const 1056 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -442,7 +442,7 @@ if i32.const 0 i32.const 1056 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -469,7 +469,7 @@ if i32.const 0 i32.const 1056 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -575,7 +575,7 @@ if i32.const 0 i32.const 1056 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -627,7 +627,7 @@ if i32.const 0 i32.const 1056 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -741,7 +741,7 @@ if i32.const 1120 i32.const 1056 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -805,8 +805,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -843,7 +841,7 @@ if i32.const 0 i32.const 1056 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -858,7 +856,7 @@ if i32.const 0 i32.const 1056 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -877,7 +875,7 @@ if i32.const 0 i32.const 1056 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/rt/finalize.debug.wat b/tests/compiler/rt/finalize.debug.wat index d3cb87b0de..ca0ef86bc3 100644 --- a/tests/compiler/rt/finalize.debug.wat +++ b/tests/compiler/rt/finalize.debug.wat @@ -464,7 +464,7 @@ if i32.const 0 i32.const 416 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -484,7 +484,7 @@ if i32.const 0 i32.const 416 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -547,7 +547,7 @@ if i32.const 0 i32.const 416 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -700,7 +700,7 @@ if i32.const 0 i32.const 416 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -717,7 +717,7 @@ if i32.const 0 i32.const 416 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -806,7 +806,7 @@ if i32.const 0 i32.const 416 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -849,7 +849,7 @@ if i32.const 0 i32.const 416 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -867,7 +867,7 @@ if i32.const 0 i32.const 416 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -935,7 +935,7 @@ if i32.const 0 i32.const 416 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1052,7 +1052,7 @@ if i32.const 0 i32.const 416 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1098,7 +1098,7 @@ if i32.const 0 i32.const 416 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1130,7 +1130,7 @@ if i32.const 0 i32.const 416 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1201,18 +1201,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1227,17 +1228,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1261,10 +1263,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1275,13 +1277,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1295,18 +1297,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1374,7 +1376,7 @@ if i32.const 0 i32.const 416 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1707,7 +1709,7 @@ if i32.const 32 i32.const 416 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1809,7 +1811,7 @@ if i32.const 0 i32.const 416 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1880,7 +1882,7 @@ if i32.const 0 i32.const 416 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1936,13 +1938,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1971,25 +1972,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2005,6 +2011,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2037,7 +2045,7 @@ if i32.const 0 i32.const 416 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2152,7 +2160,7 @@ if i32.const 0 i32.const 416 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2172,7 +2180,7 @@ if i32.const 0 i32.const 416 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/rt/finalize.release.wat b/tests/compiler/rt/finalize.release.wat index 5172a87b5d..1265bebf73 100644 --- a/tests/compiler/rt/finalize.release.wat +++ b/tests/compiler/rt/finalize.release.wat @@ -248,7 +248,7 @@ if i32.const 0 i32.const 1440 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -262,7 +262,7 @@ if i32.const 0 i32.const 1440 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -308,7 +308,7 @@ if i32.const 0 i32.const 1440 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -391,7 +391,7 @@ if i32.const 0 i32.const 1440 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -405,7 +405,7 @@ if i32.const 0 i32.const 1440 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -466,7 +466,7 @@ if i32.const 0 i32.const 1440 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -499,7 +499,7 @@ if i32.const 0 i32.const 1440 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -514,7 +514,7 @@ if i32.const 0 i32.const 1440 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -565,7 +565,7 @@ if i32.const 0 i32.const 1440 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -637,7 +637,7 @@ if i32.const 0 i32.const 1440 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -662,7 +662,7 @@ if i32.const 0 i32.const 1440 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -689,7 +689,7 @@ if i32.const 0 i32.const 1440 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1067,7 +1067,7 @@ if i32.const 0 i32.const 1440 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1133,7 +1133,7 @@ if i32.const 0 i32.const 1440 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1228,8 +1228,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1265,7 +1263,7 @@ if i32.const 0 i32.const 1440 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1280,7 +1278,7 @@ if i32.const 0 i32.const 1440 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/rt/issue-2719.debug.wat b/tests/compiler/rt/issue-2719.debug.wat index 2071e914a1..ad7fc52735 100644 --- a/tests/compiler/rt/issue-2719.debug.wat +++ b/tests/compiler/rt/issue-2719.debug.wat @@ -445,7 +445,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -465,7 +465,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -528,7 +528,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -681,7 +681,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -698,7 +698,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -787,7 +787,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -830,7 +830,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -848,7 +848,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -916,7 +916,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1033,7 +1033,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1079,7 +1079,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1111,7 +1111,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1182,18 +1182,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1208,17 +1209,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1242,10 +1244,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1256,13 +1258,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1276,18 +1278,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1355,7 +1357,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1684,7 +1686,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1786,7 +1788,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1857,7 +1859,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1913,13 +1915,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1948,25 +1949,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1982,6 +1988,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2014,7 +2022,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2129,7 +2137,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2149,7 +2157,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/rt/issue-2719.release.wat b/tests/compiler/rt/issue-2719.release.wat index e0b5e3a2d8..1f34e5f150 100644 --- a/tests/compiler/rt/issue-2719.release.wat +++ b/tests/compiler/rt/issue-2719.release.wat @@ -245,7 +245,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -259,7 +259,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -305,7 +305,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -388,7 +388,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -402,7 +402,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -463,7 +463,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -496,7 +496,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -511,7 +511,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -562,7 +562,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -634,7 +634,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -659,7 +659,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -686,7 +686,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1049,7 +1049,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1134,7 +1134,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1186,7 +1186,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1284,7 +1284,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1348,8 +1348,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1386,7 +1384,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1401,7 +1399,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1420,7 +1418,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/rt/runtime-incremental-export.debug.wat b/tests/compiler/rt/runtime-incremental-export.debug.wat index e0441f24cb..ac3d3d604e 100644 --- a/tests/compiler/rt/runtime-incremental-export.debug.wat +++ b/tests/compiler/rt/runtime-incremental-export.debug.wat @@ -451,7 +451,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -471,7 +471,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -534,7 +534,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -687,7 +687,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -704,7 +704,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -793,7 +793,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -836,7 +836,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -854,7 +854,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -922,7 +922,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1039,7 +1039,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1085,7 +1085,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1117,7 +1117,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1188,18 +1188,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1214,17 +1215,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1248,10 +1250,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1262,13 +1264,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1282,18 +1284,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1361,7 +1363,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1690,7 +1692,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1792,7 +1794,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1863,7 +1865,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1919,13 +1921,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1954,25 +1955,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1988,6 +1994,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2020,7 +2028,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2135,7 +2143,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2155,7 +2163,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/rt/runtime-incremental-export.release.wat b/tests/compiler/rt/runtime-incremental-export.release.wat index 6372bb77d3..6ae1b84337 100644 --- a/tests/compiler/rt/runtime-incremental-export.release.wat +++ b/tests/compiler/rt/runtime-incremental-export.release.wat @@ -264,7 +264,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -278,7 +278,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -324,7 +324,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -407,7 +407,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -421,7 +421,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -482,7 +482,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -515,7 +515,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -530,7 +530,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -581,7 +581,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -653,7 +653,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -678,7 +678,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -705,7 +705,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1068,7 +1068,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1153,7 +1153,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1205,7 +1205,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1303,7 +1303,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1367,8 +1367,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1405,7 +1403,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1420,7 +1418,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1439,7 +1437,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/rt/runtime-minimal-export.debug.wat b/tests/compiler/rt/runtime-minimal-export.debug.wat index 4ba694d3dc..5a59317899 100644 --- a/tests/compiler/rt/runtime-minimal-export.debug.wat +++ b/tests/compiler/rt/runtime-minimal-export.debug.wat @@ -107,7 +107,7 @@ if i32.const 0 i32.const 160 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -127,7 +127,7 @@ if i32.const 0 i32.const 160 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -190,7 +190,7 @@ if i32.const 0 i32.const 160 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -343,7 +343,7 @@ if i32.const 0 i32.const 160 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -360,7 +360,7 @@ if i32.const 0 i32.const 160 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -449,7 +449,7 @@ if i32.const 0 i32.const 160 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -492,7 +492,7 @@ if i32.const 0 i32.const 160 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -510,7 +510,7 @@ if i32.const 0 i32.const 160 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -578,7 +578,7 @@ if i32.const 0 i32.const 160 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -695,7 +695,7 @@ if i32.const 0 i32.const 160 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -741,7 +741,7 @@ if i32.const 0 i32.const 160 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -773,7 +773,7 @@ if i32.const 0 i32.const 160 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -844,18 +844,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -870,17 +871,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -904,10 +906,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -918,13 +920,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -938,18 +940,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1015,7 +1017,7 @@ if i32.const 32 i32.const 160 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1117,7 +1119,7 @@ if i32.const 0 i32.const 160 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1188,7 +1190,7 @@ if i32.const 0 i32.const 160 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1244,13 +1246,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1279,25 +1280,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1313,6 +1319,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -1345,7 +1353,7 @@ if i32.const 0 i32.const 160 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -1460,7 +1468,7 @@ if i32.const 0 i32.const 160 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1480,7 +1488,7 @@ if i32.const 0 i32.const 160 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1791,7 +1799,7 @@ if i32.const 0 i32.const 160 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/rt/runtime-minimal-export.release.wat b/tests/compiler/rt/runtime-minimal-export.release.wat index aaeece8e32..2bcff232c3 100644 --- a/tests/compiler/rt/runtime-minimal-export.release.wat +++ b/tests/compiler/rt/runtime-minimal-export.release.wat @@ -47,7 +47,7 @@ if i32.const 0 i32.const 1184 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -61,7 +61,7 @@ if i32.const 0 i32.const 1184 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -107,7 +107,7 @@ if i32.const 0 i32.const 1184 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -190,7 +190,7 @@ if i32.const 0 i32.const 1184 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -204,7 +204,7 @@ if i32.const 0 i32.const 1184 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -265,7 +265,7 @@ if i32.const 0 i32.const 1184 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -298,7 +298,7 @@ if i32.const 0 i32.const 1184 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -313,7 +313,7 @@ if i32.const 0 i32.const 1184 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -364,7 +364,7 @@ if i32.const 0 i32.const 1184 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -436,7 +436,7 @@ if i32.const 0 i32.const 1184 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -461,7 +461,7 @@ if i32.const 0 i32.const 1184 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -488,7 +488,7 @@ if i32.const 0 i32.const 1184 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -674,7 +674,7 @@ if i32.const 0 i32.const 1184 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -726,7 +726,7 @@ if i32.const 0 i32.const 1184 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -780,7 +780,7 @@ if i32.const 1056 i32.const 1184 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -844,8 +844,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -882,7 +880,7 @@ if i32.const 0 i32.const 1184 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -897,7 +895,7 @@ if i32.const 0 i32.const 1184 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -916,7 +914,7 @@ if i32.const 0 i32.const 1184 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -1344,7 +1342,7 @@ if i32.const 0 i32.const 1184 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/simd.debug.wat b/tests/compiler/simd.debug.wat index cebaf35fa6..3c6c832102 100644 --- a/tests/compiler/simd.debug.wat +++ b/tests/compiler/simd.debug.wat @@ -484,7 +484,7 @@ if i32.const 0 i32.const 416 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -504,7 +504,7 @@ if i32.const 0 i32.const 416 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -567,7 +567,7 @@ if i32.const 0 i32.const 416 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -720,7 +720,7 @@ if i32.const 0 i32.const 416 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -737,7 +737,7 @@ if i32.const 0 i32.const 416 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -826,7 +826,7 @@ if i32.const 0 i32.const 416 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -869,7 +869,7 @@ if i32.const 0 i32.const 416 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -887,7 +887,7 @@ if i32.const 0 i32.const 416 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -955,7 +955,7 @@ if i32.const 0 i32.const 416 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1072,7 +1072,7 @@ if i32.const 0 i32.const 416 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1118,7 +1118,7 @@ if i32.const 0 i32.const 416 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1150,7 +1150,7 @@ if i32.const 0 i32.const 416 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1221,18 +1221,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1247,17 +1248,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1281,10 +1283,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1295,13 +1297,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1315,18 +1317,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1394,7 +1396,7 @@ if i32.const 0 i32.const 416 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1723,7 +1725,7 @@ if i32.const 80 i32.const 416 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1825,7 +1827,7 @@ if i32.const 0 i32.const 416 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1896,7 +1898,7 @@ if i32.const 0 i32.const 416 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1952,13 +1954,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1987,25 +1988,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2021,6 +2027,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2053,7 +2061,7 @@ if i32.const 0 i32.const 416 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2168,7 +2176,7 @@ if i32.const 0 i32.const 416 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2188,7 +2196,7 @@ if i32.const 0 i32.const 416 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/simd.release.wat b/tests/compiler/simd.release.wat index e4b1c6e9ec..a57d7ef3be 100644 --- a/tests/compiler/simd.release.wat +++ b/tests/compiler/simd.release.wat @@ -280,7 +280,7 @@ if i32.const 0 i32.const 1440 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -294,7 +294,7 @@ if i32.const 0 i32.const 1440 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -340,7 +340,7 @@ if i32.const 0 i32.const 1440 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -423,7 +423,7 @@ if i32.const 0 i32.const 1440 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -437,7 +437,7 @@ if i32.const 0 i32.const 1440 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -498,7 +498,7 @@ if i32.const 0 i32.const 1440 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -531,7 +531,7 @@ if i32.const 0 i32.const 1440 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -546,7 +546,7 @@ if i32.const 0 i32.const 1440 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -597,7 +597,7 @@ if i32.const 0 i32.const 1440 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -669,7 +669,7 @@ if i32.const 0 i32.const 1440 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -694,7 +694,7 @@ if i32.const 0 i32.const 1440 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -721,7 +721,7 @@ if i32.const 0 i32.const 1440 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -889,7 +889,7 @@ if i32.const 0 i32.const 1440 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1175,7 +1175,7 @@ if i32.const 0 i32.const 1440 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1227,7 +1227,7 @@ if i32.const 0 i32.const 1440 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1258,7 +1258,7 @@ if i32.const 1104 i32.const 1440 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1322,8 +1322,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -1360,7 +1358,7 @@ if i32.const 0 i32.const 1440 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1375,7 +1373,7 @@ if i32.const 0 i32.const 1440 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1394,7 +1392,7 @@ if i32.const 0 i32.const 1440 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/array-literal.debug.wat b/tests/compiler/std/array-literal.debug.wat index 46c5f163bf..a70f92f2e4 100644 --- a/tests/compiler/std/array-literal.debug.wat +++ b/tests/compiler/std/array-literal.debug.wat @@ -480,7 +480,7 @@ if i32.const 0 i32.const 720 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -500,7 +500,7 @@ if i32.const 0 i32.const 720 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -563,7 +563,7 @@ if i32.const 0 i32.const 720 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -716,7 +716,7 @@ if i32.const 0 i32.const 720 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -733,7 +733,7 @@ if i32.const 0 i32.const 720 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -822,7 +822,7 @@ if i32.const 0 i32.const 720 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -865,7 +865,7 @@ if i32.const 0 i32.const 720 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -883,7 +883,7 @@ if i32.const 0 i32.const 720 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -951,7 +951,7 @@ if i32.const 0 i32.const 720 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1068,7 +1068,7 @@ if i32.const 0 i32.const 720 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1114,7 +1114,7 @@ if i32.const 0 i32.const 720 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1146,7 +1146,7 @@ if i32.const 0 i32.const 720 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1217,18 +1217,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1243,17 +1244,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1277,10 +1279,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1291,13 +1293,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1311,18 +1313,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1390,7 +1392,7 @@ if i32.const 0 i32.const 720 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1719,7 +1721,7 @@ if i32.const 448 i32.const 720 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1821,7 +1823,7 @@ if i32.const 0 i32.const 720 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1892,7 +1894,7 @@ if i32.const 0 i32.const 720 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1948,13 +1950,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1983,25 +1984,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2017,6 +2023,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2049,7 +2057,7 @@ if i32.const 0 i32.const 720 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2164,7 +2172,7 @@ if i32.const 0 i32.const 720 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2184,7 +2192,7 @@ if i32.const 0 i32.const 720 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/array-literal.release.wat b/tests/compiler/std/array-literal.release.wat index eb3f0fd313..5f7371f0d9 100644 --- a/tests/compiler/std/array-literal.release.wat +++ b/tests/compiler/std/array-literal.release.wat @@ -310,7 +310,7 @@ if i32.const 0 i32.const 1744 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -324,7 +324,7 @@ if i32.const 0 i32.const 1744 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -370,7 +370,7 @@ if i32.const 0 i32.const 1744 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -453,7 +453,7 @@ if i32.const 0 i32.const 1744 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -467,7 +467,7 @@ if i32.const 0 i32.const 1744 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -528,7 +528,7 @@ if i32.const 0 i32.const 1744 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -561,7 +561,7 @@ if i32.const 0 i32.const 1744 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -576,7 +576,7 @@ if i32.const 0 i32.const 1744 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -627,7 +627,7 @@ if i32.const 0 i32.const 1744 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -699,7 +699,7 @@ if i32.const 0 i32.const 1744 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -724,7 +724,7 @@ if i32.const 0 i32.const 1744 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -751,7 +751,7 @@ if i32.const 0 i32.const 1744 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1114,7 +1114,7 @@ if i32.const 0 i32.const 1744 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1199,7 +1199,7 @@ if i32.const 0 i32.const 1744 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1251,7 +1251,7 @@ if i32.const 0 i32.const 1744 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1349,7 +1349,7 @@ if i32.const 1472 i32.const 1744 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1413,8 +1413,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1451,7 +1449,7 @@ if i32.const 0 i32.const 1744 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1466,7 +1464,7 @@ if i32.const 0 i32.const 1744 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1485,7 +1483,7 @@ if i32.const 0 i32.const 1744 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/array.debug.wat b/tests/compiler/std/array.debug.wat index 0c7b3bfbca..d15f2b6e0d 100644 --- a/tests/compiler/std/array.debug.wat +++ b/tests/compiler/std/array.debug.wat @@ -789,7 +789,7 @@ if i32.const 0 i32.const 464 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -809,7 +809,7 @@ if i32.const 0 i32.const 464 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -872,7 +872,7 @@ if i32.const 0 i32.const 464 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -1025,7 +1025,7 @@ if i32.const 0 i32.const 464 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -1042,7 +1042,7 @@ if i32.const 0 i32.const 464 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -1131,7 +1131,7 @@ if i32.const 0 i32.const 464 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1174,7 +1174,7 @@ if i32.const 0 i32.const 464 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1192,7 +1192,7 @@ if i32.const 0 i32.const 464 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1260,7 +1260,7 @@ if i32.const 0 i32.const 464 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1377,7 +1377,7 @@ if i32.const 0 i32.const 464 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1423,7 +1423,7 @@ if i32.const 0 i32.const 464 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1455,7 +1455,7 @@ if i32.const 0 i32.const 464 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1526,18 +1526,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1552,17 +1553,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1586,10 +1588,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1600,13 +1602,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1620,18 +1622,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1699,7 +1701,7 @@ if i32.const 0 i32.const 464 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -2028,7 +2030,7 @@ if i32.const 128 i32.const 464 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -2130,7 +2132,7 @@ if i32.const 0 i32.const 464 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -2201,7 +2203,7 @@ if i32.const 0 i32.const 464 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2257,13 +2259,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2292,25 +2293,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2326,6 +2332,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2358,7 +2366,7 @@ if i32.const 0 i32.const 464 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2473,7 +2481,7 @@ if i32.const 0 i32.const 464 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2493,7 +2501,7 @@ if i32.const 0 i32.const 464 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/array.release.wat b/tests/compiler/std/array.release.wat index 4ff1aba22c..69e184a9f2 100644 --- a/tests/compiler/std/array.release.wat +++ b/tests/compiler/std/array.release.wat @@ -905,7 +905,7 @@ if i32.const 0 i32.const 1488 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -919,7 +919,7 @@ if i32.const 0 i32.const 1488 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -965,7 +965,7 @@ if i32.const 0 i32.const 1488 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -1048,7 +1048,7 @@ if i32.const 0 i32.const 1488 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -1062,7 +1062,7 @@ if i32.const 0 i32.const 1488 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -1123,7 +1123,7 @@ if i32.const 0 i32.const 1488 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1156,7 +1156,7 @@ if i32.const 0 i32.const 1488 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1171,7 +1171,7 @@ if i32.const 0 i32.const 1488 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1222,7 +1222,7 @@ if i32.const 0 i32.const 1488 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1294,7 +1294,7 @@ if i32.const 0 i32.const 1488 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1319,7 +1319,7 @@ if i32.const 0 i32.const 1488 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1346,7 +1346,7 @@ if i32.const 0 i32.const 1488 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1514,7 +1514,7 @@ if i32.const 0 i32.const 1488 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1800,7 +1800,7 @@ if i32.const 0 i32.const 1488 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1852,7 +1852,7 @@ if i32.const 0 i32.const 1488 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1883,7 +1883,7 @@ if i32.const 1152 i32.const 1488 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1947,8 +1947,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -1985,7 +1983,7 @@ if i32.const 0 i32.const 1488 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2000,7 +1998,7 @@ if i32.const 0 i32.const 1488 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -2019,7 +2017,7 @@ if i32.const 0 i32.const 1488 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/arraybuffer.debug.wat b/tests/compiler/std/arraybuffer.debug.wat index 4c4d8cdc3e..06868d07e6 100644 --- a/tests/compiler/std/arraybuffer.debug.wat +++ b/tests/compiler/std/arraybuffer.debug.wat @@ -453,7 +453,7 @@ if i32.const 0 i32.const 480 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -473,7 +473,7 @@ if i32.const 0 i32.const 480 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -536,7 +536,7 @@ if i32.const 0 i32.const 480 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -689,7 +689,7 @@ if i32.const 0 i32.const 480 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -706,7 +706,7 @@ if i32.const 0 i32.const 480 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -795,7 +795,7 @@ if i32.const 0 i32.const 480 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -838,7 +838,7 @@ if i32.const 0 i32.const 480 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -856,7 +856,7 @@ if i32.const 0 i32.const 480 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -924,7 +924,7 @@ if i32.const 0 i32.const 480 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1041,7 +1041,7 @@ if i32.const 0 i32.const 480 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1087,7 +1087,7 @@ if i32.const 0 i32.const 480 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1119,7 +1119,7 @@ if i32.const 0 i32.const 480 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1190,18 +1190,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1216,17 +1217,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1250,10 +1252,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1264,13 +1266,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1284,18 +1286,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1363,7 +1365,7 @@ if i32.const 0 i32.const 480 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1692,7 +1694,7 @@ if i32.const 144 i32.const 480 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1794,7 +1796,7 @@ if i32.const 0 i32.const 480 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1865,7 +1867,7 @@ if i32.const 0 i32.const 480 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1921,13 +1923,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1956,25 +1957,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1990,6 +1996,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2022,7 +2030,7 @@ if i32.const 0 i32.const 480 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2137,7 +2145,7 @@ if i32.const 0 i32.const 480 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2157,7 +2165,7 @@ if i32.const 0 i32.const 480 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/arraybuffer.release.wat b/tests/compiler/std/arraybuffer.release.wat index 79a69c4efd..a2bbe9fc47 100644 --- a/tests/compiler/std/arraybuffer.release.wat +++ b/tests/compiler/std/arraybuffer.release.wat @@ -260,7 +260,7 @@ if i32.const 0 i32.const 1504 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -274,7 +274,7 @@ if i32.const 0 i32.const 1504 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -320,7 +320,7 @@ if i32.const 0 i32.const 1504 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -403,7 +403,7 @@ if i32.const 0 i32.const 1504 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -417,7 +417,7 @@ if i32.const 0 i32.const 1504 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -478,7 +478,7 @@ if i32.const 0 i32.const 1504 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -511,7 +511,7 @@ if i32.const 0 i32.const 1504 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -526,7 +526,7 @@ if i32.const 0 i32.const 1504 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -577,7 +577,7 @@ if i32.const 0 i32.const 1504 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -649,7 +649,7 @@ if i32.const 0 i32.const 1504 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -674,7 +674,7 @@ if i32.const 0 i32.const 1504 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -701,7 +701,7 @@ if i32.const 0 i32.const 1504 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1064,7 +1064,7 @@ if i32.const 0 i32.const 1504 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1149,7 +1149,7 @@ if i32.const 0 i32.const 1504 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1201,7 +1201,7 @@ if i32.const 0 i32.const 1504 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1299,7 +1299,7 @@ if i32.const 1168 i32.const 1504 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1363,8 +1363,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1401,7 +1399,7 @@ if i32.const 0 i32.const 1504 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1416,7 +1414,7 @@ if i32.const 0 i32.const 1504 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1435,7 +1433,7 @@ if i32.const 0 i32.const 1504 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/dataview.debug.wat b/tests/compiler/std/dataview.debug.wat index d2e17e744a..0635075c86 100644 --- a/tests/compiler/std/dataview.debug.wat +++ b/tests/compiler/std/dataview.debug.wat @@ -460,7 +460,7 @@ if i32.const 0 i32.const 480 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -480,7 +480,7 @@ if i32.const 0 i32.const 480 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -543,7 +543,7 @@ if i32.const 0 i32.const 480 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -696,7 +696,7 @@ if i32.const 0 i32.const 480 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -713,7 +713,7 @@ if i32.const 0 i32.const 480 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -802,7 +802,7 @@ if i32.const 0 i32.const 480 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -845,7 +845,7 @@ if i32.const 0 i32.const 480 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -863,7 +863,7 @@ if i32.const 0 i32.const 480 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -931,7 +931,7 @@ if i32.const 0 i32.const 480 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1048,7 +1048,7 @@ if i32.const 0 i32.const 480 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1094,7 +1094,7 @@ if i32.const 0 i32.const 480 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1126,7 +1126,7 @@ if i32.const 0 i32.const 480 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1197,18 +1197,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1223,17 +1224,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1257,10 +1259,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1271,13 +1273,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1291,18 +1293,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1370,7 +1372,7 @@ if i32.const 0 i32.const 480 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1699,7 +1701,7 @@ if i32.const 144 i32.const 480 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1801,7 +1803,7 @@ if i32.const 0 i32.const 480 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1872,7 +1874,7 @@ if i32.const 0 i32.const 480 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1928,13 +1930,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1963,25 +1964,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1997,6 +2003,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2029,7 +2037,7 @@ if i32.const 0 i32.const 480 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2144,7 +2152,7 @@ if i32.const 0 i32.const 480 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2164,7 +2172,7 @@ if i32.const 0 i32.const 480 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/dataview.release.wat b/tests/compiler/std/dataview.release.wat index 96d4a1fb00..c75f676e95 100644 --- a/tests/compiler/std/dataview.release.wat +++ b/tests/compiler/std/dataview.release.wat @@ -268,7 +268,7 @@ if i32.const 0 i32.const 1504 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -282,7 +282,7 @@ if i32.const 0 i32.const 1504 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -328,7 +328,7 @@ if i32.const 0 i32.const 1504 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -411,7 +411,7 @@ if i32.const 0 i32.const 1504 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -425,7 +425,7 @@ if i32.const 0 i32.const 1504 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -486,7 +486,7 @@ if i32.const 0 i32.const 1504 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -519,7 +519,7 @@ if i32.const 0 i32.const 1504 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -534,7 +534,7 @@ if i32.const 0 i32.const 1504 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -585,7 +585,7 @@ if i32.const 0 i32.const 1504 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -657,7 +657,7 @@ if i32.const 0 i32.const 1504 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -682,7 +682,7 @@ if i32.const 0 i32.const 1504 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -709,7 +709,7 @@ if i32.const 0 i32.const 1504 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1072,7 +1072,7 @@ if i32.const 0 i32.const 1504 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1157,7 +1157,7 @@ if i32.const 0 i32.const 1504 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1209,7 +1209,7 @@ if i32.const 0 i32.const 1504 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1307,7 +1307,7 @@ if i32.const 1168 i32.const 1504 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1371,8 +1371,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1409,7 +1407,7 @@ if i32.const 0 i32.const 1504 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1424,7 +1422,7 @@ if i32.const 0 i32.const 1504 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1443,7 +1441,7 @@ if i32.const 0 i32.const 1504 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/date.debug.wat b/tests/compiler/std/date.debug.wat index dd23468444..d77372b1d2 100644 --- a/tests/compiler/std/date.debug.wat +++ b/tests/compiler/std/date.debug.wat @@ -845,7 +845,7 @@ if i32.const 0 i32.const 512 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -865,7 +865,7 @@ if i32.const 0 i32.const 512 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -928,7 +928,7 @@ if i32.const 0 i32.const 512 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -1081,7 +1081,7 @@ if i32.const 0 i32.const 512 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -1098,7 +1098,7 @@ if i32.const 0 i32.const 512 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -1187,7 +1187,7 @@ if i32.const 0 i32.const 512 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1230,7 +1230,7 @@ if i32.const 0 i32.const 512 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1248,7 +1248,7 @@ if i32.const 0 i32.const 512 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1316,7 +1316,7 @@ if i32.const 0 i32.const 512 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1433,7 +1433,7 @@ if i32.const 0 i32.const 512 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1479,7 +1479,7 @@ if i32.const 0 i32.const 512 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1511,7 +1511,7 @@ if i32.const 0 i32.const 512 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1582,18 +1582,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1608,17 +1609,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1642,10 +1644,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1656,13 +1658,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1676,18 +1678,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1755,7 +1757,7 @@ if i32.const 0 i32.const 512 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -2084,7 +2086,7 @@ if i32.const 176 i32.const 512 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -2186,7 +2188,7 @@ if i32.const 0 i32.const 512 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -2257,7 +2259,7 @@ if i32.const 0 i32.const 512 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2313,13 +2315,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2348,25 +2349,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2382,6 +2388,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2414,7 +2422,7 @@ if i32.const 0 i32.const 512 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2529,7 +2537,7 @@ if i32.const 0 i32.const 512 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2549,7 +2557,7 @@ if i32.const 0 i32.const 512 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/date.release.wat b/tests/compiler/std/date.release.wat index 2ae40dbb48..7240be2a05 100644 --- a/tests/compiler/std/date.release.wat +++ b/tests/compiler/std/date.release.wat @@ -651,7 +651,7 @@ if i32.const 0 i32.const 1536 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -665,7 +665,7 @@ if i32.const 0 i32.const 1536 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -711,7 +711,7 @@ if i32.const 0 i32.const 1536 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -794,7 +794,7 @@ if i32.const 0 i32.const 1536 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -808,7 +808,7 @@ if i32.const 0 i32.const 1536 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -869,7 +869,7 @@ if i32.const 0 i32.const 1536 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -902,7 +902,7 @@ if i32.const 0 i32.const 1536 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -917,7 +917,7 @@ if i32.const 0 i32.const 1536 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -968,7 +968,7 @@ if i32.const 0 i32.const 1536 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1040,7 +1040,7 @@ if i32.const 0 i32.const 1536 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1065,7 +1065,7 @@ if i32.const 0 i32.const 1536 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1092,7 +1092,7 @@ if i32.const 0 i32.const 1536 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1455,7 +1455,7 @@ if i32.const 0 i32.const 1536 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1540,7 +1540,7 @@ if i32.const 0 i32.const 1536 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1592,7 +1592,7 @@ if i32.const 0 i32.const 1536 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1690,7 +1690,7 @@ if i32.const 1200 i32.const 1536 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1754,8 +1754,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1792,7 +1790,7 @@ if i32.const 0 i32.const 1536 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1807,7 +1805,7 @@ if i32.const 0 i32.const 1536 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1826,7 +1824,7 @@ if i32.const 0 i32.const 1536 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/map.debug.wat b/tests/compiler/std/map.debug.wat index 0bea8bdde5..8a76df742f 100644 --- a/tests/compiler/std/map.debug.wat +++ b/tests/compiler/std/map.debug.wat @@ -476,7 +476,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -496,7 +496,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -559,7 +559,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -712,7 +712,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -729,7 +729,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -818,7 +818,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -861,7 +861,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -879,7 +879,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -947,7 +947,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1064,7 +1064,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1110,7 +1110,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1142,7 +1142,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1213,18 +1213,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1239,17 +1240,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1273,10 +1275,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1287,13 +1289,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1307,18 +1309,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1386,7 +1388,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1715,7 +1717,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1817,7 +1819,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1888,7 +1890,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1944,13 +1946,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1979,25 +1980,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2013,6 +2019,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2045,7 +2053,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2160,7 +2168,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2180,7 +2188,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/map.release.wat b/tests/compiler/std/map.release.wat index 29d20dcd9f..f9cd9fdfb8 100644 --- a/tests/compiler/std/map.release.wat +++ b/tests/compiler/std/map.release.wat @@ -281,7 +281,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -295,7 +295,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -341,7 +341,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -424,7 +424,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -438,7 +438,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -499,7 +499,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -532,7 +532,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -547,7 +547,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -598,7 +598,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -670,7 +670,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -695,7 +695,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -722,7 +722,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1085,7 +1085,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1170,7 +1170,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1222,7 +1222,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1320,7 +1320,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1384,8 +1384,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1422,7 +1420,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1437,7 +1435,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1456,7 +1454,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/math.release.wat b/tests/compiler/std/math.release.wat index 9e691da3f0..bc8b278553 100644 --- a/tests/compiler/std/math.release.wat +++ b/tests/compiler/std/math.release.wat @@ -49901,7 +49901,7 @@ call $~lib/builtins/abort unreachable end - f64.const -nan:0x8000000000000 + f64.const nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -49945,7 +49945,7 @@ call $~lib/builtins/abort unreachable end - f64.const -nan:0x8000000000000 + f64.const nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -49967,7 +49967,7 @@ call $~lib/builtins/abort unreachable end - f64.const -nan:0x8000000000000 + f64.const nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -50033,7 +50033,7 @@ call $~lib/builtins/abort unreachable end - f64.const -nan:0x8000000000000 + f64.const nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -50099,7 +50099,7 @@ call $~lib/builtins/abort unreachable end - f64.const -nan:0x8000000000000 + f64.const nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -50165,7 +50165,7 @@ call $~lib/builtins/abort unreachable end - f64.const -nan:0x8000000000000 + f64.const nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -50253,7 +50253,7 @@ call $~lib/builtins/abort unreachable end - f64.const -nan:0x8000000000000 + f64.const nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -50363,7 +50363,7 @@ call $~lib/builtins/abort unreachable end - f64.const -nan:0x8000000000000 + f64.const nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -50517,7 +50517,7 @@ call $~lib/builtins/abort unreachable end - f64.const -nan:0x8000000000000 + f64.const nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -51749,7 +51749,7 @@ call $~lib/builtins/abort unreachable end - f32.const -nan:0x400000 + f32.const nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -51775,7 +51775,7 @@ call $~lib/builtins/abort unreachable end - f32.const -nan:0x400000 + f32.const nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -51788,7 +51788,7 @@ call $~lib/builtins/abort unreachable end - f32.const -nan:0x400000 + f32.const nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -51827,7 +51827,7 @@ call $~lib/builtins/abort unreachable end - f32.const -nan:0x400000 + f32.const nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -51866,7 +51866,7 @@ call $~lib/builtins/abort unreachable end - f32.const -nan:0x400000 + f32.const nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -51905,7 +51905,7 @@ call $~lib/builtins/abort unreachable end - f32.const -nan:0x400000 + f32.const nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -51957,7 +51957,7 @@ call $~lib/builtins/abort unreachable end - f32.const -nan:0x400000 + f32.const nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -52022,7 +52022,7 @@ call $~lib/builtins/abort unreachable end - f32.const -nan:0x400000 + f32.const nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -52048,7 +52048,7 @@ call $~lib/builtins/abort unreachable end - f32.const -nan:0x400000 + f32.const nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check diff --git a/tests/compiler/std/new.debug.wat b/tests/compiler/std/new.debug.wat index 5b911b3d42..86ab57091a 100644 --- a/tests/compiler/std/new.debug.wat +++ b/tests/compiler/std/new.debug.wat @@ -462,7 +462,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -482,7 +482,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -545,7 +545,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -698,7 +698,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -715,7 +715,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -804,7 +804,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -847,7 +847,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -865,7 +865,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -933,7 +933,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1050,7 +1050,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1096,7 +1096,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1128,7 +1128,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1199,18 +1199,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1225,17 +1226,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1259,10 +1261,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1273,13 +1275,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1293,18 +1295,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1372,7 +1374,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1701,7 +1703,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1803,7 +1805,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1874,7 +1876,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1930,13 +1932,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1965,25 +1966,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1999,6 +2005,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2031,7 +2039,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2146,7 +2154,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2166,7 +2174,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/new.release.wat b/tests/compiler/std/new.release.wat index abc198a4f5..9fcbd188cb 100644 --- a/tests/compiler/std/new.release.wat +++ b/tests/compiler/std/new.release.wat @@ -250,7 +250,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -264,7 +264,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -310,7 +310,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -393,7 +393,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -407,7 +407,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -468,7 +468,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -501,7 +501,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -516,7 +516,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -567,7 +567,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -639,7 +639,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -664,7 +664,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -691,7 +691,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1054,7 +1054,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1120,7 +1120,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1215,8 +1215,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -1252,7 +1250,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1267,7 +1265,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/operator-overloading.debug.wat b/tests/compiler/std/operator-overloading.debug.wat index eb247a5394..bf0786f871 100644 --- a/tests/compiler/std/operator-overloading.debug.wat +++ b/tests/compiler/std/operator-overloading.debug.wat @@ -518,7 +518,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -538,7 +538,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -601,7 +601,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -754,7 +754,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -771,7 +771,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -860,7 +860,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -903,7 +903,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -921,7 +921,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -989,7 +989,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1106,7 +1106,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1152,7 +1152,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1184,7 +1184,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1255,18 +1255,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1281,17 +1282,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1315,10 +1317,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1329,13 +1331,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1349,18 +1351,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1428,7 +1430,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1757,7 +1759,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1859,7 +1861,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1930,7 +1932,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1986,13 +1988,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2021,25 +2022,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2055,6 +2061,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2087,7 +2095,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2202,7 +2210,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2222,7 +2230,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/operator-overloading.release.wat b/tests/compiler/std/operator-overloading.release.wat index 798cf087d5..3906295378 100644 --- a/tests/compiler/std/operator-overloading.release.wat +++ b/tests/compiler/std/operator-overloading.release.wat @@ -315,7 +315,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -329,7 +329,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -375,7 +375,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -458,7 +458,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -472,7 +472,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -533,7 +533,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -566,7 +566,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -581,7 +581,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -632,7 +632,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -704,7 +704,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -729,7 +729,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -756,7 +756,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1119,7 +1119,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1185,7 +1185,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1280,8 +1280,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1317,7 +1315,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1332,7 +1330,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/set.debug.wat b/tests/compiler/std/set.debug.wat index 2b9cc560d4..57e9c6003f 100644 --- a/tests/compiler/std/set.debug.wat +++ b/tests/compiler/std/set.debug.wat @@ -471,7 +471,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -491,7 +491,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -554,7 +554,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -707,7 +707,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -724,7 +724,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -813,7 +813,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -856,7 +856,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -874,7 +874,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -942,7 +942,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1059,7 +1059,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1105,7 +1105,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1137,7 +1137,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1208,18 +1208,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1234,17 +1235,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1268,10 +1270,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1282,13 +1284,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1302,18 +1304,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1381,7 +1383,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1710,7 +1712,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1812,7 +1814,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1883,7 +1885,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1939,13 +1941,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1974,25 +1975,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2008,6 +2014,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2040,7 +2048,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2155,7 +2163,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2175,7 +2183,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/set.release.wat b/tests/compiler/std/set.release.wat index c9ea6759a7..a37b388f82 100644 --- a/tests/compiler/std/set.release.wat +++ b/tests/compiler/std/set.release.wat @@ -272,7 +272,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -286,7 +286,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -332,7 +332,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -415,7 +415,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -429,7 +429,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -490,7 +490,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -523,7 +523,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -538,7 +538,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -589,7 +589,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -661,7 +661,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -686,7 +686,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -713,7 +713,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1076,7 +1076,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1161,7 +1161,7 @@ if i32.const 0 i32.const 1392 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1213,7 +1213,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1311,7 +1311,7 @@ if i32.const 1056 i32.const 1392 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1375,8 +1375,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1413,7 +1411,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1428,7 +1426,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1447,7 +1445,7 @@ if i32.const 0 i32.const 1392 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/static-array.debug.wat b/tests/compiler/std/static-array.debug.wat index 6beb21bf28..c9a16b35ca 100644 --- a/tests/compiler/std/static-array.debug.wat +++ b/tests/compiler/std/static-array.debug.wat @@ -487,7 +487,7 @@ if i32.const 0 i32.const 880 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -507,7 +507,7 @@ if i32.const 0 i32.const 880 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -570,7 +570,7 @@ if i32.const 0 i32.const 880 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -723,7 +723,7 @@ if i32.const 0 i32.const 880 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -740,7 +740,7 @@ if i32.const 0 i32.const 880 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -829,7 +829,7 @@ if i32.const 0 i32.const 880 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -872,7 +872,7 @@ if i32.const 0 i32.const 880 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -890,7 +890,7 @@ if i32.const 0 i32.const 880 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -958,7 +958,7 @@ if i32.const 0 i32.const 880 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1075,7 +1075,7 @@ if i32.const 0 i32.const 880 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1121,7 +1121,7 @@ if i32.const 0 i32.const 880 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1153,7 +1153,7 @@ if i32.const 0 i32.const 880 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1224,18 +1224,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1250,17 +1251,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1284,10 +1286,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1298,13 +1300,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1318,18 +1320,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1397,7 +1399,7 @@ if i32.const 0 i32.const 880 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1726,7 +1728,7 @@ if i32.const 608 i32.const 880 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1828,7 +1830,7 @@ if i32.const 0 i32.const 880 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1899,7 +1901,7 @@ if i32.const 0 i32.const 880 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1955,13 +1957,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1990,25 +1991,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2024,6 +2030,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2056,7 +2064,7 @@ if i32.const 0 i32.const 880 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2171,7 +2179,7 @@ if i32.const 0 i32.const 880 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2191,7 +2199,7 @@ if i32.const 0 i32.const 880 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/static-array.release.wat b/tests/compiler/std/static-array.release.wat index 78fadac341..27873218aa 100644 --- a/tests/compiler/std/static-array.release.wat +++ b/tests/compiler/std/static-array.release.wat @@ -284,7 +284,7 @@ if i32.const 0 i32.const 1904 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -298,7 +298,7 @@ if i32.const 0 i32.const 1904 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -344,7 +344,7 @@ if i32.const 0 i32.const 1904 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -427,7 +427,7 @@ if i32.const 0 i32.const 1904 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -441,7 +441,7 @@ if i32.const 0 i32.const 1904 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -502,7 +502,7 @@ if i32.const 0 i32.const 1904 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -535,7 +535,7 @@ if i32.const 0 i32.const 1904 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -550,7 +550,7 @@ if i32.const 0 i32.const 1904 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -601,7 +601,7 @@ if i32.const 0 i32.const 1904 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -673,7 +673,7 @@ if i32.const 0 i32.const 1904 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -698,7 +698,7 @@ if i32.const 0 i32.const 1904 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -725,7 +725,7 @@ if i32.const 0 i32.const 1904 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1088,7 +1088,7 @@ if i32.const 0 i32.const 1904 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1173,7 +1173,7 @@ if i32.const 0 i32.const 1904 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1225,7 +1225,7 @@ if i32.const 0 i32.const 1904 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1556,7 +1556,7 @@ if i32.const 1632 i32.const 1904 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1620,8 +1620,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $5 @@ -1658,7 +1656,7 @@ if i32.const 0 i32.const 1904 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1673,7 +1671,7 @@ if i32.const 0 i32.const 1904 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1692,7 +1690,7 @@ if i32.const 0 i32.const 1904 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/staticarray.debug.wat b/tests/compiler/std/staticarray.debug.wat index 2f10a71907..1a38c0a974 100644 --- a/tests/compiler/std/staticarray.debug.wat +++ b/tests/compiler/std/staticarray.debug.wat @@ -553,7 +553,7 @@ if i32.const 0 i32.const 592 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -573,7 +573,7 @@ if i32.const 0 i32.const 592 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -636,7 +636,7 @@ if i32.const 0 i32.const 592 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -789,7 +789,7 @@ if i32.const 0 i32.const 592 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -806,7 +806,7 @@ if i32.const 0 i32.const 592 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -895,7 +895,7 @@ if i32.const 0 i32.const 592 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -938,7 +938,7 @@ if i32.const 0 i32.const 592 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -956,7 +956,7 @@ if i32.const 0 i32.const 592 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1024,7 +1024,7 @@ if i32.const 0 i32.const 592 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1141,7 +1141,7 @@ if i32.const 0 i32.const 592 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1187,7 +1187,7 @@ if i32.const 0 i32.const 592 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1219,7 +1219,7 @@ if i32.const 0 i32.const 592 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1290,18 +1290,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1316,17 +1317,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1350,10 +1352,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1364,13 +1366,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1384,18 +1386,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1463,7 +1465,7 @@ if i32.const 0 i32.const 592 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1792,7 +1794,7 @@ if i32.const 320 i32.const 592 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1894,7 +1896,7 @@ if i32.const 0 i32.const 592 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1965,7 +1967,7 @@ if i32.const 0 i32.const 592 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2021,13 +2023,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2056,25 +2057,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2090,6 +2096,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2122,7 +2130,7 @@ if i32.const 0 i32.const 592 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2237,7 +2245,7 @@ if i32.const 0 i32.const 592 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2257,7 +2265,7 @@ if i32.const 0 i32.const 592 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/staticarray.release.wat b/tests/compiler/std/staticarray.release.wat index 5c505b09e8..4a57e11ff3 100644 --- a/tests/compiler/std/staticarray.release.wat +++ b/tests/compiler/std/staticarray.release.wat @@ -407,7 +407,7 @@ if i32.const 0 i32.const 1616 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -421,7 +421,7 @@ if i32.const 0 i32.const 1616 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -467,7 +467,7 @@ if i32.const 0 i32.const 1616 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -550,7 +550,7 @@ if i32.const 0 i32.const 1616 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -564,7 +564,7 @@ if i32.const 0 i32.const 1616 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -625,7 +625,7 @@ if i32.const 0 i32.const 1616 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -658,7 +658,7 @@ if i32.const 0 i32.const 1616 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -673,7 +673,7 @@ if i32.const 0 i32.const 1616 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -724,7 +724,7 @@ if i32.const 0 i32.const 1616 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -796,7 +796,7 @@ if i32.const 0 i32.const 1616 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -821,7 +821,7 @@ if i32.const 0 i32.const 1616 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -848,7 +848,7 @@ if i32.const 0 i32.const 1616 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1016,7 +1016,7 @@ if i32.const 0 i32.const 1616 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1302,7 +1302,7 @@ if i32.const 0 i32.const 1616 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1354,7 +1354,7 @@ if i32.const 0 i32.const 1616 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1385,7 +1385,7 @@ if i32.const 1344 i32.const 1616 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1449,8 +1449,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -1487,7 +1485,7 @@ if i32.const 0 i32.const 1616 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1502,7 +1500,7 @@ if i32.const 0 i32.const 1616 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1521,7 +1519,7 @@ if i32.const 0 i32.const 1616 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/string-casemapping.debug.wat b/tests/compiler/std/string-casemapping.debug.wat index 21f3389d96..9742644721 100644 --- a/tests/compiler/std/string-casemapping.debug.wat +++ b/tests/compiler/std/string-casemapping.debug.wat @@ -639,7 +639,7 @@ if i32.const 0 i32.const 400 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -659,7 +659,7 @@ if i32.const 0 i32.const 400 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -722,7 +722,7 @@ if i32.const 0 i32.const 400 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -875,7 +875,7 @@ if i32.const 0 i32.const 400 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -892,7 +892,7 @@ if i32.const 0 i32.const 400 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -981,7 +981,7 @@ if i32.const 0 i32.const 400 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1024,7 +1024,7 @@ if i32.const 0 i32.const 400 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1042,7 +1042,7 @@ if i32.const 0 i32.const 400 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1110,7 +1110,7 @@ if i32.const 0 i32.const 400 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1227,7 +1227,7 @@ if i32.const 0 i32.const 400 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1273,7 +1273,7 @@ if i32.const 0 i32.const 400 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1305,7 +1305,7 @@ if i32.const 0 i32.const 400 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1376,18 +1376,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1402,17 +1403,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1436,10 +1438,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1450,13 +1452,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1470,18 +1472,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1549,7 +1551,7 @@ if i32.const 0 i32.const 400 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1878,7 +1880,7 @@ if i32.const 64 i32.const 400 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1980,7 +1982,7 @@ if i32.const 0 i32.const 400 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -2051,7 +2053,7 @@ if i32.const 0 i32.const 400 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2107,13 +2109,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2142,25 +2143,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2176,6 +2182,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2208,7 +2216,7 @@ if i32.const 0 i32.const 400 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2323,7 +2331,7 @@ if i32.const 0 i32.const 400 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2343,7 +2351,7 @@ if i32.const 0 i32.const 400 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/string-casemapping.release.wat b/tests/compiler/std/string-casemapping.release.wat index 617fc04b1e..b9ecabc4ca 100644 --- a/tests/compiler/std/string-casemapping.release.wat +++ b/tests/compiler/std/string-casemapping.release.wat @@ -699,7 +699,7 @@ if i32.const 0 i32.const 1424 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -713,7 +713,7 @@ if i32.const 0 i32.const 1424 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -759,7 +759,7 @@ if i32.const 0 i32.const 1424 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -842,7 +842,7 @@ if i32.const 0 i32.const 1424 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -856,7 +856,7 @@ if i32.const 0 i32.const 1424 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -917,7 +917,7 @@ if i32.const 0 i32.const 1424 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -950,7 +950,7 @@ if i32.const 0 i32.const 1424 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -965,7 +965,7 @@ if i32.const 0 i32.const 1424 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1016,7 +1016,7 @@ if i32.const 0 i32.const 1424 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1088,7 +1088,7 @@ if i32.const 0 i32.const 1424 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1113,7 +1113,7 @@ if i32.const 0 i32.const 1424 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1140,7 +1140,7 @@ if i32.const 0 i32.const 1424 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1503,7 +1503,7 @@ if i32.const 0 i32.const 1424 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1588,7 +1588,7 @@ if i32.const 0 i32.const 1424 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1640,7 +1640,7 @@ if i32.const 0 i32.const 1424 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1738,7 +1738,7 @@ if i32.const 1088 i32.const 1424 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1802,8 +1802,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1840,7 +1838,7 @@ if i32.const 0 i32.const 1424 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1855,7 +1853,7 @@ if i32.const 0 i32.const 1424 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1874,7 +1872,7 @@ if i32.const 0 i32.const 1424 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/string-encoding.debug.wat b/tests/compiler/std/string-encoding.debug.wat index 8bc24bd177..ff12fc7579 100644 --- a/tests/compiler/std/string-encoding.debug.wat +++ b/tests/compiler/std/string-encoding.debug.wat @@ -478,7 +478,7 @@ if i32.const 0 i32.const 464 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -498,7 +498,7 @@ if i32.const 0 i32.const 464 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -561,7 +561,7 @@ if i32.const 0 i32.const 464 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -714,7 +714,7 @@ if i32.const 0 i32.const 464 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -731,7 +731,7 @@ if i32.const 0 i32.const 464 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -820,7 +820,7 @@ if i32.const 0 i32.const 464 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -863,7 +863,7 @@ if i32.const 0 i32.const 464 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -881,7 +881,7 @@ if i32.const 0 i32.const 464 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -949,7 +949,7 @@ if i32.const 0 i32.const 464 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1066,7 +1066,7 @@ if i32.const 0 i32.const 464 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1112,7 +1112,7 @@ if i32.const 0 i32.const 464 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1144,7 +1144,7 @@ if i32.const 0 i32.const 464 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1215,18 +1215,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1241,17 +1242,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1275,10 +1277,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1289,13 +1291,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1309,18 +1311,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1388,7 +1390,7 @@ if i32.const 0 i32.const 464 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1717,7 +1719,7 @@ if i32.const 128 i32.const 464 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1819,7 +1821,7 @@ if i32.const 0 i32.const 464 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1890,7 +1892,7 @@ if i32.const 0 i32.const 464 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1946,13 +1948,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1981,25 +1982,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2015,6 +2021,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2047,7 +2055,7 @@ if i32.const 0 i32.const 464 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2162,7 +2170,7 @@ if i32.const 0 i32.const 464 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2182,7 +2190,7 @@ if i32.const 0 i32.const 464 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/string-encoding.release.wat b/tests/compiler/std/string-encoding.release.wat index 1896b425de..f1d9f38269 100644 --- a/tests/compiler/std/string-encoding.release.wat +++ b/tests/compiler/std/string-encoding.release.wat @@ -286,7 +286,7 @@ if i32.const 0 i32.const 1488 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -300,7 +300,7 @@ if i32.const 0 i32.const 1488 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -346,7 +346,7 @@ if i32.const 0 i32.const 1488 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -429,7 +429,7 @@ if i32.const 0 i32.const 1488 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -443,7 +443,7 @@ if i32.const 0 i32.const 1488 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -504,7 +504,7 @@ if i32.const 0 i32.const 1488 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -537,7 +537,7 @@ if i32.const 0 i32.const 1488 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -552,7 +552,7 @@ if i32.const 0 i32.const 1488 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -603,7 +603,7 @@ if i32.const 0 i32.const 1488 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -675,7 +675,7 @@ if i32.const 0 i32.const 1488 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -700,7 +700,7 @@ if i32.const 0 i32.const 1488 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -727,7 +727,7 @@ if i32.const 0 i32.const 1488 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1090,7 +1090,7 @@ if i32.const 0 i32.const 1488 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1175,7 +1175,7 @@ if i32.const 0 i32.const 1488 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1227,7 +1227,7 @@ if i32.const 0 i32.const 1488 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1325,7 +1325,7 @@ if i32.const 1152 i32.const 1488 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1389,8 +1389,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1427,7 +1425,7 @@ if i32.const 0 i32.const 1488 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1442,7 +1440,7 @@ if i32.const 0 i32.const 1488 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1461,7 +1459,7 @@ if i32.const 0 i32.const 1488 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/string.debug.wat b/tests/compiler/std/string.debug.wat index 7970a9b62e..da27d269ba 100644 --- a/tests/compiler/std/string.debug.wat +++ b/tests/compiler/std/string.debug.wat @@ -1076,7 +1076,7 @@ if i32.const 0 i32.const 624 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -1096,7 +1096,7 @@ if i32.const 0 i32.const 624 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -1159,7 +1159,7 @@ if i32.const 0 i32.const 624 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -1312,7 +1312,7 @@ if i32.const 0 i32.const 624 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -1329,7 +1329,7 @@ if i32.const 0 i32.const 624 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -1418,7 +1418,7 @@ if i32.const 0 i32.const 624 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1461,7 +1461,7 @@ if i32.const 0 i32.const 624 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1479,7 +1479,7 @@ if i32.const 0 i32.const 624 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1547,7 +1547,7 @@ if i32.const 0 i32.const 624 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1664,7 +1664,7 @@ if i32.const 0 i32.const 624 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1710,7 +1710,7 @@ if i32.const 0 i32.const 624 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1742,7 +1742,7 @@ if i32.const 0 i32.const 624 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1813,18 +1813,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1839,17 +1840,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1873,10 +1875,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1887,13 +1889,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1907,18 +1909,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1986,7 +1988,7 @@ if i32.const 0 i32.const 624 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -2315,7 +2317,7 @@ if i32.const 352 i32.const 624 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -2417,7 +2419,7 @@ if i32.const 0 i32.const 624 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -2488,7 +2490,7 @@ if i32.const 0 i32.const 624 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2544,13 +2546,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2579,25 +2580,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2613,6 +2619,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2645,7 +2653,7 @@ if i32.const 0 i32.const 624 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2760,7 +2768,7 @@ if i32.const 0 i32.const 624 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2780,7 +2788,7 @@ if i32.const 0 i32.const 624 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/string.release.wat b/tests/compiler/std/string.release.wat index a18ea8e7a2..322cc4039b 100644 --- a/tests/compiler/std/string.release.wat +++ b/tests/compiler/std/string.release.wat @@ -1296,7 +1296,7 @@ if i32.const 0 i32.const 1648 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -1310,7 +1310,7 @@ if i32.const 0 i32.const 1648 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -1356,7 +1356,7 @@ if i32.const 0 i32.const 1648 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -1439,7 +1439,7 @@ if i32.const 0 i32.const 1648 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -1453,7 +1453,7 @@ if i32.const 0 i32.const 1648 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -1514,7 +1514,7 @@ if i32.const 0 i32.const 1648 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1547,7 +1547,7 @@ if i32.const 0 i32.const 1648 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1562,7 +1562,7 @@ if i32.const 0 i32.const 1648 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1613,7 +1613,7 @@ if i32.const 0 i32.const 1648 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1685,7 +1685,7 @@ if i32.const 0 i32.const 1648 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1710,7 +1710,7 @@ if i32.const 0 i32.const 1648 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1737,7 +1737,7 @@ if i32.const 0 i32.const 1648 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -2100,7 +2100,7 @@ if i32.const 0 i32.const 1648 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -2185,7 +2185,7 @@ if i32.const 0 i32.const 1648 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -2237,7 +2237,7 @@ if i32.const 0 i32.const 1648 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2335,7 +2335,7 @@ if i32.const 1376 i32.const 1648 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -2399,8 +2399,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -2437,7 +2435,7 @@ if i32.const 0 i32.const 1648 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2452,7 +2450,7 @@ if i32.const 0 i32.const 1648 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -2471,7 +2469,7 @@ if i32.const 0 i32.const 1648 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/symbol.debug.wat b/tests/compiler/std/symbol.debug.wat index ca03f8216a..eb758dfe54 100644 --- a/tests/compiler/std/symbol.debug.wat +++ b/tests/compiler/std/symbol.debug.wat @@ -507,7 +507,7 @@ if i32.const 0 i32.const 448 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -527,7 +527,7 @@ if i32.const 0 i32.const 448 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -590,7 +590,7 @@ if i32.const 0 i32.const 448 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -743,7 +743,7 @@ if i32.const 0 i32.const 448 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -760,7 +760,7 @@ if i32.const 0 i32.const 448 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -849,7 +849,7 @@ if i32.const 0 i32.const 448 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -892,7 +892,7 @@ if i32.const 0 i32.const 448 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -910,7 +910,7 @@ if i32.const 0 i32.const 448 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -978,7 +978,7 @@ if i32.const 0 i32.const 448 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1095,7 +1095,7 @@ if i32.const 0 i32.const 448 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1141,7 +1141,7 @@ if i32.const 0 i32.const 448 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1173,7 +1173,7 @@ if i32.const 0 i32.const 448 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1244,18 +1244,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1270,17 +1271,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1304,10 +1306,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1318,13 +1320,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1338,18 +1340,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1417,7 +1419,7 @@ if i32.const 0 i32.const 448 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1746,7 +1748,7 @@ if i32.const 112 i32.const 448 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1848,7 +1850,7 @@ if i32.const 0 i32.const 448 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1919,7 +1921,7 @@ if i32.const 0 i32.const 448 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1975,13 +1977,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2010,25 +2011,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2044,6 +2050,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2076,7 +2084,7 @@ if i32.const 0 i32.const 448 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2191,7 +2199,7 @@ if i32.const 0 i32.const 448 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2211,7 +2219,7 @@ if i32.const 0 i32.const 448 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/symbol.release.wat b/tests/compiler/std/symbol.release.wat index 59048f83cc..618a2f3e4b 100644 --- a/tests/compiler/std/symbol.release.wat +++ b/tests/compiler/std/symbol.release.wat @@ -353,7 +353,7 @@ if i32.const 0 i32.const 1472 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -367,7 +367,7 @@ if i32.const 0 i32.const 1472 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -413,7 +413,7 @@ if i32.const 0 i32.const 1472 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -496,7 +496,7 @@ if i32.const 0 i32.const 1472 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -510,7 +510,7 @@ if i32.const 0 i32.const 1472 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -571,7 +571,7 @@ if i32.const 0 i32.const 1472 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -604,7 +604,7 @@ if i32.const 0 i32.const 1472 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -619,7 +619,7 @@ if i32.const 0 i32.const 1472 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -670,7 +670,7 @@ if i32.const 0 i32.const 1472 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -742,7 +742,7 @@ if i32.const 0 i32.const 1472 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -767,7 +767,7 @@ if i32.const 0 i32.const 1472 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -794,7 +794,7 @@ if i32.const 0 i32.const 1472 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1157,7 +1157,7 @@ if i32.const 0 i32.const 1472 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1242,7 +1242,7 @@ if i32.const 0 i32.const 1472 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1294,7 +1294,7 @@ if i32.const 0 i32.const 1472 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1392,7 +1392,7 @@ if i32.const 1136 i32.const 1472 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1456,8 +1456,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1494,7 +1492,7 @@ if i32.const 0 i32.const 1472 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1509,7 +1507,7 @@ if i32.const 0 i32.const 1472 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1528,7 +1526,7 @@ if i32.const 0 i32.const 1472 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/typedarray.debug.wat b/tests/compiler/std/typedarray.debug.wat index 371919deb9..d4c5d91823 100644 --- a/tests/compiler/std/typedarray.debug.wat +++ b/tests/compiler/std/typedarray.debug.wat @@ -819,7 +819,7 @@ if i32.const 0 i32.const 480 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -839,7 +839,7 @@ if i32.const 0 i32.const 480 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -902,7 +902,7 @@ if i32.const 0 i32.const 480 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -1055,7 +1055,7 @@ if i32.const 0 i32.const 480 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -1072,7 +1072,7 @@ if i32.const 0 i32.const 480 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -1161,7 +1161,7 @@ if i32.const 0 i32.const 480 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1204,7 +1204,7 @@ if i32.const 0 i32.const 480 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1222,7 +1222,7 @@ if i32.const 0 i32.const 480 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1290,7 +1290,7 @@ if i32.const 0 i32.const 480 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1407,7 +1407,7 @@ if i32.const 0 i32.const 480 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1453,7 +1453,7 @@ if i32.const 0 i32.const 480 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1485,7 +1485,7 @@ if i32.const 0 i32.const 480 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1556,18 +1556,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1582,17 +1583,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1616,10 +1618,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1630,13 +1632,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1650,18 +1652,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1729,7 +1731,7 @@ if i32.const 0 i32.const 480 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -2058,7 +2060,7 @@ if i32.const 144 i32.const 480 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -2160,7 +2162,7 @@ if i32.const 0 i32.const 480 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -2231,7 +2233,7 @@ if i32.const 0 i32.const 480 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2287,13 +2289,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2322,25 +2323,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2356,6 +2362,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2388,7 +2396,7 @@ if i32.const 0 i32.const 480 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2503,7 +2511,7 @@ if i32.const 0 i32.const 480 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2523,7 +2531,7 @@ if i32.const 0 i32.const 480 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/typedarray.release.wat b/tests/compiler/std/typedarray.release.wat index 30c2366c5a..989d0f0dab 100644 --- a/tests/compiler/std/typedarray.release.wat +++ b/tests/compiler/std/typedarray.release.wat @@ -913,7 +913,7 @@ if i32.const 0 i32.const 1504 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -927,7 +927,7 @@ if i32.const 0 i32.const 1504 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -973,7 +973,7 @@ if i32.const 0 i32.const 1504 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -1056,7 +1056,7 @@ if i32.const 0 i32.const 1504 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -1070,7 +1070,7 @@ if i32.const 0 i32.const 1504 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -1131,7 +1131,7 @@ if i32.const 0 i32.const 1504 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1164,7 +1164,7 @@ if i32.const 0 i32.const 1504 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1179,7 +1179,7 @@ if i32.const 0 i32.const 1504 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1230,7 +1230,7 @@ if i32.const 0 i32.const 1504 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1302,7 +1302,7 @@ if i32.const 0 i32.const 1504 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1327,7 +1327,7 @@ if i32.const 0 i32.const 1504 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1354,7 +1354,7 @@ if i32.const 0 i32.const 1504 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1522,7 +1522,7 @@ if i32.const 0 i32.const 1504 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1808,7 +1808,7 @@ if i32.const 0 i32.const 1504 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1860,7 +1860,7 @@ if i32.const 0 i32.const 1504 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1891,7 +1891,7 @@ if i32.const 1168 i32.const 1504 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1955,8 +1955,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $2 @@ -1993,7 +1991,7 @@ if i32.const 0 i32.const 1504 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2008,7 +2006,7 @@ if i32.const 0 i32.const 1504 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -2027,7 +2025,7 @@ if i32.const 0 i32.const 1504 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/uri.debug.wat b/tests/compiler/std/uri.debug.wat index ef094cef9d..8564b2eec4 100644 --- a/tests/compiler/std/uri.debug.wat +++ b/tests/compiler/std/uri.debug.wat @@ -521,7 +521,7 @@ if i32.const 0 i32.const 496 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -541,7 +541,7 @@ if i32.const 0 i32.const 496 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -604,7 +604,7 @@ if i32.const 0 i32.const 496 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -757,7 +757,7 @@ if i32.const 0 i32.const 496 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -774,7 +774,7 @@ if i32.const 0 i32.const 496 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -863,7 +863,7 @@ if i32.const 0 i32.const 496 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -906,7 +906,7 @@ if i32.const 0 i32.const 496 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -924,7 +924,7 @@ if i32.const 0 i32.const 496 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -992,7 +992,7 @@ if i32.const 0 i32.const 496 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1109,7 +1109,7 @@ if i32.const 0 i32.const 496 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1155,7 +1155,7 @@ if i32.const 0 i32.const 496 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1187,7 +1187,7 @@ if i32.const 0 i32.const 496 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1258,18 +1258,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1284,17 +1285,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1318,10 +1320,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1332,13 +1334,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1352,18 +1354,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1431,7 +1433,7 @@ if i32.const 0 i32.const 496 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1760,7 +1762,7 @@ if i32.const 160 i32.const 496 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1862,7 +1864,7 @@ if i32.const 0 i32.const 496 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1933,7 +1935,7 @@ if i32.const 0 i32.const 496 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1989,13 +1991,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2024,25 +2025,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2058,6 +2064,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2090,7 +2098,7 @@ if i32.const 0 i32.const 496 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2205,7 +2213,7 @@ if i32.const 0 i32.const 496 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2225,7 +2233,7 @@ if i32.const 0 i32.const 496 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/std/uri.release.wat b/tests/compiler/std/uri.release.wat index e5e37589ca..07d87698c0 100644 --- a/tests/compiler/std/uri.release.wat +++ b/tests/compiler/std/uri.release.wat @@ -366,7 +366,7 @@ if i32.const 0 i32.const 1520 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -380,7 +380,7 @@ if i32.const 0 i32.const 1520 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -426,7 +426,7 @@ if i32.const 0 i32.const 1520 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -509,7 +509,7 @@ if i32.const 0 i32.const 1520 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -523,7 +523,7 @@ if i32.const 0 i32.const 1520 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -584,7 +584,7 @@ if i32.const 0 i32.const 1520 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -617,7 +617,7 @@ if i32.const 0 i32.const 1520 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -632,7 +632,7 @@ if i32.const 0 i32.const 1520 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -683,7 +683,7 @@ if i32.const 0 i32.const 1520 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -755,7 +755,7 @@ if i32.const 0 i32.const 1520 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -780,7 +780,7 @@ if i32.const 0 i32.const 1520 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -807,7 +807,7 @@ if i32.const 0 i32.const 1520 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1170,7 +1170,7 @@ if i32.const 0 i32.const 1520 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1255,7 +1255,7 @@ if i32.const 0 i32.const 1520 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1307,7 +1307,7 @@ if i32.const 0 i32.const 1520 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1405,7 +1405,7 @@ if i32.const 1184 i32.const 1520 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1469,8 +1469,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1507,7 +1505,7 @@ if i32.const 0 i32.const 1520 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1522,7 +1520,7 @@ if i32.const 0 i32.const 1520 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1541,7 +1539,7 @@ if i32.const 0 i32.const 1520 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/super-inline.debug.wat b/tests/compiler/super-inline.debug.wat index 347d6527fd..5e3e5b4c34 100644 --- a/tests/compiler/super-inline.debug.wat +++ b/tests/compiler/super-inline.debug.wat @@ -446,7 +446,7 @@ if i32.const 0 i32.const 368 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -466,7 +466,7 @@ if i32.const 0 i32.const 368 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -529,7 +529,7 @@ if i32.const 0 i32.const 368 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -682,7 +682,7 @@ if i32.const 0 i32.const 368 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -699,7 +699,7 @@ if i32.const 0 i32.const 368 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -788,7 +788,7 @@ if i32.const 0 i32.const 368 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -831,7 +831,7 @@ if i32.const 0 i32.const 368 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -849,7 +849,7 @@ if i32.const 0 i32.const 368 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -917,7 +917,7 @@ if i32.const 0 i32.const 368 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1034,7 +1034,7 @@ if i32.const 0 i32.const 368 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1080,7 +1080,7 @@ if i32.const 0 i32.const 368 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1112,7 +1112,7 @@ if i32.const 0 i32.const 368 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1183,18 +1183,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1209,17 +1210,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1243,10 +1245,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1257,13 +1259,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1277,18 +1279,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1356,7 +1358,7 @@ if i32.const 0 i32.const 368 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1685,7 +1687,7 @@ if i32.const 32 i32.const 368 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1787,7 +1789,7 @@ if i32.const 0 i32.const 368 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1858,7 +1860,7 @@ if i32.const 0 i32.const 368 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1914,13 +1916,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -1949,25 +1950,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -1983,6 +1989,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2015,7 +2023,7 @@ if i32.const 0 i32.const 368 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2130,7 +2138,7 @@ if i32.const 0 i32.const 368 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2150,7 +2158,7 @@ if i32.const 0 i32.const 368 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/super-inline.release.wat b/tests/compiler/super-inline.release.wat index bafd07b72f..5a59347ec3 100644 --- a/tests/compiler/super-inline.release.wat +++ b/tests/compiler/super-inline.release.wat @@ -257,7 +257,7 @@ if i32.const 0 i32.const 1392 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -271,7 +271,7 @@ if i32.const 0 i32.const 1392 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -317,7 +317,7 @@ if i32.const 0 i32.const 1392 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -400,7 +400,7 @@ if i32.const 0 i32.const 1392 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -414,7 +414,7 @@ if i32.const 0 i32.const 1392 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -475,7 +475,7 @@ if i32.const 0 i32.const 1392 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -508,7 +508,7 @@ if i32.const 0 i32.const 1392 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -523,7 +523,7 @@ if i32.const 0 i32.const 1392 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -574,7 +574,7 @@ if i32.const 0 i32.const 1392 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -646,7 +646,7 @@ if i32.const 0 i32.const 1392 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -671,7 +671,7 @@ if i32.const 0 i32.const 1392 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -698,7 +698,7 @@ if i32.const 0 i32.const 1392 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1061,7 +1061,7 @@ if i32.const 0 i32.const 1392 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1127,7 +1127,7 @@ if i32.const 0 i32.const 1392 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1222,8 +1222,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1259,7 +1257,7 @@ if i32.const 0 i32.const 1392 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1274,7 +1272,7 @@ if i32.const 0 i32.const 1392 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/templateliteral.debug.wat b/tests/compiler/templateliteral.debug.wat index 629dbcd62d..413c8dc281 100644 --- a/tests/compiler/templateliteral.debug.wat +++ b/tests/compiler/templateliteral.debug.wat @@ -627,7 +627,7 @@ if i32.const 0 i32.const 528 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -647,7 +647,7 @@ if i32.const 0 i32.const 528 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -710,7 +710,7 @@ if i32.const 0 i32.const 528 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -863,7 +863,7 @@ if i32.const 0 i32.const 528 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -880,7 +880,7 @@ if i32.const 0 i32.const 528 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -969,7 +969,7 @@ if i32.const 0 i32.const 528 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1012,7 +1012,7 @@ if i32.const 0 i32.const 528 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1030,7 +1030,7 @@ if i32.const 0 i32.const 528 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1098,7 +1098,7 @@ if i32.const 0 i32.const 528 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1215,7 +1215,7 @@ if i32.const 0 i32.const 528 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1261,7 +1261,7 @@ if i32.const 0 i32.const 528 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1293,7 +1293,7 @@ if i32.const 0 i32.const 528 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1364,18 +1364,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1390,17 +1391,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1424,10 +1426,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1438,13 +1440,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1458,18 +1460,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1537,7 +1539,7 @@ if i32.const 0 i32.const 528 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1866,7 +1868,7 @@ if i32.const 192 i32.const 528 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1968,7 +1970,7 @@ if i32.const 0 i32.const 528 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -2039,7 +2041,7 @@ if i32.const 0 i32.const 528 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2095,13 +2097,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2130,25 +2131,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2164,6 +2170,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2196,7 +2204,7 @@ if i32.const 0 i32.const 528 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2311,7 +2319,7 @@ if i32.const 0 i32.const 528 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2331,7 +2339,7 @@ if i32.const 0 i32.const 528 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/templateliteral.release.wat b/tests/compiler/templateliteral.release.wat index a2ded6a5ae..f1439b2217 100644 --- a/tests/compiler/templateliteral.release.wat +++ b/tests/compiler/templateliteral.release.wat @@ -350,7 +350,7 @@ if i32.const 0 i32.const 1552 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -364,7 +364,7 @@ if i32.const 0 i32.const 1552 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -410,7 +410,7 @@ if i32.const 0 i32.const 1552 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -493,7 +493,7 @@ if i32.const 0 i32.const 1552 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -507,7 +507,7 @@ if i32.const 0 i32.const 1552 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -568,7 +568,7 @@ if i32.const 0 i32.const 1552 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -601,7 +601,7 @@ if i32.const 0 i32.const 1552 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -616,7 +616,7 @@ if i32.const 0 i32.const 1552 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -667,7 +667,7 @@ if i32.const 0 i32.const 1552 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -739,7 +739,7 @@ if i32.const 0 i32.const 1552 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -764,7 +764,7 @@ if i32.const 0 i32.const 1552 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -791,7 +791,7 @@ if i32.const 0 i32.const 1552 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1154,7 +1154,7 @@ if i32.const 0 i32.const 1552 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1239,7 +1239,7 @@ if i32.const 0 i32.const 1552 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1291,7 +1291,7 @@ if i32.const 0 i32.const 1552 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1389,7 +1389,7 @@ if i32.const 1216 i32.const 1552 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1453,8 +1453,6 @@ i32.add i32.const 65535 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1491,7 +1489,7 @@ if i32.const 0 i32.const 1552 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1506,7 +1504,7 @@ if i32.const 0 i32.const 1552 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable @@ -1525,7 +1523,7 @@ if i32.const 0 i32.const 1552 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/throw.debug.wat b/tests/compiler/throw.debug.wat index c487003992..f1a5c556b7 100644 --- a/tests/compiler/throw.debug.wat +++ b/tests/compiler/throw.debug.wat @@ -558,7 +558,7 @@ if i32.const 0 i32.const 608 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -578,7 +578,7 @@ if i32.const 0 i32.const 608 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -641,7 +641,7 @@ if i32.const 0 i32.const 608 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -794,7 +794,7 @@ if i32.const 0 i32.const 608 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -811,7 +811,7 @@ if i32.const 0 i32.const 608 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -900,7 +900,7 @@ if i32.const 0 i32.const 608 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -943,7 +943,7 @@ if i32.const 0 i32.const 608 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -961,7 +961,7 @@ if i32.const 0 i32.const 608 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1029,7 +1029,7 @@ if i32.const 0 i32.const 608 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1146,7 +1146,7 @@ if i32.const 0 i32.const 608 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1192,7 +1192,7 @@ if i32.const 0 i32.const 608 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1224,7 +1224,7 @@ if i32.const 0 i32.const 608 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1295,18 +1295,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1321,17 +1322,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1355,10 +1357,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1369,13 +1371,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1389,18 +1391,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1468,7 +1470,7 @@ if i32.const 0 i32.const 608 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/throw.release.wat b/tests/compiler/throw.release.wat index 8fad062a65..eeaca0f6c4 100644 --- a/tests/compiler/throw.release.wat +++ b/tests/compiler/throw.release.wat @@ -254,7 +254,7 @@ if i32.const 0 i32.const 1632 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -268,7 +268,7 @@ if i32.const 0 i32.const 1632 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -314,7 +314,7 @@ if i32.const 0 i32.const 1632 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -397,7 +397,7 @@ if i32.const 0 i32.const 1632 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -411,7 +411,7 @@ if i32.const 0 i32.const 1632 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -472,7 +472,7 @@ if i32.const 0 i32.const 1632 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -505,7 +505,7 @@ if i32.const 0 i32.const 1632 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -520,7 +520,7 @@ if i32.const 0 i32.const 1632 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -571,7 +571,7 @@ if i32.const 0 i32.const 1632 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -918,7 +918,7 @@ if i32.const 0 i32.const 1632 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -937,7 +937,7 @@ if i32.const 0 i32.const 1632 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1025,7 +1025,7 @@ if i32.const 0 i32.const 1632 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/typeof.debug.wat b/tests/compiler/typeof.debug.wat index a91488290e..4f41788245 100644 --- a/tests/compiler/typeof.debug.wat +++ b/tests/compiler/typeof.debug.wat @@ -584,7 +584,7 @@ if i32.const 0 i32.const 672 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -604,7 +604,7 @@ if i32.const 0 i32.const 672 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -667,7 +667,7 @@ if i32.const 0 i32.const 672 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -820,7 +820,7 @@ if i32.const 0 i32.const 672 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -837,7 +837,7 @@ if i32.const 0 i32.const 672 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -926,7 +926,7 @@ if i32.const 0 i32.const 672 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -969,7 +969,7 @@ if i32.const 0 i32.const 672 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -987,7 +987,7 @@ if i32.const 0 i32.const 672 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1055,7 +1055,7 @@ if i32.const 0 i32.const 672 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1172,7 +1172,7 @@ if i32.const 0 i32.const 672 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1218,7 +1218,7 @@ if i32.const 0 i32.const 672 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1250,7 +1250,7 @@ if i32.const 0 i32.const 672 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1321,18 +1321,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1347,17 +1348,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1381,10 +1383,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1395,13 +1397,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1415,18 +1417,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1494,7 +1496,7 @@ if i32.const 0 i32.const 672 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1823,7 +1825,7 @@ if i32.const 336 i32.const 672 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -1925,7 +1927,7 @@ if i32.const 0 i32.const 672 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -1996,7 +1998,7 @@ if i32.const 0 i32.const 672 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2052,13 +2054,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2087,25 +2088,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2121,6 +2127,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2153,7 +2161,7 @@ if i32.const 0 i32.const 672 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2268,7 +2276,7 @@ if i32.const 0 i32.const 672 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2288,7 +2296,7 @@ if i32.const 0 i32.const 672 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/typeof.release.wat b/tests/compiler/typeof.release.wat index 2be7d98141..f4801e220d 100644 --- a/tests/compiler/typeof.release.wat +++ b/tests/compiler/typeof.release.wat @@ -273,7 +273,7 @@ if i32.const 0 i32.const 1696 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -287,7 +287,7 @@ if i32.const 0 i32.const 1696 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -333,7 +333,7 @@ if i32.const 0 i32.const 1696 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -416,7 +416,7 @@ if i32.const 0 i32.const 1696 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -430,7 +430,7 @@ if i32.const 0 i32.const 1696 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -491,7 +491,7 @@ if i32.const 0 i32.const 1696 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -524,7 +524,7 @@ if i32.const 0 i32.const 1696 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -539,7 +539,7 @@ if i32.const 0 i32.const 1696 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -590,7 +590,7 @@ if i32.const 0 i32.const 1696 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -662,7 +662,7 @@ if i32.const 0 i32.const 1696 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -687,7 +687,7 @@ if i32.const 0 i32.const 1696 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -714,7 +714,7 @@ if i32.const 0 i32.const 1696 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1077,7 +1077,7 @@ if i32.const 0 i32.const 1696 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1143,7 +1143,7 @@ if i32.const 0 i32.const 1696 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1238,8 +1238,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1275,7 +1273,7 @@ if i32.const 0 i32.const 1696 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1290,7 +1288,7 @@ if i32.const 0 i32.const 1696 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/while.debug.wat b/tests/compiler/while.debug.wat index f7c2a8c485..bf268514a7 100644 --- a/tests/compiler/while.debug.wat +++ b/tests/compiler/while.debug.wat @@ -867,7 +867,7 @@ if i32.const 0 i32.const 416 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -887,7 +887,7 @@ if i32.const 0 i32.const 416 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -950,7 +950,7 @@ if i32.const 0 i32.const 416 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -1103,7 +1103,7 @@ if i32.const 0 i32.const 416 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -1120,7 +1120,7 @@ if i32.const 0 i32.const 416 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -1209,7 +1209,7 @@ if i32.const 0 i32.const 416 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -1252,7 +1252,7 @@ if i32.const 0 i32.const 416 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -1270,7 +1270,7 @@ if i32.const 0 i32.const 416 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -1338,7 +1338,7 @@ if i32.const 0 i32.const 416 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -1455,7 +1455,7 @@ if i32.const 0 i32.const 416 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -1501,7 +1501,7 @@ if i32.const 0 i32.const 416 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -1533,7 +1533,7 @@ if i32.const 0 i32.const 416 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1604,18 +1604,19 @@ (func $~lib/rt/tlsf/initialize (local $rootOffset i32) (local $pagesBefore i32) + (local $size i32) (local $pagesNeeded i32) (local $root i32) - (local $root|4 i32) + (local $root|5 i32) (local $tail i32) (local $fl i32) - (local $root|7 i32) - (local $fl|8 i32) + (local $root|8 i32) + (local $fl|9 i32) (local $slMap i32) (local $sl i32) - (local $root|11 i32) - (local $fl|12 i32) - (local $sl|13 i32) + (local $root|12 i32) + (local $fl|13 i32) + (local $sl|14 i32) (local $head i32) (local $memStart i32) i32.const 0 @@ -1630,17 +1631,18 @@ local.set $rootOffset memory.size local.set $pagesBefore - local.get $rootOffset - i32.const 1572 - i32.add - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + block $~lib/rt/tlsf/sizeRoundToPage|inlined.0 (result i32) + local.get $rootOffset + i32.const 1572 + i32.add + local.set $size + local.get $size + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.0 + end local.set $pagesNeeded local.get $pagesNeeded local.get $pagesBefore @@ -1664,10 +1666,10 @@ i32.const 0 call $~lib/rt/tlsf/Root#set:flMap local.get $root - local.set $root|4 + local.set $root|5 i32.const 0 local.set $tail - local.get $root|4 + local.get $root|5 local.get $tail i32.store offset=1568 i32.const 0 @@ -1678,13 +1680,13 @@ i32.lt_u if local.get $root - local.set $root|7 + local.set $root|8 local.get $fl - local.set $fl|8 + local.set $fl|9 i32.const 0 local.set $slMap - local.get $root|7 - local.get $fl|8 + local.get $root|8 + local.get $fl|9 i32.const 2 i32.shl i32.add @@ -1698,18 +1700,18 @@ i32.lt_u if local.get $root - local.set $root|11 + local.set $root|12 local.get $fl - local.set $fl|12 + local.set $fl|13 local.get $sl - local.set $sl|13 + local.set $sl|14 i32.const 0 local.set $head - local.get $root|11 - local.get $fl|12 + local.get $root|12 + local.get $fl|13 i32.const 4 i32.shl - local.get $sl|13 + local.get $sl|14 i32.add i32.const 2 i32.shl @@ -1777,7 +1779,7 @@ if i32.const 0 i32.const 416 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -2106,7 +2108,7 @@ if i32.const 80 i32.const 416 - i32.const 461 + i32.const 472 i32.const 29 call $~lib/builtins/abort unreachable @@ -2208,7 +2210,7 @@ if i32.const 0 i32.const 416 - i32.const 334 + i32.const 339 i32.const 14 call $~lib/builtins/abort unreachable @@ -2279,7 +2281,7 @@ if i32.const 0 i32.const 416 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -2335,13 +2337,12 @@ (func $~lib/rt/tlsf/growMemory (param $root i32) (param $size i32) (local $pagesBefore i32) (local $root|3 i32) + (local $size|4 i32) (local $pagesNeeded i32) - (local $5 i32) (local $6 i32) + (local $7 i32) (local $pagesWanted i32) (local $pagesAfter i32) - i32.const 0 - drop local.get $size i32.const 256 i32.ge_u @@ -2370,25 +2371,30 @@ i32.shl i32.add local.set $size - local.get $size - i32.const 65535 - i32.add - i32.const 65535 - i32.const -1 - i32.xor - i32.and - i32.const 16 - i32.shr_u + i32.const 0 + drop + block $~lib/rt/tlsf/sizeRoundToPage|inlined.1 (result i32) + local.get $size + local.set $size|4 + local.get $size|4 + i32.const 65535 + i32.add + i32.const 16 + i32.shr_u + br $~lib/rt/tlsf/sizeRoundToPage|inlined.1 + end local.set $pagesNeeded local.get $pagesBefore - local.tee $5 - local.get $pagesNeeded local.tee $6 - local.get $5 + local.get $pagesNeeded + local.tee $7 local.get $6 + local.get $7 i32.gt_s select local.set $pagesWanted + i32.const 0 + drop local.get $pagesWanted memory.grow i32.const 0 @@ -2404,6 +2410,8 @@ end memory.size local.set $pagesAfter + i32.const 0 + drop local.get $root local.get $pagesBefore i32.const 16 @@ -2436,7 +2444,7 @@ if i32.const 0 i32.const 416 - i32.const 361 + i32.const 366 i32.const 14 call $~lib/builtins/abort unreachable @@ -2551,7 +2559,7 @@ if i32.const 0 i32.const 416 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -2571,7 +2579,7 @@ if i32.const 0 i32.const 416 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable diff --git a/tests/compiler/while.release.wat b/tests/compiler/while.release.wat index 57ed01f821..4e22cd86bf 100644 --- a/tests/compiler/while.release.wat +++ b/tests/compiler/while.release.wat @@ -245,7 +245,7 @@ if i32.const 0 i32.const 1440 - i32.const 268 + i32.const 273 i32.const 14 call $~lib/builtins/abort unreachable @@ -259,7 +259,7 @@ if i32.const 0 i32.const 1440 - i32.const 270 + i32.const 275 i32.const 14 call $~lib/builtins/abort unreachable @@ -305,7 +305,7 @@ if i32.const 0 i32.const 1440 - i32.const 284 + i32.const 289 i32.const 14 call $~lib/builtins/abort unreachable @@ -388,7 +388,7 @@ if i32.const 0 i32.const 1440 - i32.const 201 + i32.const 206 i32.const 14 call $~lib/builtins/abort unreachable @@ -402,7 +402,7 @@ if i32.const 0 i32.const 1440 - i32.const 203 + i32.const 208 i32.const 14 call $~lib/builtins/abort unreachable @@ -463,7 +463,7 @@ if i32.const 0 i32.const 1440 - i32.const 221 + i32.const 226 i32.const 16 call $~lib/builtins/abort unreachable @@ -496,7 +496,7 @@ if i32.const 0 i32.const 1440 - i32.const 233 + i32.const 238 i32.const 14 call $~lib/builtins/abort unreachable @@ -511,7 +511,7 @@ if i32.const 0 i32.const 1440 - i32.const 234 + i32.const 239 i32.const 14 call $~lib/builtins/abort unreachable @@ -562,7 +562,7 @@ if i32.const 0 i32.const 1440 - i32.const 251 + i32.const 256 i32.const 14 call $~lib/builtins/abort unreachable @@ -634,7 +634,7 @@ if i32.const 0 i32.const 1440 - i32.const 382 + i32.const 387 i32.const 14 call $~lib/builtins/abort unreachable @@ -659,7 +659,7 @@ if i32.const 0 i32.const 1440 - i32.const 389 + i32.const 394 i32.const 16 call $~lib/builtins/abort unreachable @@ -686,7 +686,7 @@ if i32.const 0 i32.const 1440 - i32.const 402 + i32.const 407 i32.const 5 call $~lib/builtins/abort unreachable @@ -1049,7 +1049,7 @@ if i32.const 0 i32.const 1440 - i32.const 562 + i32.const 573 i32.const 3 call $~lib/builtins/abort unreachable @@ -1115,7 +1115,7 @@ if i32.const 0 i32.const 1440 - i32.const 347 + i32.const 352 i32.const 18 call $~lib/builtins/abort unreachable @@ -1210,8 +1210,6 @@ i32.shl i32.const 65563 i32.add - i32.const -65536 - i32.and i32.const 16 i32.shr_u local.tee $3 @@ -1247,7 +1245,7 @@ if i32.const 0 i32.const 1440 - i32.const 499 + i32.const 510 i32.const 16 call $~lib/builtins/abort unreachable @@ -1262,7 +1260,7 @@ if i32.const 0 i32.const 1440 - i32.const 501 + i32.const 512 i32.const 14 call $~lib/builtins/abort unreachable From f796bd2e809b6b6ae87222bd4a4149ee58aefb56 Mon Sep 17 00:00:00 2001 From: Congcong Cai Date: Tue, 11 Feb 2025 17:53:40 +0800 Subject: [PATCH 2/3] fix --- tests/compiler/std/math.release.wat | 36 ++++++++++++++--------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/tests/compiler/std/math.release.wat b/tests/compiler/std/math.release.wat index bc8b278553..9e691da3f0 100644 --- a/tests/compiler/std/math.release.wat +++ b/tests/compiler/std/math.release.wat @@ -49901,7 +49901,7 @@ call $~lib/builtins/abort unreachable end - f64.const nan:0x8000000000000 + f64.const -nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -49945,7 +49945,7 @@ call $~lib/builtins/abort unreachable end - f64.const nan:0x8000000000000 + f64.const -nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -49967,7 +49967,7 @@ call $~lib/builtins/abort unreachable end - f64.const nan:0x8000000000000 + f64.const -nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -50033,7 +50033,7 @@ call $~lib/builtins/abort unreachable end - f64.const nan:0x8000000000000 + f64.const -nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -50099,7 +50099,7 @@ call $~lib/builtins/abort unreachable end - f64.const nan:0x8000000000000 + f64.const -nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -50165,7 +50165,7 @@ call $~lib/builtins/abort unreachable end - f64.const nan:0x8000000000000 + f64.const -nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -50253,7 +50253,7 @@ call $~lib/builtins/abort unreachable end - f64.const nan:0x8000000000000 + f64.const -nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -50363,7 +50363,7 @@ call $~lib/builtins/abort unreachable end - f64.const nan:0x8000000000000 + f64.const -nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -50517,7 +50517,7 @@ call $~lib/builtins/abort unreachable end - f64.const nan:0x8000000000000 + f64.const -nan:0x8000000000000 f64.const nan:0x8000000000000 f64.const 0 call $std/math/check @@ -51749,7 +51749,7 @@ call $~lib/builtins/abort unreachable end - f32.const nan:0x400000 + f32.const -nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -51775,7 +51775,7 @@ call $~lib/builtins/abort unreachable end - f32.const nan:0x400000 + f32.const -nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -51788,7 +51788,7 @@ call $~lib/builtins/abort unreachable end - f32.const nan:0x400000 + f32.const -nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -51827,7 +51827,7 @@ call $~lib/builtins/abort unreachable end - f32.const nan:0x400000 + f32.const -nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -51866,7 +51866,7 @@ call $~lib/builtins/abort unreachable end - f32.const nan:0x400000 + f32.const -nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -51905,7 +51905,7 @@ call $~lib/builtins/abort unreachable end - f32.const nan:0x400000 + f32.const -nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -51957,7 +51957,7 @@ call $~lib/builtins/abort unreachable end - f32.const nan:0x400000 + f32.const -nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -52022,7 +52022,7 @@ call $~lib/builtins/abort unreachable end - f32.const nan:0x400000 + f32.const -nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check @@ -52048,7 +52048,7 @@ call $~lib/builtins/abort unreachable end - f32.const nan:0x400000 + f32.const -nan:0x400000 f32.const nan:0x400000 f32.const 0 call $std/math/check From 1e7c006992e1482abfd2f17e5a640f49189fb8d7 Mon Sep 17 00:00:00 2001 From: Congcong Cai Date: Tue, 11 Feb 2025 17:56:53 +0800 Subject: [PATCH 3/3] fix --- tests/compiler/lowMemoryLimit/less-than-64k-error.ts | 2 +- tests/compiler/lowMemoryLimit/less-than-64k.ts | 2 +- tests/compiler/lowMemoryLimit/more-than-64k-error.ts | 2 +- tests/compiler/lowMemoryLimit/more-than-64k.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/compiler/lowMemoryLimit/less-than-64k-error.ts b/tests/compiler/lowMemoryLimit/less-than-64k-error.ts index 4c225f42a1..31a360327a 100644 --- a/tests/compiler/lowMemoryLimit/less-than-64k-error.ts +++ b/tests/compiler/lowMemoryLimit/less-than-64k-error.ts @@ -1 +1 @@ -__alloc(4096) +__alloc(4096); diff --git a/tests/compiler/lowMemoryLimit/less-than-64k.ts b/tests/compiler/lowMemoryLimit/less-than-64k.ts index 80da800c56..95eaad75bc 100644 --- a/tests/compiler/lowMemoryLimit/less-than-64k.ts +++ b/tests/compiler/lowMemoryLimit/less-than-64k.ts @@ -1 +1 @@ -__alloc(1024) +__alloc(1024); diff --git a/tests/compiler/lowMemoryLimit/more-than-64k-error.ts b/tests/compiler/lowMemoryLimit/more-than-64k-error.ts index 781850a140..efcf60d773 100644 --- a/tests/compiler/lowMemoryLimit/more-than-64k-error.ts +++ b/tests/compiler/lowMemoryLimit/more-than-64k-error.ts @@ -1,3 +1,3 @@ for (let i = 0; i < 640; i++) { - __alloc(1024) + __alloc(1024); } diff --git a/tests/compiler/lowMemoryLimit/more-than-64k.ts b/tests/compiler/lowMemoryLimit/more-than-64k.ts index 0bb0cf73f4..a108cec664 100644 --- a/tests/compiler/lowMemoryLimit/more-than-64k.ts +++ b/tests/compiler/lowMemoryLimit/more-than-64k.ts @@ -1,3 +1,3 @@ for (let i = 0; i < 9; i++) { - __alloc(64 * 1024) + __alloc(64 * 1024); }