diff options
author | Thomas Lively <tlively@google.com> | 2024-04-24 16:59:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-24 23:59:26 +0000 |
commit | aa931628d73a7ca69305760c161654aee8c20fe2 (patch) | |
tree | d46b277031858a564fa4e6ca3c0dca845d76dded | |
parent | 403568091b42c6bfe38e46d73d8d10cd4c0747e9 (diff) | |
download | binaryen-aa931628d73a7ca69305760c161654aee8c20fe2.tar.gz binaryen-aa931628d73a7ca69305760c161654aee8c20fe2.tar.bz2 binaryen-aa931628d73a7ca69305760c161654aee8c20fe2.zip |
Do not add an extra null character when reading files (#6538)
The new wat parser currently considers itself to be at the end of the file
whenever it cannot lex another token. This is not quite right, but fixing it
causes parser errors because of the extra null character we were appending to
files when we read them. This null character is not useful since we can already
read files as `std::string`, which always has an implicit null character, so
remove it. Clean up some users of `read_file` while we're at it.
-rw-r--r-- | src/support/file.cpp | 6 | ||||
-rw-r--r-- | src/tools/wasm-ctor-eval.cpp | 2 | ||||
-rw-r--r-- | src/tools/wasm-metadce.cpp | 2 | ||||
-rw-r--r-- | src/tools/wasm2js.cpp | 3 | ||||
-rw-r--r-- | src/wasm/wasm-io.cpp | 3 |
5 files changed, 5 insertions, 11 deletions
diff --git a/src/support/file.cpp b/src/support/file.cpp index feb05e136..08b9e31af 100644 --- a/src/support/file.cpp +++ b/src/support/file.cpp @@ -71,7 +71,8 @@ T wasm::read_file(const std::string& filename, Flags::BinaryOption binary) { << "': Input file too large: " << insize << " bytes. Try rebuilding in 64-bit mode."; } - T input(size_t(insize) + (binary == Flags::Binary ? 0 : 1), '\0'); + // Zero-initialize the string or vector with the expected size. + T input(size_t(insize), '\0'); if (size_t(insize) == 0) { return input; } @@ -82,8 +83,7 @@ T wasm::read_file(const std::string& filename, Flags::BinaryOption binary) { // Truncate size to the number of ASCII characters actually read in text // mode (which is generally less than the number of bytes on Windows, if // \r\n line endings are present) - input.resize(chars + 1); - input[chars] = '\0'; + input.resize(chars); } return input; } diff --git a/src/tools/wasm-ctor-eval.cpp b/src/tools/wasm-ctor-eval.cpp index fe3d42d09..a806333af 100644 --- a/src/tools/wasm-ctor-eval.cpp +++ b/src/tools/wasm-ctor-eval.cpp @@ -1436,8 +1436,6 @@ int main(int argc, const char* argv[]) { }); options.parse(argc, argv); - auto input(read_file<std::string>(options.extra["infile"], Flags::Text)); - Module wasm; options.applyFeatures(wasm); diff --git a/src/tools/wasm-metadce.cpp b/src/tools/wasm-metadce.cpp index cd8c8546a..1b429a723 100644 --- a/src/tools/wasm-metadce.cpp +++ b/src/tools/wasm-metadce.cpp @@ -485,8 +485,6 @@ int main(int argc, const char* argv[]) { Fatal() << "no graph file provided."; } - auto input(read_file<std::string>(options.extra["infile"], Flags::Text)); - Module wasm; options.applyFeatures(wasm); diff --git a/src/tools/wasm2js.cpp b/src/tools/wasm2js.cpp index 1c2606b6a..e5b949b90 100644 --- a/src/tools/wasm2js.cpp +++ b/src/tools/wasm2js.cpp @@ -976,8 +976,7 @@ int main(int argc, const char* argv[]) { ModuleReader reader; reader.read(input, wasm, ""); } else { - auto input( - read_file<std::vector<char>>(options.extra["infile"], Flags::Text)); + auto input(read_file<std::string>(options.extra["infile"], Flags::Text)); if (options.debug) { std::cerr << "s-parsing..." << std::endl; } diff --git a/src/wasm/wasm-io.cpp b/src/wasm/wasm-io.cpp index 37d28ca4b..df1cc19f4 100644 --- a/src/wasm/wasm-io.cpp +++ b/src/wasm/wasm-io.cpp @@ -39,8 +39,7 @@ bool useNewWATParser = false; static void readTextData(std::string& input, Module& wasm, IRProfile profile) { if (useNewWATParser) { - std::string_view in(input.c_str()); - if (auto parsed = WATParser::parseModule(wasm, in); + if (auto parsed = WATParser::parseModule(wasm, input); auto err = parsed.getErr()) { Fatal() << err->msg; } |