diff options
author | Thomas Lively <tlively@google.com> | 2023-08-24 12:11:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-24 10:11:55 -0700 |
commit | 73bbbab144c4543edb70d35160cd620d3fe94539 (patch) | |
tree | 47c40a9722f73c1be24ef5a963281aca371074ca /test/unreachable-pops.wasm.fromBinary | |
parent | da8937a71e908fecfc5722594dadd3c7ec6e80be (diff) | |
download | binaryen-73bbbab144c4543edb70d35160cd620d3fe94539.tar.gz binaryen-73bbbab144c4543edb70d35160cd620d3fe94539.tar.bz2 binaryen-73bbbab144c4543edb70d35160cd620d3fe94539.zip |
Simplify and consolidate type printing (#5816)
When printing Binaryen IR, we previously generated names for unnamed heap types
based on their structure. This was useful for seeing the structure of simple
types at a glance without having to separately go look up their definitions, but
it also had two problems:
1. The same name could be generated for multiple types. The generated names did
not take into account rec group structure or finality, so types that differed
only in these properties would have the same name. Also, generated type names
were limited in length, so very large types that shared only some structure
could also end up with the same names. Using the same name for multiple types
produces incorrect and unparsable output.
2. The generated names were not useful beyond the most trivial examples. Even
with length limits, names for nontrivial types were extremely long and visually
noisy, which made reading disassembled real-world code more challenging.
Fix these problems by emitting simple indexed names for unnamed heap types
instead. This regresses readability for very simple examples, but the trade off
is worth it.
This change also reduces the number of type printing systems we have by one.
Previously we had the system in Print.cpp, but we had another, more general and
extensible system in wasm-type-printing.h and wasm-type.cpp as well. Remove the
old type printing system from Print.cpp and replace it with a much smaller use
of the new system. This requires significant refactoring of Print.cpp so that
PrintExpressionContents object now holds a reference to a parent
PrintSExpression object that holds the type name state.
This diff is very large because almost every test output changed slightly. To
minimize the diff and ease review, change the type printer in wasm-type.cpp to
behave the same as the old type printer in Print.cpp except for the differences
in name generation. These changes will be reverted in much smaller PRs in the
future to generally improve how types are printed.
Diffstat (limited to 'test/unreachable-pops.wasm.fromBinary')
-rw-r--r-- | test/unreachable-pops.wasm.fromBinary | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unreachable-pops.wasm.fromBinary b/test/unreachable-pops.wasm.fromBinary index c5ec6aa8a..08af405f2 100644 --- a/test/unreachable-pops.wasm.fromBinary +++ b/test/unreachable-pops.wasm.fromBinary @@ -1,5 +1,5 @@ (module - (type $none_=>_i32 (func (result i32))) + (type $0 (func (result i32))) (func $0 (result i32) (block $label$1 (result i32) (unreachable) |