From: Yitzhak Mandelbaum Date: Wed, 7 Jul 2021 14:26:06 +0000 (+0000) Subject: [libTooling] Add support for implicit `this` to `buildAddressOf`. X-Git-Tag: llvmorg-14-init~2113 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d2e32fa493a272c21dee2c6cbf52e501f9ee3908;p=platform%2Fupstream%2Fllvm.git [libTooling] Add support for implicit `this` to `buildAddressOf`. Changes `buildAddressOf` to return `this` when given an implicit `this` expression. Differential Revision: https://reviews.llvm.org/D105551 --- diff --git a/clang/lib/Tooling/Transformer/SourceCodeBuilders.cpp b/clang/lib/Tooling/Transformer/SourceCodeBuilders.cpp index 56ec45e..a1c99b6 100644 --- a/clang/lib/Tooling/Transformer/SourceCodeBuilders.cpp +++ b/clang/lib/Tooling/Transformer/SourceCodeBuilders.cpp @@ -93,6 +93,8 @@ tooling::buildDereference(const Expr &E, const ASTContext &Context) { llvm::Optional tooling::buildAddressOf(const Expr &E, const ASTContext &Context) { + if (E.isImplicitCXXThis()) + return std::string("this"); if (const auto *Op = dyn_cast(&E)) if (Op->getOpcode() == UO_Deref) { // Strip leading '*'. diff --git a/clang/unittests/Tooling/SourceCodeBuildersTest.cpp b/clang/unittests/Tooling/SourceCodeBuildersTest.cpp index b6f6aba..ce99d1e 100644 --- a/clang/unittests/Tooling/SourceCodeBuildersTest.cpp +++ b/clang/unittests/Tooling/SourceCodeBuildersTest.cpp @@ -172,6 +172,24 @@ TEST(SourceCodeBuildersTest, BuildAddressOfBinaryOperation) { testBuilder(buildAddressOf, "S x; x + x;", "&(x + x)"); } +TEST(SourceCodeBuildersTest, BuildAddressOfImplicitThis) { + StringRef Snippet = R"cc( + struct Struct { + void foo() {} + void bar() { + foo(); + } + }; + )cc"; + auto StmtMatch = matchStmt( + Snippet, + cxxMemberCallExpr(onImplicitObjectArgument(cxxThisExpr().bind("expr")))); + ASSERT_TRUE(StmtMatch); + EXPECT_THAT(buildAddressOf(*StmtMatch->Result.Nodes.getNodeAs("expr"), + *StmtMatch->Result.Context), + ValueIs(std::string("this"))); +} + TEST(SourceCodeBuildersTest, BuildDereferencePointer) { testBuilder(buildDereference, "S *x; x;", "*x"); }