summaryrefslogtreecommitdiff
path: root/src/passes/AvoidReinterprets.cpp
diff options
context:
space:
mode:
authorMax Graey <maxgraey@gmail.com>2021-11-23 07:03:25 +0200
committerGitHub <noreply@github.com>2021-11-22 21:03:25 -0800
commit7f24fce21a92f2aed4a11745d27d5181798ba6cd (patch)
tree80655dc933e3c2ae3ae53b7960cd71a6a022c3da /src/passes/AvoidReinterprets.cpp
parent37999167bb333dd0b12d744af8e633897e65cff8 (diff)
downloadbinaryen-7f24fce21a92f2aed4a11745d27d5181798ba6cd.tar.gz
binaryen-7f24fce21a92f2aed4a11745d27d5181798ba6cd.tar.bz2
binaryen-7f24fce21a92f2aed4a11745d27d5181798ba6cd.zip
Modernize code to C++17 (#3104)
Diffstat (limited to 'src/passes/AvoidReinterprets.cpp')
-rw-r--r--src/passes/AvoidReinterprets.cpp15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/passes/AvoidReinterprets.cpp b/src/passes/AvoidReinterprets.cpp
index d1030f89e..c2607725d 100644
--- a/src/passes/AvoidReinterprets.cpp
+++ b/src/passes/AvoidReinterprets.cpp
@@ -54,13 +54,12 @@ static Load* getSingleLoad(LocalGraph* localGraph,
}
auto* value = Properties::getFallthrough(set->value, passOptions, module);
if (auto* parentGet = value->dynCast<LocalGet>()) {
- if (seen.count(parentGet)) {
- // We are in a cycle of gets, in unreachable code.
- return nullptr;
+ if (seen.emplace(parentGet).second) {
+ get = parentGet;
+ continue;
}
- get = parentGet;
- seen.insert(get);
- continue;
+ // We are in a cycle of gets, in unreachable code.
+ return nullptr;
}
if (auto* load = value->dynCast<Load>()) {
return load;
@@ -117,9 +116,7 @@ struct AvoidReinterprets : public WalkerPass<PostWalker<AvoidReinterprets>> {
void optimize(Function* func) {
std::set<Load*> unoptimizables;
auto indexType = getModule()->memory.indexType;
- for (auto& pair : infos) {
- auto* load = pair.first;
- auto& info = pair.second;
+ for (auto& [load, info] : infos) {
if (info.reinterpreted && canReplaceWithReinterpret(load)) {
// We should use another load here, to avoid reinterprets.
info.ptrLocal = Builder::addVar(func, indexType);