summaryrefslogtreecommitdiff
path: root/src/tools/wasm-split/wasm-split.cpp
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2021-09-24 14:25:05 -0700
committerGitHub <noreply@github.com>2021-09-24 14:25:05 -0700
commitab3811dafb27edd81f919d0096630014184b3836 (patch)
tree632000d37a75a3c5913bce7b0c17c163b430acbf /src/tools/wasm-split/wasm-split.cpp
parenta6dbadb8d180aff3c481ad8fd3009a712c11b449 (diff)
downloadbinaryen-ab3811dafb27edd81f919d0096630014184b3836.tar.gz
binaryen-ab3811dafb27edd81f919d0096630014184b3836.tar.bz2
binaryen-ab3811dafb27edd81f919d0096630014184b3836.zip
[wasm-split] Disallow mixing --profile, --keep-funcs, and --split-funcs (#4187)
Previously the set of functions to keep was initially empty, then the profile added new functions to keep, then the --keep-funcs functions were added, then the --split-funcs functions were removed. This method of composing these different options was arbitrary and not necessarily intuitive, and it prevented reasonable workflows from working. For example, providing only a --split-funcs list would result in all functions being split out not matter which functions were listed. To make the behavior of these options, and --split-funcs in particular, more intuitive, disallow mixing them and when --split-funcs is used, split out only the listed functions.
Diffstat (limited to 'src/tools/wasm-split/wasm-split.cpp')
-rw-r--r--src/tools/wasm-split/wasm-split.cpp45
1 files changed, 24 insertions, 21 deletions
diff --git a/src/tools/wasm-split/wasm-split.cpp b/src/tools/wasm-split/wasm-split.cpp
index b1ae153c9..2be368994 100644
--- a/src/tools/wasm-split/wasm-split.cpp
+++ b/src/tools/wasm-split/wasm-split.cpp
@@ -173,7 +173,7 @@ void splitModule(const WasmSplitOptions& options) {
std::set<Name> keepFuncs;
if (options.profileFile.size()) {
- // Use the profile to initialize `keepFuncs`.
+ // Use the profile to set `keepFuncs`.
uint64_t hash = hashFile(options.inputFiles[0]);
ProfileData profile = readProfile(options.profileFile);
if (profile.hash != hash) {
@@ -193,29 +193,32 @@ void splitModule(const WasmSplitOptions& options) {
if (i != profile.timestamps.size()) {
Fatal() << "Unexpected extra profile data";
}
- }
-
- // Add in the functions specified with --keep-funcs
- for (auto& func : options.keepFuncs) {
- if (!options.quiet && wasm.getFunctionOrNull(func) == nullptr) {
- std::cerr << "warning: function " << func << " does not exist\n";
+ } else if (options.keepFuncs.size()) {
+ // Use the explicitly provided `keepFuncs`.
+ for (auto& func : options.keepFuncs) {
+ if (!options.quiet && wasm.getFunctionOrNull(func) == nullptr) {
+ std::cerr << "warning: function " << func << " does not exist\n";
+ }
+ keepFuncs.insert(func);
}
- keepFuncs.insert(func);
- }
-
- // Remove the functions specified with --remove-funcs
- for (auto& func : options.splitFuncs) {
- auto* function = wasm.getFunctionOrNull(func);
- if (!options.quiet && function == nullptr) {
- std::cerr << "warning: function " << func << " does not exist\n";
+ } else if (options.splitFuncs.size()) {
+ // Use the explicitly provided `splitFuncs`.
+ for (auto& func : wasm.functions) {
+ keepFuncs.insert(func->name);
}
- if (function && function->imported()) {
- if (!options.quiet) {
- std::cerr << "warning: cannot split out imported function " << func
- << "\n";
+ for (auto& func : options.splitFuncs) {
+ auto* function = wasm.getFunctionOrNull(func);
+ if (!options.quiet && function == nullptr) {
+ std::cerr << "warning: function " << func << " does not exist\n";
+ }
+ if (function && function->imported()) {
+ if (!options.quiet) {
+ std::cerr << "warning: cannot split out imported function " << func
+ << "\n";
+ }
+ } else {
+ keepFuncs.erase(func);
}
- } else {
- keepFuncs.erase(func);
}
}