From: Martin Braenne Date: Thu, 20 Jul 2023 11:12:58 +0000 (+0000) Subject: [clang][dataflow] Remove checks that test for consistency between `StructValue` and... X-Git-Tag: upstream/17.0.6~560 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c3cf630d80a26a3bfc0845592f86e555addce3ca;p=platform%2Fupstream%2Fllvm.git [clang][dataflow] Remove checks that test for consistency between `StructValue` and `AggregateStorageLocation`. Now that the redundancy between these two classes has been eliminated, these checks aren't needed any more. Reviewed By: ymandel, xazax.hun Differential Revision: https://reviews.llvm.org/D155813 --- diff --git a/clang/unittests/Analysis/FlowSensitive/TransferTest.cpp b/clang/unittests/Analysis/FlowSensitive/TransferTest.cpp index 78f13a0..edd015b 100644 --- a/clang/unittests/Analysis/FlowSensitive/TransferTest.cpp +++ b/clang/unittests/Analysis/FlowSensitive/TransferTest.cpp @@ -27,11 +27,6 @@ #include #include -// FIXME: There are still remaining checks here that check for consistency -// between `StructValue` and `AggregateStorageLocation`. Now that the redundancy -// between these two classes has been eliminated, these checks aren't needed any -// more, so remove them. - namespace { using namespace clang; @@ -268,13 +263,7 @@ TEST(TransferTest, StructVarDecl) { const auto *FooLoc = cast(Env.getStorageLocation(*FooDecl)); - const auto *BarLoc = - cast(FooLoc->getChild(*BarDecl)); - - const auto *FooVal = cast(Env.getValue(*FooLoc)); - const auto *BarVal = - cast(getFieldValue(FooVal, *BarDecl, Env)); - EXPECT_EQ(Env.getValue(*BarLoc), BarVal); + EXPECT_TRUE(isa(getFieldValue(FooLoc, *BarDecl, Env))); }); } @@ -317,13 +306,7 @@ TEST(TransferTest, StructVarDeclWithInit) { const auto *FooLoc = cast(Env.getStorageLocation(*FooDecl)); - const auto *BarLoc = - cast(FooLoc->getChild(*BarDecl)); - - const auto *FooVal = cast(Env.getValue(*FooLoc)); - const auto *BarVal = - cast(getFieldValue(FooVal, *BarDecl, Env)); - EXPECT_EQ(Env.getValue(*BarLoc), BarVal); + EXPECT_TRUE(isa(getFieldValue(FooLoc, *BarDecl, Env))); }); } @@ -365,13 +348,7 @@ TEST(TransferTest, ClassVarDecl) { const auto *FooLoc = cast(Env.getStorageLocation(*FooDecl)); - const auto *BarLoc = - cast(FooLoc->getChild(*BarDecl)); - - const auto *FooVal = cast(Env.getValue(*FooLoc)); - const auto *BarVal = - cast(getFieldValue(FooVal, *BarDecl, Env)); - EXPECT_EQ(Env.getValue(*BarLoc), BarVal); + EXPECT_TRUE(isa(getFieldValue(FooLoc, *BarDecl, Env))); }); } @@ -1046,13 +1023,7 @@ TEST(TransferTest, StructParamDecl) { const auto *FooLoc = cast(Env.getStorageLocation(*FooDecl)); - const auto *BarLoc = - cast(FooLoc->getChild(*BarDecl)); - - const auto *FooVal = cast(Env.getValue(*FooLoc)); - const auto *BarVal = - cast(getFieldValue(FooVal, *BarDecl, Env)); - EXPECT_EQ(Env.getValue(*BarLoc), BarVal); + EXPECT_TRUE(isa(getFieldValue(FooLoc, *BarDecl, Env))); }); } @@ -1150,9 +1121,8 @@ TEST(TransferTest, StructMember) { const auto *FooLoc = cast(Env.getStorageLocation(*FooDecl)); - const auto *FooVal = cast(Env.getValue(*FooLoc)); const auto *BarVal = - cast(getFieldValue(FooVal, *BarDecl, Env)); + cast(getFieldValue(FooLoc, *BarDecl, Env)); const ValueDecl *BazDecl = findValueDecl(ASTCtx, "Baz"); ASSERT_THAT(BazDecl, NotNull()); @@ -1392,9 +1362,8 @@ TEST(TransferTest, ClassMember) { const auto *FooLoc = cast(Env.getStorageLocation(*FooDecl)); - const auto *FooVal = cast(Env.getValue(*FooLoc)); const auto *BarVal = - cast(getFieldValue(FooVal, *BarDecl, Env)); + cast(getFieldValue(FooLoc, *BarDecl, Env)); const ValueDecl *BazDecl = findValueDecl(ASTCtx, "Baz"); ASSERT_THAT(BazDecl, NotNull()); @@ -1553,14 +1522,10 @@ TEST(TransferTest, StructThisMember) { const auto *QuxLoc = cast(ThisLoc->getChild(*QuxDecl)); - const auto *QuxVal = dyn_cast(Env.getValue(*QuxLoc)); - ASSERT_THAT(QuxVal, NotNull()); + EXPECT_THAT(dyn_cast(Env.getValue(*QuxLoc)), NotNull()); - const auto *BazLoc = - cast(QuxLoc->getChild(*BazDecl)); const auto *BazVal = - cast(getFieldValue(QuxVal, *BazDecl, Env)); - EXPECT_EQ(Env.getValue(*BazLoc), BazVal); + cast(getFieldValue(QuxLoc, *BazDecl, Env)); const ValueDecl *QuuxDecl = findValueDecl(ASTCtx, "Quux"); ASSERT_THAT(QuuxDecl, NotNull()); @@ -1628,14 +1593,10 @@ TEST(TransferTest, ClassThisMember) { const auto *QuxLoc = cast(ThisLoc->getChild(*QuxDecl)); - const auto *QuxVal = dyn_cast(Env.getValue(*QuxLoc)); - ASSERT_THAT(QuxVal, NotNull()); + EXPECT_THAT(dyn_cast(Env.getValue(*QuxLoc)), NotNull()); - const auto *BazLoc = - cast(QuxLoc->getChild(*BazDecl)); const auto *BazVal = - cast(getFieldValue(QuxVal, *BazDecl, Env)); - EXPECT_EQ(Env.getValue(*BazLoc), BazVal); + cast(getFieldValue(QuxLoc, *BazDecl, Env)); const ValueDecl *QuuxDecl = findValueDecl(ASTCtx, "Quux"); ASSERT_THAT(QuuxDecl, NotNull()); @@ -1915,13 +1876,7 @@ TEST(TransferTest, TemporaryObject) { const auto *FooLoc = cast(Env.getStorageLocation(*FooDecl)); - const auto *BarLoc = - cast(FooLoc->getChild(*BarDecl)); - - const auto *FooVal = cast(Env.getValue(*FooLoc)); - const auto *BarVal = - cast(getFieldValue(FooVal, *BarDecl, Env)); - EXPECT_EQ(Env.getValue(*BarLoc), BarVal); + EXPECT_TRUE(isa(getFieldValue(FooLoc, *BarDecl, Env))); }); } @@ -1954,13 +1909,7 @@ TEST(TransferTest, ElidableConstructor) { const auto *FooLoc = cast(Env.getStorageLocation(*FooDecl)); - const auto *BarLoc = - cast(FooLoc->getChild(*BarDecl)); - - const auto *FooVal = cast(Env.getValue(*FooLoc)); - const auto *BarVal = - cast(getFieldValue(FooVal, *BarDecl, Env)); - EXPECT_EQ(Env.getValue(*BarLoc), BarVal); + EXPECT_TRUE(isa(getFieldValue(FooLoc, *BarDecl, Env))); }, LangStandard::lang_cxx14); } @@ -2973,20 +2922,15 @@ TEST(TransferTest, AssignToUnionMember) { ASSERT_THAT(BazLoc, NotNull()); ASSERT_THAT(Env.getValue(*BazLoc), NotNull()); - const auto *BazVal = cast(Env.getValue(*BazLoc)); - const auto *FooValFromBazVal = - cast(getFieldValue(BazVal, *FooDecl, Env)); - const auto *FooValFromBazLoc = + const auto *FooVal = cast(getFieldValue(BazLoc, *FooDecl, Env)); - EXPECT_EQ(FooValFromBazLoc, FooValFromBazVal); const ValueDecl *BarDecl = findValueDecl(ASTCtx, "Bar"); ASSERT_THAT(BarDecl, NotNull()); const auto *BarLoc = Env.getStorageLocation(*BarDecl); ASSERT_TRUE(isa_and_nonnull(BarLoc)); - EXPECT_EQ(Env.getValue(*BarLoc), FooValFromBazVal); - EXPECT_EQ(Env.getValue(*BarLoc), FooValFromBazLoc); + EXPECT_EQ(Env.getValue(*BarLoc), FooVal); }); }