1 //===- unittest/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp -------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "TestVisitor.h"
10 #include "clang/AST/LexicallyOrderedRecursiveASTVisitor.h"
13 using namespace clang
;
17 class DummyMatchVisitor
;
19 class LexicallyOrderedDeclVisitor
20 : public LexicallyOrderedRecursiveASTVisitor
<LexicallyOrderedDeclVisitor
> {
22 LexicallyOrderedDeclVisitor(DummyMatchVisitor
&Matcher
,
23 const SourceManager
&SM
, bool EmitDeclIndices
,
25 : LexicallyOrderedRecursiveASTVisitor(SM
), Matcher(Matcher
),
26 EmitDeclIndices(EmitDeclIndices
), EmitStmtIndices(EmitStmtIndices
) {}
28 bool TraverseDecl(Decl
*D
) {
29 TraversalStack
.push_back(D
);
30 LexicallyOrderedRecursiveASTVisitor::TraverseDecl(D
);
31 TraversalStack
.pop_back();
35 bool TraverseStmt(Stmt
*S
);
37 bool VisitNamedDecl(const NamedDecl
*D
);
38 bool VisitDeclRefExpr(const DeclRefExpr
*D
);
41 DummyMatchVisitor
&Matcher
;
42 bool EmitDeclIndices
, EmitStmtIndices
;
44 llvm::SmallVector
<Decl
*, 8> TraversalStack
;
47 class DummyMatchVisitor
: public ExpectedLocationVisitor
{
48 bool EmitDeclIndices
, EmitStmtIndices
;
51 DummyMatchVisitor(bool EmitDeclIndices
= false, bool EmitStmtIndices
= false)
52 : EmitDeclIndices(EmitDeclIndices
), EmitStmtIndices(EmitStmtIndices
) {}
54 bool VisitTranslationUnitDecl(TranslationUnitDecl
*TU
) override
{
55 const ASTContext
&Context
= TU
->getASTContext();
56 const SourceManager
&SM
= Context
.getSourceManager();
57 LexicallyOrderedDeclVisitor
SubVisitor(*this, SM
, EmitDeclIndices
,
59 SubVisitor
.TraverseDecl(TU
);
63 template <class T
> void match(StringRef Path
, const T
*D
) {
64 Match(Path
, D
->getBeginLoc());
68 bool LexicallyOrderedDeclVisitor::TraverseStmt(Stmt
*S
) {
69 Matcher
.match("overridden TraverseStmt", S
);
70 return LexicallyOrderedRecursiveASTVisitor::TraverseStmt(S
);
73 bool LexicallyOrderedDeclVisitor::VisitNamedDecl(const NamedDecl
*D
) {
75 llvm::raw_string_ostream
OS(Path
);
76 assert(TraversalStack
.back() == D
);
77 for (const Decl
*D
: TraversalStack
) {
78 if (isa
<TranslationUnitDecl
>(D
)) {
82 if (const auto *ND
= dyn_cast
<NamedDecl
>(D
))
83 OS
<< ND
->getNameAsString();
86 if (isa
<DeclContext
>(D
) || isa
<TemplateDecl
>(D
))
91 Matcher
.match(Path
, D
);
95 bool LexicallyOrderedDeclVisitor::VisitDeclRefExpr(const DeclRefExpr
*D
) {
96 std::string Name
= D
->getFoundDecl()->getNameAsString();
97 llvm::raw_string_ostream
OS(Name
);
100 Matcher
.match(Name
, D
);
104 TEST(LexicallyOrderedRecursiveASTVisitor
, VisitDeclsInImplementation
) {
105 StringRef Source
= R
"(
110 int nestedFunction() { }
114 int anotherNestedFunction(int x) {
118 int innerVariable = 0;
122 int outerVariable = 0;
124 @implementation I(Cat)
130 void outerFunction() { }
132 DummyMatchVisitor Visitor
;
133 Visitor
.DisallowMatch("/nestedFunction/", 6, 1);
134 Visitor
.ExpectMatch("/I/nestedFunction/", 6, 1);
135 Visitor
.ExpectMatch("/I/method/", 8, 1);
136 Visitor
.DisallowMatch("/anotherNestedFunction/", 10, 1);
137 Visitor
.ExpectMatch("/I/anotherNestedFunction/", 10, 1);
138 Visitor
.DisallowMatch("/innerVariable", 14, 1);
139 Visitor
.ExpectMatch("/I/innerVariable", 14, 1);
140 Visitor
.ExpectMatch("/outerVariable", 18, 1);
141 Visitor
.DisallowMatch("/catF/", 22, 1);
142 Visitor
.ExpectMatch("/Cat/catF/", 22, 1);
143 Visitor
.ExpectMatch("/outerFunction/", 26, 1);
144 EXPECT_TRUE(Visitor
.runOver(Source
, DummyMatchVisitor::Lang_OBJC
));
147 TEST(LexicallyOrderedRecursiveASTVisitor
, VisitMacroDeclsInImplementation
) {
148 StringRef Source
= R
"(
152 void outerFunction() { }
154 #define MACRO_F(x) void nestedFunction##x() { }
164 DummyMatchVisitor Visitor
;
165 Visitor
.ExpectMatch("/outerFunction/", 5, 1);
166 Visitor
.ExpectMatch("/I/nestedFunction1/", 7, 20);
167 Visitor
.ExpectMatch("/nestedFunction2/", 7, 20);
168 EXPECT_TRUE(Visitor
.runOver(Source
, DummyMatchVisitor::Lang_OBJC
));
171 TEST(LexicallyOrderedRecursiveASTVisitor
, VisitTemplateDecl
) {
172 StringRef Source
= R
"(
173 template <class T> T f();
174 template <class U, class = void> class Class {};
176 DummyMatchVisitor
Visitor(/*EmitIndices=*/true);
177 Visitor
.ExpectMatch("/f/T@1", 2, 11);
178 Visitor
.ExpectMatch("/f/f/@2", 2, 20);
179 Visitor
.ExpectMatch("/Class/U@4", 3, 11);
180 Visitor
.ExpectMatch("/Class/@5", 3, 20);
181 Visitor
.ExpectMatch("/Class/Class/@6", 3, 34);
182 EXPECT_TRUE(Visitor
.runOver(Source
));
185 TEST(LexicallyOrderedRecursiveASTVisitor
, VisitCXXOperatorCallExpr
) {
186 StringRef Source
= R
"(
192 void operator()(int, int);
193 void operator[](int);
207 DummyMatchVisitor
Visitor(/*EmitDeclIndices=*/false,
208 /*EmitStmtIndices=*/true);
209 // There are two overloaded operators that start at this point
210 // This makes sure they are both traversed using the overridden
211 // TraverseStmt, as the traversal is implemented by us for
212 // CXXOperatorCallExpr.
213 Visitor
.ExpectMatch("overridden TraverseStmt", 14, 3, 2);
214 Visitor
.ExpectMatch("a@0", 14, 3);
215 Visitor
.ExpectMatch("operator=@1", 14, 5);
216 Visitor
.ExpectMatch("b@2", 14, 7);
217 Visitor
.ExpectMatch("operator+@3", 14, 9);
218 Visitor
.ExpectMatch("c@4", 14, 11);
219 Visitor
.ExpectMatch("operator->@6", 15, 4);
220 Visitor
.ExpectMatch("operator()@8", 16, 4);
221 Visitor
.ExpectMatch("operator[]@10", 17, 4);
222 Visitor
.ExpectMatch("operator++@11", 18, 3);
223 Visitor
.ExpectMatch("operator++@14", 19, 4);
224 EXPECT_TRUE(Visitor
.runOver(Source
));
227 } // end anonymous namespace