diff options
author | Christian Speckner <christian.speckner@mayflower.de> | 2024-07-16 01:04:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-15 16:04:37 -0700 |
commit | fd8b2bd43d73cf1976426e60c22c5261fa343510 (patch) | |
tree | 79d1fbc91d65ba0f8a4a6b3db0ca070b0628ebda /src/pass.h | |
parent | aec516f1259c3fec92982db92dc0e4e67ab2251a (diff) | |
download | binaryen-fd8b2bd43d73cf1976426e60c22c5261fa343510.tar.gz binaryen-fd8b2bd43d73cf1976426e60c22c5261fa343510.tar.bz2 binaryen-fd8b2bd43d73cf1976426e60c22c5261fa343510.zip |
Allow different arguments for multiple instances of a pass (#6687)
Each pass instance can now store an argument for it, which can be different.
This may be a breaking change for the corner case of running a pass multiple
times and setting the pass's argument multiple times as well (before, the last
pass argument affected them all; now, it affects the last instance only). This
only affects arguments with the name of a pass; others remain global, as
before (and multiple passes can read them, in fact). See the CHANGELOG for
details.
Fixes #6646
Diffstat (limited to 'src/pass.h')
-rw-r--r-- | src/pass.h | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/src/pass.h b/src/pass.h index ab060309b..9352319ad 100644 --- a/src/pass.h +++ b/src/pass.h @@ -39,12 +39,14 @@ struct PassRegistry { using Creator = std::function<Pass*()>; void registerPass(const char* name, const char* description, Creator create); + // Register a pass that's used for internal testing. These passes do not show // up in --help. void registerTestPass(const char* name, const char* description, Creator create); std::unique_ptr<Pass> createPass(std::string name); std::vector<std::string> getRegisteredNames(); + bool containsPass(const std::string& name); std::string getPassDescription(std::string name); bool isPassHidden(std::string name); @@ -103,6 +105,8 @@ class EffectAnalyzer; using FuncEffectsMap = std::unordered_map<Name, EffectAnalyzer>; struct PassOptions { + friend Pass; + // Run passes in debug mode, doing extra validation and timing checks. bool debug = false; // Whether to run the validator to check for errors. @@ -269,6 +273,7 @@ struct PassOptions { return PassOptions(); // defaults are to not optimize } +private: bool hasArgument(std::string key) { return arguments.count(key) > 0; } std::string getArgument(std::string key, std::string errorTextIfMissing) { @@ -322,9 +327,8 @@ struct PassRunner { } // Add a pass using its name. - void add(std::string passName) { - doAdd(PassRegistry::get()->createPass(passName)); - } + void add(std::string passName, + std::optional<std::string> passArg = std::nullopt); // Add a pass given an instance. void add(std::unique_ptr<Pass> pass) { doAdd(std::move(pass)); } @@ -486,6 +490,8 @@ public: // to imports must override this to return true. virtual bool addsEffects() { return false; } + void setPassArg(const std::string& value) { passArg = value; } + std::string name; PassRunner* getPassRunner() { return runner; } @@ -497,6 +503,19 @@ public: PassOptions& getPassOptions() { return runner->options; } protected: + bool hasArgument(const std::string& key); + std::string getArgument(const std::string& key, + const std::string& errorTextIfMissing); + std::string getArgumentOrDefault(const std::string& key, + const std::string& defaultValue); + + // The main argument of the pass, which can be specified individually for + // every pass . getArgument() and friends will refer to this value if queried + // for a key that matches the pass name. All other arguments are taken from + // the runner / passOptions and therefore are global for all instances of a + // pass. + std::optional<std::string> passArg; + Pass() = default; Pass(const Pass&) = default; Pass(Pass&&) = default; |