diff options
author | Alon Zakai <azakai@google.com> | 2023-04-11 10:47:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 17:47:30 +0000 |
commit | 18898347e7c4ceb86988bdb8594160883f7886f0 (patch) | |
tree | ad934605a71cc8a3638b5388ae72c57cce08165f /test/ctor-eval/gc.wast.out | |
parent | 160dda0aa5ecc8252c5862cd937157296d9015cb (diff) | |
download | binaryen-18898347e7c4ceb86988bdb8594160883f7886f0.tar.gz binaryen-18898347e7c4ceb86988bdb8594160883f7886f0.tar.bz2 binaryen-18898347e7c4ceb86988bdb8594160883f7886f0.zip |
Add a name hint to getValidName() (#5653)
Without the hint, we always look for a valid name using name$0, $1, $2, etc.,
starting from 0, and in some cases that can lead to quadratic behavior.
Noticed on a testcase in the fuzzer that runs for over 24 seconds (I gave up at
that point) but takes only 2 seconds with this.
Diffstat (limited to 'test/ctor-eval/gc.wast.out')
-rw-r--r-- | test/ctor-eval/gc.wast.out | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/ctor-eval/gc.wast.out b/test/ctor-eval/gc.wast.out index 4a30752e0..2995f84ba 100644 --- a/test/ctor-eval/gc.wast.out +++ b/test/ctor-eval/gc.wast.out @@ -7,14 +7,14 @@ (global $global1 (ref $struct) (struct.new $struct (i32.const 1337) )) - (global $ctor-eval$global_1 (ref $struct) (struct.new $struct + (global $ctor-eval$global_4 (ref $struct) (struct.new $struct (i32.const 42) )) - (global $global2 (mut (ref null $struct)) (global.get $ctor-eval$global_1)) - (global $ctor-eval$global_2 (ref $struct) (struct.new $struct + (global $global2 (mut (ref null $struct)) (global.get $ctor-eval$global_4)) + (global $ctor-eval$global_5 (ref $struct) (struct.new $struct (i32.const 99) )) - (export "test1" (func $0_0)) + (export "test1" (func $0_3)) (export "keepalive" (func $1)) (func $1 (type $none_=>_i32) (result i32) (i32.add @@ -26,10 +26,10 @@ ) ) ) - (func $0_0 (type $none_=>_none) + (func $0_3 (type $none_=>_none) (local $0 (ref $struct)) (local.set $0 - (global.get $ctor-eval$global_2) + (global.get $ctor-eval$global_5) ) (call $import (ref.null none) |