diff --git a/std/assembly/rt/tcms.ts b/std/assembly/rt/tcms.ts index ae1dbefee8..5cddd67364 100644 --- a/std/assembly/rt/tcms.ts +++ b/std/assembly/rt/tcms.ts @@ -122,7 +122,7 @@ function initLazy(space: Object): Object { // @ts-ignore: decorator @global @unsafe export function __new(size: usize, id: i32): usize { - if (size >= OBJECT_MAXSIZE) throw new Error(E_ALLOCATION_TOO_LARGE); + if (size > OBJECT_MAXSIZE) throw new Error(E_ALLOCATION_TOO_LARGE); var obj = changetype(__alloc(OBJECT_OVERHEAD + size) - BLOCK_OVERHEAD); obj.rtId = id; obj.rtSize = size; @@ -140,7 +140,7 @@ export function __renew(oldPtr: usize, size: usize): usize { memory.copy(newPtr, oldPtr, min(size, oldObj.rtSize)); return newPtr; } - if (size >= OBJECT_MAXSIZE) throw new Error(E_ALLOCATION_TOO_LARGE); + if (size > OBJECT_MAXSIZE) throw new Error(E_ALLOCATION_TOO_LARGE); total -= oldObj.size; var newPtr = __realloc(oldPtr - OBJECT_OVERHEAD, OBJECT_OVERHEAD + size) + OBJECT_OVERHEAD; var newObj = changetype(newPtr - TOTAL_OVERHEAD); diff --git a/std/assembly/rt/tlsf.ts b/std/assembly/rt/tlsf.ts index 9e4320505e..3245b19a61 100644 --- a/std/assembly/rt/tlsf.ts +++ b/std/assembly/rt/tlsf.ts @@ -455,7 +455,7 @@ function computeSize(size: usize): usize { /** Prepares and checks an allocation size. */ function prepareSize(size: usize): usize { - if (size >= BLOCK_MAXSIZE) throw new Error(E_ALLOCATION_TOO_LARGE); + if (size > BLOCK_MAXSIZE) throw new Error(E_ALLOCATION_TOO_LARGE); return computeSize(size); } diff --git a/tests/compiler/call-super.optimized.wat b/tests/compiler/call-super.optimized.wat index 00ec2135fc..0b47c2ca02 100644 --- a/tests/compiler/call-super.optimized.wat +++ b/tests/compiler/call-super.optimized.wat @@ -1244,12 +1244,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1104 i32.const 1440 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/call-super.untouched.wat b/tests/compiler/call-super.untouched.wat index 345046209a..6befd92c6d 100644 --- a/tests/compiler/call-super.untouched.wat +++ b/tests/compiler/call-super.untouched.wat @@ -1590,12 +1590,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 80 i32.const 416 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/class-implements.untouched.wat b/tests/compiler/class-implements.untouched.wat index 254042d797..c800f325e9 100644 --- a/tests/compiler/class-implements.untouched.wat +++ b/tests/compiler/class-implements.untouched.wat @@ -1600,12 +1600,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/class-overloading.untouched.wat b/tests/compiler/class-overloading.untouched.wat index 72aba04c4f..d9b04b79c2 100644 --- a/tests/compiler/class-overloading.untouched.wat +++ b/tests/compiler/class-overloading.untouched.wat @@ -1606,12 +1606,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 64 i32.const 400 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/class.optimized.wat b/tests/compiler/class.optimized.wat index 0133f7b4d7..00e4505136 100644 --- a/tests/compiler/class.optimized.wat +++ b/tests/compiler/class.optimized.wat @@ -1251,12 +1251,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1056 i32.const 1392 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/class.untouched.wat b/tests/compiler/class.untouched.wat index f4bb889e5c..1cb0bf14ed 100644 --- a/tests/compiler/class.untouched.wat +++ b/tests/compiler/class.untouched.wat @@ -1702,12 +1702,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/constructor.optimized.wat b/tests/compiler/constructor.optimized.wat index 7ba9bb2d70..4ee18b30f0 100644 --- a/tests/compiler/constructor.optimized.wat +++ b/tests/compiler/constructor.optimized.wat @@ -1312,12 +1312,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1056 i32.const 1392 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/constructor.untouched.wat b/tests/compiler/constructor.untouched.wat index d37f9d968a..789c4e77c3 100644 --- a/tests/compiler/constructor.untouched.wat +++ b/tests/compiler/constructor.untouched.wat @@ -1600,12 +1600,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/do.untouched.wat b/tests/compiler/do.untouched.wat index d7070e2de3..c46b54bd39 100644 --- a/tests/compiler/do.untouched.wat +++ b/tests/compiler/do.untouched.wat @@ -2003,12 +2003,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 64 i32.const 400 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/empty-exportruntime.optimized.wat b/tests/compiler/empty-exportruntime.optimized.wat index f32bf8a354..384c13ef9e 100644 --- a/tests/compiler/empty-exportruntime.optimized.wat +++ b/tests/compiler/empty-exportruntime.optimized.wat @@ -1262,12 +1262,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1056 i32.const 1392 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/empty-exportruntime.untouched.wat b/tests/compiler/empty-exportruntime.untouched.wat index d72ecd6f93..44b8e896a9 100644 --- a/tests/compiler/empty-exportruntime.untouched.wat +++ b/tests/compiler/empty-exportruntime.untouched.wat @@ -1596,12 +1596,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/empty-new.untouched.wat b/tests/compiler/empty-new.untouched.wat index 58035c74ff..1c448c7157 100644 --- a/tests/compiler/empty-new.untouched.wat +++ b/tests/compiler/empty-new.untouched.wat @@ -1589,12 +1589,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/exports.untouched.wat b/tests/compiler/exports.untouched.wat index b10da5c14a..2cbadeb9c2 100644 --- a/tests/compiler/exports.untouched.wat +++ b/tests/compiler/exports.untouched.wat @@ -1653,12 +1653,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/exportstar-rereexport.untouched.wat b/tests/compiler/exportstar-rereexport.untouched.wat index 27f05a8d75..541d842408 100644 --- a/tests/compiler/exportstar-rereexport.untouched.wat +++ b/tests/compiler/exportstar-rereexport.untouched.wat @@ -1634,12 +1634,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 80 i32.const 416 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/extends-baseaggregate.optimized.wat b/tests/compiler/extends-baseaggregate.optimized.wat index 526930d92e..d9ed3e5763 100644 --- a/tests/compiler/extends-baseaggregate.optimized.wat +++ b/tests/compiler/extends-baseaggregate.optimized.wat @@ -1258,12 +1258,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1216 i32.const 1552 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/extends-baseaggregate.untouched.wat b/tests/compiler/extends-baseaggregate.untouched.wat index cda14ce5bb..40892c936a 100644 --- a/tests/compiler/extends-baseaggregate.untouched.wat +++ b/tests/compiler/extends-baseaggregate.untouched.wat @@ -1598,12 +1598,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 192 i32.const 528 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/extends-recursive.untouched.wat b/tests/compiler/extends-recursive.untouched.wat index 15dc0ffff4..818f5cd865 100644 --- a/tests/compiler/extends-recursive.untouched.wat +++ b/tests/compiler/extends-recursive.untouched.wat @@ -1594,12 +1594,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/features/simd.optimized.wat b/tests/compiler/features/simd.optimized.wat index 81381ddc68..23951f2632 100644 --- a/tests/compiler/features/simd.optimized.wat +++ b/tests/compiler/features/simd.optimized.wat @@ -747,12 +747,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1120 i32.const 1056 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/features/simd.untouched.wat b/tests/compiler/features/simd.untouched.wat index 36ff3dd3bb..dc3cbaac59 100644 --- a/tests/compiler/features/simd.untouched.wat +++ b/tests/compiler/features/simd.untouched.wat @@ -928,12 +928,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 96 i32.const 32 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/field-initialization.optimized.wat b/tests/compiler/field-initialization.optimized.wat index 50ae1cb69d..c8f0db0016 100644 --- a/tests/compiler/field-initialization.optimized.wat +++ b/tests/compiler/field-initialization.optimized.wat @@ -1264,12 +1264,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1056 i32.const 1392 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/field-initialization.untouched.wat b/tests/compiler/field-initialization.untouched.wat index 28ef67ca1b..3ea7f9b150 100644 --- a/tests/compiler/field-initialization.untouched.wat +++ b/tests/compiler/field-initialization.untouched.wat @@ -1598,12 +1598,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/for.untouched.wat b/tests/compiler/for.untouched.wat index 78b95fb915..504a5402a2 100644 --- a/tests/compiler/for.untouched.wat +++ b/tests/compiler/for.untouched.wat @@ -2016,12 +2016,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 64 i32.const 400 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/function-call.untouched.wat b/tests/compiler/function-call.untouched.wat index 876ac3f60a..766c79061d 100644 --- a/tests/compiler/function-call.untouched.wat +++ b/tests/compiler/function-call.untouched.wat @@ -1625,12 +1625,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 256 i32.const 592 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/function-expression.untouched.wat b/tests/compiler/function-expression.untouched.wat index 0c9d3cb69b..35ba15b769 100644 --- a/tests/compiler/function-expression.untouched.wat +++ b/tests/compiler/function-expression.untouched.wat @@ -1781,12 +1781,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 576 i32.const 912 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/getter-call.untouched.wat b/tests/compiler/getter-call.untouched.wat index 488dc9d3c8..51f30819f0 100644 --- a/tests/compiler/getter-call.untouched.wat +++ b/tests/compiler/getter-call.untouched.wat @@ -1593,12 +1593,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/heap.optimized.wat b/tests/compiler/heap.optimized.wat index d27b5a1a43..d2fd08628b 100644 --- a/tests/compiler/heap.optimized.wat +++ b/tests/compiler/heap.optimized.wat @@ -623,12 +623,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1120 i32.const 1056 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/heap.untouched.wat b/tests/compiler/heap.untouched.wat index 8bed29d8f0..94215c8e03 100644 --- a/tests/compiler/heap.untouched.wat +++ b/tests/compiler/heap.untouched.wat @@ -928,12 +928,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 96 i32.const 32 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/implicit-getter-setter.untouched.wat b/tests/compiler/implicit-getter-setter.untouched.wat index d4d62404ca..c5437b355c 100644 --- a/tests/compiler/implicit-getter-setter.untouched.wat +++ b/tests/compiler/implicit-getter-setter.untouched.wat @@ -1599,12 +1599,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/infer-array.optimized.wat b/tests/compiler/infer-array.optimized.wat index 601e9e3574..a6e56a9b2e 100644 --- a/tests/compiler/infer-array.optimized.wat +++ b/tests/compiler/infer-array.optimized.wat @@ -1279,12 +1279,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1088 i32.const 1424 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/infer-array.untouched.wat b/tests/compiler/infer-array.untouched.wat index 0714bcc3fa..048d2cf2dd 100644 --- a/tests/compiler/infer-array.untouched.wat +++ b/tests/compiler/infer-array.untouched.wat @@ -1608,12 +1608,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 64 i32.const 400 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/infer-generic.untouched.wat b/tests/compiler/infer-generic.untouched.wat index 181ea3161c..f3476f986b 100644 --- a/tests/compiler/infer-generic.untouched.wat +++ b/tests/compiler/infer-generic.untouched.wat @@ -1679,12 +1679,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 208 i32.const 544 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/inlining.optimized.wat b/tests/compiler/inlining.optimized.wat index 1b6ddb8113..c3b020fa85 100644 --- a/tests/compiler/inlining.optimized.wat +++ b/tests/compiler/inlining.optimized.wat @@ -1255,12 +1255,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1136 i32.const 1472 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/inlining.untouched.wat b/tests/compiler/inlining.untouched.wat index cc73d8f32f..2bd7d123a9 100644 --- a/tests/compiler/inlining.untouched.wat +++ b/tests/compiler/inlining.untouched.wat @@ -1799,12 +1799,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 112 i32.const 448 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/instanceof-class.untouched.wat b/tests/compiler/instanceof-class.untouched.wat index aa87a8c398..e28a73e2c2 100644 --- a/tests/compiler/instanceof-class.untouched.wat +++ b/tests/compiler/instanceof-class.untouched.wat @@ -1592,12 +1592,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/issues/1095.untouched.wat b/tests/compiler/issues/1095.untouched.wat index d61ddfa045..7abd437ea0 100644 --- a/tests/compiler/issues/1095.untouched.wat +++ b/tests/compiler/issues/1095.untouched.wat @@ -1592,12 +1592,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/issues/1225.untouched.wat b/tests/compiler/issues/1225.untouched.wat index 00f8bee686..e6517cf44c 100644 --- a/tests/compiler/issues/1225.untouched.wat +++ b/tests/compiler/issues/1225.untouched.wat @@ -1603,12 +1603,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/issues/1699.optimized.wat b/tests/compiler/issues/1699.optimized.wat index 53800f30f9..0f819a6481 100644 --- a/tests/compiler/issues/1699.optimized.wat +++ b/tests/compiler/issues/1699.optimized.wat @@ -1254,12 +1254,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1152 i32.const 1488 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/issues/1699.untouched.wat b/tests/compiler/issues/1699.untouched.wat index 936b561cbf..d06717ff9d 100644 --- a/tests/compiler/issues/1699.untouched.wat +++ b/tests/compiler/issues/1699.untouched.wat @@ -1593,12 +1593,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 128 i32.const 464 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/logical.untouched.wat b/tests/compiler/logical.untouched.wat index fad6112201..b5cffe969a 100644 --- a/tests/compiler/logical.untouched.wat +++ b/tests/compiler/logical.untouched.wat @@ -1615,12 +1615,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 80 i32.const 416 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/managed-cast.untouched.wat b/tests/compiler/managed-cast.untouched.wat index 0216af4379..4916b81681 100644 --- a/tests/compiler/managed-cast.untouched.wat +++ b/tests/compiler/managed-cast.untouched.wat @@ -1592,12 +1592,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/new.untouched.wat b/tests/compiler/new.untouched.wat index 8086b63bbb..2d1a4357d0 100644 --- a/tests/compiler/new.untouched.wat +++ b/tests/compiler/new.untouched.wat @@ -1595,12 +1595,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/number.optimized.wat b/tests/compiler/number.optimized.wat index df36de61ae..74c43c760d 100644 --- a/tests/compiler/number.optimized.wat +++ b/tests/compiler/number.optimized.wat @@ -1329,12 +1329,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1280 i32.const 1616 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/number.untouched.wat b/tests/compiler/number.untouched.wat index 7ae4b4690b..7707d4d94d 100644 --- a/tests/compiler/number.untouched.wat +++ b/tests/compiler/number.untouched.wat @@ -1693,12 +1693,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 256 i32.const 592 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/object-literal.optimized.wat b/tests/compiler/object-literal.optimized.wat index 4167c5c41c..215a7bb158 100644 --- a/tests/compiler/object-literal.optimized.wat +++ b/tests/compiler/object-literal.optimized.wat @@ -1327,12 +1327,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1312 i32.const 1440 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/object-literal.untouched.wat b/tests/compiler/object-literal.untouched.wat index ca5bb3d1ca..24350af97d 100644 --- a/tests/compiler/object-literal.untouched.wat +++ b/tests/compiler/object-literal.untouched.wat @@ -1682,12 +1682,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 288 i32.const 416 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/optional-typeparameters.untouched.wat b/tests/compiler/optional-typeparameters.untouched.wat index cccd3f25bb..08c41ebb34 100644 --- a/tests/compiler/optional-typeparameters.untouched.wat +++ b/tests/compiler/optional-typeparameters.untouched.wat @@ -1598,12 +1598,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/reexport.untouched.wat b/tests/compiler/reexport.untouched.wat index 50d4919ac6..d1df27a40e 100644 --- a/tests/compiler/reexport.untouched.wat +++ b/tests/compiler/reexport.untouched.wat @@ -1682,12 +1682,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 80 i32.const 416 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/rereexport.untouched.wat b/tests/compiler/rereexport.untouched.wat index df33bd5d7a..7533f5ae91 100644 --- a/tests/compiler/rereexport.untouched.wat +++ b/tests/compiler/rereexport.untouched.wat @@ -1634,12 +1634,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 80 i32.const 416 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-access.optimized.wat b/tests/compiler/resolve-access.optimized.wat index 011a69b565..c73197622f 100644 --- a/tests/compiler/resolve-access.optimized.wat +++ b/tests/compiler/resolve-access.optimized.wat @@ -1260,12 +1260,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1088 i32.const 1424 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-access.untouched.wat b/tests/compiler/resolve-access.untouched.wat index 5e7bb24a9a..d984a0a2af 100644 --- a/tests/compiler/resolve-access.untouched.wat +++ b/tests/compiler/resolve-access.untouched.wat @@ -1608,12 +1608,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 64 i32.const 400 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-binary.optimized.wat b/tests/compiler/resolve-binary.optimized.wat index 4ca5606c5f..4bff38ba08 100644 --- a/tests/compiler/resolve-binary.optimized.wat +++ b/tests/compiler/resolve-binary.optimized.wat @@ -1491,12 +1491,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1440 i32.const 1776 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-binary.untouched.wat b/tests/compiler/resolve-binary.untouched.wat index 797ed296e4..7d3a95eb8e 100644 --- a/tests/compiler/resolve-binary.untouched.wat +++ b/tests/compiler/resolve-binary.untouched.wat @@ -1868,12 +1868,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 416 i32.const 752 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-elementaccess.optimized.wat b/tests/compiler/resolve-elementaccess.optimized.wat index 640cd290c5..17f9e02d5e 100644 --- a/tests/compiler/resolve-elementaccess.optimized.wat +++ b/tests/compiler/resolve-elementaccess.optimized.wat @@ -1311,12 +1311,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1168 i32.const 1504 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-elementaccess.untouched.wat b/tests/compiler/resolve-elementaccess.untouched.wat index 0a0a2250a0..c6879a5eed 100644 --- a/tests/compiler/resolve-elementaccess.untouched.wat +++ b/tests/compiler/resolve-elementaccess.untouched.wat @@ -1631,12 +1631,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 144 i32.const 480 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-function-expression.optimized.wat b/tests/compiler/resolve-function-expression.optimized.wat index fcdaaffbc0..15cd2863e3 100644 --- a/tests/compiler/resolve-function-expression.optimized.wat +++ b/tests/compiler/resolve-function-expression.optimized.wat @@ -1278,12 +1278,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1456 i32.const 1792 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-function-expression.untouched.wat b/tests/compiler/resolve-function-expression.untouched.wat index 5d82a2eb4e..99d36bada8 100644 --- a/tests/compiler/resolve-function-expression.untouched.wat +++ b/tests/compiler/resolve-function-expression.untouched.wat @@ -1676,12 +1676,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 432 i32.const 768 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-nested.untouched.wat b/tests/compiler/resolve-nested.untouched.wat index 6747c8f0fe..1820a44757 100644 --- a/tests/compiler/resolve-nested.untouched.wat +++ b/tests/compiler/resolve-nested.untouched.wat @@ -1614,12 +1614,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-new.untouched.wat b/tests/compiler/resolve-new.untouched.wat index 8fdddce800..32eda1ab6a 100644 --- a/tests/compiler/resolve-new.untouched.wat +++ b/tests/compiler/resolve-new.untouched.wat @@ -1590,12 +1590,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-propertyaccess.optimized.wat b/tests/compiler/resolve-propertyaccess.optimized.wat index b0b90bf4de..7ebbf76dee 100644 --- a/tests/compiler/resolve-propertyaccess.optimized.wat +++ b/tests/compiler/resolve-propertyaccess.optimized.wat @@ -1278,12 +1278,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1280 i32.const 1616 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-propertyaccess.untouched.wat b/tests/compiler/resolve-propertyaccess.untouched.wat index f8d718ea1d..9e67cfdb52 100644 --- a/tests/compiler/resolve-propertyaccess.untouched.wat +++ b/tests/compiler/resolve-propertyaccess.untouched.wat @@ -1676,12 +1676,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 256 i32.const 592 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-ternary.optimized.wat b/tests/compiler/resolve-ternary.optimized.wat index ebbd3fbc93..0833684bf0 100644 --- a/tests/compiler/resolve-ternary.optimized.wat +++ b/tests/compiler/resolve-ternary.optimized.wat @@ -1324,12 +1324,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1280 i32.const 1616 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-ternary.untouched.wat b/tests/compiler/resolve-ternary.untouched.wat index 134d19d0d1..1a756f89c8 100644 --- a/tests/compiler/resolve-ternary.untouched.wat +++ b/tests/compiler/resolve-ternary.untouched.wat @@ -1684,12 +1684,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 256 i32.const 592 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-unary.optimized.wat b/tests/compiler/resolve-unary.optimized.wat index 483d850f0f..930501a634 100644 --- a/tests/compiler/resolve-unary.optimized.wat +++ b/tests/compiler/resolve-unary.optimized.wat @@ -1298,12 +1298,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1280 i32.const 1616 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/resolve-unary.untouched.wat b/tests/compiler/resolve-unary.untouched.wat index cfcfbcefdc..18da1fab02 100644 --- a/tests/compiler/resolve-unary.untouched.wat +++ b/tests/compiler/resolve-unary.untouched.wat @@ -1673,12 +1673,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 256 i32.const 592 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/rt/finalize.untouched.wat b/tests/compiler/rt/finalize.untouched.wat index f32dbe5144..4bfff2000c 100644 --- a/tests/compiler/rt/finalize.untouched.wat +++ b/tests/compiler/rt/finalize.untouched.wat @@ -1613,12 +1613,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 416 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/rt/instanceof.untouched.wat b/tests/compiler/rt/instanceof.untouched.wat index 8cf60335c1..3556fc4609 100644 --- a/tests/compiler/rt/instanceof.untouched.wat +++ b/tests/compiler/rt/instanceof.untouched.wat @@ -1600,12 +1600,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/rt/runtime-incremental-export.optimized.wat b/tests/compiler/rt/runtime-incremental-export.optimized.wat index f32bf8a354..384c13ef9e 100644 --- a/tests/compiler/rt/runtime-incremental-export.optimized.wat +++ b/tests/compiler/rt/runtime-incremental-export.optimized.wat @@ -1262,12 +1262,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1056 i32.const 1392 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/rt/runtime-incremental-export.untouched.wat b/tests/compiler/rt/runtime-incremental-export.untouched.wat index d72ecd6f93..44b8e896a9 100644 --- a/tests/compiler/rt/runtime-incremental-export.untouched.wat +++ b/tests/compiler/rt/runtime-incremental-export.untouched.wat @@ -1596,12 +1596,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/rt/runtime-minimal-export.optimized.wat b/tests/compiler/rt/runtime-minimal-export.optimized.wat index 77b4cbcef6..cf86e44cf6 100644 --- a/tests/compiler/rt/runtime-minimal-export.optimized.wat +++ b/tests/compiler/rt/runtime-minimal-export.optimized.wat @@ -763,12 +763,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1056 i32.const 1184 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end @@ -999,12 +999,12 @@ (local $2 i32) local.get $0 i32.const 1073741804 - i32.ge_u + i32.gt_u if i32.const 1056 i32.const 1120 i32.const 125 - i32.const 31 + i32.const 30 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/rt/runtime-minimal-export.untouched.wat b/tests/compiler/rt/runtime-minimal-export.untouched.wat index 53931c5e35..f69cc7b58e 100644 --- a/tests/compiler/rt/runtime-minimal-export.untouched.wat +++ b/tests/compiler/rt/runtime-minimal-export.untouched.wat @@ -936,12 +936,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 160 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end @@ -1470,12 +1470,12 @@ (local $2 i32) local.get $0 i32.const 1073741804 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 96 i32.const 125 - i32.const 31 + i32.const 30 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std-wasi/console.optimized.wat b/tests/compiler/std-wasi/console.optimized.wat index 95871049b7..2db063baea 100644 --- a/tests/compiler/std-wasi/console.optimized.wat +++ b/tests/compiler/std-wasi/console.optimized.wat @@ -1658,12 +1658,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 4288 i32.const 4224 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/wasi/index/abort unreachable end diff --git a/tests/compiler/std-wasi/console.untouched.wat b/tests/compiler/std-wasi/console.untouched.wat index 8dc0d558b7..45ec1a1dd9 100644 --- a/tests/compiler/std-wasi/console.untouched.wat +++ b/tests/compiler/std-wasi/console.untouched.wat @@ -2251,12 +2251,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 3264 i32.const 3200 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/wasi/index/abort unreachable end diff --git a/tests/compiler/std-wasi/crypto.optimized.wat b/tests/compiler/std-wasi/crypto.optimized.wat index f859c1d992..38643b73ba 100644 --- a/tests/compiler/std-wasi/crypto.optimized.wat +++ b/tests/compiler/std-wasi/crypto.optimized.wat @@ -1807,12 +1807,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1168 i32.const 1504 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/wasi/index/abort unreachable end diff --git a/tests/compiler/std-wasi/crypto.untouched.wat b/tests/compiler/std-wasi/crypto.untouched.wat index 7e66f112a2..215a9bd56f 100644 --- a/tests/compiler/std-wasi/crypto.untouched.wat +++ b/tests/compiler/std-wasi/crypto.untouched.wat @@ -2144,12 +2144,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 144 i32.const 480 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/wasi/index/abort unreachable end diff --git a/tests/compiler/std-wasi/process.optimized.wat b/tests/compiler/std-wasi/process.optimized.wat index 0d9eb314a4..3acfd49e00 100644 --- a/tests/compiler/std-wasi/process.optimized.wat +++ b/tests/compiler/std-wasi/process.optimized.wat @@ -1646,12 +1646,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 4240 i32.const 4176 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/wasi/index/abort unreachable end diff --git a/tests/compiler/std-wasi/process.untouched.wat b/tests/compiler/std-wasi/process.untouched.wat index 691cbf5368..e3b72e07f2 100644 --- a/tests/compiler/std-wasi/process.untouched.wat +++ b/tests/compiler/std-wasi/process.untouched.wat @@ -2250,12 +2250,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 3216 i32.const 3152 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/wasi/index/abort unreachable end diff --git a/tests/compiler/std/array-literal.optimized.wat b/tests/compiler/std/array-literal.optimized.wat index c0ff89231b..0d24b10a92 100644 --- a/tests/compiler/std/array-literal.optimized.wat +++ b/tests/compiler/std/array-literal.optimized.wat @@ -1338,12 +1338,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1472 i32.const 1744 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/array-literal.untouched.wat b/tests/compiler/std/array-literal.untouched.wat index a2df78511b..1cad1167b7 100644 --- a/tests/compiler/std/array-literal.untouched.wat +++ b/tests/compiler/std/array-literal.untouched.wat @@ -1666,12 +1666,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 448 i32.const 720 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/array.optimized.wat b/tests/compiler/std/array.optimized.wat index 2eaabc3bed..66c304b39f 100644 --- a/tests/compiler/std/array.optimized.wat +++ b/tests/compiler/std/array.optimized.wat @@ -1902,12 +1902,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1152 i32.const 1488 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/array.untouched.wat b/tests/compiler/std/array.untouched.wat index bce6bd58d9..455156bb95 100644 --- a/tests/compiler/std/array.untouched.wat +++ b/tests/compiler/std/array.untouched.wat @@ -1983,12 +1983,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 128 i32.const 464 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/arraybuffer.optimized.wat b/tests/compiler/std/arraybuffer.optimized.wat index 8d94b69b6a..bfd867f4a4 100644 --- a/tests/compiler/std/arraybuffer.optimized.wat +++ b/tests/compiler/std/arraybuffer.optimized.wat @@ -1255,12 +1255,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1168 i32.const 1504 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/arraybuffer.untouched.wat b/tests/compiler/std/arraybuffer.untouched.wat index 03b3b0f8ad..753029cb35 100644 --- a/tests/compiler/std/arraybuffer.untouched.wat +++ b/tests/compiler/std/arraybuffer.untouched.wat @@ -1596,12 +1596,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 144 i32.const 480 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/dataview.optimized.wat b/tests/compiler/std/dataview.optimized.wat index ff37266c58..370a93e170 100644 --- a/tests/compiler/std/dataview.optimized.wat +++ b/tests/compiler/std/dataview.optimized.wat @@ -1262,12 +1262,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1168 i32.const 1504 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/dataview.untouched.wat b/tests/compiler/std/dataview.untouched.wat index 9e0c193d5f..f9ce2ba689 100644 --- a/tests/compiler/std/dataview.untouched.wat +++ b/tests/compiler/std/dataview.untouched.wat @@ -1603,12 +1603,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 144 i32.const 480 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/date.optimized.wat b/tests/compiler/std/date.optimized.wat index 51b8a476c0..644f9de8e1 100644 --- a/tests/compiler/std/date.optimized.wat +++ b/tests/compiler/std/date.optimized.wat @@ -1630,12 +1630,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1200 i32.const 1536 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/date.untouched.wat b/tests/compiler/std/date.untouched.wat index d0146cbf1d..cf459b4d5e 100644 --- a/tests/compiler/std/date.untouched.wat +++ b/tests/compiler/std/date.untouched.wat @@ -1946,12 +1946,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 176 i32.const 512 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/map.optimized.wat b/tests/compiler/std/map.optimized.wat index d3e7998e7d..69cf78fd01 100644 --- a/tests/compiler/std/map.optimized.wat +++ b/tests/compiler/std/map.optimized.wat @@ -1278,12 +1278,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1056 i32.const 1392 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/map.untouched.wat b/tests/compiler/std/map.untouched.wat index 01f1ab84f6..d16f134ca5 100644 --- a/tests/compiler/std/map.untouched.wat +++ b/tests/compiler/std/map.untouched.wat @@ -1616,12 +1616,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/new.untouched.wat b/tests/compiler/std/new.untouched.wat index 6841034f04..4f5c2ba371 100644 --- a/tests/compiler/std/new.untouched.wat +++ b/tests/compiler/std/new.untouched.wat @@ -1603,12 +1603,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/operator-overloading.untouched.wat b/tests/compiler/std/operator-overloading.untouched.wat index 45583b67d9..80656982bd 100644 --- a/tests/compiler/std/operator-overloading.untouched.wat +++ b/tests/compiler/std/operator-overloading.untouched.wat @@ -1657,12 +1657,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/set.optimized.wat b/tests/compiler/std/set.optimized.wat index 8269da31e8..d3ff7dda82 100644 --- a/tests/compiler/std/set.optimized.wat +++ b/tests/compiler/std/set.optimized.wat @@ -1269,12 +1269,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1056 i32.const 1392 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/set.untouched.wat b/tests/compiler/std/set.untouched.wat index 7f714ce6bf..aaa86a1c9e 100644 --- a/tests/compiler/std/set.untouched.wat +++ b/tests/compiler/std/set.untouched.wat @@ -1611,12 +1611,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/static-array.optimized.wat b/tests/compiler/std/static-array.optimized.wat index afc826bd29..84ad70fed0 100644 --- a/tests/compiler/std/static-array.optimized.wat +++ b/tests/compiler/std/static-array.optimized.wat @@ -1299,12 +1299,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1632 i32.const 1904 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/static-array.untouched.wat b/tests/compiler/std/static-array.untouched.wat index a533460bf6..3c6c1436d7 100644 --- a/tests/compiler/std/static-array.untouched.wat +++ b/tests/compiler/std/static-array.untouched.wat @@ -1645,12 +1645,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 608 i32.const 880 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/staticarray.optimized.wat b/tests/compiler/std/staticarray.optimized.wat index f7367de66a..9a95f74d3c 100644 --- a/tests/compiler/std/staticarray.optimized.wat +++ b/tests/compiler/std/staticarray.optimized.wat @@ -1390,12 +1390,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1344 i32.const 1616 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/staticarray.untouched.wat b/tests/compiler/std/staticarray.untouched.wat index 479fca138c..d2ba5ed296 100644 --- a/tests/compiler/std/staticarray.untouched.wat +++ b/tests/compiler/std/staticarray.untouched.wat @@ -1701,12 +1701,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 320 i32.const 592 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/string-casemapping.optimized.wat b/tests/compiler/std/string-casemapping.optimized.wat index 9baf5fddc0..607b5b49c5 100644 --- a/tests/compiler/std/string-casemapping.optimized.wat +++ b/tests/compiler/std/string-casemapping.optimized.wat @@ -1689,12 +1689,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1088 i32.const 1424 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/string-casemapping.untouched.wat b/tests/compiler/std/string-casemapping.untouched.wat index 682e1d3656..58d43bed23 100644 --- a/tests/compiler/std/string-casemapping.untouched.wat +++ b/tests/compiler/std/string-casemapping.untouched.wat @@ -1778,12 +1778,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 64 i32.const 400 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/string-encoding.optimized.wat b/tests/compiler/std/string-encoding.optimized.wat index cac793bb1d..bc55b7e596 100644 --- a/tests/compiler/std/string-encoding.optimized.wat +++ b/tests/compiler/std/string-encoding.optimized.wat @@ -1270,12 +1270,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1152 i32.const 1488 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/string-encoding.untouched.wat b/tests/compiler/std/string-encoding.untouched.wat index 9edf35b561..947c9da3aa 100644 --- a/tests/compiler/std/string-encoding.untouched.wat +++ b/tests/compiler/std/string-encoding.untouched.wat @@ -1611,12 +1611,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 128 i32.const 464 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/string.optimized.wat b/tests/compiler/std/string.optimized.wat index f5b911faed..a4342fca7c 100644 --- a/tests/compiler/std/string.optimized.wat +++ b/tests/compiler/std/string.optimized.wat @@ -2283,12 +2283,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1376 i32.const 1648 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/string.untouched.wat b/tests/compiler/std/string.untouched.wat index f34b2e3173..2b5ed767dd 100644 --- a/tests/compiler/std/string.untouched.wat +++ b/tests/compiler/std/string.untouched.wat @@ -2314,12 +2314,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 352 i32.const 624 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/symbol.optimized.wat b/tests/compiler/std/symbol.optimized.wat index 747a4be2d5..55c39f9a84 100644 --- a/tests/compiler/std/symbol.optimized.wat +++ b/tests/compiler/std/symbol.optimized.wat @@ -1360,12 +1360,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1136 i32.const 1472 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/symbol.untouched.wat b/tests/compiler/std/symbol.untouched.wat index dbb99bf48d..00353d632e 100644 --- a/tests/compiler/std/symbol.untouched.wat +++ b/tests/compiler/std/symbol.untouched.wat @@ -1648,12 +1648,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 112 i32.const 448 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/typedarray.optimized.wat b/tests/compiler/std/typedarray.optimized.wat index bbd163599a..918aeccd9a 100644 --- a/tests/compiler/std/typedarray.optimized.wat +++ b/tests/compiler/std/typedarray.optimized.wat @@ -1866,12 +1866,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1168 i32.const 1504 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/typedarray.untouched.wat b/tests/compiler/std/typedarray.untouched.wat index accd64ddea..213bf716ee 100644 --- a/tests/compiler/std/typedarray.untouched.wat +++ b/tests/compiler/std/typedarray.untouched.wat @@ -1935,12 +1935,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 144 i32.const 480 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/uri.optimized.wat b/tests/compiler/std/uri.optimized.wat index 375b2142ca..691528adce 100644 --- a/tests/compiler/std/uri.optimized.wat +++ b/tests/compiler/std/uri.optimized.wat @@ -1363,12 +1363,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1184 i32.const 1520 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/std/uri.untouched.wat b/tests/compiler/std/uri.untouched.wat index 78ddd9e480..232345eb36 100644 --- a/tests/compiler/std/uri.untouched.wat +++ b/tests/compiler/std/uri.untouched.wat @@ -1659,12 +1659,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 160 i32.const 496 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/super-inline.untouched.wat b/tests/compiler/super-inline.untouched.wat index 3416a2ecc1..3b5ff64840 100644 --- a/tests/compiler/super-inline.untouched.wat +++ b/tests/compiler/super-inline.untouched.wat @@ -1591,12 +1591,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 32 i32.const 368 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/templateliteral.optimized.wat b/tests/compiler/templateliteral.optimized.wat index 0799739d5c..21a5f96c3a 100644 --- a/tests/compiler/templateliteral.optimized.wat +++ b/tests/compiler/templateliteral.optimized.wat @@ -1399,12 +1399,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1392 i32.const 1520 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/templateliteral.untouched.wat b/tests/compiler/templateliteral.untouched.wat index d6ab138a6b..959eae777c 100644 --- a/tests/compiler/templateliteral.untouched.wat +++ b/tests/compiler/templateliteral.untouched.wat @@ -1748,12 +1748,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 368 i32.const 496 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/typeof.untouched.wat b/tests/compiler/typeof.untouched.wat index 8ea1460878..7c98880320 100644 --- a/tests/compiler/typeof.untouched.wat +++ b/tests/compiler/typeof.untouched.wat @@ -1770,12 +1770,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 336 i32.const 672 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end diff --git a/tests/compiler/wasi/trace.optimized.wat b/tests/compiler/wasi/trace.optimized.wat index 4d7e094d42..cc284663f6 100644 --- a/tests/compiler/wasi/trace.optimized.wat +++ b/tests/compiler/wasi/trace.optimized.wat @@ -1103,12 +1103,12 @@ (local $4 i32) local.get $1 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 1168 i32.const 1104 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/wasi/index/abort unreachable end diff --git a/tests/compiler/wasi/trace.untouched.wat b/tests/compiler/wasi/trace.untouched.wat index f91150bae3..4acb47fd45 100644 --- a/tests/compiler/wasi/trace.untouched.wat +++ b/tests/compiler/wasi/trace.untouched.wat @@ -1487,12 +1487,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 144 i32.const 80 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/wasi/index/abort unreachable end diff --git a/tests/compiler/while.untouched.wat b/tests/compiler/while.untouched.wat index 120361d984..65a46a3b0c 100644 --- a/tests/compiler/while.untouched.wat +++ b/tests/compiler/while.untouched.wat @@ -2045,12 +2045,12 @@ (func $~lib/rt/tlsf/prepareSize (param $0 i32) (result i32) local.get $0 i32.const 1073741820 - i32.ge_u + i32.gt_u if i32.const 80 i32.const 416 i32.const 458 - i32.const 30 + i32.const 29 call $~lib/builtins/abort unreachable end