diff options
author | Thomas Lively <tlively@google.com> | 2023-11-01 19:09:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-01 19:09:26 +0100 |
commit | 5618d2179e44252025831506a7b8b4dba25e7f2f (patch) | |
tree | b6a1ac162f3f849a865e67ae16ef26dc64f6f54b /src | |
parent | 74237bf7825cb9a2f0a83d73e239ed7a66a174a3 (diff) | |
download | binaryen-5618d2179e44252025831506a7b8b4dba25e7f2f.tar.gz binaryen-5618d2179e44252025831506a7b8b4dba25e7f2f.tar.bz2 binaryen-5618d2179e44252025831506a7b8b4dba25e7f2f.zip |
[analysis][NFC] Refactor lattice unit tests (#6065)
Many of the lattice tests were essentially copy-pasted from one lattice to the
next because they all tested isomorphic subsets of the various lattices,
specifically in the shape of a diamond. Refactor the code so that all lattices
that have tests of this shape use the same utility test functions.
Diffstat (limited to 'src')
-rw-r--r-- | src/analysis/lattices/flat.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/analysis/lattices/flat.h b/src/analysis/lattices/flat.h index 432171d32..39c067dc0 100644 --- a/src/analysis/lattices/flat.h +++ b/src/analysis/lattices/flat.h @@ -51,6 +51,13 @@ public: bool isTop() const noexcept { return std::get_if<Top>(this); } const T* getVal() const noexcept { return std::get_if<T>(this); } T* getVal() noexcept { return std::get_if<T>(this); } + bool operator==(const Element& other) const noexcept { + return ((isBottom() && other.isBottom()) || (isTop() && other.isTop()) || + (getVal() && other.getVal() && *getVal() == *other.getVal())); + } + bool operator!=(const Element& other) const noexcept { + return !(*this == other); + } }; Element getBottom() const noexcept { return Element{Bot{}}; } |