diff options
author | Bruce He <44327446+zm2he@users.noreply.github.com> | 2023-07-06 21:39:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-06 17:39:17 -0400 |
commit | cdb7aeab40b4c522de20b242019f7e88641445d5 (patch) | |
tree | a9609ec7537cb3b758dd592b03efc4c0183915de /src/analysis/powerset-lattice-impl.h | |
parent | eb185f5d0706927db5917bf111afa73c6989b249 (diff) | |
download | binaryen-cdb7aeab40b4c522de20b242019f7e88641445d5.tar.gz binaryen-cdb7aeab40b4c522de20b242019f7e88641445d5.tar.bz2 binaryen-cdb7aeab40b4c522de20b242019f7e88641445d5.zip |
Generalize Finite Powerset Lattice to Any Given Type (#5800)
This change creates a lattice, FinitePowersetLattice, to represent finite
powerset lattices constructed from sets containing members of arbitrary type
The bitvector finite powerset lattice class is renamed FiniteIntPowersetLattice.
The templated FinitePowersetLattice class contains a FiniteIntPowersetLattice
object, and over that provides functionality to map lattice element members
to bitvector indices. Methods are also provided by the lattice to add or
remove members of the given type from lattice members as an abstraction
over flipping bits in the bitvector.
Diffstat (limited to 'src/analysis/powerset-lattice-impl.h')
-rw-r--r-- | src/analysis/powerset-lattice-impl.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/analysis/powerset-lattice-impl.h b/src/analysis/powerset-lattice-impl.h index 24931618a..e4e6dd4cf 100644 --- a/src/analysis/powerset-lattice-impl.h +++ b/src/analysis/powerset-lattice-impl.h @@ -5,9 +5,9 @@ namespace wasm::analysis { -inline LatticeComparison -FinitePowersetLattice::compare(const FinitePowersetLattice::Element& left, - const FinitePowersetLattice::Element& right) { +inline LatticeComparison FiniteIntPowersetLattice::compare( + const FiniteIntPowersetLattice::Element& left, + const FiniteIntPowersetLattice::Element& right) { // Both must be from the powerset lattice of the same set. assert(left.bitvector.size() == right.bitvector.size()); @@ -41,14 +41,14 @@ FinitePowersetLattice::compare(const FinitePowersetLattice::Element& left, return NO_RELATION; } -inline FinitePowersetLattice::Element FinitePowersetLattice::getBottom() { - FinitePowersetLattice::Element result(setSize); +inline FiniteIntPowersetLattice::Element FiniteIntPowersetLattice::getBottom() { + FiniteIntPowersetLattice::Element result(setSize); return result; } // We count the number of element members present in the element by counting the // trues in the bitvector. -inline size_t FinitePowersetLattice::Element::count() { +inline size_t FiniteIntPowersetLattice::Element::count() { size_t count = 0; for (auto it : bitvector) { count += it; @@ -59,8 +59,8 @@ inline size_t FinitePowersetLattice::Element::count() { // Least upper bound is implemented as a logical OR between the bitvectors on // both sides. We return true if a bit is flipped in-place on the left so the // worklist algorithm will know if when to enqueue more work. -inline bool FinitePowersetLattice::Element::makeLeastUpperBound( - const FinitePowersetLattice::Element& other) { +inline bool FiniteIntPowersetLattice::Element::makeLeastUpperBound( + const FiniteIntPowersetLattice::Element& other) { // Both must be from powerset lattice of the same set. assert(other.bitvector.size() == bitvector.size()); @@ -75,7 +75,7 @@ inline bool FinitePowersetLattice::Element::makeLeastUpperBound( return modified; } -inline void FinitePowersetLattice::Element::print(std::ostream& os) { +inline void FiniteIntPowersetLattice::Element::print(std::ostream& os) { // Element member 0 is on the left, element member N is on the right. for (auto it : bitvector) { os << it; |