summaryrefslogtreecommitdiff
path: root/src/analysis/monotone-analyzer-impl.h
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2023-11-02 21:50:25 +0100
committerGitHub <noreply@github.com>2023-11-02 13:50:25 -0700
commit4fba26a77ea344b8d2b49cc8e1afdc8fcda13e96 (patch)
tree5409b665b4610bc8c07f2e7629d5883f4f3c0633 /src/analysis/monotone-analyzer-impl.h
parent2c3860b8f6e9ba3e0878ecadfdef409da0f471b7 (diff)
downloadbinaryen-4fba26a77ea344b8d2b49cc8e1afdc8fcda13e96.tar.gz
binaryen-4fba26a77ea344b8d2b49cc8e1afdc8fcda13e96.tar.bz2
binaryen-4fba26a77ea344b8d2b49cc8e1afdc8fcda13e96.zip
[analysis] Make it easier to implement a transfer function (#6077)
Combine the `transfer` and `getDependents` methods of a transfer function so that a transfer function only has to implement `transfer`, which now returns a range of basic blocks that may need to be re-analyzed. To make it easier to implement the returned basic block range, change the requirement so that it provides iterators to `const BasicBlock*` rather than `BasicBlock`. This allows us to entirely remove cfg-impl.h.
Diffstat (limited to 'src/analysis/monotone-analyzer-impl.h')
-rw-r--r--src/analysis/monotone-analyzer-impl.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/analysis/monotone-analyzer-impl.h b/src/analysis/monotone-analyzer-impl.h
index 1f8182908..fc2fbf706 100644
--- a/src/analysis/monotone-analyzer-impl.h
+++ b/src/analysis/monotone-analyzer-impl.h
@@ -37,16 +37,13 @@ inline void MonotoneCFGAnalyzer<L, TxFn>::evaluate() {
Index i = worklist.pop();
// Apply the transfer function to the input state to compute the output
- // state for the block.
+ // state, then propagate the output state to the dependent blocks.
auto state = states[i];
- txfn.transfer(cfg[i], state);
-
- // Propagate state to the dependent blocks.
- for (auto& dep : txfn.getDependents(cfg[i])) {
+ for (const auto* dep : txfn.transfer(cfg[i], state)) {
// If the input state for the dependent block changes, we need to
// re-analyze it.
- if (lattice.join(states[dep.getIndex()], state)) {
- worklist.push(dep.getIndex());
+ if (lattice.join(states[dep->getIndex()], state)) {
+ worklist.push(dep->getIndex());
}
}
}
@@ -73,11 +70,11 @@ inline void MonotoneCFGAnalyzer<L, TxFn>::print(std::ostream& os) {
os << "Input State: ";
states[i].print(os);
for (auto& pred : cfg[i].preds()) {
- os << " " << pred.getIndex();
+ os << " " << pred->getIndex();
}
os << std::endl << "Successors:";
for (auto& succ : cfg[i].succs()) {
- os << " " << succ.getIndex();
+ os << " " << succ->getIndex();
}
os << "\n";
txfn.print(os, cfg[i], states[i]);