diff options
author | Thomas Lively <tlively@google.com> | 2024-04-15 14:02:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-15 14:02:24 -0700 |
commit | b1245577ba92b77a97e266cf4c7f7cd15e6e7f28 (patch) | |
tree | 333e17f651e6ed9d24fa13aa86f38fcc907541cf /src/pretty_printing.h | |
parent | 8c834e8257b03ea87b639ddac9adefec64fcad00 (diff) | |
download | binaryen-b1245577ba92b77a97e266cf4c7f7cd15e6e7f28.tar.gz binaryen-b1245577ba92b77a97e266cf4c7f7cd15e6e7f28.tar.bz2 binaryen-b1245577ba92b77a97e266cf4c7f7cd15e6e7f28.zip |
[Strings] Add a string lowering pass using magic imports (#6497)
The latest idea for efficient string constants is to encode the constants in
the import names of their globals and implement fast paths in the engines for
materializing those constants at instantiation time without needing to parse
anything in JS. This strategy only works for valid strings (i.e. strings without
unpaired surrogates) because only valid strings can be used as import names in
the WebAssembly syntax.
Add a new configuration of the StringLowering pass that encodes valid string
contents in import names, falling back to the JSON custom section approach for
invalid strings.
To test this chang, update the printer to escape import and export names
properly and update the legacy parser to parse escapes in import and export
names properly. As a drive-by, remove the incorrect check in the parser that the
import module and base names are non-empty.
Diffstat (limited to 'src/pretty_printing.h')
-rw-r--r-- | src/pretty_printing.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/pretty_printing.h b/src/pretty_printing.h index f693c4d51..0f1a0ed87 100644 --- a/src/pretty_printing.h +++ b/src/pretty_printing.h @@ -51,29 +51,35 @@ inline std::ostream& restoreNormalColor(std::ostream& o) { return o; } -inline std::ostream& printText(std::ostream& o, const char* str) { - o << '"'; +inline std::ostream& +printText(std::ostream& o, std::string_view str, bool needQuotes = true) { + if (needQuotes) { + o << '"'; + } Colors::green(o); o << str; Colors::normal(o); - return o << '"'; + if (needQuotes) { + o << '"'; + } + return o; } -inline std::ostream& printMajor(std::ostream& o, const char* str) { +inline std::ostream& printMajor(std::ostream& o, std::string_view str) { prepareMajorColor(o); o << str; restoreNormalColor(o); return o; } -inline std::ostream& printMedium(std::ostream& o, const char* str) { +inline std::ostream& printMedium(std::ostream& o, std::string_view str) { prepareColor(o); o << str; restoreNormalColor(o); return o; } -inline std::ostream& printMinor(std::ostream& o, const char* str) { +inline std::ostream& printMinor(std::ostream& o, std::string_view str) { prepareMinorColor(o); o << str; restoreNormalColor(o); |