diff options
author | Alon Zakai <azakai@google.com> | 2021-02-23 22:46:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 22:46:13 +0000 |
commit | a7c66754ba86854ea3e0381986796e6565b93199 (patch) | |
tree | 940abdbce4bcf5a10eab090c6b67c37dbb5d2c3b /test/passes/metrics_all-features.txt | |
parent | c127eccf753ab86a4d5deecbd0f3fa78a83e42ad (diff) | |
download | binaryen-a7c66754ba86854ea3e0381986796e6565b93199.tar.gz binaryen-a7c66754ba86854ea3e0381986796e6565b93199.tar.bz2 binaryen-a7c66754ba86854ea3e0381986796e6565b93199.zip |
Properly use text format type names in printing (#3591)
This adds a TypeNames entry to modules, which can store names for types. So
far this PR uses that to store type names from text format. Future PRs will add
support for field names and for the binary format.
(Field names are added to wasm.h here to see if we agree on this direction.)
Most of the work here is threading a module through the various functions in
Print.cpp. This keeps the module optional, so that we can still print an
expression independently of a module, which has always been the case, and
which I think we should keep (but, if a module was mandatory perhaps this
would be a little simpler, and could be refactored into a form that depends on
that).
99% of this diff are test updates, since almost all our tests use the text
format, and many of them specify a type name but we used to ignore it.
This is a step towards a proper solution for #3589
Diffstat (limited to 'test/passes/metrics_all-features.txt')
-rw-r--r-- | test/passes/metrics_all-features.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/passes/metrics_all-features.txt b/test/passes/metrics_all-features.txt index 0a22ac945..ae746355d 100644 --- a/test/passes/metrics_all-features.txt +++ b/test/passes/metrics_all-features.txt @@ -15,7 +15,7 @@ total Drop : 6 If : 4 (module - (type $i32_=>_none (func (param i32))) + (type $0 (func (param i32))) (type $i32_i32_=>_none (func (param i32 i32))) (memory $0 256 256) (data (i32.const 0) "\ff\ef\0f\1f 0@P\99") |