diff options
author | Thomas Lively <tlively@google.com> | 2024-03-22 16:56:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-22 23:56:33 +0000 |
commit | b3fea30f84fef3ff7aa77775e00b83ba62d997cc (patch) | |
tree | 53494a466d8e56d34d849d14927817a22f843748 /src/support/string.h | |
parent | d3414c3deaebe7ba35731a8c20d7fa5f5a833ca3 (diff) | |
download | binaryen-b3fea30f84fef3ff7aa77775e00b83ba62d997cc.tar.gz binaryen-b3fea30f84fef3ff7aa77775e00b83ba62d997cc.tar.bz2 binaryen-b3fea30f84fef3ff7aa77775e00b83ba62d997cc.zip |
[Strings] Represent string values as WTF-16 internally (#6418)
WTF-16, i.e. arbitrary sequences of 16-bit values, is the encoding of Java and
JavaScript strings, and using the same encoding makes the interpretation of
string operations trivial, even when accounting for non-ascii characters.
Specifically, use little-endian WTF-16.
Re-encode string constants from WTF-8 to WTF-16 in the parsers, then back to
WTF-8 in the writers. Update the constructor for string `Literal`s to interpret
the string as WTF-16 and store a sequence of WTF-16 code units, i.e. 16-bit
integers. Update `Builder::makeConstantExpression` accordingly to convert from
the new `Literal` string representation back to a WTF-16 string.
Update the interpreter to remove the logic for detecting non-ascii characters
and bailing out. The naive implementations of all the string operations are
correct now that our string encoding matches the JS string encoding.
Diffstat (limited to 'src/support/string.h')
-rw-r--r-- | src/support/string.h | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/support/string.h b/src/support/string.h index 6fb3f693b..be2c3c6a3 100644 --- a/src/support/string.h +++ b/src/support/string.h @@ -75,9 +75,24 @@ inline bool isNumber(const std::string& str) { return !str.empty() && std::all_of(str.begin(), str.end(), ::isdigit); } -std::ostream& printEscaped(std::ostream& os, const std::string_view str); +std::ostream& printEscaped(std::ostream& os, std::string_view str); -std::ostream& printEscapedJSON(std::ostream& os, const std::string_view str); +// `str` must be a valid WTF-16 string. +std::ostream& printEscapedJSON(std::ostream& os, std::string_view str); + +std::ostream& writeWTF8CodePoint(std::ostream& os, uint32_t u); + +std::ostream& writeWTF16CodePoint(std::ostream& os, uint32_t u); + +// Writes the WTF-16LE encoding of the given WTF-8 string to `os`, inserting +// replacement characters as necessary when encountering invalid WTF-8. Returns +// `true` iff the input was valid WTF-8. +bool convertWTF8ToWTF16(std::ostream& os, std::string_view str); + +// Writes the WTF-8 encoding of the given WTF-16LE string to `os`, inserting a +// replacement character at the end if the string is an odd number of bytes. +// Returns `true` iff the input was valid WTF-16. +bool convertWTF16ToWTF8(std::ostream& os, std::string_view str); } // namespace wasm::String |