summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-09-10 09:55:13 -0700
committerGitHub <noreply@github.com>2024-09-10 09:55:13 -0700
commit9d3f8e5603c42fdb2517d15d865f5cee06d21db5 (patch)
tree20c4b09215e92fc363a1e5e5273628c91bca52b4
parent203dcd5c47d6ea784e613f647f8addd9815a3d5b (diff)
downloadbinaryen-9d3f8e5603c42fdb2517d15d865f5cee06d21db5.tar.gz
binaryen-9d3f8e5603c42fdb2517d15d865f5cee06d21db5.tar.bz2
binaryen-9d3f8e5603c42fdb2517d15d865f5cee06d21db5.zip
[NFC] Standardize Super:: over super:: (#6920)
As the name of a class, uppercase seems better here.
-rw-r--r--src/pass.h2
-rw-r--r--src/passes/CoalesceLocals.cpp2
-rw-r--r--src/passes/CodeFolding.cpp2
-rw-r--r--src/passes/DeadCodeElimination.cpp2
-rw-r--r--src/passes/LogExecution.cpp2
-rw-r--r--src/passes/LoopInvariantCodeMotion.cpp2
-rw-r--r--src/passes/Memory64Lowering.cpp2
-rw-r--r--src/passes/MemoryPacking.cpp2
-rw-r--r--src/passes/MergeLocals.cpp2
-rw-r--r--src/passes/MultiMemoryLowering.cpp2
-rw-r--r--src/passes/OptimizeAddedConstants.cpp2
-rw-r--r--src/passes/OptimizeInstructions.cpp2
-rw-r--r--src/passes/Precompute.cpp4
-rw-r--r--src/passes/RemoveUnusedBrs.cpp4
-rw-r--r--src/passes/SignExtLowering.cpp2
-rw-r--r--src/passes/SimplifyGlobals.cpp4
-rw-r--r--src/passes/SpillPointers.cpp2
-rw-r--r--src/passes/Table64Lowering.cpp2
-rw-r--r--src/passes/TranslateEH.cpp2
-rw-r--r--src/passes/TrapMode.cpp2
-rw-r--r--src/passes/TupleOptimization.cpp2
-rw-r--r--src/passes/TypeGeneralizing.cpp2
22 files changed, 25 insertions, 25 deletions
diff --git a/src/pass.h b/src/pass.h
index 9352319ad..8d81fce8e 100644
--- a/src/pass.h
+++ b/src/pass.h
@@ -530,7 +530,7 @@ template<typename WalkerType>
class WalkerPass : public Pass, public WalkerType {
protected:
- using super = WalkerPass<WalkerType>;
+ using Super = WalkerPass<WalkerType>;
public:
void run(Module* module) override {
diff --git a/src/passes/CoalesceLocals.cpp b/src/passes/CoalesceLocals.cpp
index 313bbc03a..78b826495 100644
--- a/src/passes/CoalesceLocals.cpp
+++ b/src/passes/CoalesceLocals.cpp
@@ -112,7 +112,7 @@ private:
};
void CoalesceLocals::doWalkFunction(Function* func) {
- super::doWalkFunction(func);
+ Super::doWalkFunction(func);
// prioritize back edges
increaseBackEdgePriorities();
// use liveness to find interference
diff --git a/src/passes/CodeFolding.cpp b/src/passes/CodeFolding.cpp
index 2d17f6d31..21527da6b 100644
--- a/src/passes/CodeFolding.cpp
+++ b/src/passes/CodeFolding.cpp
@@ -293,7 +293,7 @@ struct CodeFolding : public WalkerPass<ControlFlowWalker<CodeFolding>> {
while (anotherPass) {
anotherPass = false;
needEHFixups = false;
- super::doWalkFunction(func);
+ Super::doWalkFunction(func);
optimizeTerminatingTails(unreachableTails);
// optimize returns at the end, so we can benefit from a fallthrough if
// there is a value TODO: separate passes for them?
diff --git a/src/passes/DeadCodeElimination.cpp b/src/passes/DeadCodeElimination.cpp
index f8acde7b0..a3667376f 100644
--- a/src/passes/DeadCodeElimination.cpp
+++ b/src/passes/DeadCodeElimination.cpp
@@ -61,7 +61,7 @@ struct DeadCodeElimination
if (old == expression) {
return expression;
}
- super::replaceCurrent(expression);
+ Super::replaceCurrent(expression);
// also update the type updater
typeUpdater.noteReplacement(old, expression);
return expression;
diff --git a/src/passes/LogExecution.cpp b/src/passes/LogExecution.cpp
index aa7948963..98b74197a 100644
--- a/src/passes/LogExecution.cpp
+++ b/src/passes/LogExecution.cpp
@@ -47,7 +47,7 @@ struct LogExecution : public WalkerPass<PostWalker<LogExecution>> {
void run(Module* module) override {
loggerModule = getArgumentOrDefault("log-execution", "");
- super::run(module);
+ Super::run(module);
}
void visitLoop(Loop* curr) { curr->body = makeLogCall(curr->body); }
diff --git a/src/passes/LoopInvariantCodeMotion.cpp b/src/passes/LoopInvariantCodeMotion.cpp
index 1277c1a34..6c7aecbc7 100644
--- a/src/passes/LoopInvariantCodeMotion.cpp
+++ b/src/passes/LoopInvariantCodeMotion.cpp
@@ -53,7 +53,7 @@ struct LoopInvariantCodeMotion
LazyLocalGraph localGraphInstance(func, getModule());
localGraph = &localGraphInstance;
// Traverse the function.
- super::doWalkFunction(func);
+ Super::doWalkFunction(func);
}
void visitLoop(Loop* loop) {
diff --git a/src/passes/Memory64Lowering.cpp b/src/passes/Memory64Lowering.cpp
index 879858b71..0a19d11c8 100644
--- a/src/passes/Memory64Lowering.cpp
+++ b/src/passes/Memory64Lowering.cpp
@@ -181,7 +181,7 @@ struct Memory64Lowering : public WalkerPass<PostWalker<Memory64Lowering>> {
if (!module->features.has(FeatureSet::Memory64)) {
return;
}
- super::run(module);
+ Super::run(module);
// Don't modify the memories themselves until after the traversal since we
// that would require memories to be the last thing that get visited, and
// we don't want to depend on that specific ordering.
diff --git a/src/passes/MemoryPacking.cpp b/src/passes/MemoryPacking.cpp
index 064d74e36..ad562faf4 100644
--- a/src/passes/MemoryPacking.cpp
+++ b/src/passes/MemoryPacking.cpp
@@ -500,7 +500,7 @@ void MemoryPacking::optimizeSegmentOps(Module* module) {
}
void doWalkFunction(Function* func) {
needsRefinalizing = false;
- super::doWalkFunction(func);
+ Super::doWalkFunction(func);
if (needsRefinalizing) {
ReFinalize().walkFunctionInModule(func, getModule());
}
diff --git a/src/passes/MergeLocals.cpp b/src/passes/MergeLocals.cpp
index b669c20d3..94710d641 100644
--- a/src/passes/MergeLocals.cpp
+++ b/src/passes/MergeLocals.cpp
@@ -81,7 +81,7 @@ struct MergeLocals
// have a new assignment of $y at the location of the copy,
// which makes it easy for us to see if the value if $y
// is still used after that point
- super::doWalkFunction(func);
+ Super::doWalkFunction(func);
// optimize the copies, merging when we can, and removing
// the trivial assigns we added temporarily
diff --git a/src/passes/MultiMemoryLowering.cpp b/src/passes/MultiMemoryLowering.cpp
index 0367afa98..b214959f7 100644
--- a/src/passes/MultiMemoryLowering.cpp
+++ b/src/passes/MultiMemoryLowering.cpp
@@ -109,7 +109,7 @@ struct MultiMemoryLowering : public Pass {
return;
}
}
- super::walkFunction(func);
+ Super::walkFunction(func);
}
void visitMemoryGrow(MemoryGrow* curr) {
diff --git a/src/passes/OptimizeAddedConstants.cpp b/src/passes/OptimizeAddedConstants.cpp
index 8efbcca26..c76711d8a 100644
--- a/src/passes/OptimizeAddedConstants.cpp
+++ b/src/passes/OptimizeAddedConstants.cpp
@@ -304,7 +304,7 @@ struct OptimizeAddedConstants
localGraph->computeSSAIndexes();
findPropagatable();
}
- super::doWalkFunction(func);
+ Super::doWalkFunction(func);
if (!helperIndexes.empty()) {
createHelperIndexes();
}
diff --git a/src/passes/OptimizeInstructions.cpp b/src/passes/OptimizeInstructions.cpp
index 21bd0c5ea..fff18b925 100644
--- a/src/passes/OptimizeInstructions.cpp
+++ b/src/passes/OptimizeInstructions.cpp
@@ -238,7 +238,7 @@ struct OptimizeInstructions
}
// Main walk.
- super::doWalkFunction(func);
+ Super::doWalkFunction(func);
if (refinalize) {
ReFinalize().walkFunctionInModule(func, getModule());
diff --git a/src/passes/Precompute.cpp b/src/passes/Precompute.cpp
index 0d2df04d7..780945b46 100644
--- a/src/passes/Precompute.cpp
+++ b/src/passes/Precompute.cpp
@@ -250,7 +250,7 @@ struct Precompute
canPartiallyPrecompute = getPassOptions().optimizeLevel >= 2;
// Walk the function and precompute things.
- super::doWalkFunction(func);
+ Super::doWalkFunction(func);
partiallyPrecompute(func);
if (!propagate) {
return;
@@ -264,7 +264,7 @@ struct Precompute
// We found constants to propagate and entered them in getValues. Do
// another walk to apply them and perhaps other optimizations that are
// unlocked.
- super::doWalkFunction(func);
+ Super::doWalkFunction(func);
// We could also try to partially precompute again, but that is a somewhat
// heavy operation, so we only do it the first time, and leave such things
// for later runs of this pass and for --converge.
diff --git a/src/passes/RemoveUnusedBrs.cpp b/src/passes/RemoveUnusedBrs.cpp
index fcb4ea56a..7fe169bdb 100644
--- a/src/passes/RemoveUnusedBrs.cpp
+++ b/src/passes/RemoveUnusedBrs.cpp
@@ -485,7 +485,7 @@ struct RemoveUnusedBrs : public WalkerPass<PostWalker<RemoveUnusedBrs>> {
self->pushTask(clear, currp); // clear all flow after the condition
self->pushTask(scan, &iff->condition);
} else {
- super::scan(self, currp);
+ Super::scan(self, currp);
}
}
@@ -921,7 +921,7 @@ struct RemoveUnusedBrs : public WalkerPass<PostWalker<RemoveUnusedBrs>> {
// multiple cycles may be needed
do {
anotherCycle = false;
- super::doWalkFunction(func);
+ Super::doWalkFunction(func);
assert(ifStack.empty());
// flows may contain returns, which are flowing out and so can be
// optimized
diff --git a/src/passes/SignExtLowering.cpp b/src/passes/SignExtLowering.cpp
index beb36494f..659dc4b51 100644
--- a/src/passes/SignExtLowering.cpp
+++ b/src/passes/SignExtLowering.cpp
@@ -73,7 +73,7 @@ struct SignExtLowering : public WalkerPass<PostWalker<SignExtLowering>> {
if (!module->features.has(FeatureSet::SignExt)) {
return;
}
- super::run(module);
+ Super::run(module);
module->features.disable(FeatureSet::SignExt);
}
};
diff --git a/src/passes/SimplifyGlobals.cpp b/src/passes/SimplifyGlobals.cpp
index 461fe2890..ccfee5e65 100644
--- a/src/passes/SimplifyGlobals.cpp
+++ b/src/passes/SimplifyGlobals.cpp
@@ -336,7 +336,7 @@ struct ConstantGlobalApplier
: public WalkerPass<
LinearExecutionWalker<ConstantGlobalApplier,
UnifiedExpressionVisitor<ConstantGlobalApplier>>> {
- using super = WalkerPass<
+ using Super = WalkerPass<
LinearExecutionWalker<ConstantGlobalApplier,
UnifiedExpressionVisitor<ConstantGlobalApplier>>>;
@@ -361,7 +361,7 @@ struct ConstantGlobalApplier
// This operation will change the type, so refinalize.
refinalize = true;
}
- super::replaceCurrent(rep);
+ Super::replaceCurrent(rep);
}
void visitExpression(Expression* curr) {
diff --git a/src/passes/SpillPointers.cpp b/src/passes/SpillPointers.cpp
index 3af7039cd..db7fca85a 100644
--- a/src/passes/SpillPointers.cpp
+++ b/src/passes/SpillPointers.cpp
@@ -69,7 +69,7 @@ struct SpillPointers
// main entry point
void doWalkFunction(Function* func) {
- super::doWalkFunction(func);
+ Super::doWalkFunction(func);
spillPointers();
}
diff --git a/src/passes/Table64Lowering.cpp b/src/passes/Table64Lowering.cpp
index 71fc6a6fe..b4a538df9 100644
--- a/src/passes/Table64Lowering.cpp
+++ b/src/passes/Table64Lowering.cpp
@@ -138,7 +138,7 @@ struct Table64Lowering : public WalkerPass<PostWalker<Table64Lowering>> {
}
void run(Module* module) override {
- super::run(module);
+ Super::run(module);
// Don't modify the tables themselves until after the traversal since we
// that would require tables to be the last thing that get visited, and
// we don't want to depend on that specific ordering.
diff --git a/src/passes/TranslateEH.cpp b/src/passes/TranslateEH.cpp
index 5c34a902b..a3411cda9 100644
--- a/src/passes/TranslateEH.cpp
+++ b/src/passes/TranslateEH.cpp
@@ -806,7 +806,7 @@ struct TranslateToExnref : public WalkerPass<PostWalker<TranslateToExnref>> {
delegateTargetToTrampoline[target] = labels->getUnique(target.toString());
}
- super::doWalkFunction(func);
+ Super::doWalkFunction(func);
// Similar to processDelegateTarget(), but for the caller target.
if (delegateTargetToTrampoline.find(DELEGATE_CALLER_TARGET) !=
diff --git a/src/passes/TrapMode.cpp b/src/passes/TrapMode.cpp
index 3b62b0573..f269f081f 100644
--- a/src/passes/TrapMode.cpp
+++ b/src/passes/TrapMode.cpp
@@ -323,7 +323,7 @@ public:
void doWalkModule(Module* module) {
trappingFunctions =
std::make_unique<TrappingFunctionContainer>(mode, *module);
- super::doWalkModule(module);
+ Super::doWalkModule(module);
}
private:
diff --git a/src/passes/TupleOptimization.cpp b/src/passes/TupleOptimization.cpp
index ca704f1a3..c4fd51b16 100644
--- a/src/passes/TupleOptimization.cpp
+++ b/src/passes/TupleOptimization.cpp
@@ -102,7 +102,7 @@ struct TupleOptimization : public WalkerPass<PostWalker<TupleOptimization>> {
copiedIndexes.resize(numLocals);
// Walk the code to collect info.
- super::doWalkFunction(func);
+ Super::doWalkFunction(func);
// Analyze and optimize.
optimize(func);
diff --git a/src/passes/TypeGeneralizing.cpp b/src/passes/TypeGeneralizing.cpp
index fad55e506..c0359b897 100644
--- a/src/passes/TypeGeneralizing.cpp
+++ b/src/passes/TypeGeneralizing.cpp
@@ -908,7 +908,7 @@ struct TypeGeneralizing : WalkerPass<PostWalker<TypeGeneralizing>> {
}
// Update gets and sets accordingly.
- super::runOnFunction(wasm, func);
+ Super::runOnFunction(wasm, func);
if (refinalize) {
ReFinalize().walkFunctionInModule(func, wasm);