diff options
author | Max Graey <maxgraey@gmail.com> | 2021-11-23 07:03:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-22 21:03:25 -0800 |
commit | 7f24fce21a92f2aed4a11745d27d5181798ba6cd (patch) | |
tree | 80655dc933e3c2ae3ae53b7960cd71a6a022c3da /src/passes/OnceReduction.cpp | |
parent | 37999167bb333dd0b12d744af8e633897e65cff8 (diff) | |
download | binaryen-7f24fce21a92f2aed4a11745d27d5181798ba6cd.tar.gz binaryen-7f24fce21a92f2aed4a11745d27d5181798ba6cd.tar.bz2 binaryen-7f24fce21a92f2aed4a11745d27d5181798ba6cd.zip |
Modernize code to C++17 (#3104)
Diffstat (limited to 'src/passes/OnceReduction.cpp')
-rw-r--r-- | src/passes/OnceReduction.cpp | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/passes/OnceReduction.cpp b/src/passes/OnceReduction.cpp index 83ee7378b..fd38aeafe 100644 --- a/src/passes/OnceReduction.cpp +++ b/src/passes/OnceReduction.cpp @@ -130,9 +130,7 @@ struct Scanner : public WalkerPass<PostWalker<Scanner>> { } } - for (auto& kv : readGlobals) { - auto global = kv.first; - auto count = kv.second; + for (auto& [global, count] : readGlobals) { if (count > 0) { // This global has reads we cannot reason about, so do not optimize it. optInfo.onceGlobals.at(global) = false; @@ -287,7 +285,8 @@ struct Optimizer // instruction, optimize. auto optimizeOnce = [&](Name globalName) { assert(optInfo.onceGlobals.at(globalName)); - if (onceGlobalsWritten.count(globalName)) { + auto res = onceGlobalsWritten.emplace(globalName); + if (!res.second) { // This global has already been written, so this expr is not needed, // regardless of whether it is a global.set or a call. // @@ -297,7 +296,6 @@ struct Optimizer } else { // From here on, this global is set, hopefully allowing us to // optimize away others. - onceGlobalsWritten.insert(globalName); } }; @@ -379,8 +377,7 @@ struct OnceReduction : public Pass { // Combine the information. We found which globals appear to be "once", but // other information may have proven they are not so, in fact. Specifically, // for a function to be "once" we need its global to also be such. - for (auto& kv : optInfo.onceFuncs) { - Name& onceGlobal = kv.second; + for (auto& [_, onceGlobal] : optInfo.onceFuncs) { if (onceGlobal.is() && !optInfo.onceGlobals[onceGlobal]) { onceGlobal = Name(); } @@ -428,8 +425,7 @@ struct OnceReduction : public Pass { // Count how many once globals are set, and see if we have any more work // to do. Index currOnceGlobalsSet = 0; - for (auto& kv : optInfo.onceGlobalsSetInFuncs) { - auto& globals = kv.second; + for (auto& [_, globals] : optInfo.onceGlobalsSetInFuncs) { currOnceGlobalsSet += globals.size(); } assert(currOnceGlobalsSet >= lastOnceGlobalsSet); |