summaryrefslogtreecommitdiff
path: root/test/gtest
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2023-10-25 19:43:29 +0200
committerGitHub <noreply@github.com>2023-10-25 19:43:29 +0200
commit9af7abd106e6e1b1dccdd70125a761b385f653d8 (patch)
treed5abf8978ce9715b8b623833aa809e1ad1f4591a /test/gtest
parentef8e424ac85a4d719233764f980a331842af6907 (diff)
downloadbinaryen-9af7abd106e6e1b1dccdd70125a761b385f653d8.tar.gz
binaryen-9af7abd106e6e1b1dccdd70125a761b385f653d8.tar.bz2
binaryen-9af7abd106e6e1b1dccdd70125a761b385f653d8.zip
[analysis][NFC] Rename `makeLeastUpperBound` to `join` and move it to lattice (#6035)
In general, the operation of taking the least upper bound of two lattice elements may depend on some state stored in the lattice object rather than in the elements themselves. To avoid forcing the elements to be larger and more complicated in that case (by storing a parent pointer back to the lattice), move the least upper bound operation to make it a method of the lattice rather than the lattice element. This is also more consistent with where we put e.g. the `compare` method. While we are at it, rename `makeLeastUpperBound` to `join`, which is much shorter and nicer. Usually we avoid using esoteric mathematical jargon like this, but "join" as a normal verb actually describes the operation nicely, so I think it is ok in this case.
Diffstat (limited to 'test/gtest')
-rw-r--r--test/gtest/cfg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gtest/cfg.cpp b/test/gtest/cfg.cpp
index 9c6e8573a..9f037e644 100644
--- a/test/gtest/cfg.cpp
+++ b/test/gtest/cfg.cpp
@@ -164,7 +164,7 @@ TEST_F(CFGTest, FinitePowersetLatticeFunctioning) {
element2.print(ss);
EXPECT_EQ(ss.str(), "100101");
ss.str(std::string());
- element2.makeLeastUpperBound(element1);
+ lattice.join(element2, element1);
element2.print(ss);
EXPECT_EQ(ss.str(), "101101");
}
@@ -496,7 +496,7 @@ TEST_F(CFGTest, StackLatticeFunctioning) {
EXPECT_EQ(stackLattice.compare(thirdStack, expectedStack),
LatticeComparison::EQUAL);
- EXPECT_EQ(thirdStack.makeLeastUpperBound(secondStack), true);
+ EXPECT_TRUE(stackLattice.join(thirdStack, secondStack));
{
expectedStack.stackTop().set(0, true);