summaryrefslogtreecommitdiff
path: root/src/analysis/powerset-lattice-impl.h
diff options
context:
space:
mode:
authorBruce He <44327446+zm2he@users.noreply.github.com>2023-06-23 22:56:48 +0000
committerGitHub <noreply@github.com>2023-06-23 18:56:48 -0400
commitfd9d04ccd615b185e65a765e3587eae3f72aa867 (patch)
tree69e7890a23a8bfc5c2cfcf61ae37abc48830d13b /src/analysis/powerset-lattice-impl.h
parent1545deb41194b205c6aba4e940f3db56cdec795f (diff)
downloadbinaryen-fd9d04ccd615b185e65a765e3587eae3f72aa867.tar.gz
binaryen-fd9d04ccd615b185e65a765e3587eae3f72aa867.tar.bz2
binaryen-fd9d04ccd615b185e65a765e3587eae3f72aa867.zip
Liveness Analysis Proof of Concept (#5771)
This introduces a limited monotone flow-sensitive liveness analysis on local indices as an initial proof of concept for the creation of a monotone flow-sensitive static analysis framework. Tests are included in test/gtest/cfg.cpp.
Diffstat (limited to 'src/analysis/powerset-lattice-impl.h')
-rw-r--r--src/analysis/powerset-lattice-impl.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/analysis/powerset-lattice-impl.h b/src/analysis/powerset-lattice-impl.h
new file mode 100644
index 000000000..6207c2bec
--- /dev/null
+++ b/src/analysis/powerset-lattice-impl.h
@@ -0,0 +1,67 @@
+#ifndef wasm_analysis_lattice_impl_h
+#define wasm_analysis_lattice_impl_h
+
+#include "lattice.h"
+
+namespace wasm::analysis {
+
+template<size_t N>
+inline BitsetPowersetLattice<N> BitsetPowersetLattice<N>::getBottom() {
+ // Return the empty set as the bottom lattice element.
+ BitsetPowersetLattice<N> result{0};
+ return result;
+}
+
+template<size_t N>
+inline bool
+BitsetPowersetLattice<N>::isTop(const BitsetPowersetLattice<N>& element) {
+ // Top lattice element is the set containing all possible elements.
+ return element.value.all();
+}
+
+template<size_t N>
+inline bool
+BitsetPowersetLattice<N>::isBottom(const BitsetPowersetLattice<N>& element) {
+ // Bottom lattice element is the empty set.
+ return element.value.none();
+}
+
+template<size_t N>
+inline LatticeComparison
+BitsetPowersetLattice<N>::compare(const BitsetPowersetLattice<N>& left,
+ const BitsetPowersetLattice<N>& right) {
+ size_t leftCount = left.value.count();
+ size_t rightCount = right.value.count();
+
+ // If left has more elements, left might be a superset of right.
+ if (leftCount > rightCount) {
+ if ((left.value | right.value) == left.value) {
+ return GREATER;
+ }
+ // If right has more elements, right might be a superset of left.
+ } else if (leftCount < rightCount) {
+ if ((left.value | right.value) == right.value) {
+ return LESS;
+ }
+ } else if (left.value == right.value) {
+ return EQUAL;
+ }
+
+ return NO_RELATION;
+}
+
+// Implement LUB as an OR of the two bitsets.
+template<size_t N>
+inline void BitsetPowersetLattice<N>::getLeastUpperBound(
+ const BitsetPowersetLattice<N>& right) {
+ value |= right.value;
+}
+
+template<size_t N>
+inline void BitsetPowersetLattice<N>::print(std::ostream& os) {
+ os << value;
+}
+
+}; // namespace wasm::analysis
+
+#endif // wasm_analysis_lattice_impl_h