blob: df61a5783bcca670d78296aeb34676d697543d4c [file] [log] [blame]
Guy Benyei11169dd2012-12-18 14:30:41 +00001//===- CIndex.cpp - Clang-C Source Indexing Library -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the main API hooks in the Clang-C Source Indexing
11// library.
12//
13//===----------------------------------------------------------------------===//
14
Guy Benyei11169dd2012-12-18 14:30:41 +000015#include "CIndexDiagnostic.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000016#include "CIndexer.h"
Chandler Carruth4b417452013-01-19 08:09:44 +000017#include "CLog.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000018#include "CXCursor.h"
19#include "CXSourceLocation.h"
20#include "CXString.h"
21#include "CXTranslationUnit.h"
22#include "CXType.h"
23#include "CursorVisitor.h"
David Blaikie0a4e61f2013-09-13 18:32:52 +000024#include "clang/AST/Attr.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000025#include "clang/AST/StmtVisitor.h"
26#include "clang/Basic/Diagnostic.h"
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +000027#include "clang/Basic/DiagnosticCategories.h"
28#include "clang/Basic/DiagnosticIDs.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000029#include "clang/Basic/Version.h"
30#include "clang/Frontend/ASTUnit.h"
31#include "clang/Frontend/CompilerInstance.h"
32#include "clang/Frontend/FrontendDiagnostic.h"
Argyrios Kyrtzidisca741ce2016-02-14 22:30:14 +000033#include "clang/Index/CodegenNameGenerator.h"
Dmitri Gribenko9e605112013-11-13 22:16:51 +000034#include "clang/Index/CommentToXML.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000035#include "clang/Lex/HeaderSearch.h"
36#include "clang/Lex/Lexer.h"
37#include "clang/Lex/PreprocessingRecord.h"
38#include "clang/Lex/Preprocessor.h"
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +000039#include "clang/Serialization/SerializationDiagnostic.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000040#include "llvm/ADT/Optional.h"
41#include "llvm/ADT/STLExtras.h"
42#include "llvm/ADT/StringSwitch.h"
Alp Toker1d257e12014-06-04 03:28:55 +000043#include "llvm/Config/llvm-config.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000044#include "llvm/Support/Compiler.h"
45#include "llvm/Support/CrashRecoveryContext.h"
Chandler Carruth4b417452013-01-19 08:09:44 +000046#include "llvm/Support/Format.h"
Chandler Carruth37ad2582014-06-27 15:14:39 +000047#include "llvm/Support/ManagedStatic.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000048#include "llvm/Support/MemoryBuffer.h"
49#include "llvm/Support/Mutex.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000050#include "llvm/Support/Program.h"
51#include "llvm/Support/SaveAndRestore.h"
52#include "llvm/Support/Signals.h"
Adrian Prantlbc068582015-07-08 01:00:30 +000053#include "llvm/Support/TargetSelect.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000054#include "llvm/Support/Threading.h"
55#include "llvm/Support/Timer.h"
56#include "llvm/Support/raw_ostream.h"
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +000057
Alp Toker1a86ad22014-07-06 06:24:00 +000058#if LLVM_ENABLE_THREADS != 0 && defined(__APPLE__)
59#define USE_DARWIN_THREADS
60#endif
61
62#ifdef USE_DARWIN_THREADS
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +000063#include <pthread.h>
64#endif
Guy Benyei11169dd2012-12-18 14:30:41 +000065
66using namespace clang;
67using namespace clang::cxcursor;
Guy Benyei11169dd2012-12-18 14:30:41 +000068using namespace clang::cxtu;
69using namespace clang::cxindex;
70
Dmitri Gribenkod36209e2013-01-26 21:32:42 +000071CXTranslationUnit cxtu::MakeCXTranslationUnit(CIndexer *CIdx, ASTUnit *AU) {
72 if (!AU)
Craig Topper69186e72014-06-08 08:38:04 +000073 return nullptr;
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +000074 assert(CIdx);
Guy Benyei11169dd2012-12-18 14:30:41 +000075 CXTranslationUnit D = new CXTranslationUnitImpl();
76 D->CIdx = CIdx;
Dmitri Gribenkod36209e2013-01-26 21:32:42 +000077 D->TheASTUnit = AU;
Dmitri Gribenko74895212013-02-03 13:52:47 +000078 D->StringPool = new cxstring::CXStringPool();
Craig Topper69186e72014-06-08 08:38:04 +000079 D->Diagnostics = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +000080 D->OverridenCursorsPool = createOverridenCXCursorsPool();
Craig Topper69186e72014-06-08 08:38:04 +000081 D->CommentToXML = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +000082 return D;
83}
84
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +000085bool cxtu::isASTReadError(ASTUnit *AU) {
86 for (ASTUnit::stored_diag_iterator D = AU->stored_diag_begin(),
87 DEnd = AU->stored_diag_end();
88 D != DEnd; ++D) {
89 if (D->getLevel() >= DiagnosticsEngine::Error &&
90 DiagnosticIDs::getCategoryNumberForDiag(D->getID()) ==
91 diag::DiagCat_AST_Deserialization_Issue)
92 return true;
93 }
94 return false;
95}
96
Guy Benyei11169dd2012-12-18 14:30:41 +000097cxtu::CXTUOwner::~CXTUOwner() {
98 if (TU)
99 clang_disposeTranslationUnit(TU);
100}
101
102/// \brief Compare two source ranges to determine their relative position in
103/// the translation unit.
104static RangeComparisonResult RangeCompare(SourceManager &SM,
105 SourceRange R1,
106 SourceRange R2) {
107 assert(R1.isValid() && "First range is invalid?");
108 assert(R2.isValid() && "Second range is invalid?");
109 if (R1.getEnd() != R2.getBegin() &&
110 SM.isBeforeInTranslationUnit(R1.getEnd(), R2.getBegin()))
111 return RangeBefore;
112 if (R2.getEnd() != R1.getBegin() &&
113 SM.isBeforeInTranslationUnit(R2.getEnd(), R1.getBegin()))
114 return RangeAfter;
115 return RangeOverlap;
116}
117
118/// \brief Determine if a source location falls within, before, or after a
119/// a given source range.
120static RangeComparisonResult LocationCompare(SourceManager &SM,
121 SourceLocation L, SourceRange R) {
122 assert(R.isValid() && "First range is invalid?");
123 assert(L.isValid() && "Second range is invalid?");
124 if (L == R.getBegin() || L == R.getEnd())
125 return RangeOverlap;
126 if (SM.isBeforeInTranslationUnit(L, R.getBegin()))
127 return RangeBefore;
128 if (SM.isBeforeInTranslationUnit(R.getEnd(), L))
129 return RangeAfter;
130 return RangeOverlap;
131}
132
133/// \brief Translate a Clang source range into a CIndex source range.
134///
135/// Clang internally represents ranges where the end location points to the
136/// start of the token at the end. However, for external clients it is more
137/// useful to have a CXSourceRange be a proper half-open interval. This routine
138/// does the appropriate translation.
139CXSourceRange cxloc::translateSourceRange(const SourceManager &SM,
140 const LangOptions &LangOpts,
141 const CharSourceRange &R) {
142 // We want the last character in this location, so we will adjust the
143 // location accordingly.
144 SourceLocation EndLoc = R.getEnd();
145 if (EndLoc.isValid() && EndLoc.isMacroID() && !SM.isMacroArgExpansion(EndLoc))
146 EndLoc = SM.getExpansionRange(EndLoc).second;
Yaron Keren8b563662015-10-03 10:46:20 +0000147 if (R.isTokenRange() && EndLoc.isValid()) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000148 unsigned Length = Lexer::MeasureTokenLength(SM.getSpellingLoc(EndLoc),
149 SM, LangOpts);
150 EndLoc = EndLoc.getLocWithOffset(Length);
151 }
152
Bill Wendlingeade3622013-01-23 08:25:41 +0000153 CXSourceRange Result = {
Dmitri Gribenkof9304482013-01-23 15:56:07 +0000154 { &SM, &LangOpts },
Bill Wendlingeade3622013-01-23 08:25:41 +0000155 R.getBegin().getRawEncoding(),
156 EndLoc.getRawEncoding()
157 };
Guy Benyei11169dd2012-12-18 14:30:41 +0000158 return Result;
159}
160
161//===----------------------------------------------------------------------===//
162// Cursor visitor.
163//===----------------------------------------------------------------------===//
164
165static SourceRange getRawCursorExtent(CXCursor C);
166static SourceRange getFullCursorExtent(CXCursor C, SourceManager &SrcMgr);
167
168
169RangeComparisonResult CursorVisitor::CompareRegionOfInterest(SourceRange R) {
170 return RangeCompare(AU->getSourceManager(), R, RegionOfInterest);
171}
172
173/// \brief Visit the given cursor and, if requested by the visitor,
174/// its children.
175///
176/// \param Cursor the cursor to visit.
177///
178/// \param CheckedRegionOfInterest if true, then the caller already checked
179/// that this cursor is within the region of interest.
180///
181/// \returns true if the visitation should be aborted, false if it
182/// should continue.
183bool CursorVisitor::Visit(CXCursor Cursor, bool CheckedRegionOfInterest) {
184 if (clang_isInvalid(Cursor.kind))
185 return false;
186
187 if (clang_isDeclaration(Cursor.kind)) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +0000188 const Decl *D = getCursorDecl(Cursor);
Guy Benyei11169dd2012-12-18 14:30:41 +0000189 if (!D) {
190 assert(0 && "Invalid declaration cursor");
191 return true; // abort.
192 }
193
194 // Ignore implicit declarations, unless it's an objc method because
195 // currently we should report implicit methods for properties when indexing.
196 if (D->isImplicit() && !isa<ObjCMethodDecl>(D))
197 return false;
198 }
199
200 // If we have a range of interest, and this cursor doesn't intersect with it,
201 // we're done.
202 if (RegionOfInterest.isValid() && !CheckedRegionOfInterest) {
203 SourceRange Range = getRawCursorExtent(Cursor);
204 if (Range.isInvalid() || CompareRegionOfInterest(Range))
205 return false;
206 }
207
208 switch (Visitor(Cursor, Parent, ClientData)) {
209 case CXChildVisit_Break:
210 return true;
211
212 case CXChildVisit_Continue:
213 return false;
214
215 case CXChildVisit_Recurse: {
216 bool ret = VisitChildren(Cursor);
217 if (PostChildrenVisitor)
218 if (PostChildrenVisitor(Cursor, ClientData))
219 return true;
220 return ret;
221 }
222 }
223
224 llvm_unreachable("Invalid CXChildVisitResult!");
225}
226
227static bool visitPreprocessedEntitiesInRange(SourceRange R,
228 PreprocessingRecord &PPRec,
229 CursorVisitor &Visitor) {
230 SourceManager &SM = Visitor.getASTUnit()->getSourceManager();
231 FileID FID;
232
233 if (!Visitor.shouldVisitIncludedEntities()) {
234 // If the begin/end of the range lie in the same FileID, do the optimization
235 // where we skip preprocessed entities that do not come from the same FileID.
236 FID = SM.getFileID(SM.getFileLoc(R.getBegin()));
237 if (FID != SM.getFileID(SM.getFileLoc(R.getEnd())))
238 FID = FileID();
239 }
240
Benjamin Kramerb4ef6682015-02-06 17:25:10 +0000241 const auto &Entities = PPRec.getPreprocessedEntitiesInRange(R);
242 return Visitor.visitPreprocessedEntities(Entities.begin(), Entities.end(),
Guy Benyei11169dd2012-12-18 14:30:41 +0000243 PPRec, FID);
244}
245
Argyrios Kyrtzidis951f61f2013-03-08 20:42:33 +0000246bool CursorVisitor::visitFileRegion() {
Guy Benyei11169dd2012-12-18 14:30:41 +0000247 if (RegionOfInterest.isInvalid())
Argyrios Kyrtzidis951f61f2013-03-08 20:42:33 +0000248 return false;
Guy Benyei11169dd2012-12-18 14:30:41 +0000249
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +0000250 ASTUnit *Unit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +0000251 SourceManager &SM = Unit->getSourceManager();
252
253 std::pair<FileID, unsigned>
254 Begin = SM.getDecomposedLoc(SM.getFileLoc(RegionOfInterest.getBegin())),
255 End = SM.getDecomposedLoc(SM.getFileLoc(RegionOfInterest.getEnd()));
256
257 if (End.first != Begin.first) {
258 // If the end does not reside in the same file, try to recover by
259 // picking the end of the file of begin location.
260 End.first = Begin.first;
261 End.second = SM.getFileIDSize(Begin.first);
262 }
263
264 assert(Begin.first == End.first);
265 if (Begin.second > End.second)
Argyrios Kyrtzidis951f61f2013-03-08 20:42:33 +0000266 return false;
Guy Benyei11169dd2012-12-18 14:30:41 +0000267
268 FileID File = Begin.first;
269 unsigned Offset = Begin.second;
270 unsigned Length = End.second - Begin.second;
271
272 if (!VisitDeclsOnly && !VisitPreprocessorLast)
273 if (visitPreprocessedEntitiesInRegion())
Argyrios Kyrtzidis951f61f2013-03-08 20:42:33 +0000274 return true; // visitation break.
Guy Benyei11169dd2012-12-18 14:30:41 +0000275
Argyrios Kyrtzidis951f61f2013-03-08 20:42:33 +0000276 if (visitDeclsFromFileRegion(File, Offset, Length))
277 return true; // visitation break.
Guy Benyei11169dd2012-12-18 14:30:41 +0000278
279 if (!VisitDeclsOnly && VisitPreprocessorLast)
Argyrios Kyrtzidis951f61f2013-03-08 20:42:33 +0000280 return visitPreprocessedEntitiesInRegion();
281
282 return false;
Guy Benyei11169dd2012-12-18 14:30:41 +0000283}
284
285static bool isInLexicalContext(Decl *D, DeclContext *DC) {
286 if (!DC)
287 return false;
288
289 for (DeclContext *DeclDC = D->getLexicalDeclContext();
290 DeclDC; DeclDC = DeclDC->getLexicalParent()) {
291 if (DeclDC == DC)
292 return true;
293 }
294 return false;
295}
296
Argyrios Kyrtzidis951f61f2013-03-08 20:42:33 +0000297bool CursorVisitor::visitDeclsFromFileRegion(FileID File,
Guy Benyei11169dd2012-12-18 14:30:41 +0000298 unsigned Offset, unsigned Length) {
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +0000299 ASTUnit *Unit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +0000300 SourceManager &SM = Unit->getSourceManager();
301 SourceRange Range = RegionOfInterest;
302
303 SmallVector<Decl *, 16> Decls;
304 Unit->findFileRegionDecls(File, Offset, Length, Decls);
305
306 // If we didn't find any file level decls for the file, try looking at the
307 // file that it was included from.
308 while (Decls.empty() || Decls.front()->isTopLevelDeclInObjCContainer()) {
309 bool Invalid = false;
310 const SrcMgr::SLocEntry &SLEntry = SM.getSLocEntry(File, &Invalid);
311 if (Invalid)
Argyrios Kyrtzidis951f61f2013-03-08 20:42:33 +0000312 return false;
Guy Benyei11169dd2012-12-18 14:30:41 +0000313
314 SourceLocation Outer;
315 if (SLEntry.isFile())
316 Outer = SLEntry.getFile().getIncludeLoc();
317 else
318 Outer = SLEntry.getExpansion().getExpansionLocStart();
319 if (Outer.isInvalid())
Argyrios Kyrtzidis951f61f2013-03-08 20:42:33 +0000320 return false;
Guy Benyei11169dd2012-12-18 14:30:41 +0000321
Benjamin Kramer867ea1d2014-03-02 13:01:17 +0000322 std::tie(File, Offset) = SM.getDecomposedExpansionLoc(Outer);
Guy Benyei11169dd2012-12-18 14:30:41 +0000323 Length = 0;
324 Unit->findFileRegionDecls(File, Offset, Length, Decls);
325 }
326
327 assert(!Decls.empty());
328
329 bool VisitedAtLeastOnce = false;
Craig Topper69186e72014-06-08 08:38:04 +0000330 DeclContext *CurDC = nullptr;
Craig Topper2341c0d2013-07-04 03:08:24 +0000331 SmallVectorImpl<Decl *>::iterator DIt = Decls.begin();
332 for (SmallVectorImpl<Decl *>::iterator DE = Decls.end(); DIt != DE; ++DIt) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000333 Decl *D = *DIt;
334 if (D->getSourceRange().isInvalid())
335 continue;
336
337 if (isInLexicalContext(D, CurDC))
338 continue;
339
340 CurDC = dyn_cast<DeclContext>(D);
341
342 if (TagDecl *TD = dyn_cast<TagDecl>(D))
343 if (!TD->isFreeStanding())
344 continue;
345
346 RangeComparisonResult CompRes = RangeCompare(SM, D->getSourceRange(),Range);
347 if (CompRes == RangeBefore)
348 continue;
349 if (CompRes == RangeAfter)
350 break;
351
352 assert(CompRes == RangeOverlap);
353 VisitedAtLeastOnce = true;
354
355 if (isa<ObjCContainerDecl>(D)) {
356 FileDI_current = &DIt;
357 FileDE_current = DE;
358 } else {
Craig Topper69186e72014-06-08 08:38:04 +0000359 FileDI_current = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +0000360 }
361
362 if (Visit(MakeCXCursor(D, TU, Range), /*CheckedRegionOfInterest=*/true))
Argyrios Kyrtzidis951f61f2013-03-08 20:42:33 +0000363 return true; // visitation break.
Guy Benyei11169dd2012-12-18 14:30:41 +0000364 }
365
366 if (VisitedAtLeastOnce)
Argyrios Kyrtzidis951f61f2013-03-08 20:42:33 +0000367 return false;
Guy Benyei11169dd2012-12-18 14:30:41 +0000368
369 // No Decls overlapped with the range. Move up the lexical context until there
370 // is a context that contains the range or we reach the translation unit
371 // level.
372 DeclContext *DC = DIt == Decls.begin() ? (*DIt)->getLexicalDeclContext()
373 : (*(DIt-1))->getLexicalDeclContext();
374
375 while (DC && !DC->isTranslationUnit()) {
376 Decl *D = cast<Decl>(DC);
377 SourceRange CurDeclRange = D->getSourceRange();
378 if (CurDeclRange.isInvalid())
379 break;
380
381 if (RangeCompare(SM, CurDeclRange, Range) == RangeOverlap) {
Argyrios Kyrtzidis951f61f2013-03-08 20:42:33 +0000382 if (Visit(MakeCXCursor(D, TU, Range), /*CheckedRegionOfInterest=*/true))
383 return true; // visitation break.
Guy Benyei11169dd2012-12-18 14:30:41 +0000384 }
385
386 DC = D->getLexicalDeclContext();
387 }
Argyrios Kyrtzidis951f61f2013-03-08 20:42:33 +0000388
389 return false;
Guy Benyei11169dd2012-12-18 14:30:41 +0000390}
391
392bool CursorVisitor::visitPreprocessedEntitiesInRegion() {
393 if (!AU->getPreprocessor().getPreprocessingRecord())
394 return false;
395
396 PreprocessingRecord &PPRec
397 = *AU->getPreprocessor().getPreprocessingRecord();
398 SourceManager &SM = AU->getSourceManager();
399
400 if (RegionOfInterest.isValid()) {
401 SourceRange MappedRange = AU->mapRangeToPreamble(RegionOfInterest);
402 SourceLocation B = MappedRange.getBegin();
403 SourceLocation E = MappedRange.getEnd();
404
405 if (AU->isInPreambleFileID(B)) {
406 if (SM.isLoadedSourceLocation(E))
407 return visitPreprocessedEntitiesInRange(SourceRange(B, E),
408 PPRec, *this);
409
410 // Beginning of range lies in the preamble but it also extends beyond
411 // it into the main file. Split the range into 2 parts, one covering
412 // the preamble and another covering the main file. This allows subsequent
413 // calls to visitPreprocessedEntitiesInRange to accept a source range that
414 // lies in the same FileID, allowing it to skip preprocessed entities that
415 // do not come from the same FileID.
416 bool breaked =
417 visitPreprocessedEntitiesInRange(
418 SourceRange(B, AU->getEndOfPreambleFileID()),
419 PPRec, *this);
420 if (breaked) return true;
421 return visitPreprocessedEntitiesInRange(
422 SourceRange(AU->getStartOfMainFileID(), E),
423 PPRec, *this);
424 }
425
426 return visitPreprocessedEntitiesInRange(SourceRange(B, E), PPRec, *this);
427 }
428
429 bool OnlyLocalDecls
430 = !AU->isMainFileAST() && AU->getOnlyLocalDecls();
431
432 if (OnlyLocalDecls)
433 return visitPreprocessedEntities(PPRec.local_begin(), PPRec.local_end(),
434 PPRec);
435
436 return visitPreprocessedEntities(PPRec.begin(), PPRec.end(), PPRec);
437}
438
439template<typename InputIterator>
440bool CursorVisitor::visitPreprocessedEntities(InputIterator First,
441 InputIterator Last,
442 PreprocessingRecord &PPRec,
443 FileID FID) {
444 for (; First != Last; ++First) {
445 if (!FID.isInvalid() && !PPRec.isEntityInFileID(First, FID))
446 continue;
447
448 PreprocessedEntity *PPE = *First;
Argyrios Kyrtzidis1030f262013-05-07 20:37:17 +0000449 if (!PPE)
450 continue;
451
Guy Benyei11169dd2012-12-18 14:30:41 +0000452 if (MacroExpansion *ME = dyn_cast<MacroExpansion>(PPE)) {
453 if (Visit(MakeMacroExpansionCursor(ME, TU)))
454 return true;
Richard Smith66a81862015-05-04 02:25:31 +0000455
Guy Benyei11169dd2012-12-18 14:30:41 +0000456 continue;
457 }
Richard Smith66a81862015-05-04 02:25:31 +0000458
459 if (MacroDefinitionRecord *MD = dyn_cast<MacroDefinitionRecord>(PPE)) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000460 if (Visit(MakeMacroDefinitionCursor(MD, TU)))
461 return true;
Richard Smith66a81862015-05-04 02:25:31 +0000462
Guy Benyei11169dd2012-12-18 14:30:41 +0000463 continue;
464 }
465
466 if (InclusionDirective *ID = dyn_cast<InclusionDirective>(PPE)) {
467 if (Visit(MakeInclusionDirectiveCursor(ID, TU)))
468 return true;
469
470 continue;
471 }
472 }
473
474 return false;
475}
476
477/// \brief Visit the children of the given cursor.
478///
479/// \returns true if the visitation should be aborted, false if it
480/// should continue.
481bool CursorVisitor::VisitChildren(CXCursor Cursor) {
482 if (clang_isReference(Cursor.kind) &&
483 Cursor.kind != CXCursor_CXXBaseSpecifier) {
484 // By definition, references have no children.
485 return false;
486 }
487
488 // Set the Parent field to Cursor, then back to its old value once we're
489 // done.
490 SetParentRAII SetParent(Parent, StmtParent, Cursor);
491
492 if (clang_isDeclaration(Cursor.kind)) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +0000493 Decl *D = const_cast<Decl *>(getCursorDecl(Cursor));
Guy Benyei11169dd2012-12-18 14:30:41 +0000494 if (!D)
495 return false;
496
497 return VisitAttributes(D) || Visit(D);
498 }
499
500 if (clang_isStatement(Cursor.kind)) {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +0000501 if (const Stmt *S = getCursorStmt(Cursor))
Guy Benyei11169dd2012-12-18 14:30:41 +0000502 return Visit(S);
503
504 return false;
505 }
506
507 if (clang_isExpression(Cursor.kind)) {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +0000508 if (const Expr *E = getCursorExpr(Cursor))
Guy Benyei11169dd2012-12-18 14:30:41 +0000509 return Visit(E);
510
511 return false;
512 }
513
514 if (clang_isTranslationUnit(Cursor.kind)) {
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +0000515 CXTranslationUnit TU = getCursorTU(Cursor);
516 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +0000517
518 int VisitOrder[2] = { VisitPreprocessorLast, !VisitPreprocessorLast };
519 for (unsigned I = 0; I != 2; ++I) {
520 if (VisitOrder[I]) {
521 if (!CXXUnit->isMainFileAST() && CXXUnit->getOnlyLocalDecls() &&
522 RegionOfInterest.isInvalid()) {
523 for (ASTUnit::top_level_iterator TL = CXXUnit->top_level_begin(),
524 TLEnd = CXXUnit->top_level_end();
525 TL != TLEnd; ++TL) {
Argyrios Kyrtzidise7c91042016-07-01 19:10:54 +0000526 const Optional<bool> V = handleDeclForVisitation(*TL);
527 if (!V.hasValue())
528 continue;
529 return V.getValue();
Guy Benyei11169dd2012-12-18 14:30:41 +0000530 }
531 } else if (VisitDeclContext(
532 CXXUnit->getASTContext().getTranslationUnitDecl()))
533 return true;
534 continue;
535 }
536
537 // Walk the preprocessing record.
538 if (CXXUnit->getPreprocessor().getPreprocessingRecord())
539 visitPreprocessedEntitiesInRegion();
540 }
541
542 return false;
543 }
544
545 if (Cursor.kind == CXCursor_CXXBaseSpecifier) {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +0000546 if (const CXXBaseSpecifier *Base = getCursorCXXBaseSpecifier(Cursor)) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000547 if (TypeSourceInfo *BaseTSInfo = Base->getTypeSourceInfo()) {
548 return Visit(BaseTSInfo->getTypeLoc());
549 }
550 }
551 }
552
553 if (Cursor.kind == CXCursor_IBOutletCollectionAttr) {
Dmitri Gribenkoe4baea62013-01-26 18:08:08 +0000554 const IBOutletCollectionAttr *A =
Guy Benyei11169dd2012-12-18 14:30:41 +0000555 cast<IBOutletCollectionAttr>(cxcursor::getCursorAttr(Cursor));
Richard Smithb1f9a282013-10-31 01:56:18 +0000556 if (const ObjCObjectType *ObjT = A->getInterface()->getAs<ObjCObjectType>())
Richard Smithb87c4652013-10-31 21:23:20 +0000557 return Visit(cxcursor::MakeCursorObjCClassRef(
558 ObjT->getInterface(),
559 A->getInterfaceLoc()->getTypeLoc().getLocStart(), TU));
Guy Benyei11169dd2012-12-18 14:30:41 +0000560 }
561
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +0000562 // If pointing inside a macro definition, check if the token is an identifier
563 // that was ever defined as a macro. In such a case, create a "pseudo" macro
564 // expansion cursor for that token.
565 SourceLocation BeginLoc = RegionOfInterest.getBegin();
566 if (Cursor.kind == CXCursor_MacroDefinition &&
567 BeginLoc == RegionOfInterest.getEnd()) {
568 SourceLocation Loc = AU->mapLocationToPreamble(BeginLoc);
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +0000569 const MacroInfo *MI =
570 getMacroInfo(cxcursor::getCursorMacroDefinition(Cursor), TU);
Richard Smith66a81862015-05-04 02:25:31 +0000571 if (MacroDefinitionRecord *MacroDef =
572 checkForMacroInMacroDefinition(MI, Loc, TU))
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +0000573 return Visit(cxcursor::MakeMacroExpansionCursor(MacroDef, BeginLoc, TU));
574 }
575
Guy Benyei11169dd2012-12-18 14:30:41 +0000576 // Nothing to visit at the moment.
577 return false;
578}
579
580bool CursorVisitor::VisitBlockDecl(BlockDecl *B) {
581 if (TypeSourceInfo *TSInfo = B->getSignatureAsWritten())
582 if (Visit(TSInfo->getTypeLoc()))
583 return true;
584
585 if (Stmt *Body = B->getBody())
586 return Visit(MakeCXCursor(Body, StmtParent, TU, RegionOfInterest));
587
588 return false;
589}
590
Ted Kremenek03325582013-02-21 01:29:01 +0000591Optional<bool> CursorVisitor::shouldVisitCursor(CXCursor Cursor) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000592 if (RegionOfInterest.isValid()) {
593 SourceRange Range = getFullCursorExtent(Cursor, AU->getSourceManager());
594 if (Range.isInvalid())
David Blaikie7a30dc52013-02-21 01:47:18 +0000595 return None;
Guy Benyei11169dd2012-12-18 14:30:41 +0000596
597 switch (CompareRegionOfInterest(Range)) {
598 case RangeBefore:
599 // This declaration comes before the region of interest; skip it.
David Blaikie7a30dc52013-02-21 01:47:18 +0000600 return None;
Guy Benyei11169dd2012-12-18 14:30:41 +0000601
602 case RangeAfter:
603 // This declaration comes after the region of interest; we're done.
604 return false;
605
606 case RangeOverlap:
607 // This declaration overlaps the region of interest; visit it.
608 break;
609 }
610 }
611 return true;
612}
613
614bool CursorVisitor::VisitDeclContext(DeclContext *DC) {
615 DeclContext::decl_iterator I = DC->decls_begin(), E = DC->decls_end();
616
617 // FIXME: Eventually remove. This part of a hack to support proper
618 // iteration over all Decls contained lexically within an ObjC container.
619 SaveAndRestore<DeclContext::decl_iterator*> DI_saved(DI_current, &I);
620 SaveAndRestore<DeclContext::decl_iterator> DE_saved(DE_current, E);
621
622 for ( ; I != E; ++I) {
623 Decl *D = *I;
624 if (D->getLexicalDeclContext() != DC)
625 continue;
Argyrios Kyrtzidise7c91042016-07-01 19:10:54 +0000626 const Optional<bool> V = handleDeclForVisitation(D);
Guy Benyei11169dd2012-12-18 14:30:41 +0000627 if (!V.hasValue())
628 continue;
Argyrios Kyrtzidise7c91042016-07-01 19:10:54 +0000629 return V.getValue();
Guy Benyei11169dd2012-12-18 14:30:41 +0000630 }
631 return false;
632}
633
Argyrios Kyrtzidise7c91042016-07-01 19:10:54 +0000634Optional<bool> CursorVisitor::handleDeclForVisitation(const Decl *D) {
635 CXCursor Cursor = MakeCXCursor(D, TU, RegionOfInterest);
636
637 // Ignore synthesized ivars here, otherwise if we have something like:
638 // @synthesize prop = _prop;
639 // and '_prop' is not declared, we will encounter a '_prop' ivar before
640 // encountering the 'prop' synthesize declaration and we will think that
641 // we passed the region-of-interest.
642 if (auto *ivarD = dyn_cast<ObjCIvarDecl>(D)) {
643 if (ivarD->getSynthesize())
644 return None;
645 }
646
647 // FIXME: ObjCClassRef/ObjCProtocolRef for forward class/protocol
648 // declarations is a mismatch with the compiler semantics.
649 if (Cursor.kind == CXCursor_ObjCInterfaceDecl) {
650 auto *ID = cast<ObjCInterfaceDecl>(D);
651 if (!ID->isThisDeclarationADefinition())
652 Cursor = MakeCursorObjCClassRef(ID, ID->getLocation(), TU);
653
654 } else if (Cursor.kind == CXCursor_ObjCProtocolDecl) {
655 auto *PD = cast<ObjCProtocolDecl>(D);
656 if (!PD->isThisDeclarationADefinition())
657 Cursor = MakeCursorObjCProtocolRef(PD, PD->getLocation(), TU);
658 }
659
660 const Optional<bool> V = shouldVisitCursor(Cursor);
661 if (!V.hasValue())
662 return None;
663 if (!V.getValue())
664 return false;
665 if (Visit(Cursor, true))
666 return true;
667 return None;
668}
669
Guy Benyei11169dd2012-12-18 14:30:41 +0000670bool CursorVisitor::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
671 llvm_unreachable("Translation units are visited directly by Visit()");
672}
673
Sergey Kalinichev8f3b1872015-11-15 13:48:32 +0000674bool CursorVisitor::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
675 if (VisitTemplateParameters(D->getTemplateParameters()))
676 return true;
677
678 return Visit(MakeCXCursor(D->getTemplatedDecl(), TU, RegionOfInterest));
679}
680
Guy Benyei11169dd2012-12-18 14:30:41 +0000681bool CursorVisitor::VisitTypeAliasDecl(TypeAliasDecl *D) {
682 if (TypeSourceInfo *TSInfo = D->getTypeSourceInfo())
683 return Visit(TSInfo->getTypeLoc());
684
685 return false;
686}
687
688bool CursorVisitor::VisitTypedefDecl(TypedefDecl *D) {
689 if (TypeSourceInfo *TSInfo = D->getTypeSourceInfo())
690 return Visit(TSInfo->getTypeLoc());
691
692 return false;
693}
694
695bool CursorVisitor::VisitTagDecl(TagDecl *D) {
696 return VisitDeclContext(D);
697}
698
699bool CursorVisitor::VisitClassTemplateSpecializationDecl(
700 ClassTemplateSpecializationDecl *D) {
701 bool ShouldVisitBody = false;
702 switch (D->getSpecializationKind()) {
703 case TSK_Undeclared:
704 case TSK_ImplicitInstantiation:
705 // Nothing to visit
706 return false;
707
708 case TSK_ExplicitInstantiationDeclaration:
709 case TSK_ExplicitInstantiationDefinition:
710 break;
711
712 case TSK_ExplicitSpecialization:
713 ShouldVisitBody = true;
714 break;
715 }
716
717 // Visit the template arguments used in the specialization.
718 if (TypeSourceInfo *SpecType = D->getTypeAsWritten()) {
719 TypeLoc TL = SpecType->getTypeLoc();
David Blaikie6adc78e2013-02-18 22:06:02 +0000720 if (TemplateSpecializationTypeLoc TSTLoc =
721 TL.getAs<TemplateSpecializationTypeLoc>()) {
722 for (unsigned I = 0, N = TSTLoc.getNumArgs(); I != N; ++I)
723 if (VisitTemplateArgumentLoc(TSTLoc.getArgLoc(I)))
Guy Benyei11169dd2012-12-18 14:30:41 +0000724 return true;
725 }
726 }
Alexander Kornienko1a9f1842015-12-28 15:24:08 +0000727
728 return ShouldVisitBody && VisitCXXRecordDecl(D);
Guy Benyei11169dd2012-12-18 14:30:41 +0000729}
730
731bool CursorVisitor::VisitClassTemplatePartialSpecializationDecl(
732 ClassTemplatePartialSpecializationDecl *D) {
733 // FIXME: Visit the "outer" template parameter lists on the TagDecl
734 // before visiting these template parameters.
735 if (VisitTemplateParameters(D->getTemplateParameters()))
736 return true;
737
738 // Visit the partial specialization arguments.
Enea Zaffanella6dbe1872013-08-10 07:24:53 +0000739 const ASTTemplateArgumentListInfo *Info = D->getTemplateArgsAsWritten();
740 const TemplateArgumentLoc *TemplateArgs = Info->getTemplateArgs();
741 for (unsigned I = 0, N = Info->NumTemplateArgs; I != N; ++I)
Guy Benyei11169dd2012-12-18 14:30:41 +0000742 if (VisitTemplateArgumentLoc(TemplateArgs[I]))
743 return true;
744
745 return VisitCXXRecordDecl(D);
746}
747
748bool CursorVisitor::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) {
749 // Visit the default argument.
750 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited())
751 if (TypeSourceInfo *DefArg = D->getDefaultArgumentInfo())
752 if (Visit(DefArg->getTypeLoc()))
753 return true;
754
755 return false;
756}
757
758bool CursorVisitor::VisitEnumConstantDecl(EnumConstantDecl *D) {
759 if (Expr *Init = D->getInitExpr())
760 return Visit(MakeCXCursor(Init, StmtParent, TU, RegionOfInterest));
761 return false;
762}
763
764bool CursorVisitor::VisitDeclaratorDecl(DeclaratorDecl *DD) {
Argyrios Kyrtzidis2ec76742013-04-05 21:04:10 +0000765 unsigned NumParamList = DD->getNumTemplateParameterLists();
766 for (unsigned i = 0; i < NumParamList; i++) {
767 TemplateParameterList* Params = DD->getTemplateParameterList(i);
768 if (VisitTemplateParameters(Params))
769 return true;
770 }
771
Guy Benyei11169dd2012-12-18 14:30:41 +0000772 if (TypeSourceInfo *TSInfo = DD->getTypeSourceInfo())
773 if (Visit(TSInfo->getTypeLoc()))
774 return true;
775
776 // Visit the nested-name-specifier, if present.
777 if (NestedNameSpecifierLoc QualifierLoc = DD->getQualifierLoc())
778 if (VisitNestedNameSpecifierLoc(QualifierLoc))
779 return true;
780
781 return false;
782}
783
Benjamin Kramer4cadf292014-03-07 21:51:58 +0000784/// \brief Compare two base or member initializers based on their source order.
785static int CompareCXXCtorInitializers(CXXCtorInitializer *const *X,
786 CXXCtorInitializer *const *Y) {
787 return (*X)->getSourceOrder() - (*Y)->getSourceOrder();
788}
789
Guy Benyei11169dd2012-12-18 14:30:41 +0000790bool CursorVisitor::VisitFunctionDecl(FunctionDecl *ND) {
Argyrios Kyrtzidis2ec76742013-04-05 21:04:10 +0000791 unsigned NumParamList = ND->getNumTemplateParameterLists();
792 for (unsigned i = 0; i < NumParamList; i++) {
793 TemplateParameterList* Params = ND->getTemplateParameterList(i);
794 if (VisitTemplateParameters(Params))
795 return true;
796 }
797
Guy Benyei11169dd2012-12-18 14:30:41 +0000798 if (TypeSourceInfo *TSInfo = ND->getTypeSourceInfo()) {
799 // Visit the function declaration's syntactic components in the order
800 // written. This requires a bit of work.
801 TypeLoc TL = TSInfo->getTypeLoc().IgnoreParens();
David Blaikie6adc78e2013-02-18 22:06:02 +0000802 FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>();
Guy Benyei11169dd2012-12-18 14:30:41 +0000803
804 // If we have a function declared directly (without the use of a typedef),
805 // visit just the return type. Otherwise, just visit the function's type
806 // now.
Alp Toker42a16a62014-01-25 23:51:36 +0000807 if ((FTL && !isa<CXXConversionDecl>(ND) && Visit(FTL.getReturnLoc())) ||
Guy Benyei11169dd2012-12-18 14:30:41 +0000808 (!FTL && Visit(TL)))
809 return true;
810
811 // Visit the nested-name-specifier, if present.
812 if (NestedNameSpecifierLoc QualifierLoc = ND->getQualifierLoc())
813 if (VisitNestedNameSpecifierLoc(QualifierLoc))
814 return true;
815
816 // Visit the declaration name.
Argyrios Kyrtzidis4a4d2b42014-02-09 08:13:47 +0000817 if (!isa<CXXDestructorDecl>(ND))
818 if (VisitDeclarationNameInfo(ND->getNameInfo()))
819 return true;
Guy Benyei11169dd2012-12-18 14:30:41 +0000820
821 // FIXME: Visit explicitly-specified template arguments!
822
823 // Visit the function parameters, if we have a function type.
David Blaikie6adc78e2013-02-18 22:06:02 +0000824 if (FTL && VisitFunctionTypeLoc(FTL, true))
Guy Benyei11169dd2012-12-18 14:30:41 +0000825 return true;
826
Bill Wendling44426052012-12-20 19:22:21 +0000827 // FIXME: Attributes?
Guy Benyei11169dd2012-12-18 14:30:41 +0000828 }
829
830 if (ND->doesThisDeclarationHaveABody() && !ND->isLateTemplateParsed()) {
831 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(ND)) {
832 // Find the initializers that were written in the source.
833 SmallVector<CXXCtorInitializer *, 4> WrittenInits;
Aaron Ballman0ad78302014-03-13 17:34:31 +0000834 for (auto *I : Constructor->inits()) {
835 if (!I->isWritten())
Guy Benyei11169dd2012-12-18 14:30:41 +0000836 continue;
837
Aaron Ballman0ad78302014-03-13 17:34:31 +0000838 WrittenInits.push_back(I);
Guy Benyei11169dd2012-12-18 14:30:41 +0000839 }
840
841 // Sort the initializers in source order
Benjamin Kramer4cadf292014-03-07 21:51:58 +0000842 llvm::array_pod_sort(WrittenInits.begin(), WrittenInits.end(),
843 &CompareCXXCtorInitializers);
844
Guy Benyei11169dd2012-12-18 14:30:41 +0000845 // Visit the initializers in source order
846 for (unsigned I = 0, N = WrittenInits.size(); I != N; ++I) {
847 CXXCtorInitializer *Init = WrittenInits[I];
848 if (Init->isAnyMemberInitializer()) {
849 if (Visit(MakeCursorMemberRef(Init->getAnyMember(),
850 Init->getMemberLocation(), TU)))
851 return true;
852 } else if (TypeSourceInfo *TInfo = Init->getTypeSourceInfo()) {
853 if (Visit(TInfo->getTypeLoc()))
854 return true;
855 }
856
857 // Visit the initializer value.
858 if (Expr *Initializer = Init->getInit())
859 if (Visit(MakeCXCursor(Initializer, ND, TU, RegionOfInterest)))
860 return true;
861 }
862 }
863
864 if (Visit(MakeCXCursor(ND->getBody(), StmtParent, TU, RegionOfInterest)))
865 return true;
866 }
867
868 return false;
869}
870
871bool CursorVisitor::VisitFieldDecl(FieldDecl *D) {
872 if (VisitDeclaratorDecl(D))
873 return true;
874
875 if (Expr *BitWidth = D->getBitWidth())
876 return Visit(MakeCXCursor(BitWidth, StmtParent, TU, RegionOfInterest));
877
878 return false;
879}
880
881bool CursorVisitor::VisitVarDecl(VarDecl *D) {
882 if (VisitDeclaratorDecl(D))
883 return true;
884
885 if (Expr *Init = D->getInit())
886 return Visit(MakeCXCursor(Init, StmtParent, TU, RegionOfInterest));
887
888 return false;
889}
890
891bool CursorVisitor::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) {
892 if (VisitDeclaratorDecl(D))
893 return true;
894
895 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited())
896 if (Expr *DefArg = D->getDefaultArgument())
897 return Visit(MakeCXCursor(DefArg, StmtParent, TU, RegionOfInterest));
898
899 return false;
900}
901
902bool CursorVisitor::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
903 // FIXME: Visit the "outer" template parameter lists on the FunctionDecl
904 // before visiting these template parameters.
905 if (VisitTemplateParameters(D->getTemplateParameters()))
906 return true;
907
908 return VisitFunctionDecl(D->getTemplatedDecl());
909}
910
911bool CursorVisitor::VisitClassTemplateDecl(ClassTemplateDecl *D) {
912 // FIXME: Visit the "outer" template parameter lists on the TagDecl
913 // before visiting these template parameters.
914 if (VisitTemplateParameters(D->getTemplateParameters()))
915 return true;
916
917 return VisitCXXRecordDecl(D->getTemplatedDecl());
918}
919
920bool CursorVisitor::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) {
921 if (VisitTemplateParameters(D->getTemplateParameters()))
922 return true;
923
924 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited() &&
925 VisitTemplateArgumentLoc(D->getDefaultArgument()))
926 return true;
927
928 return false;
929}
930
Douglas Gregor9bda6cf2015-07-07 03:58:14 +0000931bool CursorVisitor::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) {
932 // Visit the bound, if it's explicit.
933 if (D->hasExplicitBound()) {
934 if (auto TInfo = D->getTypeSourceInfo()) {
935 if (Visit(TInfo->getTypeLoc()))
936 return true;
937 }
938 }
939
940 return false;
941}
942
Guy Benyei11169dd2012-12-18 14:30:41 +0000943bool CursorVisitor::VisitObjCMethodDecl(ObjCMethodDecl *ND) {
Alp Toker314cc812014-01-25 16:55:45 +0000944 if (TypeSourceInfo *TSInfo = ND->getReturnTypeSourceInfo())
Guy Benyei11169dd2012-12-18 14:30:41 +0000945 if (Visit(TSInfo->getTypeLoc()))
946 return true;
947
David Majnemer59f77922016-06-24 04:05:48 +0000948 for (const auto *P : ND->parameters()) {
Aaron Ballman43b68be2014-03-07 17:50:17 +0000949 if (Visit(MakeCXCursor(P, TU, RegionOfInterest)))
Guy Benyei11169dd2012-12-18 14:30:41 +0000950 return true;
951 }
952
Alexander Kornienko1a9f1842015-12-28 15:24:08 +0000953 return ND->isThisDeclarationADefinition() &&
954 Visit(MakeCXCursor(ND->getBody(), StmtParent, TU, RegionOfInterest));
Guy Benyei11169dd2012-12-18 14:30:41 +0000955}
956
957template <typename DeclIt>
958static void addRangedDeclsInContainer(DeclIt *DI_current, DeclIt DE_current,
959 SourceManager &SM, SourceLocation EndLoc,
960 SmallVectorImpl<Decl *> &Decls) {
961 DeclIt next = *DI_current;
962 while (++next != DE_current) {
963 Decl *D_next = *next;
964 if (!D_next)
965 break;
966 SourceLocation L = D_next->getLocStart();
967 if (!L.isValid())
968 break;
969 if (SM.isBeforeInTranslationUnit(L, EndLoc)) {
970 *DI_current = next;
971 Decls.push_back(D_next);
972 continue;
973 }
974 break;
975 }
976}
977
Guy Benyei11169dd2012-12-18 14:30:41 +0000978bool CursorVisitor::VisitObjCContainerDecl(ObjCContainerDecl *D) {
979 // FIXME: Eventually convert back to just 'VisitDeclContext()'. Essentially
980 // an @implementation can lexically contain Decls that are not properly
981 // nested in the AST. When we identify such cases, we need to retrofit
982 // this nesting here.
983 if (!DI_current && !FileDI_current)
984 return VisitDeclContext(D);
985
986 // Scan the Decls that immediately come after the container
987 // in the current DeclContext. If any fall within the
988 // container's lexical region, stash them into a vector
989 // for later processing.
990 SmallVector<Decl *, 24> DeclsInContainer;
991 SourceLocation EndLoc = D->getSourceRange().getEnd();
992 SourceManager &SM = AU->getSourceManager();
993 if (EndLoc.isValid()) {
994 if (DI_current) {
995 addRangedDeclsInContainer(DI_current, DE_current, SM, EndLoc,
996 DeclsInContainer);
997 } else {
998 addRangedDeclsInContainer(FileDI_current, FileDE_current, SM, EndLoc,
999 DeclsInContainer);
1000 }
1001 }
1002
1003 // The common case.
1004 if (DeclsInContainer.empty())
1005 return VisitDeclContext(D);
1006
1007 // Get all the Decls in the DeclContext, and sort them with the
1008 // additional ones we've collected. Then visit them.
Aaron Ballman629afae2014-03-07 19:56:05 +00001009 for (auto *SubDecl : D->decls()) {
1010 if (!SubDecl || SubDecl->getLexicalDeclContext() != D ||
1011 SubDecl->getLocStart().isInvalid())
Guy Benyei11169dd2012-12-18 14:30:41 +00001012 continue;
Aaron Ballman629afae2014-03-07 19:56:05 +00001013 DeclsInContainer.push_back(SubDecl);
Guy Benyei11169dd2012-12-18 14:30:41 +00001014 }
1015
1016 // Now sort the Decls so that they appear in lexical order.
1017 std::sort(DeclsInContainer.begin(), DeclsInContainer.end(),
Benjamin Kramerbbdd7642014-03-01 14:48:57 +00001018 [&SM](Decl *A, Decl *B) {
1019 SourceLocation L_A = A->getLocStart();
1020 SourceLocation L_B = B->getLocStart();
1021 assert(L_A.isValid() && L_B.isValid());
1022 return SM.isBeforeInTranslationUnit(L_A, L_B);
1023 });
Guy Benyei11169dd2012-12-18 14:30:41 +00001024
1025 // Now visit the decls.
1026 for (SmallVectorImpl<Decl*>::iterator I = DeclsInContainer.begin(),
1027 E = DeclsInContainer.end(); I != E; ++I) {
1028 CXCursor Cursor = MakeCXCursor(*I, TU, RegionOfInterest);
Ted Kremenek03325582013-02-21 01:29:01 +00001029 const Optional<bool> &V = shouldVisitCursor(Cursor);
Guy Benyei11169dd2012-12-18 14:30:41 +00001030 if (!V.hasValue())
1031 continue;
1032 if (!V.getValue())
1033 return false;
1034 if (Visit(Cursor, true))
1035 return true;
1036 }
1037 return false;
1038}
1039
1040bool CursorVisitor::VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
1041 if (Visit(MakeCursorObjCClassRef(ND->getClassInterface(), ND->getLocation(),
1042 TU)))
1043 return true;
1044
Douglas Gregore9d95f12015-07-07 03:57:35 +00001045 if (VisitObjCTypeParamList(ND->getTypeParamList()))
1046 return true;
1047
Guy Benyei11169dd2012-12-18 14:30:41 +00001048 ObjCCategoryDecl::protocol_loc_iterator PL = ND->protocol_loc_begin();
1049 for (ObjCCategoryDecl::protocol_iterator I = ND->protocol_begin(),
1050 E = ND->protocol_end(); I != E; ++I, ++PL)
1051 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
1052 return true;
1053
1054 return VisitObjCContainerDecl(ND);
1055}
1056
1057bool CursorVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
1058 if (!PID->isThisDeclarationADefinition())
1059 return Visit(MakeCursorObjCProtocolRef(PID, PID->getLocation(), TU));
1060
1061 ObjCProtocolDecl::protocol_loc_iterator PL = PID->protocol_loc_begin();
1062 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
1063 E = PID->protocol_end(); I != E; ++I, ++PL)
1064 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
1065 return true;
1066
1067 return VisitObjCContainerDecl(PID);
1068}
1069
1070bool CursorVisitor::VisitObjCPropertyDecl(ObjCPropertyDecl *PD) {
1071 if (PD->getTypeSourceInfo() && Visit(PD->getTypeSourceInfo()->getTypeLoc()))
1072 return true;
1073
1074 // FIXME: This implements a workaround with @property declarations also being
1075 // installed in the DeclContext for the @interface. Eventually this code
1076 // should be removed.
1077 ObjCCategoryDecl *CDecl = dyn_cast<ObjCCategoryDecl>(PD->getDeclContext());
1078 if (!CDecl || !CDecl->IsClassExtension())
1079 return false;
1080
1081 ObjCInterfaceDecl *ID = CDecl->getClassInterface();
1082 if (!ID)
1083 return false;
1084
1085 IdentifierInfo *PropertyId = PD->getIdentifier();
1086 ObjCPropertyDecl *prevDecl =
Manman Ren5b786402016-01-28 18:49:28 +00001087 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(ID), PropertyId,
1088 PD->getQueryKind());
Guy Benyei11169dd2012-12-18 14:30:41 +00001089
1090 if (!prevDecl)
1091 return false;
1092
1093 // Visit synthesized methods since they will be skipped when visiting
1094 // the @interface.
1095 if (ObjCMethodDecl *MD = prevDecl->getGetterMethodDecl())
1096 if (MD->isPropertyAccessor() && MD->getLexicalDeclContext() == CDecl)
1097 if (Visit(MakeCXCursor(MD, TU, RegionOfInterest)))
1098 return true;
1099
1100 if (ObjCMethodDecl *MD = prevDecl->getSetterMethodDecl())
1101 if (MD->isPropertyAccessor() && MD->getLexicalDeclContext() == CDecl)
1102 if (Visit(MakeCXCursor(MD, TU, RegionOfInterest)))
1103 return true;
1104
1105 return false;
1106}
1107
Douglas Gregore9d95f12015-07-07 03:57:35 +00001108bool CursorVisitor::VisitObjCTypeParamList(ObjCTypeParamList *typeParamList) {
1109 if (!typeParamList)
1110 return false;
1111
1112 for (auto *typeParam : *typeParamList) {
1113 // Visit the type parameter.
1114 if (Visit(MakeCXCursor(typeParam, TU, RegionOfInterest)))
1115 return true;
Douglas Gregore9d95f12015-07-07 03:57:35 +00001116 }
1117
1118 return false;
1119}
1120
Guy Benyei11169dd2012-12-18 14:30:41 +00001121bool CursorVisitor::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
1122 if (!D->isThisDeclarationADefinition()) {
1123 // Forward declaration is treated like a reference.
1124 return Visit(MakeCursorObjCClassRef(D, D->getLocation(), TU));
1125 }
1126
Douglas Gregore9d95f12015-07-07 03:57:35 +00001127 // Objective-C type parameters.
1128 if (VisitObjCTypeParamList(D->getTypeParamListAsWritten()))
1129 return true;
1130
Guy Benyei11169dd2012-12-18 14:30:41 +00001131 // Issue callbacks for super class.
1132 if (D->getSuperClass() &&
1133 Visit(MakeCursorObjCSuperClassRef(D->getSuperClass(),
1134 D->getSuperClassLoc(),
1135 TU)))
1136 return true;
1137
Douglas Gregore9d95f12015-07-07 03:57:35 +00001138 if (TypeSourceInfo *SuperClassTInfo = D->getSuperClassTInfo())
1139 if (Visit(SuperClassTInfo->getTypeLoc()))
1140 return true;
1141
Guy Benyei11169dd2012-12-18 14:30:41 +00001142 ObjCInterfaceDecl::protocol_loc_iterator PL = D->protocol_loc_begin();
1143 for (ObjCInterfaceDecl::protocol_iterator I = D->protocol_begin(),
1144 E = D->protocol_end(); I != E; ++I, ++PL)
1145 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
1146 return true;
1147
1148 return VisitObjCContainerDecl(D);
1149}
1150
1151bool CursorVisitor::VisitObjCImplDecl(ObjCImplDecl *D) {
1152 return VisitObjCContainerDecl(D);
1153}
1154
1155bool CursorVisitor::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
1156 // 'ID' could be null when dealing with invalid code.
1157 if (ObjCInterfaceDecl *ID = D->getClassInterface())
1158 if (Visit(MakeCursorObjCClassRef(ID, D->getLocation(), TU)))
1159 return true;
1160
1161 return VisitObjCImplDecl(D);
1162}
1163
1164bool CursorVisitor::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
1165#if 0
1166 // Issue callbacks for super class.
1167 // FIXME: No source location information!
1168 if (D->getSuperClass() &&
1169 Visit(MakeCursorObjCSuperClassRef(D->getSuperClass(),
1170 D->getSuperClassLoc(),
1171 TU)))
1172 return true;
1173#endif
1174
1175 return VisitObjCImplDecl(D);
1176}
1177
1178bool CursorVisitor::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PD) {
1179 if (ObjCIvarDecl *Ivar = PD->getPropertyIvarDecl())
1180 if (PD->isIvarNameSpecified())
1181 return Visit(MakeCursorMemberRef(Ivar, PD->getPropertyIvarDeclLoc(), TU));
1182
1183 return false;
1184}
1185
1186bool CursorVisitor::VisitNamespaceDecl(NamespaceDecl *D) {
1187 return VisitDeclContext(D);
1188}
1189
1190bool CursorVisitor::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
1191 // Visit nested-name-specifier.
1192 if (NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc())
1193 if (VisitNestedNameSpecifierLoc(QualifierLoc))
1194 return true;
1195
1196 return Visit(MakeCursorNamespaceRef(D->getAliasedNamespace(),
1197 D->getTargetNameLoc(), TU));
1198}
1199
1200bool CursorVisitor::VisitUsingDecl(UsingDecl *D) {
1201 // Visit nested-name-specifier.
1202 if (NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc()) {
1203 if (VisitNestedNameSpecifierLoc(QualifierLoc))
1204 return true;
1205 }
1206
1207 if (Visit(MakeCursorOverloadedDeclRef(D, D->getLocation(), TU)))
1208 return true;
1209
1210 return VisitDeclarationNameInfo(D->getNameInfo());
1211}
1212
1213bool CursorVisitor::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
1214 // Visit nested-name-specifier.
1215 if (NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc())
1216 if (VisitNestedNameSpecifierLoc(QualifierLoc))
1217 return true;
1218
1219 return Visit(MakeCursorNamespaceRef(D->getNominatedNamespaceAsWritten(),
1220 D->getIdentLocation(), TU));
1221}
1222
1223bool CursorVisitor::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
1224 // Visit nested-name-specifier.
1225 if (NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc()) {
1226 if (VisitNestedNameSpecifierLoc(QualifierLoc))
1227 return true;
1228 }
1229
1230 return VisitDeclarationNameInfo(D->getNameInfo());
1231}
1232
1233bool CursorVisitor::VisitUnresolvedUsingTypenameDecl(
1234 UnresolvedUsingTypenameDecl *D) {
1235 // Visit nested-name-specifier.
1236 if (NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc())
1237 if (VisitNestedNameSpecifierLoc(QualifierLoc))
1238 return true;
1239
1240 return false;
1241}
1242
Olivier Goffart81978012016-06-09 16:15:55 +00001243bool CursorVisitor::VisitStaticAssertDecl(StaticAssertDecl *D) {
1244 if (Visit(MakeCXCursor(D->getAssertExpr(), StmtParent, TU, RegionOfInterest)))
1245 return true;
Richard Trieuf3b77662016-09-13 01:37:01 +00001246 if (StringLiteral *Message = D->getMessage())
1247 if (Visit(MakeCXCursor(Message, StmtParent, TU, RegionOfInterest)))
1248 return true;
Olivier Goffart81978012016-06-09 16:15:55 +00001249 return false;
1250}
1251
Olivier Goffartd211c642016-11-04 06:29:27 +00001252bool CursorVisitor::VisitFriendDecl(FriendDecl *D) {
1253 if (NamedDecl *FriendD = D->getFriendDecl()) {
1254 if (Visit(MakeCXCursor(FriendD, TU, RegionOfInterest)))
1255 return true;
1256 } else if (TypeSourceInfo *TI = D->getFriendType()) {
1257 if (Visit(TI->getTypeLoc()))
1258 return true;
1259 }
1260 return false;
1261}
1262
Guy Benyei11169dd2012-12-18 14:30:41 +00001263bool CursorVisitor::VisitDeclarationNameInfo(DeclarationNameInfo Name) {
1264 switch (Name.getName().getNameKind()) {
1265 case clang::DeclarationName::Identifier:
1266 case clang::DeclarationName::CXXLiteralOperatorName:
1267 case clang::DeclarationName::CXXOperatorName:
1268 case clang::DeclarationName::CXXUsingDirective:
1269 return false;
1270
1271 case clang::DeclarationName::CXXConstructorName:
1272 case clang::DeclarationName::CXXDestructorName:
1273 case clang::DeclarationName::CXXConversionFunctionName:
1274 if (TypeSourceInfo *TSInfo = Name.getNamedTypeInfo())
1275 return Visit(TSInfo->getTypeLoc());
1276 return false;
1277
1278 case clang::DeclarationName::ObjCZeroArgSelector:
1279 case clang::DeclarationName::ObjCOneArgSelector:
1280 case clang::DeclarationName::ObjCMultiArgSelector:
1281 // FIXME: Per-identifier location info?
1282 return false;
1283 }
1284
1285 llvm_unreachable("Invalid DeclarationName::Kind!");
1286}
1287
1288bool CursorVisitor::VisitNestedNameSpecifier(NestedNameSpecifier *NNS,
1289 SourceRange Range) {
1290 // FIXME: This whole routine is a hack to work around the lack of proper
1291 // source information in nested-name-specifiers (PR5791). Since we do have
1292 // a beginning source location, we can visit the first component of the
1293 // nested-name-specifier, if it's a single-token component.
1294 if (!NNS)
1295 return false;
1296
1297 // Get the first component in the nested-name-specifier.
1298 while (NestedNameSpecifier *Prefix = NNS->getPrefix())
1299 NNS = Prefix;
1300
1301 switch (NNS->getKind()) {
1302 case NestedNameSpecifier::Namespace:
1303 return Visit(MakeCursorNamespaceRef(NNS->getAsNamespace(), Range.getBegin(),
1304 TU));
1305
1306 case NestedNameSpecifier::NamespaceAlias:
1307 return Visit(MakeCursorNamespaceRef(NNS->getAsNamespaceAlias(),
1308 Range.getBegin(), TU));
1309
1310 case NestedNameSpecifier::TypeSpec: {
1311 // If the type has a form where we know that the beginning of the source
1312 // range matches up with a reference cursor. Visit the appropriate reference
1313 // cursor.
1314 const Type *T = NNS->getAsType();
1315 if (const TypedefType *Typedef = dyn_cast<TypedefType>(T))
1316 return Visit(MakeCursorTypeRef(Typedef->getDecl(), Range.getBegin(), TU));
1317 if (const TagType *Tag = dyn_cast<TagType>(T))
1318 return Visit(MakeCursorTypeRef(Tag->getDecl(), Range.getBegin(), TU));
1319 if (const TemplateSpecializationType *TST
1320 = dyn_cast<TemplateSpecializationType>(T))
1321 return VisitTemplateName(TST->getTemplateName(), Range.getBegin());
1322 break;
1323 }
1324
1325 case NestedNameSpecifier::TypeSpecWithTemplate:
1326 case NestedNameSpecifier::Global:
1327 case NestedNameSpecifier::Identifier:
Nikola Smiljanic67860242014-09-26 00:28:20 +00001328 case NestedNameSpecifier::Super:
Guy Benyei11169dd2012-12-18 14:30:41 +00001329 break;
1330 }
1331
1332 return false;
1333}
1334
1335bool
1336CursorVisitor::VisitNestedNameSpecifierLoc(NestedNameSpecifierLoc Qualifier) {
1337 SmallVector<NestedNameSpecifierLoc, 4> Qualifiers;
1338 for (; Qualifier; Qualifier = Qualifier.getPrefix())
1339 Qualifiers.push_back(Qualifier);
1340
1341 while (!Qualifiers.empty()) {
1342 NestedNameSpecifierLoc Q = Qualifiers.pop_back_val();
1343 NestedNameSpecifier *NNS = Q.getNestedNameSpecifier();
1344 switch (NNS->getKind()) {
1345 case NestedNameSpecifier::Namespace:
1346 if (Visit(MakeCursorNamespaceRef(NNS->getAsNamespace(),
1347 Q.getLocalBeginLoc(),
1348 TU)))
1349 return true;
1350
1351 break;
1352
1353 case NestedNameSpecifier::NamespaceAlias:
1354 if (Visit(MakeCursorNamespaceRef(NNS->getAsNamespaceAlias(),
1355 Q.getLocalBeginLoc(),
1356 TU)))
1357 return true;
1358
1359 break;
1360
1361 case NestedNameSpecifier::TypeSpec:
1362 case NestedNameSpecifier::TypeSpecWithTemplate:
1363 if (Visit(Q.getTypeLoc()))
1364 return true;
1365
1366 break;
1367
1368 case NestedNameSpecifier::Global:
1369 case NestedNameSpecifier::Identifier:
Nikola Smiljanic67860242014-09-26 00:28:20 +00001370 case NestedNameSpecifier::Super:
Guy Benyei11169dd2012-12-18 14:30:41 +00001371 break;
1372 }
1373 }
1374
1375 return false;
1376}
1377
1378bool CursorVisitor::VisitTemplateParameters(
1379 const TemplateParameterList *Params) {
1380 if (!Params)
1381 return false;
1382
1383 for (TemplateParameterList::const_iterator P = Params->begin(),
1384 PEnd = Params->end();
1385 P != PEnd; ++P) {
1386 if (Visit(MakeCXCursor(*P, TU, RegionOfInterest)))
1387 return true;
1388 }
1389
1390 return false;
1391}
1392
1393bool CursorVisitor::VisitTemplateName(TemplateName Name, SourceLocation Loc) {
1394 switch (Name.getKind()) {
1395 case TemplateName::Template:
1396 return Visit(MakeCursorTemplateRef(Name.getAsTemplateDecl(), Loc, TU));
1397
1398 case TemplateName::OverloadedTemplate:
1399 // Visit the overloaded template set.
1400 if (Visit(MakeCursorOverloadedDeclRef(Name, Loc, TU)))
1401 return true;
1402
1403 return false;
1404
1405 case TemplateName::DependentTemplate:
1406 // FIXME: Visit nested-name-specifier.
1407 return false;
1408
1409 case TemplateName::QualifiedTemplate:
1410 // FIXME: Visit nested-name-specifier.
1411 return Visit(MakeCursorTemplateRef(
1412 Name.getAsQualifiedTemplateName()->getDecl(),
1413 Loc, TU));
1414
1415 case TemplateName::SubstTemplateTemplateParm:
1416 return Visit(MakeCursorTemplateRef(
1417 Name.getAsSubstTemplateTemplateParm()->getParameter(),
1418 Loc, TU));
1419
1420 case TemplateName::SubstTemplateTemplateParmPack:
1421 return Visit(MakeCursorTemplateRef(
1422 Name.getAsSubstTemplateTemplateParmPack()->getParameterPack(),
1423 Loc, TU));
1424 }
1425
1426 llvm_unreachable("Invalid TemplateName::Kind!");
1427}
1428
1429bool CursorVisitor::VisitTemplateArgumentLoc(const TemplateArgumentLoc &TAL) {
1430 switch (TAL.getArgument().getKind()) {
1431 case TemplateArgument::Null:
1432 case TemplateArgument::Integral:
1433 case TemplateArgument::Pack:
1434 return false;
1435
1436 case TemplateArgument::Type:
1437 if (TypeSourceInfo *TSInfo = TAL.getTypeSourceInfo())
1438 return Visit(TSInfo->getTypeLoc());
1439 return false;
1440
1441 case TemplateArgument::Declaration:
1442 if (Expr *E = TAL.getSourceDeclExpression())
1443 return Visit(MakeCXCursor(E, StmtParent, TU, RegionOfInterest));
1444 return false;
1445
1446 case TemplateArgument::NullPtr:
1447 if (Expr *E = TAL.getSourceNullPtrExpression())
1448 return Visit(MakeCXCursor(E, StmtParent, TU, RegionOfInterest));
1449 return false;
1450
1451 case TemplateArgument::Expression:
1452 if (Expr *E = TAL.getSourceExpression())
1453 return Visit(MakeCXCursor(E, StmtParent, TU, RegionOfInterest));
1454 return false;
1455
1456 case TemplateArgument::Template:
1457 case TemplateArgument::TemplateExpansion:
1458 if (VisitNestedNameSpecifierLoc(TAL.getTemplateQualifierLoc()))
1459 return true;
1460
1461 return VisitTemplateName(TAL.getArgument().getAsTemplateOrTemplatePattern(),
1462 TAL.getTemplateNameLoc());
1463 }
1464
1465 llvm_unreachable("Invalid TemplateArgument::Kind!");
1466}
1467
1468bool CursorVisitor::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
1469 return VisitDeclContext(D);
1470}
1471
1472bool CursorVisitor::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
1473 return Visit(TL.getUnqualifiedLoc());
1474}
1475
1476bool CursorVisitor::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
1477 ASTContext &Context = AU->getASTContext();
1478
1479 // Some builtin types (such as Objective-C's "id", "sel", and
1480 // "Class") have associated declarations. Create cursors for those.
1481 QualType VisitType;
1482 switch (TL.getTypePtr()->getKind()) {
1483
1484 case BuiltinType::Void:
1485 case BuiltinType::NullPtr:
1486 case BuiltinType::Dependent:
Alexey Bader954ba212016-04-08 13:40:33 +00001487#define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
1488 case BuiltinType::Id:
Alexey Baderb62f1442016-04-13 08:33:41 +00001489#include "clang/Basic/OpenCLImageTypes.def"
NAKAMURA Takumi288c42e2013-02-07 12:47:42 +00001490 case BuiltinType::OCLSampler:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00001491 case BuiltinType::OCLEvent:
Alexey Bader9c8453f2015-09-15 11:18:52 +00001492 case BuiltinType::OCLClkEvent:
1493 case BuiltinType::OCLQueue:
1494 case BuiltinType::OCLNDRange:
1495 case BuiltinType::OCLReserveID:
Guy Benyei11169dd2012-12-18 14:30:41 +00001496#define BUILTIN_TYPE(Id, SingletonId)
1497#define SIGNED_TYPE(Id, SingletonId) case BuiltinType::Id:
1498#define UNSIGNED_TYPE(Id, SingletonId) case BuiltinType::Id:
1499#define FLOATING_TYPE(Id, SingletonId) case BuiltinType::Id:
1500#define PLACEHOLDER_TYPE(Id, SingletonId) case BuiltinType::Id:
1501#include "clang/AST/BuiltinTypes.def"
1502 break;
1503
1504 case BuiltinType::ObjCId:
1505 VisitType = Context.getObjCIdType();
1506 break;
1507
1508 case BuiltinType::ObjCClass:
1509 VisitType = Context.getObjCClassType();
1510 break;
1511
1512 case BuiltinType::ObjCSel:
1513 VisitType = Context.getObjCSelType();
1514 break;
1515 }
1516
1517 if (!VisitType.isNull()) {
1518 if (const TypedefType *Typedef = VisitType->getAs<TypedefType>())
1519 return Visit(MakeCursorTypeRef(Typedef->getDecl(), TL.getBuiltinLoc(),
1520 TU));
1521 }
1522
1523 return false;
1524}
1525
1526bool CursorVisitor::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
1527 return Visit(MakeCursorTypeRef(TL.getTypedefNameDecl(), TL.getNameLoc(), TU));
1528}
1529
1530bool CursorVisitor::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
1531 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
1532}
1533
1534bool CursorVisitor::VisitTagTypeLoc(TagTypeLoc TL) {
1535 if (TL.isDefinition())
1536 return Visit(MakeCXCursor(TL.getDecl(), TU, RegionOfInterest));
1537
1538 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
1539}
1540
1541bool CursorVisitor::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
1542 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
1543}
1544
1545bool CursorVisitor::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
Hans Wennborg59dbe862015-09-29 20:56:43 +00001546 return Visit(MakeCursorObjCClassRef(TL.getIFaceDecl(), TL.getNameLoc(), TU));
Guy Benyei11169dd2012-12-18 14:30:41 +00001547}
1548
Manman Rene6be26c2016-09-13 17:25:08 +00001549bool CursorVisitor::VisitObjCTypeParamTypeLoc(ObjCTypeParamTypeLoc TL) {
1550 if (Visit(MakeCursorTypeRef(TL.getDecl(), TL.getLocStart(), TU)))
1551 return true;
1552 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {
1553 if (Visit(MakeCursorObjCProtocolRef(TL.getProtocol(I), TL.getProtocolLoc(I),
1554 TU)))
1555 return true;
1556 }
1557
1558 return false;
1559}
1560
Guy Benyei11169dd2012-12-18 14:30:41 +00001561bool CursorVisitor::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
1562 if (TL.hasBaseTypeAsWritten() && Visit(TL.getBaseLoc()))
1563 return true;
1564
Douglas Gregore9d95f12015-07-07 03:57:35 +00001565 for (unsigned I = 0, N = TL.getNumTypeArgs(); I != N; ++I) {
1566 if (Visit(TL.getTypeArgTInfo(I)->getTypeLoc()))
1567 return true;
1568 }
1569
Guy Benyei11169dd2012-12-18 14:30:41 +00001570 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {
1571 if (Visit(MakeCursorObjCProtocolRef(TL.getProtocol(I), TL.getProtocolLoc(I),
1572 TU)))
1573 return true;
1574 }
1575
1576 return false;
1577}
1578
1579bool CursorVisitor::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
1580 return Visit(TL.getPointeeLoc());
1581}
1582
1583bool CursorVisitor::VisitParenTypeLoc(ParenTypeLoc TL) {
1584 return Visit(TL.getInnerLoc());
1585}
1586
1587bool CursorVisitor::VisitPointerTypeLoc(PointerTypeLoc TL) {
1588 return Visit(TL.getPointeeLoc());
1589}
1590
1591bool CursorVisitor::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
1592 return Visit(TL.getPointeeLoc());
1593}
1594
1595bool CursorVisitor::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
1596 return Visit(TL.getPointeeLoc());
1597}
1598
1599bool CursorVisitor::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
1600 return Visit(TL.getPointeeLoc());
1601}
1602
1603bool CursorVisitor::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
1604 return Visit(TL.getPointeeLoc());
1605}
1606
1607bool CursorVisitor::VisitAttributedTypeLoc(AttributedTypeLoc TL) {
1608 return Visit(TL.getModifiedLoc());
1609}
1610
1611bool CursorVisitor::VisitFunctionTypeLoc(FunctionTypeLoc TL,
1612 bool SkipResultType) {
Alp Toker42a16a62014-01-25 23:51:36 +00001613 if (!SkipResultType && Visit(TL.getReturnLoc()))
Guy Benyei11169dd2012-12-18 14:30:41 +00001614 return true;
1615
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00001616 for (unsigned I = 0, N = TL.getNumParams(); I != N; ++I)
1617 if (Decl *D = TL.getParam(I))
Guy Benyei11169dd2012-12-18 14:30:41 +00001618 if (Visit(MakeCXCursor(D, TU, RegionOfInterest)))
1619 return true;
1620
1621 return false;
1622}
1623
1624bool CursorVisitor::VisitArrayTypeLoc(ArrayTypeLoc TL) {
1625 if (Visit(TL.getElementLoc()))
1626 return true;
1627
1628 if (Expr *Size = TL.getSizeExpr())
1629 return Visit(MakeCXCursor(Size, StmtParent, TU, RegionOfInterest));
1630
1631 return false;
1632}
1633
Reid Kleckner8a365022013-06-24 17:51:48 +00001634bool CursorVisitor::VisitDecayedTypeLoc(DecayedTypeLoc TL) {
1635 return Visit(TL.getOriginalLoc());
1636}
1637
Reid Kleckner0503a872013-12-05 01:23:43 +00001638bool CursorVisitor::VisitAdjustedTypeLoc(AdjustedTypeLoc TL) {
1639 return Visit(TL.getOriginalLoc());
1640}
1641
Guy Benyei11169dd2012-12-18 14:30:41 +00001642bool CursorVisitor::VisitTemplateSpecializationTypeLoc(
1643 TemplateSpecializationTypeLoc TL) {
1644 // Visit the template name.
1645 if (VisitTemplateName(TL.getTypePtr()->getTemplateName(),
1646 TL.getTemplateNameLoc()))
1647 return true;
1648
1649 // Visit the template arguments.
1650 for (unsigned I = 0, N = TL.getNumArgs(); I != N; ++I)
1651 if (VisitTemplateArgumentLoc(TL.getArgLoc(I)))
1652 return true;
1653
1654 return false;
1655}
1656
1657bool CursorVisitor::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
1658 return Visit(MakeCXCursor(TL.getUnderlyingExpr(), StmtParent, TU));
1659}
1660
1661bool CursorVisitor::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
1662 if (TypeSourceInfo *TSInfo = TL.getUnderlyingTInfo())
1663 return Visit(TSInfo->getTypeLoc());
1664
1665 return false;
1666}
1667
1668bool CursorVisitor::VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) {
1669 if (TypeSourceInfo *TSInfo = TL.getUnderlyingTInfo())
1670 return Visit(TSInfo->getTypeLoc());
1671
1672 return false;
1673}
1674
1675bool CursorVisitor::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
Hans Wennborg59dbe862015-09-29 20:56:43 +00001676 return VisitNestedNameSpecifierLoc(TL.getQualifierLoc());
Guy Benyei11169dd2012-12-18 14:30:41 +00001677}
1678
1679bool CursorVisitor::VisitDependentTemplateSpecializationTypeLoc(
1680 DependentTemplateSpecializationTypeLoc TL) {
1681 // Visit the nested-name-specifier, if there is one.
1682 if (TL.getQualifierLoc() &&
1683 VisitNestedNameSpecifierLoc(TL.getQualifierLoc()))
1684 return true;
1685
1686 // Visit the template arguments.
1687 for (unsigned I = 0, N = TL.getNumArgs(); I != N; ++I)
1688 if (VisitTemplateArgumentLoc(TL.getArgLoc(I)))
1689 return true;
1690
1691 return false;
1692}
1693
1694bool CursorVisitor::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
1695 if (VisitNestedNameSpecifierLoc(TL.getQualifierLoc()))
1696 return true;
1697
1698 return Visit(TL.getNamedTypeLoc());
1699}
1700
1701bool CursorVisitor::VisitPackExpansionTypeLoc(PackExpansionTypeLoc TL) {
1702 return Visit(TL.getPatternLoc());
1703}
1704
1705bool CursorVisitor::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
1706 if (Expr *E = TL.getUnderlyingExpr())
1707 return Visit(MakeCXCursor(E, StmtParent, TU));
1708
1709 return false;
1710}
1711
1712bool CursorVisitor::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
1713 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
1714}
1715
1716bool CursorVisitor::VisitAtomicTypeLoc(AtomicTypeLoc TL) {
1717 return Visit(TL.getValueLoc());
1718}
1719
Xiuli Pan9c14e282016-01-09 12:53:17 +00001720bool CursorVisitor::VisitPipeTypeLoc(PipeTypeLoc TL) {
1721 return Visit(TL.getValueLoc());
1722}
1723
Guy Benyei11169dd2012-12-18 14:30:41 +00001724#define DEFAULT_TYPELOC_IMPL(CLASS, PARENT) \
1725bool CursorVisitor::Visit##CLASS##TypeLoc(CLASS##TypeLoc TL) { \
1726 return Visit##PARENT##Loc(TL); \
1727}
1728
1729DEFAULT_TYPELOC_IMPL(Complex, Type)
1730DEFAULT_TYPELOC_IMPL(ConstantArray, ArrayType)
1731DEFAULT_TYPELOC_IMPL(IncompleteArray, ArrayType)
1732DEFAULT_TYPELOC_IMPL(VariableArray, ArrayType)
1733DEFAULT_TYPELOC_IMPL(DependentSizedArray, ArrayType)
1734DEFAULT_TYPELOC_IMPL(DependentSizedExtVector, Type)
1735DEFAULT_TYPELOC_IMPL(Vector, Type)
1736DEFAULT_TYPELOC_IMPL(ExtVector, VectorType)
1737DEFAULT_TYPELOC_IMPL(FunctionProto, FunctionType)
1738DEFAULT_TYPELOC_IMPL(FunctionNoProto, FunctionType)
1739DEFAULT_TYPELOC_IMPL(Record, TagType)
1740DEFAULT_TYPELOC_IMPL(Enum, TagType)
1741DEFAULT_TYPELOC_IMPL(SubstTemplateTypeParm, Type)
1742DEFAULT_TYPELOC_IMPL(SubstTemplateTypeParmPack, Type)
1743DEFAULT_TYPELOC_IMPL(Auto, Type)
1744
1745bool CursorVisitor::VisitCXXRecordDecl(CXXRecordDecl *D) {
1746 // Visit the nested-name-specifier, if present.
1747 if (NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc())
1748 if (VisitNestedNameSpecifierLoc(QualifierLoc))
1749 return true;
1750
1751 if (D->isCompleteDefinition()) {
Aaron Ballman574705e2014-03-13 15:41:46 +00001752 for (const auto &I : D->bases()) {
1753 if (Visit(cxcursor::MakeCursorCXXBaseSpecifier(&I, TU)))
Guy Benyei11169dd2012-12-18 14:30:41 +00001754 return true;
1755 }
1756 }
1757
1758 return VisitTagDecl(D);
1759}
1760
1761bool CursorVisitor::VisitAttributes(Decl *D) {
Aaron Ballmanb97112e2014-03-08 22:19:01 +00001762 for (const auto *I : D->attrs())
1763 if (Visit(MakeCXCursor(I, D, TU)))
Guy Benyei11169dd2012-12-18 14:30:41 +00001764 return true;
1765
1766 return false;
1767}
1768
1769//===----------------------------------------------------------------------===//
1770// Data-recursive visitor methods.
1771//===----------------------------------------------------------------------===//
1772
1773namespace {
1774#define DEF_JOB(NAME, DATA, KIND)\
1775class NAME : public VisitorJob {\
1776public:\
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001777 NAME(const DATA *d, CXCursor parent) : \
1778 VisitorJob(parent, VisitorJob::KIND, d) {} \
Guy Benyei11169dd2012-12-18 14:30:41 +00001779 static bool classof(const VisitorJob *VJ) { return VJ->getKind() == KIND; }\
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001780 const DATA *get() const { return static_cast<const DATA*>(data[0]); }\
Guy Benyei11169dd2012-12-18 14:30:41 +00001781};
1782
1783DEF_JOB(StmtVisit, Stmt, StmtVisitKind)
1784DEF_JOB(MemberExprParts, MemberExpr, MemberExprPartsKind)
1785DEF_JOB(DeclRefExprParts, DeclRefExpr, DeclRefExprPartsKind)
1786DEF_JOB(OverloadExprParts, OverloadExpr, OverloadExprPartsKind)
Guy Benyei11169dd2012-12-18 14:30:41 +00001787DEF_JOB(SizeOfPackExprParts, SizeOfPackExpr, SizeOfPackExprPartsKind)
1788DEF_JOB(LambdaExprParts, LambdaExpr, LambdaExprPartsKind)
1789DEF_JOB(PostChildrenVisit, void, PostChildrenVisitKind)
1790#undef DEF_JOB
1791
James Y Knight04ec5bf2015-12-24 02:59:37 +00001792class ExplicitTemplateArgsVisit : public VisitorJob {
1793public:
1794 ExplicitTemplateArgsVisit(const TemplateArgumentLoc *Begin,
1795 const TemplateArgumentLoc *End, CXCursor parent)
1796 : VisitorJob(parent, VisitorJob::ExplicitTemplateArgsVisitKind, Begin,
1797 End) {}
1798 static bool classof(const VisitorJob *VJ) {
1799 return VJ->getKind() == ExplicitTemplateArgsVisitKind;
1800 }
1801 const TemplateArgumentLoc *begin() const {
1802 return static_cast<const TemplateArgumentLoc *>(data[0]);
1803 }
1804 const TemplateArgumentLoc *end() {
1805 return static_cast<const TemplateArgumentLoc *>(data[1]);
1806 }
1807};
Guy Benyei11169dd2012-12-18 14:30:41 +00001808class DeclVisit : public VisitorJob {
1809public:
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001810 DeclVisit(const Decl *D, CXCursor parent, bool isFirst) :
Guy Benyei11169dd2012-12-18 14:30:41 +00001811 VisitorJob(parent, VisitorJob::DeclVisitKind,
Craig Topper69186e72014-06-08 08:38:04 +00001812 D, isFirst ? (void*) 1 : (void*) nullptr) {}
Guy Benyei11169dd2012-12-18 14:30:41 +00001813 static bool classof(const VisitorJob *VJ) {
1814 return VJ->getKind() == DeclVisitKind;
1815 }
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001816 const Decl *get() const { return static_cast<const Decl *>(data[0]); }
Dmitri Gribenkoe5423a72015-03-23 19:23:50 +00001817 bool isFirst() const { return data[1] != nullptr; }
Guy Benyei11169dd2012-12-18 14:30:41 +00001818};
1819class TypeLocVisit : public VisitorJob {
1820public:
1821 TypeLocVisit(TypeLoc tl, CXCursor parent) :
1822 VisitorJob(parent, VisitorJob::TypeLocVisitKind,
1823 tl.getType().getAsOpaquePtr(), tl.getOpaqueData()) {}
1824
1825 static bool classof(const VisitorJob *VJ) {
1826 return VJ->getKind() == TypeLocVisitKind;
1827 }
1828
1829 TypeLoc get() const {
1830 QualType T = QualType::getFromOpaquePtr(data[0]);
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001831 return TypeLoc(T, const_cast<void *>(data[1]));
Guy Benyei11169dd2012-12-18 14:30:41 +00001832 }
1833};
1834
1835class LabelRefVisit : public VisitorJob {
1836public:
1837 LabelRefVisit(LabelDecl *LD, SourceLocation labelLoc, CXCursor parent)
1838 : VisitorJob(parent, VisitorJob::LabelRefVisitKind, LD,
1839 labelLoc.getPtrEncoding()) {}
1840
1841 static bool classof(const VisitorJob *VJ) {
1842 return VJ->getKind() == VisitorJob::LabelRefVisitKind;
1843 }
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001844 const LabelDecl *get() const {
1845 return static_cast<const LabelDecl *>(data[0]);
1846 }
Guy Benyei11169dd2012-12-18 14:30:41 +00001847 SourceLocation getLoc() const {
1848 return SourceLocation::getFromPtrEncoding(data[1]); }
1849};
1850
1851class NestedNameSpecifierLocVisit : public VisitorJob {
1852public:
1853 NestedNameSpecifierLocVisit(NestedNameSpecifierLoc Qualifier, CXCursor parent)
1854 : VisitorJob(parent, VisitorJob::NestedNameSpecifierLocVisitKind,
1855 Qualifier.getNestedNameSpecifier(),
1856 Qualifier.getOpaqueData()) { }
1857
1858 static bool classof(const VisitorJob *VJ) {
1859 return VJ->getKind() == VisitorJob::NestedNameSpecifierLocVisitKind;
1860 }
1861
1862 NestedNameSpecifierLoc get() const {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001863 return NestedNameSpecifierLoc(
1864 const_cast<NestedNameSpecifier *>(
1865 static_cast<const NestedNameSpecifier *>(data[0])),
1866 const_cast<void *>(data[1]));
Guy Benyei11169dd2012-12-18 14:30:41 +00001867 }
1868};
1869
1870class DeclarationNameInfoVisit : public VisitorJob {
1871public:
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001872 DeclarationNameInfoVisit(const Stmt *S, CXCursor parent)
Dmitri Gribenkodd7dacf2013-02-03 13:19:54 +00001873 : VisitorJob(parent, VisitorJob::DeclarationNameInfoVisitKind, S) {}
Guy Benyei11169dd2012-12-18 14:30:41 +00001874 static bool classof(const VisitorJob *VJ) {
1875 return VJ->getKind() == VisitorJob::DeclarationNameInfoVisitKind;
1876 }
1877 DeclarationNameInfo get() const {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001878 const Stmt *S = static_cast<const Stmt *>(data[0]);
Guy Benyei11169dd2012-12-18 14:30:41 +00001879 switch (S->getStmtClass()) {
1880 default:
1881 llvm_unreachable("Unhandled Stmt");
1882 case clang::Stmt::MSDependentExistsStmtClass:
1883 return cast<MSDependentExistsStmt>(S)->getNameInfo();
1884 case Stmt::CXXDependentScopeMemberExprClass:
1885 return cast<CXXDependentScopeMemberExpr>(S)->getMemberNameInfo();
1886 case Stmt::DependentScopeDeclRefExprClass:
1887 return cast<DependentScopeDeclRefExpr>(S)->getNameInfo();
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001888 case Stmt::OMPCriticalDirectiveClass:
1889 return cast<OMPCriticalDirective>(S)->getDirectiveName();
Guy Benyei11169dd2012-12-18 14:30:41 +00001890 }
1891 }
1892};
1893class MemberRefVisit : public VisitorJob {
1894public:
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001895 MemberRefVisit(const FieldDecl *D, SourceLocation L, CXCursor parent)
Guy Benyei11169dd2012-12-18 14:30:41 +00001896 : VisitorJob(parent, VisitorJob::MemberRefVisitKind, D,
1897 L.getPtrEncoding()) {}
1898 static bool classof(const VisitorJob *VJ) {
1899 return VJ->getKind() == VisitorJob::MemberRefVisitKind;
1900 }
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001901 const FieldDecl *get() const {
1902 return static_cast<const FieldDecl *>(data[0]);
Guy Benyei11169dd2012-12-18 14:30:41 +00001903 }
1904 SourceLocation getLoc() const {
1905 return SourceLocation::getFromRawEncoding((unsigned)(uintptr_t) data[1]);
1906 }
1907};
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001908class EnqueueVisitor : public ConstStmtVisitor<EnqueueVisitor, void> {
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00001909 friend class OMPClauseEnqueue;
Guy Benyei11169dd2012-12-18 14:30:41 +00001910 VisitorWorkList &WL;
1911 CXCursor Parent;
1912public:
1913 EnqueueVisitor(VisitorWorkList &wl, CXCursor parent)
1914 : WL(wl), Parent(parent) {}
1915
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001916 void VisitAddrLabelExpr(const AddrLabelExpr *E);
1917 void VisitBlockExpr(const BlockExpr *B);
1918 void VisitCompoundLiteralExpr(const CompoundLiteralExpr *E);
1919 void VisitCompoundStmt(const CompoundStmt *S);
1920 void VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *E) { /* Do nothing. */ }
1921 void VisitMSDependentExistsStmt(const MSDependentExistsStmt *S);
1922 void VisitCXXDependentScopeMemberExpr(const CXXDependentScopeMemberExpr *E);
1923 void VisitCXXNewExpr(const CXXNewExpr *E);
1924 void VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *E);
1925 void VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *E);
1926 void VisitCXXPseudoDestructorExpr(const CXXPseudoDestructorExpr *E);
1927 void VisitCXXTemporaryObjectExpr(const CXXTemporaryObjectExpr *E);
1928 void VisitCXXTypeidExpr(const CXXTypeidExpr *E);
1929 void VisitCXXUnresolvedConstructExpr(const CXXUnresolvedConstructExpr *E);
1930 void VisitCXXUuidofExpr(const CXXUuidofExpr *E);
1931 void VisitCXXCatchStmt(const CXXCatchStmt *S);
Argyrios Kyrtzidis99891242014-11-13 09:03:21 +00001932 void VisitCXXForRangeStmt(const CXXForRangeStmt *S);
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001933 void VisitDeclRefExpr(const DeclRefExpr *D);
1934 void VisitDeclStmt(const DeclStmt *S);
1935 void VisitDependentScopeDeclRefExpr(const DependentScopeDeclRefExpr *E);
1936 void VisitDesignatedInitExpr(const DesignatedInitExpr *E);
1937 void VisitExplicitCastExpr(const ExplicitCastExpr *E);
1938 void VisitForStmt(const ForStmt *FS);
1939 void VisitGotoStmt(const GotoStmt *GS);
1940 void VisitIfStmt(const IfStmt *If);
1941 void VisitInitListExpr(const InitListExpr *IE);
1942 void VisitMemberExpr(const MemberExpr *M);
1943 void VisitOffsetOfExpr(const OffsetOfExpr *E);
1944 void VisitObjCEncodeExpr(const ObjCEncodeExpr *E);
1945 void VisitObjCMessageExpr(const ObjCMessageExpr *M);
1946 void VisitOverloadExpr(const OverloadExpr *E);
1947 void VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E);
1948 void VisitStmt(const Stmt *S);
1949 void VisitSwitchStmt(const SwitchStmt *S);
1950 void VisitWhileStmt(const WhileStmt *W);
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00001951 void VisitTypeTraitExpr(const TypeTraitExpr *E);
1952 void VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *E);
1953 void VisitExpressionTraitExpr(const ExpressionTraitExpr *E);
1954 void VisitUnresolvedMemberExpr(const UnresolvedMemberExpr *U);
1955 void VisitVAArgExpr(const VAArgExpr *E);
1956 void VisitSizeOfPackExpr(const SizeOfPackExpr *E);
1957 void VisitPseudoObjectExpr(const PseudoObjectExpr *E);
1958 void VisitOpaqueValueExpr(const OpaqueValueExpr *E);
1959 void VisitLambdaExpr(const LambdaExpr *E);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00001960 void VisitOMPExecutableDirective(const OMPExecutableDirective *D);
Alexander Musman3aaab662014-08-19 11:27:13 +00001961 void VisitOMPLoopDirective(const OMPLoopDirective *D);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00001962 void VisitOMPParallelDirective(const OMPParallelDirective *D);
Alexey Bataev1b59ab52014-02-27 08:29:12 +00001963 void VisitOMPSimdDirective(const OMPSimdDirective *D);
Alexey Bataevf29276e2014-06-18 04:14:57 +00001964 void VisitOMPForDirective(const OMPForDirective *D);
Alexander Musmanf82886e2014-09-18 05:12:34 +00001965 void VisitOMPForSimdDirective(const OMPForSimdDirective *D);
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00001966 void VisitOMPSectionsDirective(const OMPSectionsDirective *D);
Alexey Bataev1e0498a2014-06-26 08:21:58 +00001967 void VisitOMPSectionDirective(const OMPSectionDirective *D);
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00001968 void VisitOMPSingleDirective(const OMPSingleDirective *D);
Alexander Musman80c22892014-07-17 08:54:58 +00001969 void VisitOMPMasterDirective(const OMPMasterDirective *D);
Alexander Musmand9ed09f2014-07-21 09:42:05 +00001970 void VisitOMPCriticalDirective(const OMPCriticalDirective *D);
Alexey Bataev4acb8592014-07-07 13:01:15 +00001971 void VisitOMPParallelForDirective(const OMPParallelForDirective *D);
Alexander Musmane4e893b2014-09-23 09:33:00 +00001972 void VisitOMPParallelForSimdDirective(const OMPParallelForSimdDirective *D);
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00001973 void VisitOMPParallelSectionsDirective(const OMPParallelSectionsDirective *D);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00001974 void VisitOMPTaskDirective(const OMPTaskDirective *D);
Alexey Bataev68446b72014-07-18 07:47:19 +00001975 void VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *D);
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00001976 void VisitOMPBarrierDirective(const OMPBarrierDirective *D);
Alexey Bataev2df347a2014-07-18 10:17:07 +00001977 void VisitOMPTaskwaitDirective(const OMPTaskwaitDirective *D);
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00001978 void VisitOMPTaskgroupDirective(const OMPTaskgroupDirective *D);
Alexey Bataev6d4ed052015-07-01 06:57:41 +00001979 void
1980 VisitOMPCancellationPointDirective(const OMPCancellationPointDirective *D);
Alexey Bataev80909872015-07-02 11:25:17 +00001981 void VisitOMPCancelDirective(const OMPCancelDirective *D);
Alexey Bataev6125da92014-07-21 11:26:11 +00001982 void VisitOMPFlushDirective(const OMPFlushDirective *D);
Alexey Bataev9fb6e642014-07-22 06:45:04 +00001983 void VisitOMPOrderedDirective(const OMPOrderedDirective *D);
Alexey Bataev0162e452014-07-22 10:10:35 +00001984 void VisitOMPAtomicDirective(const OMPAtomicDirective *D);
Alexey Bataev0bd520b2014-09-19 08:19:49 +00001985 void VisitOMPTargetDirective(const OMPTargetDirective *D);
Michael Wong65f367f2015-07-21 13:44:28 +00001986 void VisitOMPTargetDataDirective(const OMPTargetDataDirective *D);
Samuel Antaodf67fc42016-01-19 19:15:56 +00001987 void VisitOMPTargetEnterDataDirective(const OMPTargetEnterDataDirective *D);
Samuel Antao72590762016-01-19 20:04:50 +00001988 void VisitOMPTargetExitDataDirective(const OMPTargetExitDataDirective *D);
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00001989 void VisitOMPTargetParallelDirective(const OMPTargetParallelDirective *D);
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00001990 void
1991 VisitOMPTargetParallelForDirective(const OMPTargetParallelForDirective *D);
Alexey Bataev13314bf2014-10-09 04:18:56 +00001992 void VisitOMPTeamsDirective(const OMPTeamsDirective *D);
Alexey Bataev49f6e782015-12-01 04:18:41 +00001993 void VisitOMPTaskLoopDirective(const OMPTaskLoopDirective *D);
Alexey Bataev0a6ed842015-12-03 09:40:15 +00001994 void VisitOMPTaskLoopSimdDirective(const OMPTaskLoopSimdDirective *D);
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00001995 void VisitOMPDistributeDirective(const OMPDistributeDirective *D);
Carlo Bertolli9925f152016-06-27 14:55:37 +00001996 void VisitOMPDistributeParallelForDirective(
1997 const OMPDistributeParallelForDirective *D);
Kelvin Li4a39add2016-07-05 05:00:15 +00001998 void VisitOMPDistributeParallelForSimdDirective(
1999 const OMPDistributeParallelForSimdDirective *D);
Kelvin Li787f3fc2016-07-06 04:45:38 +00002000 void VisitOMPDistributeSimdDirective(const OMPDistributeSimdDirective *D);
Kelvin Lia579b912016-07-14 02:54:56 +00002001 void VisitOMPTargetParallelForSimdDirective(
2002 const OMPTargetParallelForSimdDirective *D);
Kelvin Li986330c2016-07-20 22:57:10 +00002003 void VisitOMPTargetSimdDirective(const OMPTargetSimdDirective *D);
Kelvin Li02532872016-08-05 14:37:37 +00002004 void VisitOMPTeamsDistributeDirective(const OMPTeamsDistributeDirective *D);
Kelvin Li4e325f72016-10-25 12:50:55 +00002005 void VisitOMPTeamsDistributeSimdDirective(
2006 const OMPTeamsDistributeSimdDirective *D);
Kelvin Li579e41c2016-11-30 23:51:03 +00002007 void VisitOMPTeamsDistributeParallelForSimdDirective(
2008 const OMPTeamsDistributeParallelForSimdDirective *D);
Kelvin Li7ade93f2016-12-09 03:24:30 +00002009 void VisitOMPTeamsDistributeParallelForDirective(
2010 const OMPTeamsDistributeParallelForDirective *D);
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002011
Guy Benyei11169dd2012-12-18 14:30:41 +00002012private:
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002013 void AddDeclarationNameInfo(const Stmt *S);
Guy Benyei11169dd2012-12-18 14:30:41 +00002014 void AddNestedNameSpecifierLoc(NestedNameSpecifierLoc Qualifier);
James Y Knight04ec5bf2015-12-24 02:59:37 +00002015 void AddExplicitTemplateArgs(const TemplateArgumentLoc *A,
2016 unsigned NumTemplateArgs);
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002017 void AddMemberRef(const FieldDecl *D, SourceLocation L);
2018 void AddStmt(const Stmt *S);
2019 void AddDecl(const Decl *D, bool isFirst = true);
Guy Benyei11169dd2012-12-18 14:30:41 +00002020 void AddTypeLoc(TypeSourceInfo *TI);
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002021 void EnqueueChildren(const Stmt *S);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00002022 void EnqueueChildren(const OMPClause *S);
Guy Benyei11169dd2012-12-18 14:30:41 +00002023};
Alexander Kornienkoab9db512015-06-22 23:07:51 +00002024} // end anonyous namespace
Guy Benyei11169dd2012-12-18 14:30:41 +00002025
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002026void EnqueueVisitor::AddDeclarationNameInfo(const Stmt *S) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002027 // 'S' should always be non-null, since it comes from the
2028 // statement we are visiting.
2029 WL.push_back(DeclarationNameInfoVisit(S, Parent));
2030}
2031
2032void
2033EnqueueVisitor::AddNestedNameSpecifierLoc(NestedNameSpecifierLoc Qualifier) {
2034 if (Qualifier)
2035 WL.push_back(NestedNameSpecifierLocVisit(Qualifier, Parent));
2036}
2037
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002038void EnqueueVisitor::AddStmt(const Stmt *S) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002039 if (S)
2040 WL.push_back(StmtVisit(S, Parent));
2041}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002042void EnqueueVisitor::AddDecl(const Decl *D, bool isFirst) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002043 if (D)
2044 WL.push_back(DeclVisit(D, Parent, isFirst));
2045}
James Y Knight04ec5bf2015-12-24 02:59:37 +00002046void EnqueueVisitor::AddExplicitTemplateArgs(const TemplateArgumentLoc *A,
2047 unsigned NumTemplateArgs) {
2048 WL.push_back(ExplicitTemplateArgsVisit(A, A + NumTemplateArgs, Parent));
Guy Benyei11169dd2012-12-18 14:30:41 +00002049}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002050void EnqueueVisitor::AddMemberRef(const FieldDecl *D, SourceLocation L) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002051 if (D)
2052 WL.push_back(MemberRefVisit(D, L, Parent));
2053}
2054void EnqueueVisitor::AddTypeLoc(TypeSourceInfo *TI) {
2055 if (TI)
2056 WL.push_back(TypeLocVisit(TI->getTypeLoc(), Parent));
2057 }
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002058void EnqueueVisitor::EnqueueChildren(const Stmt *S) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002059 unsigned size = WL.size();
Benjamin Kramer642f1732015-07-02 21:03:14 +00002060 for (const Stmt *SubStmt : S->children()) {
2061 AddStmt(SubStmt);
Guy Benyei11169dd2012-12-18 14:30:41 +00002062 }
2063 if (size == WL.size())
2064 return;
2065 // Now reverse the entries we just added. This will match the DFS
2066 // ordering performed by the worklist.
2067 VisitorWorkList::iterator I = WL.begin() + size, E = WL.end();
2068 std::reverse(I, E);
2069}
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00002070namespace {
2071class OMPClauseEnqueue : public ConstOMPClauseVisitor<OMPClauseEnqueue> {
2072 EnqueueVisitor *Visitor;
Alexey Bataev756c1962013-09-24 03:17:45 +00002073 /// \brief Process clauses with list of variables.
2074 template <typename T>
2075 void VisitOMPClauseList(T *Node);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00002076public:
2077 OMPClauseEnqueue(EnqueueVisitor *Visitor) : Visitor(Visitor) { }
2078#define OPENMP_CLAUSE(Name, Class) \
2079 void Visit##Class(const Class *C);
2080#include "clang/Basic/OpenMPKinds.def"
Alexey Bataev3392d762016-02-16 11:18:12 +00002081 void VisitOMPClauseWithPreInit(const OMPClauseWithPreInit *C);
Alexey Bataev005248a2016-02-25 05:25:57 +00002082 void VisitOMPClauseWithPostUpdate(const OMPClauseWithPostUpdate *C);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00002083};
2084
Alexey Bataev3392d762016-02-16 11:18:12 +00002085void OMPClauseEnqueue::VisitOMPClauseWithPreInit(
2086 const OMPClauseWithPreInit *C) {
2087 Visitor->AddStmt(C->getPreInitStmt());
2088}
2089
Alexey Bataev005248a2016-02-25 05:25:57 +00002090void OMPClauseEnqueue::VisitOMPClauseWithPostUpdate(
2091 const OMPClauseWithPostUpdate *C) {
Alexey Bataev37e594c2016-03-04 07:21:16 +00002092 VisitOMPClauseWithPreInit(C);
Alexey Bataev005248a2016-02-25 05:25:57 +00002093 Visitor->AddStmt(C->getPostUpdateExpr());
2094}
2095
Alexey Bataevaadd52e2014-02-13 05:29:23 +00002096void OMPClauseEnqueue::VisitOMPIfClause(const OMPIfClause *C) {
2097 Visitor->AddStmt(C->getCondition());
2098}
2099
Alexey Bataev3778b602014-07-17 07:32:53 +00002100void OMPClauseEnqueue::VisitOMPFinalClause(const OMPFinalClause *C) {
2101 Visitor->AddStmt(C->getCondition());
2102}
2103
Alexey Bataev568a8332014-03-06 06:15:19 +00002104void OMPClauseEnqueue::VisitOMPNumThreadsClause(const OMPNumThreadsClause *C) {
2105 Visitor->AddStmt(C->getNumThreads());
2106}
2107
Alexey Bataev62c87d22014-03-21 04:51:18 +00002108void OMPClauseEnqueue::VisitOMPSafelenClause(const OMPSafelenClause *C) {
2109 Visitor->AddStmt(C->getSafelen());
2110}
2111
Alexey Bataev66b15b52015-08-21 11:14:16 +00002112void OMPClauseEnqueue::VisitOMPSimdlenClause(const OMPSimdlenClause *C) {
2113 Visitor->AddStmt(C->getSimdlen());
2114}
2115
Alexander Musman8bd31e62014-05-27 15:12:19 +00002116void OMPClauseEnqueue::VisitOMPCollapseClause(const OMPCollapseClause *C) {
2117 Visitor->AddStmt(C->getNumForLoops());
2118}
2119
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00002120void OMPClauseEnqueue::VisitOMPDefaultClause(const OMPDefaultClause *C) { }
Alexey Bataev756c1962013-09-24 03:17:45 +00002121
Alexey Bataevbcbadb62014-05-06 06:04:14 +00002122void OMPClauseEnqueue::VisitOMPProcBindClause(const OMPProcBindClause *C) { }
2123
Alexey Bataev56dafe82014-06-20 07:16:17 +00002124void OMPClauseEnqueue::VisitOMPScheduleClause(const OMPScheduleClause *C) {
Alexey Bataev3392d762016-02-16 11:18:12 +00002125 VisitOMPClauseWithPreInit(C);
Alexey Bataev56dafe82014-06-20 07:16:17 +00002126 Visitor->AddStmt(C->getChunkSize());
2127}
2128
Alexey Bataev10e775f2015-07-30 11:36:16 +00002129void OMPClauseEnqueue::VisitOMPOrderedClause(const OMPOrderedClause *C) {
2130 Visitor->AddStmt(C->getNumForLoops());
2131}
Alexey Bataev142e1fc2014-06-20 09:44:06 +00002132
Alexey Bataev236070f2014-06-20 11:19:47 +00002133void OMPClauseEnqueue::VisitOMPNowaitClause(const OMPNowaitClause *) {}
2134
Alexey Bataev7aea99a2014-07-17 12:19:31 +00002135void OMPClauseEnqueue::VisitOMPUntiedClause(const OMPUntiedClause *) {}
2136
Alexey Bataev74ba3a52014-07-17 12:47:03 +00002137void OMPClauseEnqueue::VisitOMPMergeableClause(const OMPMergeableClause *) {}
2138
Alexey Bataevf98b00c2014-07-23 02:27:21 +00002139void OMPClauseEnqueue::VisitOMPReadClause(const OMPReadClause *) {}
2140
Alexey Bataevdea47612014-07-23 07:46:59 +00002141void OMPClauseEnqueue::VisitOMPWriteClause(const OMPWriteClause *) {}
2142
Alexey Bataev67a4f222014-07-23 10:25:33 +00002143void OMPClauseEnqueue::VisitOMPUpdateClause(const OMPUpdateClause *) {}
2144
Alexey Bataev459dec02014-07-24 06:46:57 +00002145void OMPClauseEnqueue::VisitOMPCaptureClause(const OMPCaptureClause *) {}
2146
Alexey Bataev82bad8b2014-07-24 08:55:34 +00002147void OMPClauseEnqueue::VisitOMPSeqCstClause(const OMPSeqCstClause *) {}
2148
Alexey Bataev346265e2015-09-25 10:37:12 +00002149void OMPClauseEnqueue::VisitOMPThreadsClause(const OMPThreadsClause *) {}
2150
Alexey Bataevd14d1e62015-09-28 06:39:35 +00002151void OMPClauseEnqueue::VisitOMPSIMDClause(const OMPSIMDClause *) {}
2152
Alexey Bataevb825de12015-12-07 10:51:44 +00002153void OMPClauseEnqueue::VisitOMPNogroupClause(const OMPNogroupClause *) {}
2154
Michael Wonge710d542015-08-07 16:16:36 +00002155void OMPClauseEnqueue::VisitOMPDeviceClause(const OMPDeviceClause *C) {
2156 Visitor->AddStmt(C->getDevice());
2157}
2158
Kelvin Li099bb8c2015-11-24 20:50:12 +00002159void OMPClauseEnqueue::VisitOMPNumTeamsClause(const OMPNumTeamsClause *C) {
2160 Visitor->AddStmt(C->getNumTeams());
2161}
2162
Kelvin Lia15fb1a2015-11-27 18:47:36 +00002163void OMPClauseEnqueue::VisitOMPThreadLimitClause(const OMPThreadLimitClause *C) {
2164 Visitor->AddStmt(C->getThreadLimit());
2165}
2166
Alexey Bataeva0569352015-12-01 10:17:31 +00002167void OMPClauseEnqueue::VisitOMPPriorityClause(const OMPPriorityClause *C) {
2168 Visitor->AddStmt(C->getPriority());
2169}
2170
Alexey Bataev1fd4aed2015-12-07 12:52:51 +00002171void OMPClauseEnqueue::VisitOMPGrainsizeClause(const OMPGrainsizeClause *C) {
2172 Visitor->AddStmt(C->getGrainsize());
2173}
2174
Alexey Bataev382967a2015-12-08 12:06:20 +00002175void OMPClauseEnqueue::VisitOMPNumTasksClause(const OMPNumTasksClause *C) {
2176 Visitor->AddStmt(C->getNumTasks());
2177}
2178
Alexey Bataev28c75412015-12-15 08:19:24 +00002179void OMPClauseEnqueue::VisitOMPHintClause(const OMPHintClause *C) {
2180 Visitor->AddStmt(C->getHint());
2181}
2182
Alexey Bataev756c1962013-09-24 03:17:45 +00002183template<typename T>
2184void OMPClauseEnqueue::VisitOMPClauseList(T *Node) {
Alexey Bataev03b340a2014-10-21 03:16:40 +00002185 for (const auto *I : Node->varlists()) {
Aaron Ballman2205d2a2014-03-14 15:55:35 +00002186 Visitor->AddStmt(I);
Alexey Bataev03b340a2014-10-21 03:16:40 +00002187 }
Alexey Bataev756c1962013-09-24 03:17:45 +00002188}
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00002189
2190void OMPClauseEnqueue::VisitOMPPrivateClause(const OMPPrivateClause *C) {
Alexey Bataev756c1962013-09-24 03:17:45 +00002191 VisitOMPClauseList(C);
Alexey Bataev03b340a2014-10-21 03:16:40 +00002192 for (const auto *E : C->private_copies()) {
2193 Visitor->AddStmt(E);
2194 }
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00002195}
Alexey Bataevd5af8e42013-10-01 05:32:34 +00002196void OMPClauseEnqueue::VisitOMPFirstprivateClause(
2197 const OMPFirstprivateClause *C) {
2198 VisitOMPClauseList(C);
Alexey Bataev417089f2016-02-17 13:19:37 +00002199 VisitOMPClauseWithPreInit(C);
2200 for (const auto *E : C->private_copies()) {
2201 Visitor->AddStmt(E);
2202 }
2203 for (const auto *E : C->inits()) {
2204 Visitor->AddStmt(E);
2205 }
Alexey Bataevd5af8e42013-10-01 05:32:34 +00002206}
Alexander Musman1bb328c2014-06-04 13:06:39 +00002207void OMPClauseEnqueue::VisitOMPLastprivateClause(
2208 const OMPLastprivateClause *C) {
2209 VisitOMPClauseList(C);
Alexey Bataev005248a2016-02-25 05:25:57 +00002210 VisitOMPClauseWithPostUpdate(C);
Alexey Bataev38e89532015-04-16 04:54:05 +00002211 for (auto *E : C->private_copies()) {
2212 Visitor->AddStmt(E);
2213 }
2214 for (auto *E : C->source_exprs()) {
2215 Visitor->AddStmt(E);
2216 }
2217 for (auto *E : C->destination_exprs()) {
2218 Visitor->AddStmt(E);
2219 }
2220 for (auto *E : C->assignment_ops()) {
2221 Visitor->AddStmt(E);
2222 }
Alexander Musman1bb328c2014-06-04 13:06:39 +00002223}
Alexey Bataev758e55e2013-09-06 18:03:48 +00002224void OMPClauseEnqueue::VisitOMPSharedClause(const OMPSharedClause *C) {
Alexey Bataev756c1962013-09-24 03:17:45 +00002225 VisitOMPClauseList(C);
Alexey Bataev758e55e2013-09-06 18:03:48 +00002226}
Alexey Bataevc5e02582014-06-16 07:08:35 +00002227void OMPClauseEnqueue::VisitOMPReductionClause(const OMPReductionClause *C) {
2228 VisitOMPClauseList(C);
Alexey Bataev61205072016-03-02 04:57:40 +00002229 VisitOMPClauseWithPostUpdate(C);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00002230 for (auto *E : C->privates()) {
2231 Visitor->AddStmt(E);
2232 }
Alexey Bataev794ba0d2015-04-10 10:43:45 +00002233 for (auto *E : C->lhs_exprs()) {
2234 Visitor->AddStmt(E);
2235 }
2236 for (auto *E : C->rhs_exprs()) {
2237 Visitor->AddStmt(E);
2238 }
2239 for (auto *E : C->reduction_ops()) {
2240 Visitor->AddStmt(E);
2241 }
Alexey Bataevc5e02582014-06-16 07:08:35 +00002242}
Alexander Musman8dba6642014-04-22 13:09:42 +00002243void OMPClauseEnqueue::VisitOMPLinearClause(const OMPLinearClause *C) {
2244 VisitOMPClauseList(C);
Alexey Bataev78849fb2016-03-09 09:49:00 +00002245 VisitOMPClauseWithPostUpdate(C);
Alexey Bataevbd9fec12015-08-18 06:47:21 +00002246 for (const auto *E : C->privates()) {
2247 Visitor->AddStmt(E);
2248 }
Alexander Musman3276a272015-03-21 10:12:56 +00002249 for (const auto *E : C->inits()) {
2250 Visitor->AddStmt(E);
2251 }
2252 for (const auto *E : C->updates()) {
2253 Visitor->AddStmt(E);
2254 }
2255 for (const auto *E : C->finals()) {
2256 Visitor->AddStmt(E);
2257 }
Alexander Musman8dba6642014-04-22 13:09:42 +00002258 Visitor->AddStmt(C->getStep());
Alexander Musman3276a272015-03-21 10:12:56 +00002259 Visitor->AddStmt(C->getCalcStep());
Alexander Musman8dba6642014-04-22 13:09:42 +00002260}
Alexander Musmanf0d76e72014-05-29 14:36:25 +00002261void OMPClauseEnqueue::VisitOMPAlignedClause(const OMPAlignedClause *C) {
2262 VisitOMPClauseList(C);
2263 Visitor->AddStmt(C->getAlignment());
2264}
Alexey Bataevd48bcd82014-03-31 03:36:38 +00002265void OMPClauseEnqueue::VisitOMPCopyinClause(const OMPCopyinClause *C) {
2266 VisitOMPClauseList(C);
Alexey Bataevf56f98c2015-04-16 05:39:01 +00002267 for (auto *E : C->source_exprs()) {
2268 Visitor->AddStmt(E);
2269 }
2270 for (auto *E : C->destination_exprs()) {
2271 Visitor->AddStmt(E);
2272 }
2273 for (auto *E : C->assignment_ops()) {
2274 Visitor->AddStmt(E);
2275 }
Alexey Bataevd48bcd82014-03-31 03:36:38 +00002276}
Alexey Bataevbae9a792014-06-27 10:37:06 +00002277void
2278OMPClauseEnqueue::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) {
2279 VisitOMPClauseList(C);
Alexey Bataeva63048e2015-03-23 06:18:07 +00002280 for (auto *E : C->source_exprs()) {
2281 Visitor->AddStmt(E);
2282 }
2283 for (auto *E : C->destination_exprs()) {
2284 Visitor->AddStmt(E);
2285 }
2286 for (auto *E : C->assignment_ops()) {
2287 Visitor->AddStmt(E);
2288 }
Alexey Bataevbae9a792014-06-27 10:37:06 +00002289}
Alexey Bataev6125da92014-07-21 11:26:11 +00002290void OMPClauseEnqueue::VisitOMPFlushClause(const OMPFlushClause *C) {
2291 VisitOMPClauseList(C);
2292}
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00002293void OMPClauseEnqueue::VisitOMPDependClause(const OMPDependClause *C) {
2294 VisitOMPClauseList(C);
2295}
Kelvin Li0bff7af2015-11-23 05:32:03 +00002296void OMPClauseEnqueue::VisitOMPMapClause(const OMPMapClause *C) {
2297 VisitOMPClauseList(C);
2298}
Carlo Bertollib4adf552016-01-15 18:50:31 +00002299void OMPClauseEnqueue::VisitOMPDistScheduleClause(
2300 const OMPDistScheduleClause *C) {
Alexey Bataev3392d762016-02-16 11:18:12 +00002301 VisitOMPClauseWithPreInit(C);
Carlo Bertollib4adf552016-01-15 18:50:31 +00002302 Visitor->AddStmt(C->getChunkSize());
Carlo Bertollib4adf552016-01-15 18:50:31 +00002303}
Alexey Bataev3392d762016-02-16 11:18:12 +00002304void OMPClauseEnqueue::VisitOMPDefaultmapClause(
2305 const OMPDefaultmapClause * /*C*/) {}
Samuel Antao661c0902016-05-26 17:39:58 +00002306void OMPClauseEnqueue::VisitOMPToClause(const OMPToClause *C) {
2307 VisitOMPClauseList(C);
2308}
Samuel Antaoec172c62016-05-26 17:49:04 +00002309void OMPClauseEnqueue::VisitOMPFromClause(const OMPFromClause *C) {
2310 VisitOMPClauseList(C);
2311}
Carlo Bertolli2404b172016-07-13 15:37:16 +00002312void OMPClauseEnqueue::VisitOMPUseDevicePtrClause(const OMPUseDevicePtrClause *C) {
2313 VisitOMPClauseList(C);
2314}
Carlo Bertolli70594e92016-07-13 17:16:49 +00002315void OMPClauseEnqueue::VisitOMPIsDevicePtrClause(const OMPIsDevicePtrClause *C) {
2316 VisitOMPClauseList(C);
2317}
Alexander Kornienkoab9db512015-06-22 23:07:51 +00002318}
Alexey Bataev756c1962013-09-24 03:17:45 +00002319
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00002320void EnqueueVisitor::EnqueueChildren(const OMPClause *S) {
2321 unsigned size = WL.size();
2322 OMPClauseEnqueue Visitor(this);
2323 Visitor.Visit(S);
2324 if (size == WL.size())
2325 return;
2326 // Now reverse the entries we just added. This will match the DFS
2327 // ordering performed by the worklist.
2328 VisitorWorkList::iterator I = WL.begin() + size, E = WL.end();
2329 std::reverse(I, E);
2330}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002331void EnqueueVisitor::VisitAddrLabelExpr(const AddrLabelExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002332 WL.push_back(LabelRefVisit(E->getLabel(), E->getLabelLoc(), Parent));
2333}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002334void EnqueueVisitor::VisitBlockExpr(const BlockExpr *B) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002335 AddDecl(B->getBlockDecl());
2336}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002337void EnqueueVisitor::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002338 EnqueueChildren(E);
2339 AddTypeLoc(E->getTypeSourceInfo());
2340}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002341void EnqueueVisitor::VisitCompoundStmt(const CompoundStmt *S) {
Pete Cooper57d3f142015-07-30 17:22:52 +00002342 for (auto &I : llvm::reverse(S->body()))
2343 AddStmt(I);
Guy Benyei11169dd2012-12-18 14:30:41 +00002344}
2345void EnqueueVisitor::
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002346VisitMSDependentExistsStmt(const MSDependentExistsStmt *S) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002347 AddStmt(S->getSubStmt());
2348 AddDeclarationNameInfo(S);
2349 if (NestedNameSpecifierLoc QualifierLoc = S->getQualifierLoc())
2350 AddNestedNameSpecifierLoc(QualifierLoc);
2351}
2352
2353void EnqueueVisitor::
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002354VisitCXXDependentScopeMemberExpr(const CXXDependentScopeMemberExpr *E) {
James Y Knight04ec5bf2015-12-24 02:59:37 +00002355 if (E->hasExplicitTemplateArgs())
2356 AddExplicitTemplateArgs(E->getTemplateArgs(), E->getNumTemplateArgs());
Guy Benyei11169dd2012-12-18 14:30:41 +00002357 AddDeclarationNameInfo(E);
2358 if (NestedNameSpecifierLoc QualifierLoc = E->getQualifierLoc())
2359 AddNestedNameSpecifierLoc(QualifierLoc);
2360 if (!E->isImplicitAccess())
2361 AddStmt(E->getBase());
2362}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002363void EnqueueVisitor::VisitCXXNewExpr(const CXXNewExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002364 // Enqueue the initializer , if any.
2365 AddStmt(E->getInitializer());
2366 // Enqueue the array size, if any.
2367 AddStmt(E->getArraySize());
2368 // Enqueue the allocated type.
2369 AddTypeLoc(E->getAllocatedTypeSourceInfo());
2370 // Enqueue the placement arguments.
2371 for (unsigned I = E->getNumPlacementArgs(); I > 0; --I)
2372 AddStmt(E->getPlacementArg(I-1));
2373}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002374void EnqueueVisitor::VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *CE) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002375 for (unsigned I = CE->getNumArgs(); I > 1 /* Yes, this is 1 */; --I)
2376 AddStmt(CE->getArg(I-1));
2377 AddStmt(CE->getCallee());
2378 AddStmt(CE->getArg(0));
2379}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002380void EnqueueVisitor::VisitCXXPseudoDestructorExpr(
2381 const CXXPseudoDestructorExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002382 // Visit the name of the type being destroyed.
2383 AddTypeLoc(E->getDestroyedTypeInfo());
2384 // Visit the scope type that looks disturbingly like the nested-name-specifier
2385 // but isn't.
2386 AddTypeLoc(E->getScopeTypeInfo());
2387 // Visit the nested-name-specifier.
2388 if (NestedNameSpecifierLoc QualifierLoc = E->getQualifierLoc())
2389 AddNestedNameSpecifierLoc(QualifierLoc);
2390 // Visit base expression.
2391 AddStmt(E->getBase());
2392}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002393void EnqueueVisitor::VisitCXXScalarValueInitExpr(
2394 const CXXScalarValueInitExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002395 AddTypeLoc(E->getTypeSourceInfo());
2396}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002397void EnqueueVisitor::VisitCXXTemporaryObjectExpr(
2398 const CXXTemporaryObjectExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002399 EnqueueChildren(E);
2400 AddTypeLoc(E->getTypeSourceInfo());
2401}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002402void EnqueueVisitor::VisitCXXTypeidExpr(const CXXTypeidExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002403 EnqueueChildren(E);
2404 if (E->isTypeOperand())
2405 AddTypeLoc(E->getTypeOperandSourceInfo());
2406}
2407
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002408void EnqueueVisitor::VisitCXXUnresolvedConstructExpr(
2409 const CXXUnresolvedConstructExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002410 EnqueueChildren(E);
2411 AddTypeLoc(E->getTypeSourceInfo());
2412}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002413void EnqueueVisitor::VisitCXXUuidofExpr(const CXXUuidofExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002414 EnqueueChildren(E);
2415 if (E->isTypeOperand())
2416 AddTypeLoc(E->getTypeOperandSourceInfo());
2417}
2418
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002419void EnqueueVisitor::VisitCXXCatchStmt(const CXXCatchStmt *S) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002420 EnqueueChildren(S);
2421 AddDecl(S->getExceptionDecl());
2422}
2423
Argyrios Kyrtzidis99891242014-11-13 09:03:21 +00002424void EnqueueVisitor::VisitCXXForRangeStmt(const CXXForRangeStmt *S) {
Argyrios Kyrtzidiscde70692014-11-13 09:50:19 +00002425 AddStmt(S->getBody());
Argyrios Kyrtzidis99891242014-11-13 09:03:21 +00002426 AddStmt(S->getRangeInit());
Argyrios Kyrtzidiscde70692014-11-13 09:50:19 +00002427 AddDecl(S->getLoopVariable());
Argyrios Kyrtzidis99891242014-11-13 09:03:21 +00002428}
2429
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002430void EnqueueVisitor::VisitDeclRefExpr(const DeclRefExpr *DR) {
James Y Knight04ec5bf2015-12-24 02:59:37 +00002431 if (DR->hasExplicitTemplateArgs())
2432 AddExplicitTemplateArgs(DR->getTemplateArgs(), DR->getNumTemplateArgs());
Guy Benyei11169dd2012-12-18 14:30:41 +00002433 WL.push_back(DeclRefExprParts(DR, Parent));
2434}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002435void EnqueueVisitor::VisitDependentScopeDeclRefExpr(
2436 const DependentScopeDeclRefExpr *E) {
James Y Knight04ec5bf2015-12-24 02:59:37 +00002437 if (E->hasExplicitTemplateArgs())
2438 AddExplicitTemplateArgs(E->getTemplateArgs(), E->getNumTemplateArgs());
Guy Benyei11169dd2012-12-18 14:30:41 +00002439 AddDeclarationNameInfo(E);
2440 AddNestedNameSpecifierLoc(E->getQualifierLoc());
2441}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002442void EnqueueVisitor::VisitDeclStmt(const DeclStmt *S) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002443 unsigned size = WL.size();
2444 bool isFirst = true;
Aaron Ballman535bbcc2014-03-14 17:01:24 +00002445 for (const auto *D : S->decls()) {
2446 AddDecl(D, isFirst);
Guy Benyei11169dd2012-12-18 14:30:41 +00002447 isFirst = false;
2448 }
2449 if (size == WL.size())
2450 return;
2451 // Now reverse the entries we just added. This will match the DFS
2452 // ordering performed by the worklist.
2453 VisitorWorkList::iterator I = WL.begin() + size, E = WL.end();
2454 std::reverse(I, E);
2455}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002456void EnqueueVisitor::VisitDesignatedInitExpr(const DesignatedInitExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002457 AddStmt(E->getInit());
David Majnemerf7e36092016-06-23 00:15:04 +00002458 for (const DesignatedInitExpr::Designator &D :
2459 llvm::reverse(E->designators())) {
2460 if (D.isFieldDesignator()) {
2461 if (FieldDecl *Field = D.getField())
2462 AddMemberRef(Field, D.getFieldLoc());
Guy Benyei11169dd2012-12-18 14:30:41 +00002463 continue;
2464 }
David Majnemerf7e36092016-06-23 00:15:04 +00002465 if (D.isArrayDesignator()) {
2466 AddStmt(E->getArrayIndex(D));
Guy Benyei11169dd2012-12-18 14:30:41 +00002467 continue;
2468 }
David Majnemerf7e36092016-06-23 00:15:04 +00002469 assert(D.isArrayRangeDesignator() && "Unknown designator kind");
2470 AddStmt(E->getArrayRangeEnd(D));
2471 AddStmt(E->getArrayRangeStart(D));
Guy Benyei11169dd2012-12-18 14:30:41 +00002472 }
2473}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002474void EnqueueVisitor::VisitExplicitCastExpr(const ExplicitCastExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002475 EnqueueChildren(E);
2476 AddTypeLoc(E->getTypeInfoAsWritten());
2477}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002478void EnqueueVisitor::VisitForStmt(const ForStmt *FS) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002479 AddStmt(FS->getBody());
2480 AddStmt(FS->getInc());
2481 AddStmt(FS->getCond());
2482 AddDecl(FS->getConditionVariable());
2483 AddStmt(FS->getInit());
2484}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002485void EnqueueVisitor::VisitGotoStmt(const GotoStmt *GS) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002486 WL.push_back(LabelRefVisit(GS->getLabel(), GS->getLabelLoc(), Parent));
2487}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002488void EnqueueVisitor::VisitIfStmt(const IfStmt *If) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002489 AddStmt(If->getElse());
2490 AddStmt(If->getThen());
2491 AddStmt(If->getCond());
2492 AddDecl(If->getConditionVariable());
2493}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002494void EnqueueVisitor::VisitInitListExpr(const InitListExpr *IE) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002495 // We care about the syntactic form of the initializer list, only.
2496 if (InitListExpr *Syntactic = IE->getSyntacticForm())
2497 IE = Syntactic;
2498 EnqueueChildren(IE);
2499}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002500void EnqueueVisitor::VisitMemberExpr(const MemberExpr *M) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002501 WL.push_back(MemberExprParts(M, Parent));
2502
2503 // If the base of the member access expression is an implicit 'this', don't
2504 // visit it.
2505 // FIXME: If we ever want to show these implicit accesses, this will be
2506 // unfortunate. However, clang_getCursor() relies on this behavior.
Argyrios Kyrtzidis58d0e7a2015-03-13 04:40:07 +00002507 if (M->isImplicitAccess())
2508 return;
2509
2510 // Ignore base anonymous struct/union fields, otherwise they will shadow the
2511 // real field that that we are interested in.
2512 if (auto *SubME = dyn_cast<MemberExpr>(M->getBase())) {
2513 if (auto *FD = dyn_cast_or_null<FieldDecl>(SubME->getMemberDecl())) {
2514 if (FD->isAnonymousStructOrUnion()) {
2515 AddStmt(SubME->getBase());
2516 return;
2517 }
2518 }
2519 }
2520
2521 AddStmt(M->getBase());
Guy Benyei11169dd2012-12-18 14:30:41 +00002522}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002523void EnqueueVisitor::VisitObjCEncodeExpr(const ObjCEncodeExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002524 AddTypeLoc(E->getEncodedTypeSourceInfo());
2525}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002526void EnqueueVisitor::VisitObjCMessageExpr(const ObjCMessageExpr *M) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002527 EnqueueChildren(M);
2528 AddTypeLoc(M->getClassReceiverTypeInfo());
2529}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002530void EnqueueVisitor::VisitOffsetOfExpr(const OffsetOfExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002531 // Visit the components of the offsetof expression.
2532 for (unsigned N = E->getNumComponents(), I = N; I > 0; --I) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002533 const OffsetOfNode &Node = E->getComponent(I-1);
2534 switch (Node.getKind()) {
2535 case OffsetOfNode::Array:
2536 AddStmt(E->getIndexExpr(Node.getArrayExprIndex()));
2537 break;
2538 case OffsetOfNode::Field:
2539 AddMemberRef(Node.getField(), Node.getSourceRange().getEnd());
2540 break;
2541 case OffsetOfNode::Identifier:
2542 case OffsetOfNode::Base:
2543 continue;
2544 }
2545 }
2546 // Visit the type into which we're computing the offset.
2547 AddTypeLoc(E->getTypeSourceInfo());
2548}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002549void EnqueueVisitor::VisitOverloadExpr(const OverloadExpr *E) {
James Y Knight04ec5bf2015-12-24 02:59:37 +00002550 if (E->hasExplicitTemplateArgs())
2551 AddExplicitTemplateArgs(E->getTemplateArgs(), E->getNumTemplateArgs());
Guy Benyei11169dd2012-12-18 14:30:41 +00002552 WL.push_back(OverloadExprParts(E, Parent));
2553}
2554void EnqueueVisitor::VisitUnaryExprOrTypeTraitExpr(
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002555 const UnaryExprOrTypeTraitExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002556 EnqueueChildren(E);
2557 if (E->isArgumentType())
2558 AddTypeLoc(E->getArgumentTypeInfo());
2559}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002560void EnqueueVisitor::VisitStmt(const Stmt *S) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002561 EnqueueChildren(S);
2562}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002563void EnqueueVisitor::VisitSwitchStmt(const SwitchStmt *S) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002564 AddStmt(S->getBody());
2565 AddStmt(S->getCond());
2566 AddDecl(S->getConditionVariable());
2567}
2568
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002569void EnqueueVisitor::VisitWhileStmt(const WhileStmt *W) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002570 AddStmt(W->getBody());
2571 AddStmt(W->getCond());
2572 AddDecl(W->getConditionVariable());
2573}
2574
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002575void EnqueueVisitor::VisitTypeTraitExpr(const TypeTraitExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002576 for (unsigned I = E->getNumArgs(); I > 0; --I)
2577 AddTypeLoc(E->getArg(I-1));
2578}
2579
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002580void EnqueueVisitor::VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002581 AddTypeLoc(E->getQueriedTypeSourceInfo());
2582}
2583
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002584void EnqueueVisitor::VisitExpressionTraitExpr(const ExpressionTraitExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002585 EnqueueChildren(E);
2586}
2587
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002588void EnqueueVisitor::VisitUnresolvedMemberExpr(const UnresolvedMemberExpr *U) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002589 VisitOverloadExpr(U);
2590 if (!U->isImplicitAccess())
2591 AddStmt(U->getBase());
2592}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002593void EnqueueVisitor::VisitVAArgExpr(const VAArgExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002594 AddStmt(E->getSubExpr());
2595 AddTypeLoc(E->getWrittenTypeInfo());
2596}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002597void EnqueueVisitor::VisitSizeOfPackExpr(const SizeOfPackExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002598 WL.push_back(SizeOfPackExprParts(E, Parent));
2599}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002600void EnqueueVisitor::VisitOpaqueValueExpr(const OpaqueValueExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002601 // If the opaque value has a source expression, just transparently
2602 // visit that. This is useful for (e.g.) pseudo-object expressions.
2603 if (Expr *SourceExpr = E->getSourceExpr())
2604 return Visit(SourceExpr);
2605}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002606void EnqueueVisitor::VisitLambdaExpr(const LambdaExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002607 AddStmt(E->getBody());
2608 WL.push_back(LambdaExprParts(E, Parent));
2609}
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002610void EnqueueVisitor::VisitPseudoObjectExpr(const PseudoObjectExpr *E) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002611 // Treat the expression like its syntactic form.
2612 Visit(E->getSyntacticForm());
2613}
2614
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00002615void EnqueueVisitor::VisitOMPExecutableDirective(
2616 const OMPExecutableDirective *D) {
2617 EnqueueChildren(D);
2618 for (ArrayRef<OMPClause *>::iterator I = D->clauses().begin(),
2619 E = D->clauses().end();
2620 I != E; ++I)
2621 EnqueueChildren(*I);
2622}
2623
Alexander Musman3aaab662014-08-19 11:27:13 +00002624void EnqueueVisitor::VisitOMPLoopDirective(const OMPLoopDirective *D) {
2625 VisitOMPExecutableDirective(D);
2626}
2627
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00002628void EnqueueVisitor::VisitOMPParallelDirective(const OMPParallelDirective *D) {
2629 VisitOMPExecutableDirective(D);
2630}
2631
Alexey Bataev1b59ab52014-02-27 08:29:12 +00002632void EnqueueVisitor::VisitOMPSimdDirective(const OMPSimdDirective *D) {
Alexander Musman3aaab662014-08-19 11:27:13 +00002633 VisitOMPLoopDirective(D);
Alexey Bataev1b59ab52014-02-27 08:29:12 +00002634}
2635
Alexey Bataevf29276e2014-06-18 04:14:57 +00002636void EnqueueVisitor::VisitOMPForDirective(const OMPForDirective *D) {
Alexander Musman3aaab662014-08-19 11:27:13 +00002637 VisitOMPLoopDirective(D);
Alexey Bataevf29276e2014-06-18 04:14:57 +00002638}
2639
Alexander Musmanf82886e2014-09-18 05:12:34 +00002640void EnqueueVisitor::VisitOMPForSimdDirective(const OMPForSimdDirective *D) {
2641 VisitOMPLoopDirective(D);
2642}
2643
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00002644void EnqueueVisitor::VisitOMPSectionsDirective(const OMPSectionsDirective *D) {
2645 VisitOMPExecutableDirective(D);
2646}
2647
Alexey Bataev1e0498a2014-06-26 08:21:58 +00002648void EnqueueVisitor::VisitOMPSectionDirective(const OMPSectionDirective *D) {
2649 VisitOMPExecutableDirective(D);
2650}
2651
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00002652void EnqueueVisitor::VisitOMPSingleDirective(const OMPSingleDirective *D) {
2653 VisitOMPExecutableDirective(D);
2654}
2655
Alexander Musman80c22892014-07-17 08:54:58 +00002656void EnqueueVisitor::VisitOMPMasterDirective(const OMPMasterDirective *D) {
2657 VisitOMPExecutableDirective(D);
2658}
2659
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002660void EnqueueVisitor::VisitOMPCriticalDirective(const OMPCriticalDirective *D) {
2661 VisitOMPExecutableDirective(D);
2662 AddDeclarationNameInfo(D);
2663}
2664
Alexey Bataev4acb8592014-07-07 13:01:15 +00002665void
2666EnqueueVisitor::VisitOMPParallelForDirective(const OMPParallelForDirective *D) {
Alexander Musman3aaab662014-08-19 11:27:13 +00002667 VisitOMPLoopDirective(D);
Alexey Bataev4acb8592014-07-07 13:01:15 +00002668}
2669
Alexander Musmane4e893b2014-09-23 09:33:00 +00002670void EnqueueVisitor::VisitOMPParallelForSimdDirective(
2671 const OMPParallelForSimdDirective *D) {
2672 VisitOMPLoopDirective(D);
2673}
2674
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002675void EnqueueVisitor::VisitOMPParallelSectionsDirective(
2676 const OMPParallelSectionsDirective *D) {
2677 VisitOMPExecutableDirective(D);
2678}
2679
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00002680void EnqueueVisitor::VisitOMPTaskDirective(const OMPTaskDirective *D) {
2681 VisitOMPExecutableDirective(D);
2682}
2683
Alexey Bataev68446b72014-07-18 07:47:19 +00002684void
2685EnqueueVisitor::VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *D) {
2686 VisitOMPExecutableDirective(D);
2687}
2688
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00002689void EnqueueVisitor::VisitOMPBarrierDirective(const OMPBarrierDirective *D) {
2690 VisitOMPExecutableDirective(D);
2691}
2692
Alexey Bataev2df347a2014-07-18 10:17:07 +00002693void EnqueueVisitor::VisitOMPTaskwaitDirective(const OMPTaskwaitDirective *D) {
2694 VisitOMPExecutableDirective(D);
2695}
2696
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00002697void EnqueueVisitor::VisitOMPTaskgroupDirective(
2698 const OMPTaskgroupDirective *D) {
2699 VisitOMPExecutableDirective(D);
2700}
2701
Alexey Bataev6125da92014-07-21 11:26:11 +00002702void EnqueueVisitor::VisitOMPFlushDirective(const OMPFlushDirective *D) {
2703 VisitOMPExecutableDirective(D);
2704}
2705
Alexey Bataev9fb6e642014-07-22 06:45:04 +00002706void EnqueueVisitor::VisitOMPOrderedDirective(const OMPOrderedDirective *D) {
2707 VisitOMPExecutableDirective(D);
2708}
2709
Alexey Bataev0162e452014-07-22 10:10:35 +00002710void EnqueueVisitor::VisitOMPAtomicDirective(const OMPAtomicDirective *D) {
2711 VisitOMPExecutableDirective(D);
2712}
2713
Alexey Bataev0bd520b2014-09-19 08:19:49 +00002714void EnqueueVisitor::VisitOMPTargetDirective(const OMPTargetDirective *D) {
2715 VisitOMPExecutableDirective(D);
2716}
2717
Michael Wong65f367f2015-07-21 13:44:28 +00002718void EnqueueVisitor::VisitOMPTargetDataDirective(const
2719 OMPTargetDataDirective *D) {
2720 VisitOMPExecutableDirective(D);
2721}
2722
Samuel Antaodf67fc42016-01-19 19:15:56 +00002723void EnqueueVisitor::VisitOMPTargetEnterDataDirective(
2724 const OMPTargetEnterDataDirective *D) {
2725 VisitOMPExecutableDirective(D);
2726}
2727
Samuel Antao72590762016-01-19 20:04:50 +00002728void EnqueueVisitor::VisitOMPTargetExitDataDirective(
2729 const OMPTargetExitDataDirective *D) {
2730 VisitOMPExecutableDirective(D);
2731}
2732
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00002733void EnqueueVisitor::VisitOMPTargetParallelDirective(
2734 const OMPTargetParallelDirective *D) {
2735 VisitOMPExecutableDirective(D);
2736}
2737
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00002738void EnqueueVisitor::VisitOMPTargetParallelForDirective(
2739 const OMPTargetParallelForDirective *D) {
2740 VisitOMPLoopDirective(D);
2741}
2742
Alexey Bataev13314bf2014-10-09 04:18:56 +00002743void EnqueueVisitor::VisitOMPTeamsDirective(const OMPTeamsDirective *D) {
2744 VisitOMPExecutableDirective(D);
2745}
2746
Alexey Bataev6d4ed052015-07-01 06:57:41 +00002747void EnqueueVisitor::VisitOMPCancellationPointDirective(
2748 const OMPCancellationPointDirective *D) {
2749 VisitOMPExecutableDirective(D);
2750}
2751
Alexey Bataev80909872015-07-02 11:25:17 +00002752void EnqueueVisitor::VisitOMPCancelDirective(const OMPCancelDirective *D) {
2753 VisitOMPExecutableDirective(D);
2754}
2755
Alexey Bataev49f6e782015-12-01 04:18:41 +00002756void EnqueueVisitor::VisitOMPTaskLoopDirective(const OMPTaskLoopDirective *D) {
2757 VisitOMPLoopDirective(D);
2758}
2759
Alexey Bataev0a6ed842015-12-03 09:40:15 +00002760void EnqueueVisitor::VisitOMPTaskLoopSimdDirective(
2761 const OMPTaskLoopSimdDirective *D) {
2762 VisitOMPLoopDirective(D);
2763}
2764
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00002765void EnqueueVisitor::VisitOMPDistributeDirective(
2766 const OMPDistributeDirective *D) {
2767 VisitOMPLoopDirective(D);
2768}
2769
Carlo Bertolli9925f152016-06-27 14:55:37 +00002770void EnqueueVisitor::VisitOMPDistributeParallelForDirective(
2771 const OMPDistributeParallelForDirective *D) {
2772 VisitOMPLoopDirective(D);
2773}
2774
Kelvin Li4a39add2016-07-05 05:00:15 +00002775void EnqueueVisitor::VisitOMPDistributeParallelForSimdDirective(
2776 const OMPDistributeParallelForSimdDirective *D) {
2777 VisitOMPLoopDirective(D);
2778}
2779
Kelvin Li787f3fc2016-07-06 04:45:38 +00002780void EnqueueVisitor::VisitOMPDistributeSimdDirective(
2781 const OMPDistributeSimdDirective *D) {
2782 VisitOMPLoopDirective(D);
2783}
2784
Kelvin Lia579b912016-07-14 02:54:56 +00002785void EnqueueVisitor::VisitOMPTargetParallelForSimdDirective(
2786 const OMPTargetParallelForSimdDirective *D) {
2787 VisitOMPLoopDirective(D);
2788}
2789
Kelvin Li986330c2016-07-20 22:57:10 +00002790void EnqueueVisitor::VisitOMPTargetSimdDirective(
2791 const OMPTargetSimdDirective *D) {
2792 VisitOMPLoopDirective(D);
2793}
2794
Kelvin Li02532872016-08-05 14:37:37 +00002795void EnqueueVisitor::VisitOMPTeamsDistributeDirective(
2796 const OMPTeamsDistributeDirective *D) {
2797 VisitOMPLoopDirective(D);
2798}
2799
Kelvin Li4e325f72016-10-25 12:50:55 +00002800void EnqueueVisitor::VisitOMPTeamsDistributeSimdDirective(
2801 const OMPTeamsDistributeSimdDirective *D) {
2802 VisitOMPLoopDirective(D);
2803}
2804
Kelvin Li579e41c2016-11-30 23:51:03 +00002805void EnqueueVisitor::VisitOMPTeamsDistributeParallelForSimdDirective(
2806 const OMPTeamsDistributeParallelForSimdDirective *D) {
2807 VisitOMPLoopDirective(D);
2808}
2809
Kelvin Li7ade93f2016-12-09 03:24:30 +00002810void EnqueueVisitor::VisitOMPTeamsDistributeParallelForDirective(
2811 const OMPTeamsDistributeParallelForDirective *D) {
2812 VisitOMPLoopDirective(D);
2813}
2814
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002815void CursorVisitor::EnqueueWorkList(VisitorWorkList &WL, const Stmt *S) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002816 EnqueueVisitor(WL, MakeCXCursor(S, StmtParent, TU,RegionOfInterest)).Visit(S);
2817}
2818
2819bool CursorVisitor::IsInRegionOfInterest(CXCursor C) {
2820 if (RegionOfInterest.isValid()) {
2821 SourceRange Range = getRawCursorExtent(C);
2822 if (Range.isInvalid() || CompareRegionOfInterest(Range))
2823 return false;
2824 }
2825 return true;
2826}
2827
2828bool CursorVisitor::RunVisitorWorkList(VisitorWorkList &WL) {
2829 while (!WL.empty()) {
2830 // Dequeue the worklist item.
Robert Wilhelm25284cc2013-08-23 16:11:15 +00002831 VisitorJob LI = WL.pop_back_val();
Guy Benyei11169dd2012-12-18 14:30:41 +00002832
2833 // Set the Parent field, then back to its old value once we're done.
2834 SetParentRAII SetParent(Parent, StmtParent, LI.getParent());
2835
2836 switch (LI.getKind()) {
2837 case VisitorJob::DeclVisitKind: {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002838 const Decl *D = cast<DeclVisit>(&LI)->get();
Guy Benyei11169dd2012-12-18 14:30:41 +00002839 if (!D)
2840 continue;
2841
2842 // For now, perform default visitation for Decls.
2843 if (Visit(MakeCXCursor(D, TU, RegionOfInterest,
2844 cast<DeclVisit>(&LI)->isFirst())))
2845 return true;
2846
2847 continue;
2848 }
2849 case VisitorJob::ExplicitTemplateArgsVisitKind: {
James Y Knight04ec5bf2015-12-24 02:59:37 +00002850 for (const TemplateArgumentLoc &Arg :
2851 *cast<ExplicitTemplateArgsVisit>(&LI)) {
2852 if (VisitTemplateArgumentLoc(Arg))
Guy Benyei11169dd2012-12-18 14:30:41 +00002853 return true;
2854 }
2855 continue;
2856 }
2857 case VisitorJob::TypeLocVisitKind: {
2858 // Perform default visitation for TypeLocs.
2859 if (Visit(cast<TypeLocVisit>(&LI)->get()))
2860 return true;
2861 continue;
2862 }
2863 case VisitorJob::LabelRefVisitKind: {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002864 const LabelDecl *LS = cast<LabelRefVisit>(&LI)->get();
Guy Benyei11169dd2012-12-18 14:30:41 +00002865 if (LabelStmt *stmt = LS->getStmt()) {
2866 if (Visit(MakeCursorLabelRef(stmt, cast<LabelRefVisit>(&LI)->getLoc(),
2867 TU))) {
2868 return true;
2869 }
2870 }
2871 continue;
2872 }
2873
2874 case VisitorJob::NestedNameSpecifierLocVisitKind: {
2875 NestedNameSpecifierLocVisit *V = cast<NestedNameSpecifierLocVisit>(&LI);
2876 if (VisitNestedNameSpecifierLoc(V->get()))
2877 return true;
2878 continue;
2879 }
2880
2881 case VisitorJob::DeclarationNameInfoVisitKind: {
2882 if (VisitDeclarationNameInfo(cast<DeclarationNameInfoVisit>(&LI)
2883 ->get()))
2884 return true;
2885 continue;
2886 }
2887 case VisitorJob::MemberRefVisitKind: {
2888 MemberRefVisit *V = cast<MemberRefVisit>(&LI);
2889 if (Visit(MakeCursorMemberRef(V->get(), V->getLoc(), TU)))
2890 return true;
2891 continue;
2892 }
2893 case VisitorJob::StmtVisitKind: {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002894 const Stmt *S = cast<StmtVisit>(&LI)->get();
Guy Benyei11169dd2012-12-18 14:30:41 +00002895 if (!S)
2896 continue;
2897
2898 // Update the current cursor.
2899 CXCursor Cursor = MakeCXCursor(S, StmtParent, TU, RegionOfInterest);
2900 if (!IsInRegionOfInterest(Cursor))
2901 continue;
2902 switch (Visitor(Cursor, Parent, ClientData)) {
2903 case CXChildVisit_Break: return true;
2904 case CXChildVisit_Continue: break;
2905 case CXChildVisit_Recurse:
2906 if (PostChildrenVisitor)
Craig Topper69186e72014-06-08 08:38:04 +00002907 WL.push_back(PostChildrenVisit(nullptr, Cursor));
Guy Benyei11169dd2012-12-18 14:30:41 +00002908 EnqueueWorkList(WL, S);
2909 break;
2910 }
2911 continue;
2912 }
2913 case VisitorJob::MemberExprPartsKind: {
2914 // Handle the other pieces in the MemberExpr besides the base.
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002915 const MemberExpr *M = cast<MemberExprParts>(&LI)->get();
Guy Benyei11169dd2012-12-18 14:30:41 +00002916
2917 // Visit the nested-name-specifier
2918 if (NestedNameSpecifierLoc QualifierLoc = M->getQualifierLoc())
2919 if (VisitNestedNameSpecifierLoc(QualifierLoc))
2920 return true;
2921
2922 // Visit the declaration name.
2923 if (VisitDeclarationNameInfo(M->getMemberNameInfo()))
2924 return true;
2925
2926 // Visit the explicitly-specified template arguments, if any.
2927 if (M->hasExplicitTemplateArgs()) {
2928 for (const TemplateArgumentLoc *Arg = M->getTemplateArgs(),
2929 *ArgEnd = Arg + M->getNumTemplateArgs();
2930 Arg != ArgEnd; ++Arg) {
2931 if (VisitTemplateArgumentLoc(*Arg))
2932 return true;
2933 }
2934 }
2935 continue;
2936 }
2937 case VisitorJob::DeclRefExprPartsKind: {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002938 const DeclRefExpr *DR = cast<DeclRefExprParts>(&LI)->get();
Guy Benyei11169dd2012-12-18 14:30:41 +00002939 // Visit nested-name-specifier, if present.
2940 if (NestedNameSpecifierLoc QualifierLoc = DR->getQualifierLoc())
2941 if (VisitNestedNameSpecifierLoc(QualifierLoc))
2942 return true;
2943 // Visit declaration name.
2944 if (VisitDeclarationNameInfo(DR->getNameInfo()))
2945 return true;
2946 continue;
2947 }
2948 case VisitorJob::OverloadExprPartsKind: {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002949 const OverloadExpr *O = cast<OverloadExprParts>(&LI)->get();
Guy Benyei11169dd2012-12-18 14:30:41 +00002950 // Visit the nested-name-specifier.
2951 if (NestedNameSpecifierLoc QualifierLoc = O->getQualifierLoc())
2952 if (VisitNestedNameSpecifierLoc(QualifierLoc))
2953 return true;
2954 // Visit the declaration name.
2955 if (VisitDeclarationNameInfo(O->getNameInfo()))
2956 return true;
2957 // Visit the overloaded declaration reference.
2958 if (Visit(MakeCursorOverloadedDeclRef(O, TU)))
2959 return true;
2960 continue;
2961 }
2962 case VisitorJob::SizeOfPackExprPartsKind: {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002963 const SizeOfPackExpr *E = cast<SizeOfPackExprParts>(&LI)->get();
Guy Benyei11169dd2012-12-18 14:30:41 +00002964 NamedDecl *Pack = E->getPack();
2965 if (isa<TemplateTypeParmDecl>(Pack)) {
2966 if (Visit(MakeCursorTypeRef(cast<TemplateTypeParmDecl>(Pack),
2967 E->getPackLoc(), TU)))
2968 return true;
2969
2970 continue;
2971 }
2972
2973 if (isa<TemplateTemplateParmDecl>(Pack)) {
2974 if (Visit(MakeCursorTemplateRef(cast<TemplateTemplateParmDecl>(Pack),
2975 E->getPackLoc(), TU)))
2976 return true;
2977
2978 continue;
2979 }
2980
2981 // Non-type template parameter packs and function parameter packs are
2982 // treated like DeclRefExpr cursors.
2983 continue;
2984 }
2985
2986 case VisitorJob::LambdaExprPartsKind: {
2987 // Visit captures.
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00002988 const LambdaExpr *E = cast<LambdaExprParts>(&LI)->get();
Guy Benyei11169dd2012-12-18 14:30:41 +00002989 for (LambdaExpr::capture_iterator C = E->explicit_capture_begin(),
2990 CEnd = E->explicit_capture_end();
2991 C != CEnd; ++C) {
Richard Smithba71c082013-05-16 06:20:58 +00002992 // FIXME: Lambda init-captures.
2993 if (!C->capturesVariable())
Guy Benyei11169dd2012-12-18 14:30:41 +00002994 continue;
Richard Smithba71c082013-05-16 06:20:58 +00002995
Guy Benyei11169dd2012-12-18 14:30:41 +00002996 if (Visit(MakeCursorVariableRef(C->getCapturedVar(),
2997 C->getLocation(),
2998 TU)))
2999 return true;
3000 }
3001
3002 // Visit parameters and return type, if present.
3003 if (E->hasExplicitParameters() || E->hasExplicitResultType()) {
3004 TypeLoc TL = E->getCallOperator()->getTypeSourceInfo()->getTypeLoc();
3005 if (E->hasExplicitParameters() && E->hasExplicitResultType()) {
3006 // Visit the whole type.
3007 if (Visit(TL))
3008 return true;
David Blaikie6adc78e2013-02-18 22:06:02 +00003009 } else if (FunctionProtoTypeLoc Proto =
3010 TL.getAs<FunctionProtoTypeLoc>()) {
Guy Benyei11169dd2012-12-18 14:30:41 +00003011 if (E->hasExplicitParameters()) {
3012 // Visit parameters.
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003013 for (unsigned I = 0, N = Proto.getNumParams(); I != N; ++I)
3014 if (Visit(MakeCXCursor(Proto.getParam(I), TU)))
Guy Benyei11169dd2012-12-18 14:30:41 +00003015 return true;
3016 } else {
3017 // Visit result type.
Alp Toker42a16a62014-01-25 23:51:36 +00003018 if (Visit(Proto.getReturnLoc()))
Guy Benyei11169dd2012-12-18 14:30:41 +00003019 return true;
3020 }
3021 }
3022 }
3023 break;
3024 }
3025
3026 case VisitorJob::PostChildrenVisitKind:
3027 if (PostChildrenVisitor(Parent, ClientData))
3028 return true;
3029 break;
3030 }
3031 }
3032 return false;
3033}
3034
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00003035bool CursorVisitor::Visit(const Stmt *S) {
Craig Topper69186e72014-06-08 08:38:04 +00003036 VisitorWorkList *WL = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00003037 if (!WorkListFreeList.empty()) {
3038 WL = WorkListFreeList.back();
3039 WL->clear();
3040 WorkListFreeList.pop_back();
3041 }
3042 else {
3043 WL = new VisitorWorkList();
3044 WorkListCache.push_back(WL);
3045 }
3046 EnqueueWorkList(*WL, S);
3047 bool result = RunVisitorWorkList(*WL);
3048 WorkListFreeList.push_back(WL);
3049 return result;
3050}
3051
3052namespace {
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003053typedef SmallVector<SourceRange, 4> RefNamePieces;
James Y Knight04ec5bf2015-12-24 02:59:37 +00003054RefNamePieces buildPieces(unsigned NameFlags, bool IsMemberRefExpr,
3055 const DeclarationNameInfo &NI, SourceRange QLoc,
3056 const SourceRange *TemplateArgsLoc = nullptr) {
Guy Benyei11169dd2012-12-18 14:30:41 +00003057 const bool WantQualifier = NameFlags & CXNameRange_WantQualifier;
3058 const bool WantTemplateArgs = NameFlags & CXNameRange_WantTemplateArgs;
3059 const bool WantSinglePiece = NameFlags & CXNameRange_WantSinglePiece;
3060
3061 const DeclarationName::NameKind Kind = NI.getName().getNameKind();
3062
3063 RefNamePieces Pieces;
3064
3065 if (WantQualifier && QLoc.isValid())
3066 Pieces.push_back(QLoc);
3067
3068 if (Kind != DeclarationName::CXXOperatorName || IsMemberRefExpr)
3069 Pieces.push_back(NI.getLoc());
James Y Knight04ec5bf2015-12-24 02:59:37 +00003070
3071 if (WantTemplateArgs && TemplateArgsLoc && TemplateArgsLoc->isValid())
3072 Pieces.push_back(*TemplateArgsLoc);
3073
Guy Benyei11169dd2012-12-18 14:30:41 +00003074 if (Kind == DeclarationName::CXXOperatorName) {
3075 Pieces.push_back(SourceLocation::getFromRawEncoding(
3076 NI.getInfo().CXXOperatorName.BeginOpNameLoc));
3077 Pieces.push_back(SourceLocation::getFromRawEncoding(
3078 NI.getInfo().CXXOperatorName.EndOpNameLoc));
3079 }
3080
3081 if (WantSinglePiece) {
3082 SourceRange R(Pieces.front().getBegin(), Pieces.back().getEnd());
3083 Pieces.clear();
3084 Pieces.push_back(R);
3085 }
3086
3087 return Pieces;
3088}
Alexander Kornienkoab9db512015-06-22 23:07:51 +00003089}
Guy Benyei11169dd2012-12-18 14:30:41 +00003090
3091//===----------------------------------------------------------------------===//
3092// Misc. API hooks.
3093//===----------------------------------------------------------------------===//
3094
Chad Rosier05c71aa2013-03-27 18:28:23 +00003095static void fatal_error_handler(void *user_data, const std::string& reason,
3096 bool gen_crash_diag) {
Guy Benyei11169dd2012-12-18 14:30:41 +00003097 // Write the result out to stderr avoiding errs() because raw_ostreams can
3098 // call report_fatal_error.
3099 fprintf(stderr, "LIBCLANG FATAL ERROR: %s\n", reason.c_str());
3100 ::abort();
3101}
3102
Chandler Carruth66660742014-06-27 16:37:27 +00003103namespace {
3104struct RegisterFatalErrorHandler {
3105 RegisterFatalErrorHandler() {
3106 llvm::install_fatal_error_handler(fatal_error_handler, nullptr);
3107 }
3108};
3109}
3110
3111static llvm::ManagedStatic<RegisterFatalErrorHandler> RegisterFatalErrorHandlerOnce;
3112
Guy Benyei11169dd2012-12-18 14:30:41 +00003113extern "C" {
3114CXIndex clang_createIndex(int excludeDeclarationsFromPCH,
3115 int displayDiagnostics) {
Guy Benyei11169dd2012-12-18 14:30:41 +00003116 // We use crash recovery to make some of our APIs more reliable, implicitly
3117 // enable it.
Argyrios Kyrtzidis3701f542013-11-27 08:58:09 +00003118 if (!getenv("LIBCLANG_DISABLE_CRASH_RECOVERY"))
3119 llvm::CrashRecoveryContext::Enable();
Guy Benyei11169dd2012-12-18 14:30:41 +00003120
Chandler Carruth66660742014-06-27 16:37:27 +00003121 // Look through the managed static to trigger construction of the managed
3122 // static which registers our fatal error handler. This ensures it is only
3123 // registered once.
3124 (void)*RegisterFatalErrorHandlerOnce;
Guy Benyei11169dd2012-12-18 14:30:41 +00003125
Adrian Prantlbc068582015-07-08 01:00:30 +00003126 // Initialize targets for clang module support.
3127 llvm::InitializeAllTargets();
3128 llvm::InitializeAllTargetMCs();
3129 llvm::InitializeAllAsmPrinters();
3130 llvm::InitializeAllAsmParsers();
3131
Adrian Prantlfb2398d2015-07-17 01:19:54 +00003132 CIndexer *CIdxr = new CIndexer();
3133
Guy Benyei11169dd2012-12-18 14:30:41 +00003134 if (excludeDeclarationsFromPCH)
3135 CIdxr->setOnlyLocalDecls();
3136 if (displayDiagnostics)
3137 CIdxr->setDisplayDiagnostics();
3138
3139 if (getenv("LIBCLANG_BGPRIO_INDEX"))
3140 CIdxr->setCXGlobalOptFlags(CIdxr->getCXGlobalOptFlags() |
3141 CXGlobalOpt_ThreadBackgroundPriorityForIndexing);
3142 if (getenv("LIBCLANG_BGPRIO_EDIT"))
3143 CIdxr->setCXGlobalOptFlags(CIdxr->getCXGlobalOptFlags() |
3144 CXGlobalOpt_ThreadBackgroundPriorityForEditing);
3145
3146 return CIdxr;
3147}
3148
3149void clang_disposeIndex(CXIndex CIdx) {
3150 if (CIdx)
3151 delete static_cast<CIndexer *>(CIdx);
3152}
3153
3154void clang_CXIndex_setGlobalOptions(CXIndex CIdx, unsigned options) {
3155 if (CIdx)
3156 static_cast<CIndexer *>(CIdx)->setCXGlobalOptFlags(options);
3157}
3158
3159unsigned clang_CXIndex_getGlobalOptions(CXIndex CIdx) {
3160 if (CIdx)
3161 return static_cast<CIndexer *>(CIdx)->getCXGlobalOptFlags();
3162 return 0;
3163}
3164
3165void clang_toggleCrashRecovery(unsigned isEnabled) {
3166 if (isEnabled)
3167 llvm::CrashRecoveryContext::Enable();
3168 else
3169 llvm::CrashRecoveryContext::Disable();
3170}
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003171
Guy Benyei11169dd2012-12-18 14:30:41 +00003172CXTranslationUnit clang_createTranslationUnit(CXIndex CIdx,
3173 const char *ast_filename) {
Dmitri Gribenko8850cda2014-02-19 10:24:00 +00003174 CXTranslationUnit TU;
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003175 enum CXErrorCode Result =
3176 clang_createTranslationUnit2(CIdx, ast_filename, &TU);
Reid Klecknerfd48fc62014-02-12 23:56:20 +00003177 (void)Result;
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003178 assert((TU && Result == CXError_Success) ||
3179 (!TU && Result != CXError_Success));
3180 return TU;
3181}
3182
3183enum CXErrorCode clang_createTranslationUnit2(CXIndex CIdx,
3184 const char *ast_filename,
3185 CXTranslationUnit *out_TU) {
Dmitri Gribenko8850cda2014-02-19 10:24:00 +00003186 if (out_TU)
Craig Topper69186e72014-06-08 08:38:04 +00003187 *out_TU = nullptr;
Dmitri Gribenko8850cda2014-02-19 10:24:00 +00003188
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003189 if (!CIdx || !ast_filename || !out_TU)
3190 return CXError_InvalidArguments;
Guy Benyei11169dd2012-12-18 14:30:41 +00003191
Argyrios Kyrtzidis27021012013-05-24 22:24:07 +00003192 LOG_FUNC_SECTION {
3193 *Log << ast_filename;
3194 }
3195
Guy Benyei11169dd2012-12-18 14:30:41 +00003196 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
3197 FileSystemOptions FileSystemOpts;
3198
Justin Bognerd512c1e2014-10-15 00:33:06 +00003199 IntrusiveRefCntPtr<DiagnosticsEngine> Diags =
3200 CompilerInstance::createDiagnostics(new DiagnosticOptions());
David Blaikie6f7382d2014-08-10 19:08:04 +00003201 std::unique_ptr<ASTUnit> AU = ASTUnit::LoadFromASTFile(
Adrian Prantlfb2398d2015-07-17 01:19:54 +00003202 ast_filename, CXXIdx->getPCHContainerOperations()->getRawReader(), Diags,
Adrian Prantl6b21ab22015-08-27 19:46:20 +00003203 FileSystemOpts, /*UseDebugInfo=*/false,
3204 CXXIdx->getOnlyLocalDecls(), None,
David Blaikie6f7382d2014-08-10 19:08:04 +00003205 /*CaptureDiagnostics=*/true,
3206 /*AllowPCHWithCompilerErrors=*/true,
3207 /*UserFilesAreVolatile=*/true);
3208 *out_TU = MakeCXTranslationUnit(CXXIdx, AU.release());
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003209 return *out_TU ? CXError_Success : CXError_Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00003210}
3211
3212unsigned clang_defaultEditingTranslationUnitOptions() {
3213 return CXTranslationUnit_PrecompiledPreamble |
3214 CXTranslationUnit_CacheCompletionResults;
3215}
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003216
Guy Benyei11169dd2012-12-18 14:30:41 +00003217CXTranslationUnit
3218clang_createTranslationUnitFromSourceFile(CXIndex CIdx,
3219 const char *source_filename,
3220 int num_command_line_args,
3221 const char * const *command_line_args,
3222 unsigned num_unsaved_files,
3223 struct CXUnsavedFile *unsaved_files) {
3224 unsigned Options = CXTranslationUnit_DetailedPreprocessingRecord;
3225 return clang_parseTranslationUnit(CIdx, source_filename,
3226 command_line_args, num_command_line_args,
3227 unsaved_files, num_unsaved_files,
3228 Options);
3229}
3230
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003231static CXErrorCode
3232clang_parseTranslationUnit_Impl(CXIndex CIdx, const char *source_filename,
3233 const char *const *command_line_args,
3234 int num_command_line_args,
3235 ArrayRef<CXUnsavedFile> unsaved_files,
3236 unsigned options, CXTranslationUnit *out_TU) {
Dmitri Gribenko1bf8d912014-02-18 15:20:02 +00003237 // Set up the initial return values.
3238 if (out_TU)
Craig Topper69186e72014-06-08 08:38:04 +00003239 *out_TU = nullptr;
Dmitri Gribenko1bf8d912014-02-18 15:20:02 +00003240
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003241 // Check arguments.
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003242 if (!CIdx || !out_TU)
3243 return CXError_InvalidArguments;
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003244
Guy Benyei11169dd2012-12-18 14:30:41 +00003245 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
3246
3247 if (CXXIdx->isOptEnabled(CXGlobalOpt_ThreadBackgroundPriorityForIndexing))
3248 setThreadBackgroundPriority();
3249
3250 bool PrecompilePreamble = options & CXTranslationUnit_PrecompiledPreamble;
Benjamin Kramer5c248d82015-12-15 09:30:31 +00003251 bool CreatePreambleOnFirstParse =
3252 options & CXTranslationUnit_CreatePreambleOnFirstParse;
Guy Benyei11169dd2012-12-18 14:30:41 +00003253 // FIXME: Add a flag for modules.
3254 TranslationUnitKind TUKind
3255 = (options & CXTranslationUnit_Incomplete)? TU_Prefix : TU_Complete;
Alp Toker8c8a8752013-12-03 06:53:35 +00003256 bool CacheCodeCompletionResults
Guy Benyei11169dd2012-12-18 14:30:41 +00003257 = options & CXTranslationUnit_CacheCompletionResults;
3258 bool IncludeBriefCommentsInCodeCompletion
3259 = options & CXTranslationUnit_IncludeBriefCommentsInCodeCompletion;
3260 bool SkipFunctionBodies = options & CXTranslationUnit_SkipFunctionBodies;
3261 bool ForSerialization = options & CXTranslationUnit_ForSerialization;
3262
3263 // Configure the diagnostics.
3264 IntrusiveRefCntPtr<DiagnosticsEngine>
Sean Silvaf1b49e22013-01-20 01:58:28 +00003265 Diags(CompilerInstance::createDiagnostics(new DiagnosticOptions));
Guy Benyei11169dd2012-12-18 14:30:41 +00003266
Manuel Klimek016c0242016-03-01 10:56:19 +00003267 if (options & CXTranslationUnit_KeepGoing)
3268 Diags->setFatalsAsError(true);
3269
Guy Benyei11169dd2012-12-18 14:30:41 +00003270 // Recover resources if we crash before exiting this function.
3271 llvm::CrashRecoveryContextCleanupRegistrar<DiagnosticsEngine,
3272 llvm::CrashRecoveryContextReleaseRefCleanup<DiagnosticsEngine> >
Alp Tokerf994cef2014-07-05 03:08:06 +00003273 DiagCleanup(Diags.get());
Guy Benyei11169dd2012-12-18 14:30:41 +00003274
Ahmed Charlesb8984322014-03-07 20:03:18 +00003275 std::unique_ptr<std::vector<ASTUnit::RemappedFile>> RemappedFiles(
3276 new std::vector<ASTUnit::RemappedFile>());
Guy Benyei11169dd2012-12-18 14:30:41 +00003277
3278 // Recover resources if we crash before exiting this function.
3279 llvm::CrashRecoveryContextCleanupRegistrar<
3280 std::vector<ASTUnit::RemappedFile> > RemappedCleanup(RemappedFiles.get());
3281
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003282 for (auto &UF : unsaved_files) {
Rafael Espindolad87f8d72014-08-27 20:03:29 +00003283 std::unique_ptr<llvm::MemoryBuffer> MB =
Alp Toker9d85b182014-07-07 01:23:14 +00003284 llvm::MemoryBuffer::getMemBufferCopy(getContents(UF), UF.Filename);
Rafael Espindolad87f8d72014-08-27 20:03:29 +00003285 RemappedFiles->push_back(std::make_pair(UF.Filename, MB.release()));
Guy Benyei11169dd2012-12-18 14:30:41 +00003286 }
3287
Ahmed Charlesb8984322014-03-07 20:03:18 +00003288 std::unique_ptr<std::vector<const char *>> Args(
3289 new std::vector<const char *>());
Guy Benyei11169dd2012-12-18 14:30:41 +00003290
3291 // Recover resources if we crash before exiting this method.
3292 llvm::CrashRecoveryContextCleanupRegistrar<std::vector<const char*> >
3293 ArgsCleanup(Args.get());
3294
3295 // Since the Clang C library is primarily used by batch tools dealing with
3296 // (often very broken) source code, where spell-checking can have a
3297 // significant negative impact on performance (particularly when
3298 // precompiled headers are involved), we disable it by default.
3299 // Only do this if we haven't found a spell-checking-related argument.
3300 bool FoundSpellCheckingArgument = false;
3301 for (int I = 0; I != num_command_line_args; ++I) {
3302 if (strcmp(command_line_args[I], "-fno-spell-checking") == 0 ||
3303 strcmp(command_line_args[I], "-fspell-checking") == 0) {
3304 FoundSpellCheckingArgument = true;
3305 break;
3306 }
3307 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003308 Args->insert(Args->end(), command_line_args,
3309 command_line_args + num_command_line_args);
3310
Benjamin Kramerc02670e2015-11-18 16:14:27 +00003311 if (!FoundSpellCheckingArgument)
3312 Args->insert(Args->begin() + 1, "-fno-spell-checking");
3313
Guy Benyei11169dd2012-12-18 14:30:41 +00003314 // The 'source_filename' argument is optional. If the caller does not
3315 // specify it then it is assumed that the source file is specified
3316 // in the actual argument list.
3317 // Put the source file after command_line_args otherwise if '-x' flag is
3318 // present it will be unused.
3319 if (source_filename)
3320 Args->push_back(source_filename);
3321
3322 // Do we need the detailed preprocessing record?
3323 if (options & CXTranslationUnit_DetailedPreprocessingRecord) {
3324 Args->push_back("-Xclang");
3325 Args->push_back("-detailed-preprocessing-record");
3326 }
3327
3328 unsigned NumErrors = Diags->getClient()->getNumErrors();
Ahmed Charlesb8984322014-03-07 20:03:18 +00003329 std::unique_ptr<ASTUnit> ErrUnit;
Benjamin Kramer5c248d82015-12-15 09:30:31 +00003330 // Unless the user specified that they want the preamble on the first parse
3331 // set it up to be created on the first reparse. This makes the first parse
3332 // faster, trading for a slower (first) reparse.
3333 unsigned PrecompilePreambleAfterNParses =
3334 !PrecompilePreamble ? 0 : 2 - CreatePreambleOnFirstParse;
Ahmed Charlesb8984322014-03-07 20:03:18 +00003335 std::unique_ptr<ASTUnit> Unit(ASTUnit::LoadFromCommandLine(
Adrian Prantlbb165fb2015-06-20 18:53:08 +00003336 Args->data(), Args->data() + Args->size(),
3337 CXXIdx->getPCHContainerOperations(), Diags,
Ahmed Charlesb8984322014-03-07 20:03:18 +00003338 CXXIdx->getClangResourcesPath(), CXXIdx->getOnlyLocalDecls(),
3339 /*CaptureDiagnostics=*/true, *RemappedFiles.get(),
Benjamin Kramer5c248d82015-12-15 09:30:31 +00003340 /*RemappedFilesKeepOriginalName=*/true, PrecompilePreambleAfterNParses,
3341 TUKind, CacheCodeCompletionResults, IncludeBriefCommentsInCodeCompletion,
Ahmed Charlesb8984322014-03-07 20:03:18 +00003342 /*AllowPCHWithCompilerErrors=*/true, SkipFunctionBodies,
Argyrios Kyrtzidisa3e2ff12015-11-20 03:36:21 +00003343 /*UserFilesAreVolatile=*/true, ForSerialization,
3344 CXXIdx->getPCHContainerOperations()->getRawReader().getFormat(),
3345 &ErrUnit));
Guy Benyei11169dd2012-12-18 14:30:41 +00003346
Artem Belevich0ff05cd2015-07-13 23:27:56 +00003347 // Early failures in LoadFromCommandLine may return with ErrUnit unset.
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003348 if (!Unit && !ErrUnit)
3349 return CXError_ASTReadError;
Artem Belevich0ff05cd2015-07-13 23:27:56 +00003350
Guy Benyei11169dd2012-12-18 14:30:41 +00003351 if (NumErrors != Diags->getClient()->getNumErrors()) {
3352 // Make sure to check that 'Unit' is non-NULL.
3353 if (CXXIdx->getDisplayDiagnostics())
3354 printDiagsToStderr(Unit ? Unit.get() : ErrUnit.get());
3355 }
3356
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003357 if (isASTReadError(Unit ? Unit.get() : ErrUnit.get()))
3358 return CXError_ASTReadError;
3359
3360 *out_TU = MakeCXTranslationUnit(CXXIdx, Unit.release());
3361 return *out_TU ? CXError_Success : CXError_Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00003362}
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003363
3364CXTranslationUnit
3365clang_parseTranslationUnit(CXIndex CIdx,
3366 const char *source_filename,
3367 const char *const *command_line_args,
3368 int num_command_line_args,
3369 struct CXUnsavedFile *unsaved_files,
3370 unsigned num_unsaved_files,
3371 unsigned options) {
3372 CXTranslationUnit TU;
3373 enum CXErrorCode Result = clang_parseTranslationUnit2(
3374 CIdx, source_filename, command_line_args, num_command_line_args,
3375 unsaved_files, num_unsaved_files, options, &TU);
Reid Kleckner6eaf05a2014-02-13 01:19:59 +00003376 (void)Result;
Dmitri Gribenko1bf8d912014-02-18 15:20:02 +00003377 assert((TU && Result == CXError_Success) ||
3378 (!TU && Result != CXError_Success));
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003379 return TU;
3380}
3381
3382enum CXErrorCode clang_parseTranslationUnit2(
Benjamin Kramerc02670e2015-11-18 16:14:27 +00003383 CXIndex CIdx, const char *source_filename,
3384 const char *const *command_line_args, int num_command_line_args,
3385 struct CXUnsavedFile *unsaved_files, unsigned num_unsaved_files,
3386 unsigned options, CXTranslationUnit *out_TU) {
3387 SmallVector<const char *, 4> Args;
3388 Args.push_back("clang");
3389 Args.append(command_line_args, command_line_args + num_command_line_args);
3390 return clang_parseTranslationUnit2FullArgv(
3391 CIdx, source_filename, Args.data(), Args.size(), unsaved_files,
3392 num_unsaved_files, options, out_TU);
3393}
3394
3395enum CXErrorCode clang_parseTranslationUnit2FullArgv(
3396 CXIndex CIdx, const char *source_filename,
3397 const char *const *command_line_args, int num_command_line_args,
3398 struct CXUnsavedFile *unsaved_files, unsigned num_unsaved_files,
3399 unsigned options, CXTranslationUnit *out_TU) {
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00003400 LOG_FUNC_SECTION {
3401 *Log << source_filename << ": ";
3402 for (int i = 0; i != num_command_line_args; ++i)
3403 *Log << command_line_args[i] << " ";
3404 }
3405
Alp Toker9d85b182014-07-07 01:23:14 +00003406 if (num_unsaved_files && !unsaved_files)
3407 return CXError_InvalidArguments;
3408
Alp Toker5c532982014-07-07 22:42:03 +00003409 CXErrorCode result = CXError_Failure;
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003410 auto ParseTranslationUnitImpl = [=, &result] {
3411 result = clang_parseTranslationUnit_Impl(
3412 CIdx, source_filename, command_line_args, num_command_line_args,
3413 llvm::makeArrayRef(unsaved_files, num_unsaved_files), options, out_TU);
3414 };
Guy Benyei11169dd2012-12-18 14:30:41 +00003415 llvm::CrashRecoveryContext CRC;
3416
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003417 if (!RunSafely(CRC, ParseTranslationUnitImpl)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00003418 fprintf(stderr, "libclang: crash detected during parsing: {\n");
3419 fprintf(stderr, " 'source_filename' : '%s'\n", source_filename);
3420 fprintf(stderr, " 'command_line_args' : [");
3421 for (int i = 0; i != num_command_line_args; ++i) {
3422 if (i)
3423 fprintf(stderr, ", ");
3424 fprintf(stderr, "'%s'", command_line_args[i]);
3425 }
3426 fprintf(stderr, "],\n");
3427 fprintf(stderr, " 'unsaved_files' : [");
3428 for (unsigned i = 0; i != num_unsaved_files; ++i) {
3429 if (i)
3430 fprintf(stderr, ", ");
3431 fprintf(stderr, "('%s', '...', %ld)", unsaved_files[i].Filename,
3432 unsaved_files[i].Length);
3433 }
3434 fprintf(stderr, "],\n");
3435 fprintf(stderr, " 'options' : %d,\n", options);
3436 fprintf(stderr, "}\n");
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003437
3438 return CXError_Crashed;
Guy Benyei11169dd2012-12-18 14:30:41 +00003439 } else if (getenv("LIBCLANG_RESOURCE_USAGE")) {
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003440 if (CXTranslationUnit *TU = out_TU)
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003441 PrintLibclangResourceUsage(*TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00003442 }
Alp Toker5c532982014-07-07 22:42:03 +00003443
3444 return result;
Guy Benyei11169dd2012-12-18 14:30:41 +00003445}
3446
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003447CXString clang_Type_getObjCEncoding(CXType CT) {
3448 CXTranslationUnit tu = static_cast<CXTranslationUnit>(CT.data[1]);
3449 ASTContext &Ctx = getASTUnit(tu)->getASTContext();
3450 std::string encoding;
3451 Ctx.getObjCEncodingForType(QualType::getFromOpaquePtr(CT.data[0]),
3452 encoding);
3453
3454 return cxstring::createDup(encoding);
3455}
3456
3457static const IdentifierInfo *getMacroIdentifier(CXCursor C) {
3458 if (C.kind == CXCursor_MacroDefinition) {
3459 if (const MacroDefinitionRecord *MDR = getCursorMacroDefinition(C))
3460 return MDR->getName();
3461 } else if (C.kind == CXCursor_MacroExpansion) {
3462 MacroExpansionCursor ME = getCursorMacroExpansion(C);
3463 return ME.getName();
3464 }
3465 return nullptr;
3466}
3467
3468unsigned clang_Cursor_isMacroFunctionLike(CXCursor C) {
3469 const IdentifierInfo *II = getMacroIdentifier(C);
3470 if (!II) {
3471 return false;
3472 }
3473 ASTUnit *ASTU = getCursorASTUnit(C);
3474 Preprocessor &PP = ASTU->getPreprocessor();
3475 if (const MacroInfo *MI = PP.getMacroInfo(II))
3476 return MI->isFunctionLike();
3477 return false;
3478}
3479
3480unsigned clang_Cursor_isMacroBuiltin(CXCursor C) {
3481 const IdentifierInfo *II = getMacroIdentifier(C);
3482 if (!II) {
3483 return false;
3484 }
3485 ASTUnit *ASTU = getCursorASTUnit(C);
3486 Preprocessor &PP = ASTU->getPreprocessor();
3487 if (const MacroInfo *MI = PP.getMacroInfo(II))
3488 return MI->isBuiltinMacro();
3489 return false;
3490}
3491
3492unsigned clang_Cursor_isFunctionInlined(CXCursor C) {
3493 const Decl *D = getCursorDecl(C);
3494 const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D);
3495 if (!FD) {
3496 return false;
3497 }
3498 return FD->isInlined();
3499}
3500
3501static StringLiteral* getCFSTR_value(CallExpr *callExpr) {
3502 if (callExpr->getNumArgs() != 1) {
3503 return nullptr;
3504 }
3505
3506 StringLiteral *S = nullptr;
3507 auto *arg = callExpr->getArg(0);
3508 if (arg->getStmtClass() == Stmt::ImplicitCastExprClass) {
3509 ImplicitCastExpr *I = static_cast<ImplicitCastExpr *>(arg);
3510 auto *subExpr = I->getSubExprAsWritten();
3511
3512 if(subExpr->getStmtClass() != Stmt::StringLiteralClass){
3513 return nullptr;
3514 }
3515
3516 S = static_cast<StringLiteral *>(I->getSubExprAsWritten());
3517 } else if (arg->getStmtClass() == Stmt::StringLiteralClass) {
3518 S = static_cast<StringLiteral *>(callExpr->getArg(0));
3519 } else {
3520 return nullptr;
3521 }
3522 return S;
3523}
3524
David Blaikie59272572016-04-13 18:23:33 +00003525struct ExprEvalResult {
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003526 CXEvalResultKind EvalType;
3527 union {
Argyrios Kyrtzidis5dda1122016-12-01 23:41:27 +00003528 unsigned long long unsignedVal;
3529 long long intVal;
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003530 double floatVal;
3531 char *stringVal;
3532 } EvalData;
Argyrios Kyrtzidis5dda1122016-12-01 23:41:27 +00003533 bool IsUnsignedInt;
David Blaikie59272572016-04-13 18:23:33 +00003534 ~ExprEvalResult() {
3535 if (EvalType != CXEval_UnExposed && EvalType != CXEval_Float &&
3536 EvalType != CXEval_Int) {
3537 delete EvalData.stringVal;
3538 }
3539 }
3540};
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003541
3542void clang_EvalResult_dispose(CXEvalResult E) {
David Blaikie59272572016-04-13 18:23:33 +00003543 delete static_cast<ExprEvalResult *>(E);
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003544}
3545
3546CXEvalResultKind clang_EvalResult_getKind(CXEvalResult E) {
3547 if (!E) {
3548 return CXEval_UnExposed;
3549 }
3550 return ((ExprEvalResult *)E)->EvalType;
3551}
3552
3553int clang_EvalResult_getAsInt(CXEvalResult E) {
Argyrios Kyrtzidis5dda1122016-12-01 23:41:27 +00003554 return clang_EvalResult_getAsLongLong(E);
3555}
3556
3557long long clang_EvalResult_getAsLongLong(CXEvalResult E) {
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003558 if (!E) {
3559 return 0;
3560 }
Argyrios Kyrtzidis5dda1122016-12-01 23:41:27 +00003561 ExprEvalResult *Result = (ExprEvalResult*)E;
3562 if (Result->IsUnsignedInt)
3563 return Result->EvalData.unsignedVal;
3564 return Result->EvalData.intVal;
3565}
3566
3567unsigned clang_EvalResult_isUnsignedInt(CXEvalResult E) {
3568 return ((ExprEvalResult *)E)->IsUnsignedInt;
3569}
3570
3571unsigned long long clang_EvalResult_getAsUnsigned(CXEvalResult E) {
3572 if (!E) {
3573 return 0;
3574 }
3575
3576 ExprEvalResult *Result = (ExprEvalResult*)E;
3577 if (Result->IsUnsignedInt)
3578 return Result->EvalData.unsignedVal;
3579 return Result->EvalData.intVal;
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003580}
3581
3582double clang_EvalResult_getAsDouble(CXEvalResult E) {
3583 if (!E) {
3584 return 0;
3585 }
3586 return ((ExprEvalResult *)E)->EvalData.floatVal;
3587}
3588
3589const char* clang_EvalResult_getAsStr(CXEvalResult E) {
3590 if (!E) {
3591 return nullptr;
3592 }
3593 return ((ExprEvalResult *)E)->EvalData.stringVal;
3594}
3595
3596static const ExprEvalResult* evaluateExpr(Expr *expr, CXCursor C) {
3597 Expr::EvalResult ER;
3598 ASTContext &ctx = getCursorContext(C);
David Blaikiebbc00882016-04-13 18:36:19 +00003599 if (!expr)
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003600 return nullptr;
David Blaikiebbc00882016-04-13 18:36:19 +00003601
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003602 expr = expr->IgnoreParens();
David Blaikiebbc00882016-04-13 18:36:19 +00003603 if (!expr->EvaluateAsRValue(ER, ctx))
3604 return nullptr;
3605
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003606 QualType rettype;
3607 CallExpr *callExpr;
David Blaikie59272572016-04-13 18:23:33 +00003608 auto result = llvm::make_unique<ExprEvalResult>();
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003609 result->EvalType = CXEval_UnExposed;
Argyrios Kyrtzidis5dda1122016-12-01 23:41:27 +00003610 result->IsUnsignedInt = false;
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003611
David Blaikiebbc00882016-04-13 18:36:19 +00003612 if (ER.Val.isInt()) {
3613 result->EvalType = CXEval_Int;
Argyrios Kyrtzidis5dda1122016-12-01 23:41:27 +00003614
3615 auto& val = ER.Val.getInt();
3616 if (val.isUnsigned()) {
3617 result->IsUnsignedInt = true;
3618 result->EvalData.unsignedVal = val.getZExtValue();
3619 } else {
3620 result->EvalData.intVal = val.getExtValue();
3621 }
3622
David Blaikiebbc00882016-04-13 18:36:19 +00003623 return result.release();
3624 }
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003625
David Blaikiebbc00882016-04-13 18:36:19 +00003626 if (ER.Val.isFloat()) {
3627 llvm::SmallVector<char, 100> Buffer;
3628 ER.Val.getFloat().toString(Buffer);
3629 std::string floatStr(Buffer.data(), Buffer.size());
3630 result->EvalType = CXEval_Float;
3631 bool ignored;
3632 llvm::APFloat apFloat = ER.Val.getFloat();
Stephan Bergmann17c7f702016-12-14 11:57:17 +00003633 apFloat.convert(llvm::APFloat::IEEEdouble(),
David Blaikiebbc00882016-04-13 18:36:19 +00003634 llvm::APFloat::rmNearestTiesToEven, &ignored);
3635 result->EvalData.floatVal = apFloat.convertToDouble();
3636 return result.release();
3637 }
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003638
David Blaikiebbc00882016-04-13 18:36:19 +00003639 if (expr->getStmtClass() == Stmt::ImplicitCastExprClass) {
3640 const ImplicitCastExpr *I = dyn_cast<ImplicitCastExpr>(expr);
3641 auto *subExpr = I->getSubExprAsWritten();
3642 if (subExpr->getStmtClass() == Stmt::StringLiteralClass ||
3643 subExpr->getStmtClass() == Stmt::ObjCStringLiteralClass) {
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003644 const StringLiteral *StrE = nullptr;
3645 const ObjCStringLiteral *ObjCExpr;
David Blaikiebbc00882016-04-13 18:36:19 +00003646 ObjCExpr = dyn_cast<ObjCStringLiteral>(subExpr);
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003647
3648 if (ObjCExpr) {
3649 StrE = ObjCExpr->getString();
3650 result->EvalType = CXEval_ObjCStrLiteral;
3651 } else {
David Blaikiebbc00882016-04-13 18:36:19 +00003652 StrE = cast<StringLiteral>(I->getSubExprAsWritten());
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003653 result->EvalType = CXEval_StrLiteral;
3654 }
3655
3656 std::string strRef(StrE->getString().str());
David Blaikie59272572016-04-13 18:23:33 +00003657 result->EvalData.stringVal = new char[strRef.size() + 1];
David Blaikiebbc00882016-04-13 18:36:19 +00003658 strncpy((char *)result->EvalData.stringVal, strRef.c_str(),
3659 strRef.size());
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003660 result->EvalData.stringVal[strRef.size()] = '\0';
David Blaikie59272572016-04-13 18:23:33 +00003661 return result.release();
David Blaikiebbc00882016-04-13 18:36:19 +00003662 }
3663 } else if (expr->getStmtClass() == Stmt::ObjCStringLiteralClass ||
3664 expr->getStmtClass() == Stmt::StringLiteralClass) {
3665 const StringLiteral *StrE = nullptr;
3666 const ObjCStringLiteral *ObjCExpr;
3667 ObjCExpr = dyn_cast<ObjCStringLiteral>(expr);
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003668
David Blaikiebbc00882016-04-13 18:36:19 +00003669 if (ObjCExpr) {
3670 StrE = ObjCExpr->getString();
3671 result->EvalType = CXEval_ObjCStrLiteral;
3672 } else {
3673 StrE = cast<StringLiteral>(expr);
3674 result->EvalType = CXEval_StrLiteral;
3675 }
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003676
David Blaikiebbc00882016-04-13 18:36:19 +00003677 std::string strRef(StrE->getString().str());
3678 result->EvalData.stringVal = new char[strRef.size() + 1];
3679 strncpy((char *)result->EvalData.stringVal, strRef.c_str(), strRef.size());
3680 result->EvalData.stringVal[strRef.size()] = '\0';
3681 return result.release();
3682 }
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003683
David Blaikiebbc00882016-04-13 18:36:19 +00003684 if (expr->getStmtClass() == Stmt::CStyleCastExprClass) {
3685 CStyleCastExpr *CC = static_cast<CStyleCastExpr *>(expr);
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003686
David Blaikiebbc00882016-04-13 18:36:19 +00003687 rettype = CC->getType();
3688 if (rettype.getAsString() == "CFStringRef" &&
3689 CC->getSubExpr()->getStmtClass() == Stmt::CallExprClass) {
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003690
David Blaikiebbc00882016-04-13 18:36:19 +00003691 callExpr = static_cast<CallExpr *>(CC->getSubExpr());
3692 StringLiteral *S = getCFSTR_value(callExpr);
3693 if (S) {
3694 std::string strLiteral(S->getString().str());
3695 result->EvalType = CXEval_CFStr;
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003696
David Blaikiebbc00882016-04-13 18:36:19 +00003697 result->EvalData.stringVal = new char[strLiteral.size() + 1];
3698 strncpy((char *)result->EvalData.stringVal, strLiteral.c_str(),
3699 strLiteral.size());
3700 result->EvalData.stringVal[strLiteral.size()] = '\0';
David Blaikie59272572016-04-13 18:23:33 +00003701 return result.release();
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003702 }
3703 }
3704
David Blaikiebbc00882016-04-13 18:36:19 +00003705 } else if (expr->getStmtClass() == Stmt::CallExprClass) {
3706 callExpr = static_cast<CallExpr *>(expr);
3707 rettype = callExpr->getCallReturnType(ctx);
3708
3709 if (rettype->isVectorType() || callExpr->getNumArgs() > 1)
3710 return nullptr;
3711
3712 if (rettype->isIntegralType(ctx) || rettype->isRealFloatingType()) {
3713 if (callExpr->getNumArgs() == 1 &&
3714 !callExpr->getArg(0)->getType()->isIntegralType(ctx))
3715 return nullptr;
3716 } else if (rettype.getAsString() == "CFStringRef") {
3717
3718 StringLiteral *S = getCFSTR_value(callExpr);
3719 if (S) {
3720 std::string strLiteral(S->getString().str());
3721 result->EvalType = CXEval_CFStr;
3722 result->EvalData.stringVal = new char[strLiteral.size() + 1];
3723 strncpy((char *)result->EvalData.stringVal, strLiteral.c_str(),
3724 strLiteral.size());
3725 result->EvalData.stringVal[strLiteral.size()] = '\0';
3726 return result.release();
3727 }
3728 }
3729 } else if (expr->getStmtClass() == Stmt::DeclRefExprClass) {
3730 DeclRefExpr *D = static_cast<DeclRefExpr *>(expr);
3731 ValueDecl *V = D->getDecl();
3732 if (V->getKind() == Decl::Function) {
3733 std::string strName = V->getNameAsString();
3734 result->EvalType = CXEval_Other;
3735 result->EvalData.stringVal = new char[strName.size() + 1];
3736 strncpy(result->EvalData.stringVal, strName.c_str(), strName.size());
3737 result->EvalData.stringVal[strName.size()] = '\0';
3738 return result.release();
3739 }
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003740 }
3741
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003742 return nullptr;
3743}
3744
3745CXEvalResult clang_Cursor_Evaluate(CXCursor C) {
3746 const Decl *D = getCursorDecl(C);
3747 if (D) {
3748 const Expr *expr = nullptr;
3749 if (auto *Var = dyn_cast<VarDecl>(D)) {
3750 expr = Var->getInit();
3751 } else if (auto *Field = dyn_cast<FieldDecl>(D)) {
3752 expr = Field->getInClassInitializer();
3753 }
3754 if (expr)
Aaron Ballman01dc1572016-01-20 15:25:30 +00003755 return const_cast<CXEvalResult>(reinterpret_cast<const void *>(
3756 evaluateExpr(const_cast<Expr *>(expr), C)));
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003757 return nullptr;
3758 }
3759
3760 const CompoundStmt *compoundStmt = dyn_cast_or_null<CompoundStmt>(getCursorStmt(C));
3761 if (compoundStmt) {
3762 Expr *expr = nullptr;
3763 for (auto *bodyIterator : compoundStmt->body()) {
3764 if ((expr = dyn_cast<Expr>(bodyIterator))) {
3765 break;
3766 }
3767 }
3768 if (expr)
Aaron Ballman01dc1572016-01-20 15:25:30 +00003769 return const_cast<CXEvalResult>(
3770 reinterpret_cast<const void *>(evaluateExpr(expr, C)));
Argyrios Kyrtzidis785705b2016-01-16 00:20:02 +00003771 }
3772 return nullptr;
3773}
3774
3775unsigned clang_Cursor_hasAttrs(CXCursor C) {
3776 const Decl *D = getCursorDecl(C);
3777 if (!D) {
3778 return 0;
3779 }
3780
3781 if (D->hasAttrs()) {
3782 return 1;
3783 }
3784
3785 return 0;
3786}
Guy Benyei11169dd2012-12-18 14:30:41 +00003787unsigned clang_defaultSaveOptions(CXTranslationUnit TU) {
3788 return CXSaveTranslationUnit_None;
3789}
3790
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003791static CXSaveError clang_saveTranslationUnit_Impl(CXTranslationUnit TU,
3792 const char *FileName,
3793 unsigned options) {
3794 CIndexer *CXXIdx = TU->CIdx;
Guy Benyei11169dd2012-12-18 14:30:41 +00003795 if (CXXIdx->isOptEnabled(CXGlobalOpt_ThreadBackgroundPriorityForIndexing))
3796 setThreadBackgroundPriority();
3797
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003798 bool hadError = cxtu::getASTUnit(TU)->Save(FileName);
3799 return hadError ? CXSaveError_Unknown : CXSaveError_None;
Guy Benyei11169dd2012-12-18 14:30:41 +00003800}
3801
3802int clang_saveTranslationUnit(CXTranslationUnit TU, const char *FileName,
3803 unsigned options) {
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00003804 LOG_FUNC_SECTION {
3805 *Log << TU << ' ' << FileName;
3806 }
3807
Dmitri Gribenko852d6222014-02-11 15:02:48 +00003808 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00003809 LOG_BAD_TU(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00003810 return CXSaveError_InvalidTU;
Dmitri Gribenko256454f2014-02-11 14:34:14 +00003811 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003812
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00003813 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00003814 ASTUnit::ConcurrencyCheck Check(*CXXUnit);
3815 if (!CXXUnit->hasSema())
3816 return CXSaveError_InvalidTU;
3817
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003818 CXSaveError result;
3819 auto SaveTranslationUnitImpl = [=, &result]() {
3820 result = clang_saveTranslationUnit_Impl(TU, FileName, options);
3821 };
Guy Benyei11169dd2012-12-18 14:30:41 +00003822
3823 if (!CXXUnit->getDiagnostics().hasUnrecoverableErrorOccurred() ||
3824 getenv("LIBCLANG_NOTHREADS")) {
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003825 SaveTranslationUnitImpl();
Guy Benyei11169dd2012-12-18 14:30:41 +00003826
3827 if (getenv("LIBCLANG_RESOURCE_USAGE"))
3828 PrintLibclangResourceUsage(TU);
3829
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003830 return result;
Guy Benyei11169dd2012-12-18 14:30:41 +00003831 }
3832
3833 // We have an AST that has invalid nodes due to compiler errors.
3834 // Use a crash recovery thread for protection.
3835
3836 llvm::CrashRecoveryContext CRC;
3837
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003838 if (!RunSafely(CRC, SaveTranslationUnitImpl)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00003839 fprintf(stderr, "libclang: crash detected during AST saving: {\n");
3840 fprintf(stderr, " 'filename' : '%s'\n", FileName);
3841 fprintf(stderr, " 'options' : %d,\n", options);
3842 fprintf(stderr, "}\n");
3843
3844 return CXSaveError_Unknown;
3845
3846 } else if (getenv("LIBCLANG_RESOURCE_USAGE")) {
3847 PrintLibclangResourceUsage(TU);
3848 }
3849
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003850 return result;
Guy Benyei11169dd2012-12-18 14:30:41 +00003851}
3852
3853void clang_disposeTranslationUnit(CXTranslationUnit CTUnit) {
3854 if (CTUnit) {
3855 // If the translation unit has been marked as unsafe to free, just discard
3856 // it.
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003857 ASTUnit *Unit = cxtu::getASTUnit(CTUnit);
3858 if (Unit && Unit->isUnsafeToFree())
Guy Benyei11169dd2012-12-18 14:30:41 +00003859 return;
3860
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00003861 delete cxtu::getASTUnit(CTUnit);
Dmitri Gribenkob95b3f12013-01-26 22:44:19 +00003862 delete CTUnit->StringPool;
Guy Benyei11169dd2012-12-18 14:30:41 +00003863 delete static_cast<CXDiagnosticSetImpl *>(CTUnit->Diagnostics);
3864 disposeOverridenCXCursorsPool(CTUnit->OverridenCursorsPool);
Dmitri Gribenko9e605112013-11-13 22:16:51 +00003865 delete CTUnit->CommentToXML;
Guy Benyei11169dd2012-12-18 14:30:41 +00003866 delete CTUnit;
3867 }
3868}
3869
3870unsigned clang_defaultReparseOptions(CXTranslationUnit TU) {
3871 return CXReparse_None;
3872}
3873
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003874static CXErrorCode
3875clang_reparseTranslationUnit_Impl(CXTranslationUnit TU,
3876 ArrayRef<CXUnsavedFile> unsaved_files,
3877 unsigned options) {
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003878 // Check arguments.
Dmitri Gribenko852d6222014-02-11 15:02:48 +00003879 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00003880 LOG_BAD_TU(TU);
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003881 return CXError_InvalidArguments;
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003882 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003883
3884 // Reset the associated diagnostics.
3885 delete static_cast<CXDiagnosticSetImpl*>(TU->Diagnostics);
Craig Topper69186e72014-06-08 08:38:04 +00003886 TU->Diagnostics = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00003887
Dmitri Gribenko183436e2013-01-26 21:49:50 +00003888 CIndexer *CXXIdx = TU->CIdx;
Guy Benyei11169dd2012-12-18 14:30:41 +00003889 if (CXXIdx->isOptEnabled(CXGlobalOpt_ThreadBackgroundPriorityForEditing))
3890 setThreadBackgroundPriority();
3891
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00003892 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00003893 ASTUnit::ConcurrencyCheck Check(*CXXUnit);
Ahmed Charlesb8984322014-03-07 20:03:18 +00003894
3895 std::unique_ptr<std::vector<ASTUnit::RemappedFile>> RemappedFiles(
3896 new std::vector<ASTUnit::RemappedFile>());
3897
Guy Benyei11169dd2012-12-18 14:30:41 +00003898 // Recover resources if we crash before exiting this function.
3899 llvm::CrashRecoveryContextCleanupRegistrar<
3900 std::vector<ASTUnit::RemappedFile> > RemappedCleanup(RemappedFiles.get());
Alp Toker9d85b182014-07-07 01:23:14 +00003901
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003902 for (auto &UF : unsaved_files) {
Rafael Espindolad87f8d72014-08-27 20:03:29 +00003903 std::unique_ptr<llvm::MemoryBuffer> MB =
Alp Toker9d85b182014-07-07 01:23:14 +00003904 llvm::MemoryBuffer::getMemBufferCopy(getContents(UF), UF.Filename);
Rafael Espindolad87f8d72014-08-27 20:03:29 +00003905 RemappedFiles->push_back(std::make_pair(UF.Filename, MB.release()));
Guy Benyei11169dd2012-12-18 14:30:41 +00003906 }
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003907
Adrian Prantlbb165fb2015-06-20 18:53:08 +00003908 if (!CXXUnit->Reparse(CXXIdx->getPCHContainerOperations(),
3909 *RemappedFiles.get()))
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003910 return CXError_Success;
3911 if (isASTReadError(CXXUnit))
3912 return CXError_ASTReadError;
3913 return CXError_Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00003914}
3915
3916int clang_reparseTranslationUnit(CXTranslationUnit TU,
3917 unsigned num_unsaved_files,
3918 struct CXUnsavedFile *unsaved_files,
3919 unsigned options) {
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00003920 LOG_FUNC_SECTION {
3921 *Log << TU;
3922 }
3923
Alp Toker9d85b182014-07-07 01:23:14 +00003924 if (num_unsaved_files && !unsaved_files)
3925 return CXError_InvalidArguments;
3926
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003927 CXErrorCode result;
3928 auto ReparseTranslationUnitImpl = [=, &result]() {
3929 result = clang_reparseTranslationUnit_Impl(
3930 TU, llvm::makeArrayRef(unsaved_files, num_unsaved_files), options);
3931 };
Guy Benyei11169dd2012-12-18 14:30:41 +00003932
3933 if (getenv("LIBCLANG_NOTHREADS")) {
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003934 ReparseTranslationUnitImpl();
Alp Toker5c532982014-07-07 22:42:03 +00003935 return result;
Guy Benyei11169dd2012-12-18 14:30:41 +00003936 }
3937
3938 llvm::CrashRecoveryContext CRC;
3939
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00003940 if (!RunSafely(CRC, ReparseTranslationUnitImpl)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00003941 fprintf(stderr, "libclang: crash detected during reparsing\n");
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00003942 cxtu::getASTUnit(TU)->setUnsafeToFree(true);
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00003943 return CXError_Crashed;
Guy Benyei11169dd2012-12-18 14:30:41 +00003944 } else if (getenv("LIBCLANG_RESOURCE_USAGE"))
3945 PrintLibclangResourceUsage(TU);
3946
Alp Toker5c532982014-07-07 22:42:03 +00003947 return result;
Guy Benyei11169dd2012-12-18 14:30:41 +00003948}
3949
3950
3951CXString clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit) {
Dmitri Gribenko852d6222014-02-11 15:02:48 +00003952 if (isNotUsableTU(CTUnit)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00003953 LOG_BAD_TU(CTUnit);
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00003954 return cxstring::createEmpty();
Dmitri Gribenko256454f2014-02-11 14:34:14 +00003955 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003956
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00003957 ASTUnit *CXXUnit = cxtu::getASTUnit(CTUnit);
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00003958 return cxstring::createDup(CXXUnit->getOriginalSourceFileName());
Guy Benyei11169dd2012-12-18 14:30:41 +00003959}
3960
3961CXCursor clang_getTranslationUnitCursor(CXTranslationUnit TU) {
Dmitri Gribenko852d6222014-02-11 15:02:48 +00003962 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00003963 LOG_BAD_TU(TU);
Argyrios Kyrtzidis0e95fca2013-04-04 22:40:59 +00003964 return clang_getNullCursor();
Dmitri Gribenko256454f2014-02-11 14:34:14 +00003965 }
Argyrios Kyrtzidis0e95fca2013-04-04 22:40:59 +00003966
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00003967 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00003968 return MakeCXCursor(CXXUnit->getASTContext().getTranslationUnitDecl(), TU);
3969}
3970
3971} // end: extern "C"
3972
3973//===----------------------------------------------------------------------===//
3974// CXFile Operations.
3975//===----------------------------------------------------------------------===//
3976
3977extern "C" {
3978CXString clang_getFileName(CXFile SFile) {
3979 if (!SFile)
Dmitri Gribenkof98dfba2013-02-01 14:13:32 +00003980 return cxstring::createNull();
Guy Benyei11169dd2012-12-18 14:30:41 +00003981
3982 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00003983 return cxstring::createRef(FEnt->getName());
Guy Benyei11169dd2012-12-18 14:30:41 +00003984}
3985
3986time_t clang_getFileTime(CXFile SFile) {
3987 if (!SFile)
3988 return 0;
3989
3990 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
3991 return FEnt->getModificationTime();
3992}
3993
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00003994CXFile clang_getFile(CXTranslationUnit TU, const char *file_name) {
Dmitri Gribenko852d6222014-02-11 15:02:48 +00003995 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00003996 LOG_BAD_TU(TU);
Craig Topper69186e72014-06-08 08:38:04 +00003997 return nullptr;
Dmitri Gribenko256454f2014-02-11 14:34:14 +00003998 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003999
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00004000 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00004001
4002 FileManager &FMgr = CXXUnit->getFileManager();
4003 return const_cast<FileEntry *>(FMgr.getFile(file_name));
4004}
4005
Dmitri Gribenko256454f2014-02-11 14:34:14 +00004006unsigned clang_isFileMultipleIncludeGuarded(CXTranslationUnit TU,
4007 CXFile file) {
Dmitri Gribenko852d6222014-02-11 15:02:48 +00004008 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00004009 LOG_BAD_TU(TU);
4010 return 0;
4011 }
4012
4013 if (!file)
Guy Benyei11169dd2012-12-18 14:30:41 +00004014 return 0;
4015
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00004016 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00004017 FileEntry *FEnt = static_cast<FileEntry *>(file);
4018 return CXXUnit->getPreprocessor().getHeaderSearchInfo()
4019 .isFileMultipleIncludeGuarded(FEnt);
4020}
4021
Argyrios Kyrtzidisac08b262013-01-26 04:52:52 +00004022int clang_getFileUniqueID(CXFile file, CXFileUniqueID *outID) {
4023 if (!file || !outID)
4024 return 1;
4025
Argyrios Kyrtzidisac08b262013-01-26 04:52:52 +00004026 FileEntry *FEnt = static_cast<FileEntry *>(file);
Rafael Espindolaf8f91b82013-08-01 21:42:11 +00004027 const llvm::sys::fs::UniqueID &ID = FEnt->getUniqueID();
4028 outID->data[0] = ID.getDevice();
4029 outID->data[1] = ID.getFile();
Argyrios Kyrtzidisac08b262013-01-26 04:52:52 +00004030 outID->data[2] = FEnt->getModificationTime();
4031 return 0;
Argyrios Kyrtzidisac08b262013-01-26 04:52:52 +00004032}
4033
Argyrios Kyrtzidisac3997e2014-08-16 00:26:19 +00004034int clang_File_isEqual(CXFile file1, CXFile file2) {
4035 if (file1 == file2)
4036 return true;
4037
4038 if (!file1 || !file2)
4039 return false;
4040
4041 FileEntry *FEnt1 = static_cast<FileEntry *>(file1);
4042 FileEntry *FEnt2 = static_cast<FileEntry *>(file2);
4043 return FEnt1->getUniqueID() == FEnt2->getUniqueID();
4044}
4045
Guy Benyei11169dd2012-12-18 14:30:41 +00004046} // end: extern "C"
4047
4048//===----------------------------------------------------------------------===//
4049// CXCursor Operations.
4050//===----------------------------------------------------------------------===//
4051
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004052static const Decl *getDeclFromExpr(const Stmt *E) {
4053 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004054 return getDeclFromExpr(CE->getSubExpr());
4055
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004056 if (const DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004057 return RefExpr->getDecl();
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004058 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004059 return ME->getMemberDecl();
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004060 if (const ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004061 return RE->getDecl();
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004062 if (const ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(E)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004063 if (PRE->isExplicitProperty())
4064 return PRE->getExplicitProperty();
4065 // It could be messaging both getter and setter as in:
4066 // ++myobj.myprop;
4067 // in which case prefer to associate the setter since it is less obvious
4068 // from inspecting the source that the setter is going to get called.
4069 if (PRE->isMessagingSetter())
4070 return PRE->getImplicitPropertySetter();
4071 return PRE->getImplicitPropertyGetter();
4072 }
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004073 if (const PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004074 return getDeclFromExpr(POE->getSyntacticForm());
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004075 if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004076 if (Expr *Src = OVE->getSourceExpr())
4077 return getDeclFromExpr(Src);
4078
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004079 if (const CallExpr *CE = dyn_cast<CallExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004080 return getDeclFromExpr(CE->getCallee());
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004081 if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004082 if (!CE->isElidable())
4083 return CE->getConstructor();
Richard Smith5179eb72016-06-28 19:03:57 +00004084 if (const CXXInheritedCtorInitExpr *CE =
4085 dyn_cast<CXXInheritedCtorInitExpr>(E))
4086 return CE->getConstructor();
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004087 if (const ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004088 return OME->getMethodDecl();
4089
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004090 if (const ObjCProtocolExpr *PE = dyn_cast<ObjCProtocolExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004091 return PE->getProtocol();
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004092 if (const SubstNonTypeTemplateParmPackExpr *NTTP
Guy Benyei11169dd2012-12-18 14:30:41 +00004093 = dyn_cast<SubstNonTypeTemplateParmPackExpr>(E))
4094 return NTTP->getParameterPack();
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004095 if (const SizeOfPackExpr *SizeOfPack = dyn_cast<SizeOfPackExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004096 if (isa<NonTypeTemplateParmDecl>(SizeOfPack->getPack()) ||
4097 isa<ParmVarDecl>(SizeOfPack->getPack()))
4098 return SizeOfPack->getPack();
Craig Topper69186e72014-06-08 08:38:04 +00004099
4100 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00004101}
4102
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00004103static SourceLocation getLocationFromExpr(const Expr *E) {
4104 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004105 return getLocationFromExpr(CE->getSubExpr());
4106
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00004107 if (const ObjCMessageExpr *Msg = dyn_cast<ObjCMessageExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004108 return /*FIXME:*/Msg->getLeftLoc();
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00004109 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004110 return DRE->getLocation();
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00004111 if (const MemberExpr *Member = dyn_cast<MemberExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004112 return Member->getMemberLoc();
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00004113 if (const ObjCIvarRefExpr *Ivar = dyn_cast<ObjCIvarRefExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004114 return Ivar->getLocation();
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00004115 if (const SizeOfPackExpr *SizeOfPack = dyn_cast<SizeOfPackExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004116 return SizeOfPack->getPackLoc();
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00004117 if (const ObjCPropertyRefExpr *PropRef = dyn_cast<ObjCPropertyRefExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00004118 return PropRef->getLocation();
4119
4120 return E->getLocStart();
4121}
4122
4123extern "C" {
4124
4125unsigned clang_visitChildren(CXCursor parent,
4126 CXCursorVisitor visitor,
4127 CXClientData client_data) {
4128 CursorVisitor CursorVis(getCursorTU(parent), visitor, client_data,
4129 /*VisitPreprocessorLast=*/false);
4130 return CursorVis.VisitChildren(parent);
4131}
4132
4133#ifndef __has_feature
4134#define __has_feature(x) 0
4135#endif
4136#if __has_feature(blocks)
4137typedef enum CXChildVisitResult
4138 (^CXCursorVisitorBlock)(CXCursor cursor, CXCursor parent);
4139
4140static enum CXChildVisitResult visitWithBlock(CXCursor cursor, CXCursor parent,
4141 CXClientData client_data) {
4142 CXCursorVisitorBlock block = (CXCursorVisitorBlock)client_data;
4143 return block(cursor, parent);
4144}
4145#else
4146// If we are compiled with a compiler that doesn't have native blocks support,
4147// define and call the block manually, so the
4148typedef struct _CXChildVisitResult
4149{
4150 void *isa;
4151 int flags;
4152 int reserved;
4153 enum CXChildVisitResult(*invoke)(struct _CXChildVisitResult*, CXCursor,
4154 CXCursor);
4155} *CXCursorVisitorBlock;
4156
4157static enum CXChildVisitResult visitWithBlock(CXCursor cursor, CXCursor parent,
4158 CXClientData client_data) {
4159 CXCursorVisitorBlock block = (CXCursorVisitorBlock)client_data;
4160 return block->invoke(block, cursor, parent);
4161}
4162#endif
4163
4164
4165unsigned clang_visitChildrenWithBlock(CXCursor parent,
4166 CXCursorVisitorBlock block) {
4167 return clang_visitChildren(parent, visitWithBlock, block);
4168}
4169
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004170static CXString getDeclSpelling(const Decl *D) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004171 if (!D)
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00004172 return cxstring::createEmpty();
Guy Benyei11169dd2012-12-18 14:30:41 +00004173
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004174 const NamedDecl *ND = dyn_cast<NamedDecl>(D);
Guy Benyei11169dd2012-12-18 14:30:41 +00004175 if (!ND) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004176 if (const ObjCPropertyImplDecl *PropImpl =
4177 dyn_cast<ObjCPropertyImplDecl>(D))
Guy Benyei11169dd2012-12-18 14:30:41 +00004178 if (ObjCPropertyDecl *Property = PropImpl->getPropertyDecl())
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004179 return cxstring::createDup(Property->getIdentifier()->getName());
Guy Benyei11169dd2012-12-18 14:30:41 +00004180
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004181 if (const ImportDecl *ImportD = dyn_cast<ImportDecl>(D))
Guy Benyei11169dd2012-12-18 14:30:41 +00004182 if (Module *Mod = ImportD->getImportedModule())
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004183 return cxstring::createDup(Mod->getFullModuleName());
Guy Benyei11169dd2012-12-18 14:30:41 +00004184
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00004185 return cxstring::createEmpty();
Guy Benyei11169dd2012-12-18 14:30:41 +00004186 }
4187
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004188 if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004189 return cxstring::createDup(OMD->getSelector().getAsString());
Guy Benyei11169dd2012-12-18 14:30:41 +00004190
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004191 if (const ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND))
Guy Benyei11169dd2012-12-18 14:30:41 +00004192 // No, this isn't the same as the code below. getIdentifier() is non-virtual
4193 // and returns different names. NamedDecl returns the class name and
4194 // ObjCCategoryImplDecl returns the category name.
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004195 return cxstring::createRef(CIMP->getIdentifier()->getNameStart());
Guy Benyei11169dd2012-12-18 14:30:41 +00004196
4197 if (isa<UsingDirectiveDecl>(D))
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00004198 return cxstring::createEmpty();
Guy Benyei11169dd2012-12-18 14:30:41 +00004199
4200 SmallString<1024> S;
4201 llvm::raw_svector_ostream os(S);
4202 ND->printName(os);
4203
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004204 return cxstring::createDup(os.str());
Guy Benyei11169dd2012-12-18 14:30:41 +00004205}
4206
4207CXString clang_getCursorSpelling(CXCursor C) {
4208 if (clang_isTranslationUnit(C.kind))
Dmitri Gribenko2c173b42013-01-11 19:28:44 +00004209 return clang_getTranslationUnitSpelling(getCursorTU(C));
Guy Benyei11169dd2012-12-18 14:30:41 +00004210
4211 if (clang_isReference(C.kind)) {
4212 switch (C.kind) {
4213 case CXCursor_ObjCSuperClassRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00004214 const ObjCInterfaceDecl *Super = getCursorObjCSuperClassRef(C).first;
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004215 return cxstring::createRef(Super->getIdentifier()->getNameStart());
Guy Benyei11169dd2012-12-18 14:30:41 +00004216 }
4217 case CXCursor_ObjCClassRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00004218 const ObjCInterfaceDecl *Class = getCursorObjCClassRef(C).first;
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004219 return cxstring::createRef(Class->getIdentifier()->getNameStart());
Guy Benyei11169dd2012-12-18 14:30:41 +00004220 }
4221 case CXCursor_ObjCProtocolRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00004222 const ObjCProtocolDecl *OID = getCursorObjCProtocolRef(C).first;
Guy Benyei11169dd2012-12-18 14:30:41 +00004223 assert(OID && "getCursorSpelling(): Missing protocol decl");
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004224 return cxstring::createRef(OID->getIdentifier()->getNameStart());
Guy Benyei11169dd2012-12-18 14:30:41 +00004225 }
4226 case CXCursor_CXXBaseSpecifier: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00004227 const CXXBaseSpecifier *B = getCursorCXXBaseSpecifier(C);
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004228 return cxstring::createDup(B->getType().getAsString());
Guy Benyei11169dd2012-12-18 14:30:41 +00004229 }
4230 case CXCursor_TypeRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00004231 const TypeDecl *Type = getCursorTypeRef(C).first;
Guy Benyei11169dd2012-12-18 14:30:41 +00004232 assert(Type && "Missing type decl");
4233
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004234 return cxstring::createDup(getCursorContext(C).getTypeDeclType(Type).
Guy Benyei11169dd2012-12-18 14:30:41 +00004235 getAsString());
4236 }
4237 case CXCursor_TemplateRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00004238 const TemplateDecl *Template = getCursorTemplateRef(C).first;
Guy Benyei11169dd2012-12-18 14:30:41 +00004239 assert(Template && "Missing template decl");
4240
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004241 return cxstring::createDup(Template->getNameAsString());
Guy Benyei11169dd2012-12-18 14:30:41 +00004242 }
4243
4244 case CXCursor_NamespaceRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00004245 const NamedDecl *NS = getCursorNamespaceRef(C).first;
Guy Benyei11169dd2012-12-18 14:30:41 +00004246 assert(NS && "Missing namespace decl");
4247
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004248 return cxstring::createDup(NS->getNameAsString());
Guy Benyei11169dd2012-12-18 14:30:41 +00004249 }
4250
4251 case CXCursor_MemberRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00004252 const FieldDecl *Field = getCursorMemberRef(C).first;
Guy Benyei11169dd2012-12-18 14:30:41 +00004253 assert(Field && "Missing member decl");
4254
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004255 return cxstring::createDup(Field->getNameAsString());
Guy Benyei11169dd2012-12-18 14:30:41 +00004256 }
4257
4258 case CXCursor_LabelRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00004259 const LabelStmt *Label = getCursorLabelRef(C).first;
Guy Benyei11169dd2012-12-18 14:30:41 +00004260 assert(Label && "Missing label");
4261
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004262 return cxstring::createRef(Label->getName());
Guy Benyei11169dd2012-12-18 14:30:41 +00004263 }
4264
4265 case CXCursor_OverloadedDeclRef: {
4266 OverloadedDeclRefStorage Storage = getCursorOverloadedDeclRef(C).first;
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004267 if (const Decl *D = Storage.dyn_cast<const Decl *>()) {
4268 if (const NamedDecl *ND = dyn_cast<NamedDecl>(D))
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004269 return cxstring::createDup(ND->getNameAsString());
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00004270 return cxstring::createEmpty();
Guy Benyei11169dd2012-12-18 14:30:41 +00004271 }
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004272 if (const OverloadExpr *E = Storage.dyn_cast<const OverloadExpr *>())
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004273 return cxstring::createDup(E->getName().getAsString());
Guy Benyei11169dd2012-12-18 14:30:41 +00004274 OverloadedTemplateStorage *Ovl
4275 = Storage.get<OverloadedTemplateStorage*>();
4276 if (Ovl->size() == 0)
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00004277 return cxstring::createEmpty();
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004278 return cxstring::createDup((*Ovl->begin())->getNameAsString());
Guy Benyei11169dd2012-12-18 14:30:41 +00004279 }
4280
4281 case CXCursor_VariableRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00004282 const VarDecl *Var = getCursorVariableRef(C).first;
Guy Benyei11169dd2012-12-18 14:30:41 +00004283 assert(Var && "Missing variable decl");
4284
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004285 return cxstring::createDup(Var->getNameAsString());
Guy Benyei11169dd2012-12-18 14:30:41 +00004286 }
4287
4288 default:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004289 return cxstring::createRef("<not implemented>");
Guy Benyei11169dd2012-12-18 14:30:41 +00004290 }
4291 }
4292
4293 if (clang_isExpression(C.kind)) {
Argyrios Kyrtzidis3227d862014-03-03 19:40:52 +00004294 const Expr *E = getCursorExpr(C);
4295
4296 if (C.kind == CXCursor_ObjCStringLiteral ||
4297 C.kind == CXCursor_StringLiteral) {
4298 const StringLiteral *SLit;
4299 if (const ObjCStringLiteral *OSL = dyn_cast<ObjCStringLiteral>(E)) {
4300 SLit = OSL->getString();
4301 } else {
4302 SLit = cast<StringLiteral>(E);
4303 }
4304 SmallString<256> Buf;
4305 llvm::raw_svector_ostream OS(Buf);
4306 SLit->outputString(OS);
4307 return cxstring::createDup(OS.str());
4308 }
4309
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004310 const Decl *D = getDeclFromExpr(getCursorExpr(C));
Guy Benyei11169dd2012-12-18 14:30:41 +00004311 if (D)
4312 return getDeclSpelling(D);
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00004313 return cxstring::createEmpty();
Guy Benyei11169dd2012-12-18 14:30:41 +00004314 }
4315
4316 if (clang_isStatement(C.kind)) {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00004317 const Stmt *S = getCursorStmt(C);
4318 if (const LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S))
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004319 return cxstring::createRef(Label->getName());
Guy Benyei11169dd2012-12-18 14:30:41 +00004320
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00004321 return cxstring::createEmpty();
Guy Benyei11169dd2012-12-18 14:30:41 +00004322 }
4323
4324 if (C.kind == CXCursor_MacroExpansion)
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004325 return cxstring::createRef(getCursorMacroExpansion(C).getName()
Guy Benyei11169dd2012-12-18 14:30:41 +00004326 ->getNameStart());
4327
4328 if (C.kind == CXCursor_MacroDefinition)
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004329 return cxstring::createRef(getCursorMacroDefinition(C)->getName()
Guy Benyei11169dd2012-12-18 14:30:41 +00004330 ->getNameStart());
4331
4332 if (C.kind == CXCursor_InclusionDirective)
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004333 return cxstring::createDup(getCursorInclusionDirective(C)->getFileName());
Guy Benyei11169dd2012-12-18 14:30:41 +00004334
4335 if (clang_isDeclaration(C.kind))
4336 return getDeclSpelling(getCursorDecl(C));
4337
4338 if (C.kind == CXCursor_AnnotateAttr) {
Dmitri Gribenkoe4baea62013-01-26 18:08:08 +00004339 const AnnotateAttr *AA = cast<AnnotateAttr>(cxcursor::getCursorAttr(C));
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004340 return cxstring::createDup(AA->getAnnotation());
Guy Benyei11169dd2012-12-18 14:30:41 +00004341 }
4342
4343 if (C.kind == CXCursor_AsmLabelAttr) {
Dmitri Gribenkoe4baea62013-01-26 18:08:08 +00004344 const AsmLabelAttr *AA = cast<AsmLabelAttr>(cxcursor::getCursorAttr(C));
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004345 return cxstring::createDup(AA->getLabel());
Guy Benyei11169dd2012-12-18 14:30:41 +00004346 }
4347
Argyrios Kyrtzidis16834f12013-09-25 00:14:38 +00004348 if (C.kind == CXCursor_PackedAttr) {
4349 return cxstring::createRef("packed");
4350 }
4351
Saleem Abdulrasool79c69712015-09-05 18:53:43 +00004352 if (C.kind == CXCursor_VisibilityAttr) {
4353 const VisibilityAttr *AA = cast<VisibilityAttr>(cxcursor::getCursorAttr(C));
4354 switch (AA->getVisibility()) {
4355 case VisibilityAttr::VisibilityType::Default:
4356 return cxstring::createRef("default");
4357 case VisibilityAttr::VisibilityType::Hidden:
4358 return cxstring::createRef("hidden");
4359 case VisibilityAttr::VisibilityType::Protected:
4360 return cxstring::createRef("protected");
4361 }
4362 llvm_unreachable("unknown visibility type");
4363 }
4364
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00004365 return cxstring::createEmpty();
Guy Benyei11169dd2012-12-18 14:30:41 +00004366}
4367
4368CXSourceRange clang_Cursor_getSpellingNameRange(CXCursor C,
4369 unsigned pieceIndex,
4370 unsigned options) {
4371 if (clang_Cursor_isNull(C))
4372 return clang_getNullRange();
4373
4374 ASTContext &Ctx = getCursorContext(C);
4375
4376 if (clang_isStatement(C.kind)) {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00004377 const Stmt *S = getCursorStmt(C);
4378 if (const LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004379 if (pieceIndex > 0)
4380 return clang_getNullRange();
4381 return cxloc::translateSourceRange(Ctx, Label->getIdentLoc());
4382 }
4383
4384 return clang_getNullRange();
4385 }
4386
4387 if (C.kind == CXCursor_ObjCMessageExpr) {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00004388 if (const ObjCMessageExpr *
Guy Benyei11169dd2012-12-18 14:30:41 +00004389 ME = dyn_cast_or_null<ObjCMessageExpr>(getCursorExpr(C))) {
4390 if (pieceIndex >= ME->getNumSelectorLocs())
4391 return clang_getNullRange();
4392 return cxloc::translateSourceRange(Ctx, ME->getSelectorLoc(pieceIndex));
4393 }
4394 }
4395
4396 if (C.kind == CXCursor_ObjCInstanceMethodDecl ||
4397 C.kind == CXCursor_ObjCClassMethodDecl) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004398 if (const ObjCMethodDecl *
Guy Benyei11169dd2012-12-18 14:30:41 +00004399 MD = dyn_cast_or_null<ObjCMethodDecl>(getCursorDecl(C))) {
4400 if (pieceIndex >= MD->getNumSelectorLocs())
4401 return clang_getNullRange();
4402 return cxloc::translateSourceRange(Ctx, MD->getSelectorLoc(pieceIndex));
4403 }
4404 }
4405
4406 if (C.kind == CXCursor_ObjCCategoryDecl ||
4407 C.kind == CXCursor_ObjCCategoryImplDecl) {
4408 if (pieceIndex > 0)
4409 return clang_getNullRange();
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004410 if (const ObjCCategoryDecl *
Guy Benyei11169dd2012-12-18 14:30:41 +00004411 CD = dyn_cast_or_null<ObjCCategoryDecl>(getCursorDecl(C)))
4412 return cxloc::translateSourceRange(Ctx, CD->getCategoryNameLoc());
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004413 if (const ObjCCategoryImplDecl *
Guy Benyei11169dd2012-12-18 14:30:41 +00004414 CID = dyn_cast_or_null<ObjCCategoryImplDecl>(getCursorDecl(C)))
4415 return cxloc::translateSourceRange(Ctx, CID->getCategoryNameLoc());
4416 }
4417
4418 if (C.kind == CXCursor_ModuleImportDecl) {
4419 if (pieceIndex > 0)
4420 return clang_getNullRange();
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004421 if (const ImportDecl *ImportD =
4422 dyn_cast_or_null<ImportDecl>(getCursorDecl(C))) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004423 ArrayRef<SourceLocation> Locs = ImportD->getIdentifierLocs();
4424 if (!Locs.empty())
4425 return cxloc::translateSourceRange(Ctx,
4426 SourceRange(Locs.front(), Locs.back()));
4427 }
4428 return clang_getNullRange();
4429 }
4430
Argyrios Kyrtzidisa2a1e532014-08-26 20:23:26 +00004431 if (C.kind == CXCursor_CXXMethod || C.kind == CXCursor_Destructor ||
4432 C.kind == CXCursor_ConversionFunction) {
4433 if (pieceIndex > 0)
4434 return clang_getNullRange();
4435 if (const FunctionDecl *FD =
4436 dyn_cast_or_null<FunctionDecl>(getCursorDecl(C))) {
4437 DeclarationNameInfo FunctionName = FD->getNameInfo();
4438 return cxloc::translateSourceRange(Ctx, FunctionName.getSourceRange());
4439 }
4440 return clang_getNullRange();
4441 }
4442
Guy Benyei11169dd2012-12-18 14:30:41 +00004443 // FIXME: A CXCursor_InclusionDirective should give the location of the
4444 // filename, but we don't keep track of this.
4445
4446 // FIXME: A CXCursor_AnnotateAttr should give the location of the annotation
4447 // but we don't keep track of this.
4448
4449 // FIXME: A CXCursor_AsmLabelAttr should give the location of the label
4450 // but we don't keep track of this.
4451
4452 // Default handling, give the location of the cursor.
4453
4454 if (pieceIndex > 0)
4455 return clang_getNullRange();
4456
4457 CXSourceLocation CXLoc = clang_getCursorLocation(C);
4458 SourceLocation Loc = cxloc::translateSourceLocation(CXLoc);
4459 return cxloc::translateSourceRange(Ctx, Loc);
4460}
4461
Eli Bendersky44a206f2014-07-31 18:04:56 +00004462CXString clang_Cursor_getMangling(CXCursor C) {
4463 if (clang_isInvalid(C.kind) || !clang_isDeclaration(C.kind))
4464 return cxstring::createEmpty();
4465
Eli Bendersky44a206f2014-07-31 18:04:56 +00004466 // Mangling only works for functions and variables.
Eli Bendersky79759592014-08-01 15:01:10 +00004467 const Decl *D = getCursorDecl(C);
Eli Bendersky44a206f2014-07-31 18:04:56 +00004468 if (!D || !(isa<FunctionDecl>(D) || isa<VarDecl>(D)))
4469 return cxstring::createEmpty();
4470
Argyrios Kyrtzidisca741ce2016-02-14 22:30:14 +00004471 ASTContext &Ctx = D->getASTContext();
4472 index::CodegenNameGenerator CGNameGen(Ctx);
4473 return cxstring::createDup(CGNameGen.getName(D));
Eli Bendersky44a206f2014-07-31 18:04:56 +00004474}
4475
Saleem Abdulrasool60034432015-11-12 03:57:22 +00004476CXStringSet *clang_Cursor_getCXXManglings(CXCursor C) {
4477 if (clang_isInvalid(C.kind) || !clang_isDeclaration(C.kind))
4478 return nullptr;
4479
4480 const Decl *D = getCursorDecl(C);
4481 if (!(isa<CXXRecordDecl>(D) || isa<CXXMethodDecl>(D)))
4482 return nullptr;
4483
Argyrios Kyrtzidisca741ce2016-02-14 22:30:14 +00004484 ASTContext &Ctx = D->getASTContext();
4485 index::CodegenNameGenerator CGNameGen(Ctx);
4486 std::vector<std::string> Manglings = CGNameGen.getAllManglings(D);
Saleem Abdulrasool60034432015-11-12 03:57:22 +00004487 return cxstring::createSet(Manglings);
4488}
4489
Guy Benyei11169dd2012-12-18 14:30:41 +00004490CXString clang_getCursorDisplayName(CXCursor C) {
4491 if (!clang_isDeclaration(C.kind))
4492 return clang_getCursorSpelling(C);
4493
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004494 const Decl *D = getCursorDecl(C);
Guy Benyei11169dd2012-12-18 14:30:41 +00004495 if (!D)
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00004496 return cxstring::createEmpty();
Guy Benyei11169dd2012-12-18 14:30:41 +00004497
4498 PrintingPolicy Policy = getCursorContext(C).getPrintingPolicy();
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004499 if (const FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D))
Guy Benyei11169dd2012-12-18 14:30:41 +00004500 D = FunTmpl->getTemplatedDecl();
4501
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004502 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004503 SmallString<64> Str;
4504 llvm::raw_svector_ostream OS(Str);
4505 OS << *Function;
4506 if (Function->getPrimaryTemplate())
4507 OS << "<>";
4508 OS << "(";
4509 for (unsigned I = 0, N = Function->getNumParams(); I != N; ++I) {
4510 if (I)
4511 OS << ", ";
4512 OS << Function->getParamDecl(I)->getType().getAsString(Policy);
4513 }
4514
4515 if (Function->isVariadic()) {
4516 if (Function->getNumParams())
4517 OS << ", ";
4518 OS << "...";
4519 }
4520 OS << ")";
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004521 return cxstring::createDup(OS.str());
Guy Benyei11169dd2012-12-18 14:30:41 +00004522 }
4523
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004524 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(D)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004525 SmallString<64> Str;
4526 llvm::raw_svector_ostream OS(Str);
4527 OS << *ClassTemplate;
4528 OS << "<";
4529 TemplateParameterList *Params = ClassTemplate->getTemplateParameters();
4530 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
4531 if (I)
4532 OS << ", ";
4533
4534 NamedDecl *Param = Params->getParam(I);
4535 if (Param->getIdentifier()) {
4536 OS << Param->getIdentifier()->getName();
4537 continue;
4538 }
4539
4540 // There is no parameter name, which makes this tricky. Try to come up
4541 // with something useful that isn't too long.
4542 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
4543 OS << (TTP->wasDeclaredWithTypename()? "typename" : "class");
4544 else if (NonTypeTemplateParmDecl *NTTP
4545 = dyn_cast<NonTypeTemplateParmDecl>(Param))
4546 OS << NTTP->getType().getAsString(Policy);
4547 else
4548 OS << "template<...> class";
4549 }
4550
4551 OS << ">";
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004552 return cxstring::createDup(OS.str());
Guy Benyei11169dd2012-12-18 14:30:41 +00004553 }
4554
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00004555 if (const ClassTemplateSpecializationDecl *ClassSpec
Guy Benyei11169dd2012-12-18 14:30:41 +00004556 = dyn_cast<ClassTemplateSpecializationDecl>(D)) {
4557 // If the type was explicitly written, use that.
4558 if (TypeSourceInfo *TSInfo = ClassSpec->getTypeAsWritten())
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004559 return cxstring::createDup(TSInfo->getType().getAsString(Policy));
Guy Benyei11169dd2012-12-18 14:30:41 +00004560
Benjamin Kramer9170e912013-02-22 15:46:01 +00004561 SmallString<128> Str;
Guy Benyei11169dd2012-12-18 14:30:41 +00004562 llvm::raw_svector_ostream OS(Str);
4563 OS << *ClassSpec;
David Majnemer6fbeee32016-07-07 04:43:07 +00004564 TemplateSpecializationType::PrintTemplateArgumentList(
4565 OS, ClassSpec->getTemplateArgs().asArray(), Policy);
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00004566 return cxstring::createDup(OS.str());
Guy Benyei11169dd2012-12-18 14:30:41 +00004567 }
4568
4569 return clang_getCursorSpelling(C);
4570}
4571
4572CXString clang_getCursorKindSpelling(enum CXCursorKind Kind) {
4573 switch (Kind) {
4574 case CXCursor_FunctionDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004575 return cxstring::createRef("FunctionDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004576 case CXCursor_TypedefDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004577 return cxstring::createRef("TypedefDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004578 case CXCursor_EnumDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004579 return cxstring::createRef("EnumDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004580 case CXCursor_EnumConstantDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004581 return cxstring::createRef("EnumConstantDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004582 case CXCursor_StructDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004583 return cxstring::createRef("StructDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004584 case CXCursor_UnionDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004585 return cxstring::createRef("UnionDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004586 case CXCursor_ClassDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004587 return cxstring::createRef("ClassDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004588 case CXCursor_FieldDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004589 return cxstring::createRef("FieldDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004590 case CXCursor_VarDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004591 return cxstring::createRef("VarDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004592 case CXCursor_ParmDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004593 return cxstring::createRef("ParmDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004594 case CXCursor_ObjCInterfaceDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004595 return cxstring::createRef("ObjCInterfaceDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004596 case CXCursor_ObjCCategoryDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004597 return cxstring::createRef("ObjCCategoryDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004598 case CXCursor_ObjCProtocolDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004599 return cxstring::createRef("ObjCProtocolDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004600 case CXCursor_ObjCPropertyDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004601 return cxstring::createRef("ObjCPropertyDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004602 case CXCursor_ObjCIvarDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004603 return cxstring::createRef("ObjCIvarDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004604 case CXCursor_ObjCInstanceMethodDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004605 return cxstring::createRef("ObjCInstanceMethodDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004606 case CXCursor_ObjCClassMethodDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004607 return cxstring::createRef("ObjCClassMethodDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004608 case CXCursor_ObjCImplementationDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004609 return cxstring::createRef("ObjCImplementationDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004610 case CXCursor_ObjCCategoryImplDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004611 return cxstring::createRef("ObjCCategoryImplDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004612 case CXCursor_CXXMethod:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004613 return cxstring::createRef("CXXMethod");
Guy Benyei11169dd2012-12-18 14:30:41 +00004614 case CXCursor_UnexposedDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004615 return cxstring::createRef("UnexposedDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004616 case CXCursor_ObjCSuperClassRef:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004617 return cxstring::createRef("ObjCSuperClassRef");
Guy Benyei11169dd2012-12-18 14:30:41 +00004618 case CXCursor_ObjCProtocolRef:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004619 return cxstring::createRef("ObjCProtocolRef");
Guy Benyei11169dd2012-12-18 14:30:41 +00004620 case CXCursor_ObjCClassRef:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004621 return cxstring::createRef("ObjCClassRef");
Guy Benyei11169dd2012-12-18 14:30:41 +00004622 case CXCursor_TypeRef:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004623 return cxstring::createRef("TypeRef");
Guy Benyei11169dd2012-12-18 14:30:41 +00004624 case CXCursor_TemplateRef:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004625 return cxstring::createRef("TemplateRef");
Guy Benyei11169dd2012-12-18 14:30:41 +00004626 case CXCursor_NamespaceRef:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004627 return cxstring::createRef("NamespaceRef");
Guy Benyei11169dd2012-12-18 14:30:41 +00004628 case CXCursor_MemberRef:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004629 return cxstring::createRef("MemberRef");
Guy Benyei11169dd2012-12-18 14:30:41 +00004630 case CXCursor_LabelRef:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004631 return cxstring::createRef("LabelRef");
Guy Benyei11169dd2012-12-18 14:30:41 +00004632 case CXCursor_OverloadedDeclRef:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004633 return cxstring::createRef("OverloadedDeclRef");
Guy Benyei11169dd2012-12-18 14:30:41 +00004634 case CXCursor_VariableRef:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004635 return cxstring::createRef("VariableRef");
Guy Benyei11169dd2012-12-18 14:30:41 +00004636 case CXCursor_IntegerLiteral:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004637 return cxstring::createRef("IntegerLiteral");
Guy Benyei11169dd2012-12-18 14:30:41 +00004638 case CXCursor_FloatingLiteral:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004639 return cxstring::createRef("FloatingLiteral");
Guy Benyei11169dd2012-12-18 14:30:41 +00004640 case CXCursor_ImaginaryLiteral:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004641 return cxstring::createRef("ImaginaryLiteral");
Guy Benyei11169dd2012-12-18 14:30:41 +00004642 case CXCursor_StringLiteral:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004643 return cxstring::createRef("StringLiteral");
Guy Benyei11169dd2012-12-18 14:30:41 +00004644 case CXCursor_CharacterLiteral:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004645 return cxstring::createRef("CharacterLiteral");
Guy Benyei11169dd2012-12-18 14:30:41 +00004646 case CXCursor_ParenExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004647 return cxstring::createRef("ParenExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004648 case CXCursor_UnaryOperator:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004649 return cxstring::createRef("UnaryOperator");
Guy Benyei11169dd2012-12-18 14:30:41 +00004650 case CXCursor_ArraySubscriptExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004651 return cxstring::createRef("ArraySubscriptExpr");
Alexey Bataev1a3320e2015-08-25 14:24:04 +00004652 case CXCursor_OMPArraySectionExpr:
4653 return cxstring::createRef("OMPArraySectionExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004654 case CXCursor_BinaryOperator:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004655 return cxstring::createRef("BinaryOperator");
Guy Benyei11169dd2012-12-18 14:30:41 +00004656 case CXCursor_CompoundAssignOperator:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004657 return cxstring::createRef("CompoundAssignOperator");
Guy Benyei11169dd2012-12-18 14:30:41 +00004658 case CXCursor_ConditionalOperator:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004659 return cxstring::createRef("ConditionalOperator");
Guy Benyei11169dd2012-12-18 14:30:41 +00004660 case CXCursor_CStyleCastExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004661 return cxstring::createRef("CStyleCastExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004662 case CXCursor_CompoundLiteralExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004663 return cxstring::createRef("CompoundLiteralExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004664 case CXCursor_InitListExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004665 return cxstring::createRef("InitListExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004666 case CXCursor_AddrLabelExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004667 return cxstring::createRef("AddrLabelExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004668 case CXCursor_StmtExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004669 return cxstring::createRef("StmtExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004670 case CXCursor_GenericSelectionExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004671 return cxstring::createRef("GenericSelectionExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004672 case CXCursor_GNUNullExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004673 return cxstring::createRef("GNUNullExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004674 case CXCursor_CXXStaticCastExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004675 return cxstring::createRef("CXXStaticCastExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004676 case CXCursor_CXXDynamicCastExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004677 return cxstring::createRef("CXXDynamicCastExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004678 case CXCursor_CXXReinterpretCastExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004679 return cxstring::createRef("CXXReinterpretCastExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004680 case CXCursor_CXXConstCastExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004681 return cxstring::createRef("CXXConstCastExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004682 case CXCursor_CXXFunctionalCastExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004683 return cxstring::createRef("CXXFunctionalCastExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004684 case CXCursor_CXXTypeidExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004685 return cxstring::createRef("CXXTypeidExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004686 case CXCursor_CXXBoolLiteralExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004687 return cxstring::createRef("CXXBoolLiteralExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004688 case CXCursor_CXXNullPtrLiteralExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004689 return cxstring::createRef("CXXNullPtrLiteralExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004690 case CXCursor_CXXThisExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004691 return cxstring::createRef("CXXThisExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004692 case CXCursor_CXXThrowExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004693 return cxstring::createRef("CXXThrowExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004694 case CXCursor_CXXNewExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004695 return cxstring::createRef("CXXNewExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004696 case CXCursor_CXXDeleteExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004697 return cxstring::createRef("CXXDeleteExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004698 case CXCursor_UnaryExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004699 return cxstring::createRef("UnaryExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004700 case CXCursor_ObjCStringLiteral:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004701 return cxstring::createRef("ObjCStringLiteral");
Guy Benyei11169dd2012-12-18 14:30:41 +00004702 case CXCursor_ObjCBoolLiteralExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004703 return cxstring::createRef("ObjCBoolLiteralExpr");
Erik Pilkington29099de2016-07-16 00:35:23 +00004704 case CXCursor_ObjCAvailabilityCheckExpr:
4705 return cxstring::createRef("ObjCAvailabilityCheckExpr");
Argyrios Kyrtzidisc2233be2013-04-23 17:57:17 +00004706 case CXCursor_ObjCSelfExpr:
4707 return cxstring::createRef("ObjCSelfExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004708 case CXCursor_ObjCEncodeExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004709 return cxstring::createRef("ObjCEncodeExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004710 case CXCursor_ObjCSelectorExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004711 return cxstring::createRef("ObjCSelectorExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004712 case CXCursor_ObjCProtocolExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004713 return cxstring::createRef("ObjCProtocolExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004714 case CXCursor_ObjCBridgedCastExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004715 return cxstring::createRef("ObjCBridgedCastExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004716 case CXCursor_BlockExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004717 return cxstring::createRef("BlockExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004718 case CXCursor_PackExpansionExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004719 return cxstring::createRef("PackExpansionExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004720 case CXCursor_SizeOfPackExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004721 return cxstring::createRef("SizeOfPackExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004722 case CXCursor_LambdaExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004723 return cxstring::createRef("LambdaExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004724 case CXCursor_UnexposedExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004725 return cxstring::createRef("UnexposedExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004726 case CXCursor_DeclRefExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004727 return cxstring::createRef("DeclRefExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004728 case CXCursor_MemberRefExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004729 return cxstring::createRef("MemberRefExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004730 case CXCursor_CallExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004731 return cxstring::createRef("CallExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004732 case CXCursor_ObjCMessageExpr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004733 return cxstring::createRef("ObjCMessageExpr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004734 case CXCursor_UnexposedStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004735 return cxstring::createRef("UnexposedStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004736 case CXCursor_DeclStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004737 return cxstring::createRef("DeclStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004738 case CXCursor_LabelStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004739 return cxstring::createRef("LabelStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004740 case CXCursor_CompoundStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004741 return cxstring::createRef("CompoundStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004742 case CXCursor_CaseStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004743 return cxstring::createRef("CaseStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004744 case CXCursor_DefaultStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004745 return cxstring::createRef("DefaultStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004746 case CXCursor_IfStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004747 return cxstring::createRef("IfStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004748 case CXCursor_SwitchStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004749 return cxstring::createRef("SwitchStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004750 case CXCursor_WhileStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004751 return cxstring::createRef("WhileStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004752 case CXCursor_DoStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004753 return cxstring::createRef("DoStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004754 case CXCursor_ForStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004755 return cxstring::createRef("ForStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004756 case CXCursor_GotoStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004757 return cxstring::createRef("GotoStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004758 case CXCursor_IndirectGotoStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004759 return cxstring::createRef("IndirectGotoStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004760 case CXCursor_ContinueStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004761 return cxstring::createRef("ContinueStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004762 case CXCursor_BreakStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004763 return cxstring::createRef("BreakStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004764 case CXCursor_ReturnStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004765 return cxstring::createRef("ReturnStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004766 case CXCursor_GCCAsmStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004767 return cxstring::createRef("GCCAsmStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004768 case CXCursor_MSAsmStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004769 return cxstring::createRef("MSAsmStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004770 case CXCursor_ObjCAtTryStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004771 return cxstring::createRef("ObjCAtTryStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004772 case CXCursor_ObjCAtCatchStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004773 return cxstring::createRef("ObjCAtCatchStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004774 case CXCursor_ObjCAtFinallyStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004775 return cxstring::createRef("ObjCAtFinallyStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004776 case CXCursor_ObjCAtThrowStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004777 return cxstring::createRef("ObjCAtThrowStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004778 case CXCursor_ObjCAtSynchronizedStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004779 return cxstring::createRef("ObjCAtSynchronizedStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004780 case CXCursor_ObjCAutoreleasePoolStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004781 return cxstring::createRef("ObjCAutoreleasePoolStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004782 case CXCursor_ObjCForCollectionStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004783 return cxstring::createRef("ObjCForCollectionStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004784 case CXCursor_CXXCatchStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004785 return cxstring::createRef("CXXCatchStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004786 case CXCursor_CXXTryStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004787 return cxstring::createRef("CXXTryStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004788 case CXCursor_CXXForRangeStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004789 return cxstring::createRef("CXXForRangeStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004790 case CXCursor_SEHTryStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004791 return cxstring::createRef("SEHTryStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004792 case CXCursor_SEHExceptStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004793 return cxstring::createRef("SEHExceptStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004794 case CXCursor_SEHFinallyStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004795 return cxstring::createRef("SEHFinallyStmt");
Nico Weber9b982072014-07-07 00:12:30 +00004796 case CXCursor_SEHLeaveStmt:
4797 return cxstring::createRef("SEHLeaveStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004798 case CXCursor_NullStmt:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004799 return cxstring::createRef("NullStmt");
Guy Benyei11169dd2012-12-18 14:30:41 +00004800 case CXCursor_InvalidFile:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004801 return cxstring::createRef("InvalidFile");
Guy Benyei11169dd2012-12-18 14:30:41 +00004802 case CXCursor_InvalidCode:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004803 return cxstring::createRef("InvalidCode");
Guy Benyei11169dd2012-12-18 14:30:41 +00004804 case CXCursor_NoDeclFound:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004805 return cxstring::createRef("NoDeclFound");
Guy Benyei11169dd2012-12-18 14:30:41 +00004806 case CXCursor_NotImplemented:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004807 return cxstring::createRef("NotImplemented");
Guy Benyei11169dd2012-12-18 14:30:41 +00004808 case CXCursor_TranslationUnit:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004809 return cxstring::createRef("TranslationUnit");
Guy Benyei11169dd2012-12-18 14:30:41 +00004810 case CXCursor_UnexposedAttr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004811 return cxstring::createRef("UnexposedAttr");
Guy Benyei11169dd2012-12-18 14:30:41 +00004812 case CXCursor_IBActionAttr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004813 return cxstring::createRef("attribute(ibaction)");
Guy Benyei11169dd2012-12-18 14:30:41 +00004814 case CXCursor_IBOutletAttr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004815 return cxstring::createRef("attribute(iboutlet)");
Guy Benyei11169dd2012-12-18 14:30:41 +00004816 case CXCursor_IBOutletCollectionAttr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004817 return cxstring::createRef("attribute(iboutletcollection)");
Guy Benyei11169dd2012-12-18 14:30:41 +00004818 case CXCursor_CXXFinalAttr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004819 return cxstring::createRef("attribute(final)");
Guy Benyei11169dd2012-12-18 14:30:41 +00004820 case CXCursor_CXXOverrideAttr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004821 return cxstring::createRef("attribute(override)");
Guy Benyei11169dd2012-12-18 14:30:41 +00004822 case CXCursor_AnnotateAttr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004823 return cxstring::createRef("attribute(annotate)");
Guy Benyei11169dd2012-12-18 14:30:41 +00004824 case CXCursor_AsmLabelAttr:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004825 return cxstring::createRef("asm label");
Argyrios Kyrtzidis16834f12013-09-25 00:14:38 +00004826 case CXCursor_PackedAttr:
4827 return cxstring::createRef("attribute(packed)");
Joey Gouly81228382014-05-01 15:41:58 +00004828 case CXCursor_PureAttr:
4829 return cxstring::createRef("attribute(pure)");
4830 case CXCursor_ConstAttr:
4831 return cxstring::createRef("attribute(const)");
4832 case CXCursor_NoDuplicateAttr:
4833 return cxstring::createRef("attribute(noduplicate)");
Eli Bendersky2581e662014-05-28 19:29:58 +00004834 case CXCursor_CUDAConstantAttr:
4835 return cxstring::createRef("attribute(constant)");
4836 case CXCursor_CUDADeviceAttr:
4837 return cxstring::createRef("attribute(device)");
4838 case CXCursor_CUDAGlobalAttr:
4839 return cxstring::createRef("attribute(global)");
4840 case CXCursor_CUDAHostAttr:
4841 return cxstring::createRef("attribute(host)");
Eli Bendersky9b071472014-08-08 14:59:00 +00004842 case CXCursor_CUDASharedAttr:
4843 return cxstring::createRef("attribute(shared)");
Saleem Abdulrasool79c69712015-09-05 18:53:43 +00004844 case CXCursor_VisibilityAttr:
4845 return cxstring::createRef("attribute(visibility)");
Saleem Abdulrasool8aa0b802015-12-10 18:45:18 +00004846 case CXCursor_DLLExport:
4847 return cxstring::createRef("attribute(dllexport)");
4848 case CXCursor_DLLImport:
4849 return cxstring::createRef("attribute(dllimport)");
Guy Benyei11169dd2012-12-18 14:30:41 +00004850 case CXCursor_PreprocessingDirective:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004851 return cxstring::createRef("preprocessing directive");
Guy Benyei11169dd2012-12-18 14:30:41 +00004852 case CXCursor_MacroDefinition:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004853 return cxstring::createRef("macro definition");
Guy Benyei11169dd2012-12-18 14:30:41 +00004854 case CXCursor_MacroExpansion:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004855 return cxstring::createRef("macro expansion");
Guy Benyei11169dd2012-12-18 14:30:41 +00004856 case CXCursor_InclusionDirective:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004857 return cxstring::createRef("inclusion directive");
Guy Benyei11169dd2012-12-18 14:30:41 +00004858 case CXCursor_Namespace:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004859 return cxstring::createRef("Namespace");
Guy Benyei11169dd2012-12-18 14:30:41 +00004860 case CXCursor_LinkageSpec:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004861 return cxstring::createRef("LinkageSpec");
Guy Benyei11169dd2012-12-18 14:30:41 +00004862 case CXCursor_CXXBaseSpecifier:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004863 return cxstring::createRef("C++ base class specifier");
Guy Benyei11169dd2012-12-18 14:30:41 +00004864 case CXCursor_Constructor:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004865 return cxstring::createRef("CXXConstructor");
Guy Benyei11169dd2012-12-18 14:30:41 +00004866 case CXCursor_Destructor:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004867 return cxstring::createRef("CXXDestructor");
Guy Benyei11169dd2012-12-18 14:30:41 +00004868 case CXCursor_ConversionFunction:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004869 return cxstring::createRef("CXXConversion");
Guy Benyei11169dd2012-12-18 14:30:41 +00004870 case CXCursor_TemplateTypeParameter:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004871 return cxstring::createRef("TemplateTypeParameter");
Guy Benyei11169dd2012-12-18 14:30:41 +00004872 case CXCursor_NonTypeTemplateParameter:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004873 return cxstring::createRef("NonTypeTemplateParameter");
Guy Benyei11169dd2012-12-18 14:30:41 +00004874 case CXCursor_TemplateTemplateParameter:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004875 return cxstring::createRef("TemplateTemplateParameter");
Guy Benyei11169dd2012-12-18 14:30:41 +00004876 case CXCursor_FunctionTemplate:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004877 return cxstring::createRef("FunctionTemplate");
Guy Benyei11169dd2012-12-18 14:30:41 +00004878 case CXCursor_ClassTemplate:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004879 return cxstring::createRef("ClassTemplate");
Guy Benyei11169dd2012-12-18 14:30:41 +00004880 case CXCursor_ClassTemplatePartialSpecialization:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004881 return cxstring::createRef("ClassTemplatePartialSpecialization");
Guy Benyei11169dd2012-12-18 14:30:41 +00004882 case CXCursor_NamespaceAlias:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004883 return cxstring::createRef("NamespaceAlias");
Guy Benyei11169dd2012-12-18 14:30:41 +00004884 case CXCursor_UsingDirective:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004885 return cxstring::createRef("UsingDirective");
Guy Benyei11169dd2012-12-18 14:30:41 +00004886 case CXCursor_UsingDeclaration:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004887 return cxstring::createRef("UsingDeclaration");
Guy Benyei11169dd2012-12-18 14:30:41 +00004888 case CXCursor_TypeAliasDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004889 return cxstring::createRef("TypeAliasDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004890 case CXCursor_ObjCSynthesizeDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004891 return cxstring::createRef("ObjCSynthesizeDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004892 case CXCursor_ObjCDynamicDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004893 return cxstring::createRef("ObjCDynamicDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004894 case CXCursor_CXXAccessSpecifier:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004895 return cxstring::createRef("CXXAccessSpecifier");
Guy Benyei11169dd2012-12-18 14:30:41 +00004896 case CXCursor_ModuleImportDecl:
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00004897 return cxstring::createRef("ModuleImport");
Alexey Bataev5ec3eb12013-07-19 03:13:43 +00004898 case CXCursor_OMPParallelDirective:
Alexey Bataev1b59ab52014-02-27 08:29:12 +00004899 return cxstring::createRef("OMPParallelDirective");
4900 case CXCursor_OMPSimdDirective:
4901 return cxstring::createRef("OMPSimdDirective");
Alexey Bataevf29276e2014-06-18 04:14:57 +00004902 case CXCursor_OMPForDirective:
4903 return cxstring::createRef("OMPForDirective");
Alexander Musmanf82886e2014-09-18 05:12:34 +00004904 case CXCursor_OMPForSimdDirective:
4905 return cxstring::createRef("OMPForSimdDirective");
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00004906 case CXCursor_OMPSectionsDirective:
4907 return cxstring::createRef("OMPSectionsDirective");
Alexey Bataev1e0498a2014-06-26 08:21:58 +00004908 case CXCursor_OMPSectionDirective:
4909 return cxstring::createRef("OMPSectionDirective");
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00004910 case CXCursor_OMPSingleDirective:
4911 return cxstring::createRef("OMPSingleDirective");
Alexander Musman80c22892014-07-17 08:54:58 +00004912 case CXCursor_OMPMasterDirective:
4913 return cxstring::createRef("OMPMasterDirective");
Alexander Musmand9ed09f2014-07-21 09:42:05 +00004914 case CXCursor_OMPCriticalDirective:
4915 return cxstring::createRef("OMPCriticalDirective");
Alexey Bataev4acb8592014-07-07 13:01:15 +00004916 case CXCursor_OMPParallelForDirective:
4917 return cxstring::createRef("OMPParallelForDirective");
Alexander Musmane4e893b2014-09-23 09:33:00 +00004918 case CXCursor_OMPParallelForSimdDirective:
4919 return cxstring::createRef("OMPParallelForSimdDirective");
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00004920 case CXCursor_OMPParallelSectionsDirective:
4921 return cxstring::createRef("OMPParallelSectionsDirective");
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00004922 case CXCursor_OMPTaskDirective:
4923 return cxstring::createRef("OMPTaskDirective");
Alexey Bataev68446b72014-07-18 07:47:19 +00004924 case CXCursor_OMPTaskyieldDirective:
4925 return cxstring::createRef("OMPTaskyieldDirective");
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00004926 case CXCursor_OMPBarrierDirective:
4927 return cxstring::createRef("OMPBarrierDirective");
Alexey Bataev2df347a2014-07-18 10:17:07 +00004928 case CXCursor_OMPTaskwaitDirective:
4929 return cxstring::createRef("OMPTaskwaitDirective");
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00004930 case CXCursor_OMPTaskgroupDirective:
4931 return cxstring::createRef("OMPTaskgroupDirective");
Alexey Bataev6125da92014-07-21 11:26:11 +00004932 case CXCursor_OMPFlushDirective:
4933 return cxstring::createRef("OMPFlushDirective");
Alexey Bataev9fb6e642014-07-22 06:45:04 +00004934 case CXCursor_OMPOrderedDirective:
4935 return cxstring::createRef("OMPOrderedDirective");
Alexey Bataev0162e452014-07-22 10:10:35 +00004936 case CXCursor_OMPAtomicDirective:
4937 return cxstring::createRef("OMPAtomicDirective");
Alexey Bataev0bd520b2014-09-19 08:19:49 +00004938 case CXCursor_OMPTargetDirective:
4939 return cxstring::createRef("OMPTargetDirective");
Michael Wong65f367f2015-07-21 13:44:28 +00004940 case CXCursor_OMPTargetDataDirective:
4941 return cxstring::createRef("OMPTargetDataDirective");
Samuel Antaodf67fc42016-01-19 19:15:56 +00004942 case CXCursor_OMPTargetEnterDataDirective:
4943 return cxstring::createRef("OMPTargetEnterDataDirective");
Samuel Antao72590762016-01-19 20:04:50 +00004944 case CXCursor_OMPTargetExitDataDirective:
4945 return cxstring::createRef("OMPTargetExitDataDirective");
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00004946 case CXCursor_OMPTargetParallelDirective:
4947 return cxstring::createRef("OMPTargetParallelDirective");
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00004948 case CXCursor_OMPTargetParallelForDirective:
4949 return cxstring::createRef("OMPTargetParallelForDirective");
Samuel Antao686c70c2016-05-26 17:30:50 +00004950 case CXCursor_OMPTargetUpdateDirective:
4951 return cxstring::createRef("OMPTargetUpdateDirective");
Alexey Bataev13314bf2014-10-09 04:18:56 +00004952 case CXCursor_OMPTeamsDirective:
4953 return cxstring::createRef("OMPTeamsDirective");
Alexey Bataev6d4ed052015-07-01 06:57:41 +00004954 case CXCursor_OMPCancellationPointDirective:
4955 return cxstring::createRef("OMPCancellationPointDirective");
Alexey Bataev80909872015-07-02 11:25:17 +00004956 case CXCursor_OMPCancelDirective:
4957 return cxstring::createRef("OMPCancelDirective");
Alexey Bataev49f6e782015-12-01 04:18:41 +00004958 case CXCursor_OMPTaskLoopDirective:
4959 return cxstring::createRef("OMPTaskLoopDirective");
Alexey Bataev0a6ed842015-12-03 09:40:15 +00004960 case CXCursor_OMPTaskLoopSimdDirective:
4961 return cxstring::createRef("OMPTaskLoopSimdDirective");
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00004962 case CXCursor_OMPDistributeDirective:
4963 return cxstring::createRef("OMPDistributeDirective");
Carlo Bertolli9925f152016-06-27 14:55:37 +00004964 case CXCursor_OMPDistributeParallelForDirective:
4965 return cxstring::createRef("OMPDistributeParallelForDirective");
Kelvin Li4a39add2016-07-05 05:00:15 +00004966 case CXCursor_OMPDistributeParallelForSimdDirective:
4967 return cxstring::createRef("OMPDistributeParallelForSimdDirective");
Kelvin Li787f3fc2016-07-06 04:45:38 +00004968 case CXCursor_OMPDistributeSimdDirective:
4969 return cxstring::createRef("OMPDistributeSimdDirective");
Kelvin Lia579b912016-07-14 02:54:56 +00004970 case CXCursor_OMPTargetParallelForSimdDirective:
4971 return cxstring::createRef("OMPTargetParallelForSimdDirective");
Kelvin Li986330c2016-07-20 22:57:10 +00004972 case CXCursor_OMPTargetSimdDirective:
4973 return cxstring::createRef("OMPTargetSimdDirective");
Kelvin Li02532872016-08-05 14:37:37 +00004974 case CXCursor_OMPTeamsDistributeDirective:
4975 return cxstring::createRef("OMPTeamsDistributeDirective");
Kelvin Li4e325f72016-10-25 12:50:55 +00004976 case CXCursor_OMPTeamsDistributeSimdDirective:
4977 return cxstring::createRef("OMPTeamsDistributeSimdDirective");
Kelvin Li579e41c2016-11-30 23:51:03 +00004978 case CXCursor_OMPTeamsDistributeParallelForSimdDirective:
4979 return cxstring::createRef("OMPTeamsDistributeParallelForSimdDirective");
Kelvin Li7ade93f2016-12-09 03:24:30 +00004980 case CXCursor_OMPTeamsDistributeParallelForDirective:
4981 return cxstring::createRef("OMPTeamsDistributeParallelForDirective");
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004982 case CXCursor_OverloadCandidate:
4983 return cxstring::createRef("OverloadCandidate");
Sergey Kalinichev8f3b1872015-11-15 13:48:32 +00004984 case CXCursor_TypeAliasTemplateDecl:
4985 return cxstring::createRef("TypeAliasTemplateDecl");
Olivier Goffart81978012016-06-09 16:15:55 +00004986 case CXCursor_StaticAssert:
4987 return cxstring::createRef("StaticAssert");
Olivier Goffartd211c642016-11-04 06:29:27 +00004988 case CXCursor_FriendDecl:
4989 return cxstring::createRef("FriendDecl");
Guy Benyei11169dd2012-12-18 14:30:41 +00004990 }
4991
4992 llvm_unreachable("Unhandled CXCursorKind");
4993}
4994
4995struct GetCursorData {
4996 SourceLocation TokenBeginLoc;
4997 bool PointsAtMacroArgExpansion;
4998 bool VisitedObjCPropertyImplDecl;
4999 SourceLocation VisitedDeclaratorDeclStartLoc;
5000 CXCursor &BestCursor;
5001
5002 GetCursorData(SourceManager &SM,
5003 SourceLocation tokenBegin, CXCursor &outputCursor)
5004 : TokenBeginLoc(tokenBegin), BestCursor(outputCursor) {
5005 PointsAtMacroArgExpansion = SM.isMacroArgExpansion(tokenBegin);
5006 VisitedObjCPropertyImplDecl = false;
5007 }
5008};
5009
5010static enum CXChildVisitResult GetCursorVisitor(CXCursor cursor,
5011 CXCursor parent,
5012 CXClientData client_data) {
5013 GetCursorData *Data = static_cast<GetCursorData *>(client_data);
5014 CXCursor *BestCursor = &Data->BestCursor;
5015
5016 // If we point inside a macro argument we should provide info of what the
5017 // token is so use the actual cursor, don't replace it with a macro expansion
5018 // cursor.
5019 if (cursor.kind == CXCursor_MacroExpansion && Data->PointsAtMacroArgExpansion)
5020 return CXChildVisit_Recurse;
5021
5022 if (clang_isDeclaration(cursor.kind)) {
5023 // Avoid having the implicit methods override the property decls.
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005024 if (const ObjCMethodDecl *MD
Guy Benyei11169dd2012-12-18 14:30:41 +00005025 = dyn_cast_or_null<ObjCMethodDecl>(getCursorDecl(cursor))) {
5026 if (MD->isImplicit())
5027 return CXChildVisit_Break;
5028
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005029 } else if (const ObjCInterfaceDecl *ID
Guy Benyei11169dd2012-12-18 14:30:41 +00005030 = dyn_cast_or_null<ObjCInterfaceDecl>(getCursorDecl(cursor))) {
5031 // Check that when we have multiple @class references in the same line,
5032 // that later ones do not override the previous ones.
5033 // If we have:
5034 // @class Foo, Bar;
5035 // source ranges for both start at '@', so 'Bar' will end up overriding
5036 // 'Foo' even though the cursor location was at 'Foo'.
5037 if (BestCursor->kind == CXCursor_ObjCInterfaceDecl ||
5038 BestCursor->kind == CXCursor_ObjCClassRef)
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005039 if (const ObjCInterfaceDecl *PrevID
Guy Benyei11169dd2012-12-18 14:30:41 +00005040 = dyn_cast_or_null<ObjCInterfaceDecl>(getCursorDecl(*BestCursor))){
5041 if (PrevID != ID &&
5042 !PrevID->isThisDeclarationADefinition() &&
5043 !ID->isThisDeclarationADefinition())
5044 return CXChildVisit_Break;
5045 }
5046
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005047 } else if (const DeclaratorDecl *DD
Guy Benyei11169dd2012-12-18 14:30:41 +00005048 = dyn_cast_or_null<DeclaratorDecl>(getCursorDecl(cursor))) {
5049 SourceLocation StartLoc = DD->getSourceRange().getBegin();
5050 // Check that when we have multiple declarators in the same line,
5051 // that later ones do not override the previous ones.
5052 // If we have:
5053 // int Foo, Bar;
5054 // source ranges for both start at 'int', so 'Bar' will end up overriding
5055 // 'Foo' even though the cursor location was at 'Foo'.
5056 if (Data->VisitedDeclaratorDeclStartLoc == StartLoc)
5057 return CXChildVisit_Break;
5058 Data->VisitedDeclaratorDeclStartLoc = StartLoc;
5059
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005060 } else if (const ObjCPropertyImplDecl *PropImp
Guy Benyei11169dd2012-12-18 14:30:41 +00005061 = dyn_cast_or_null<ObjCPropertyImplDecl>(getCursorDecl(cursor))) {
5062 (void)PropImp;
5063 // Check that when we have multiple @synthesize in the same line,
5064 // that later ones do not override the previous ones.
5065 // If we have:
5066 // @synthesize Foo, Bar;
5067 // source ranges for both start at '@', so 'Bar' will end up overriding
5068 // 'Foo' even though the cursor location was at 'Foo'.
5069 if (Data->VisitedObjCPropertyImplDecl)
5070 return CXChildVisit_Break;
5071 Data->VisitedObjCPropertyImplDecl = true;
5072 }
5073 }
5074
5075 if (clang_isExpression(cursor.kind) &&
5076 clang_isDeclaration(BestCursor->kind)) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005077 if (const Decl *D = getCursorDecl(*BestCursor)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00005078 // Avoid having the cursor of an expression replace the declaration cursor
5079 // when the expression source range overlaps the declaration range.
5080 // This can happen for C++ constructor expressions whose range generally
5081 // include the variable declaration, e.g.:
5082 // MyCXXClass foo; // Make sure pointing at 'foo' returns a VarDecl cursor.
5083 if (D->getLocation().isValid() && Data->TokenBeginLoc.isValid() &&
5084 D->getLocation() == Data->TokenBeginLoc)
5085 return CXChildVisit_Break;
5086 }
5087 }
5088
5089 // If our current best cursor is the construction of a temporary object,
5090 // don't replace that cursor with a type reference, because we want
5091 // clang_getCursor() to point at the constructor.
5092 if (clang_isExpression(BestCursor->kind) &&
5093 isa<CXXTemporaryObjectExpr>(getCursorExpr(*BestCursor)) &&
5094 cursor.kind == CXCursor_TypeRef) {
5095 // Keep the cursor pointing at CXXTemporaryObjectExpr but also mark it
5096 // as having the actual point on the type reference.
5097 *BestCursor = getTypeRefedCallExprCursor(*BestCursor);
5098 return CXChildVisit_Recurse;
5099 }
Douglas Gregore9d95f12015-07-07 03:57:35 +00005100
5101 // If we already have an Objective-C superclass reference, don't
5102 // update it further.
5103 if (BestCursor->kind == CXCursor_ObjCSuperClassRef)
5104 return CXChildVisit_Break;
5105
Guy Benyei11169dd2012-12-18 14:30:41 +00005106 *BestCursor = cursor;
5107 return CXChildVisit_Recurse;
5108}
5109
5110CXCursor clang_getCursor(CXTranslationUnit TU, CXSourceLocation Loc) {
Dmitri Gribenko852d6222014-02-11 15:02:48 +00005111 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00005112 LOG_BAD_TU(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00005113 return clang_getNullCursor();
Dmitri Gribenko256454f2014-02-11 14:34:14 +00005114 }
Guy Benyei11169dd2012-12-18 14:30:41 +00005115
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00005116 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00005117 ASTUnit::ConcurrencyCheck Check(*CXXUnit);
5118
5119 SourceLocation SLoc = cxloc::translateSourceLocation(Loc);
5120 CXCursor Result = cxcursor::getCursor(TU, SLoc);
5121
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00005122 LOG_FUNC_SECTION {
Guy Benyei11169dd2012-12-18 14:30:41 +00005123 CXFile SearchFile;
5124 unsigned SearchLine, SearchColumn;
5125 CXFile ResultFile;
5126 unsigned ResultLine, ResultColumn;
5127 CXString SearchFileName, ResultFileName, KindSpelling, USR;
5128 const char *IsDef = clang_isCursorDefinition(Result)? " (Definition)" : "";
5129 CXSourceLocation ResultLoc = clang_getCursorLocation(Result);
Craig Topper69186e72014-06-08 08:38:04 +00005130
5131 clang_getFileLocation(Loc, &SearchFile, &SearchLine, &SearchColumn,
5132 nullptr);
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00005133 clang_getFileLocation(ResultLoc, &ResultFile, &ResultLine,
Craig Topper69186e72014-06-08 08:38:04 +00005134 &ResultColumn, nullptr);
Guy Benyei11169dd2012-12-18 14:30:41 +00005135 SearchFileName = clang_getFileName(SearchFile);
5136 ResultFileName = clang_getFileName(ResultFile);
5137 KindSpelling = clang_getCursorKindSpelling(Result.kind);
5138 USR = clang_getCursorUSR(Result);
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00005139 *Log << llvm::format("(%s:%d:%d) = %s",
5140 clang_getCString(SearchFileName), SearchLine, SearchColumn,
5141 clang_getCString(KindSpelling))
5142 << llvm::format("(%s:%d:%d):%s%s",
5143 clang_getCString(ResultFileName), ResultLine, ResultColumn,
5144 clang_getCString(USR), IsDef);
Guy Benyei11169dd2012-12-18 14:30:41 +00005145 clang_disposeString(SearchFileName);
5146 clang_disposeString(ResultFileName);
5147 clang_disposeString(KindSpelling);
5148 clang_disposeString(USR);
5149
5150 CXCursor Definition = clang_getCursorDefinition(Result);
5151 if (!clang_equalCursors(Definition, clang_getNullCursor())) {
5152 CXSourceLocation DefinitionLoc = clang_getCursorLocation(Definition);
5153 CXString DefinitionKindSpelling
5154 = clang_getCursorKindSpelling(Definition.kind);
5155 CXFile DefinitionFile;
5156 unsigned DefinitionLine, DefinitionColumn;
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00005157 clang_getFileLocation(DefinitionLoc, &DefinitionFile,
Craig Topper69186e72014-06-08 08:38:04 +00005158 &DefinitionLine, &DefinitionColumn, nullptr);
Guy Benyei11169dd2012-12-18 14:30:41 +00005159 CXString DefinitionFileName = clang_getFileName(DefinitionFile);
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00005160 *Log << llvm::format(" -> %s(%s:%d:%d)",
5161 clang_getCString(DefinitionKindSpelling),
5162 clang_getCString(DefinitionFileName),
5163 DefinitionLine, DefinitionColumn);
Guy Benyei11169dd2012-12-18 14:30:41 +00005164 clang_disposeString(DefinitionFileName);
5165 clang_disposeString(DefinitionKindSpelling);
5166 }
5167 }
5168
5169 return Result;
5170}
5171
5172CXCursor clang_getNullCursor(void) {
5173 return MakeCXCursorInvalid(CXCursor_InvalidFile);
5174}
5175
5176unsigned clang_equalCursors(CXCursor X, CXCursor Y) {
Argyrios Kyrtzidisbf1be592013-01-08 18:23:28 +00005177 // Clear out the "FirstInDeclGroup" part in a declaration cursor, since we
5178 // can't set consistently. For example, when visiting a DeclStmt we will set
5179 // it but we don't set it on the result of clang_getCursorDefinition for
5180 // a reference of the same declaration.
5181 // FIXME: Setting "FirstInDeclGroup" in CXCursors is a hack that only works
5182 // when visiting a DeclStmt currently, the AST should be enhanced to be able
5183 // to provide that kind of info.
5184 if (clang_isDeclaration(X.kind))
Craig Topper69186e72014-06-08 08:38:04 +00005185 X.data[1] = nullptr;
Argyrios Kyrtzidisbf1be592013-01-08 18:23:28 +00005186 if (clang_isDeclaration(Y.kind))
Craig Topper69186e72014-06-08 08:38:04 +00005187 Y.data[1] = nullptr;
Argyrios Kyrtzidisbf1be592013-01-08 18:23:28 +00005188
Guy Benyei11169dd2012-12-18 14:30:41 +00005189 return X == Y;
5190}
5191
5192unsigned clang_hashCursor(CXCursor C) {
5193 unsigned Index = 0;
5194 if (clang_isExpression(C.kind) || clang_isStatement(C.kind))
5195 Index = 1;
5196
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00005197 return llvm::DenseMapInfo<std::pair<unsigned, const void*> >::getHashValue(
Guy Benyei11169dd2012-12-18 14:30:41 +00005198 std::make_pair(C.kind, C.data[Index]));
5199}
5200
5201unsigned clang_isInvalid(enum CXCursorKind K) {
5202 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
5203}
5204
5205unsigned clang_isDeclaration(enum CXCursorKind K) {
5206 return (K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl) ||
5207 (K >= CXCursor_FirstExtraDecl && K <= CXCursor_LastExtraDecl);
5208}
5209
5210unsigned clang_isReference(enum CXCursorKind K) {
5211 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
5212}
5213
5214unsigned clang_isExpression(enum CXCursorKind K) {
5215 return K >= CXCursor_FirstExpr && K <= CXCursor_LastExpr;
5216}
5217
5218unsigned clang_isStatement(enum CXCursorKind K) {
5219 return K >= CXCursor_FirstStmt && K <= CXCursor_LastStmt;
5220}
5221
5222unsigned clang_isAttribute(enum CXCursorKind K) {
5223 return K >= CXCursor_FirstAttr && K <= CXCursor_LastAttr;
5224}
5225
5226unsigned clang_isTranslationUnit(enum CXCursorKind K) {
5227 return K == CXCursor_TranslationUnit;
5228}
5229
5230unsigned clang_isPreprocessing(enum CXCursorKind K) {
5231 return K >= CXCursor_FirstPreprocessing && K <= CXCursor_LastPreprocessing;
5232}
5233
5234unsigned clang_isUnexposed(enum CXCursorKind K) {
5235 switch (K) {
5236 case CXCursor_UnexposedDecl:
5237 case CXCursor_UnexposedExpr:
5238 case CXCursor_UnexposedStmt:
5239 case CXCursor_UnexposedAttr:
5240 return true;
5241 default:
5242 return false;
5243 }
5244}
5245
5246CXCursorKind clang_getCursorKind(CXCursor C) {
5247 return C.kind;
5248}
5249
5250CXSourceLocation clang_getCursorLocation(CXCursor C) {
5251 if (clang_isReference(C.kind)) {
5252 switch (C.kind) {
5253 case CXCursor_ObjCSuperClassRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00005254 std::pair<const ObjCInterfaceDecl *, SourceLocation> P
Guy Benyei11169dd2012-12-18 14:30:41 +00005255 = getCursorObjCSuperClassRef(C);
5256 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
5257 }
5258
5259 case CXCursor_ObjCProtocolRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00005260 std::pair<const ObjCProtocolDecl *, SourceLocation> P
Guy Benyei11169dd2012-12-18 14:30:41 +00005261 = getCursorObjCProtocolRef(C);
5262 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
5263 }
5264
5265 case CXCursor_ObjCClassRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00005266 std::pair<const ObjCInterfaceDecl *, SourceLocation> P
Guy Benyei11169dd2012-12-18 14:30:41 +00005267 = getCursorObjCClassRef(C);
5268 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
5269 }
5270
5271 case CXCursor_TypeRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00005272 std::pair<const TypeDecl *, SourceLocation> P = getCursorTypeRef(C);
Guy Benyei11169dd2012-12-18 14:30:41 +00005273 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
5274 }
5275
5276 case CXCursor_TemplateRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00005277 std::pair<const TemplateDecl *, SourceLocation> P =
5278 getCursorTemplateRef(C);
Guy Benyei11169dd2012-12-18 14:30:41 +00005279 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
5280 }
5281
5282 case CXCursor_NamespaceRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00005283 std::pair<const NamedDecl *, SourceLocation> P = getCursorNamespaceRef(C);
Guy Benyei11169dd2012-12-18 14:30:41 +00005284 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
5285 }
5286
5287 case CXCursor_MemberRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00005288 std::pair<const FieldDecl *, SourceLocation> P = getCursorMemberRef(C);
Guy Benyei11169dd2012-12-18 14:30:41 +00005289 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
5290 }
5291
5292 case CXCursor_VariableRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00005293 std::pair<const VarDecl *, SourceLocation> P = getCursorVariableRef(C);
Guy Benyei11169dd2012-12-18 14:30:41 +00005294 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
5295 }
5296
5297 case CXCursor_CXXBaseSpecifier: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00005298 const CXXBaseSpecifier *BaseSpec = getCursorCXXBaseSpecifier(C);
Guy Benyei11169dd2012-12-18 14:30:41 +00005299 if (!BaseSpec)
5300 return clang_getNullLocation();
5301
5302 if (TypeSourceInfo *TSInfo = BaseSpec->getTypeSourceInfo())
5303 return cxloc::translateSourceLocation(getCursorContext(C),
5304 TSInfo->getTypeLoc().getBeginLoc());
5305
5306 return cxloc::translateSourceLocation(getCursorContext(C),
5307 BaseSpec->getLocStart());
5308 }
5309
5310 case CXCursor_LabelRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00005311 std::pair<const LabelStmt *, SourceLocation> P = getCursorLabelRef(C);
Guy Benyei11169dd2012-12-18 14:30:41 +00005312 return cxloc::translateSourceLocation(getCursorContext(C), P.second);
5313 }
5314
5315 case CXCursor_OverloadedDeclRef:
5316 return cxloc::translateSourceLocation(getCursorContext(C),
5317 getCursorOverloadedDeclRef(C).second);
5318
5319 default:
5320 // FIXME: Need a way to enumerate all non-reference cases.
5321 llvm_unreachable("Missed a reference kind");
5322 }
5323 }
5324
5325 if (clang_isExpression(C.kind))
5326 return cxloc::translateSourceLocation(getCursorContext(C),
5327 getLocationFromExpr(getCursorExpr(C)));
5328
5329 if (clang_isStatement(C.kind))
5330 return cxloc::translateSourceLocation(getCursorContext(C),
5331 getCursorStmt(C)->getLocStart());
5332
5333 if (C.kind == CXCursor_PreprocessingDirective) {
5334 SourceLocation L = cxcursor::getCursorPreprocessingDirective(C).getBegin();
5335 return cxloc::translateSourceLocation(getCursorContext(C), L);
5336 }
5337
5338 if (C.kind == CXCursor_MacroExpansion) {
5339 SourceLocation L
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00005340 = cxcursor::getCursorMacroExpansion(C).getSourceRange().getBegin();
Guy Benyei11169dd2012-12-18 14:30:41 +00005341 return cxloc::translateSourceLocation(getCursorContext(C), L);
5342 }
5343
5344 if (C.kind == CXCursor_MacroDefinition) {
5345 SourceLocation L = cxcursor::getCursorMacroDefinition(C)->getLocation();
5346 return cxloc::translateSourceLocation(getCursorContext(C), L);
5347 }
5348
5349 if (C.kind == CXCursor_InclusionDirective) {
5350 SourceLocation L
5351 = cxcursor::getCursorInclusionDirective(C)->getSourceRange().getBegin();
5352 return cxloc::translateSourceLocation(getCursorContext(C), L);
5353 }
5354
Argyrios Kyrtzidis16834f12013-09-25 00:14:38 +00005355 if (clang_isAttribute(C.kind)) {
5356 SourceLocation L
5357 = cxcursor::getCursorAttr(C)->getLocation();
5358 return cxloc::translateSourceLocation(getCursorContext(C), L);
5359 }
5360
Guy Benyei11169dd2012-12-18 14:30:41 +00005361 if (!clang_isDeclaration(C.kind))
5362 return clang_getNullLocation();
5363
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005364 const Decl *D = getCursorDecl(C);
Guy Benyei11169dd2012-12-18 14:30:41 +00005365 if (!D)
5366 return clang_getNullLocation();
5367
5368 SourceLocation Loc = D->getLocation();
5369 // FIXME: Multiple variables declared in a single declaration
5370 // currently lack the information needed to correctly determine their
5371 // ranges when accounting for the type-specifier. We use context
5372 // stored in the CXCursor to determine if the VarDecl is in a DeclGroup,
5373 // and if so, whether it is the first decl.
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005374 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00005375 if (!cxcursor::isFirstInDeclGroup(C))
5376 Loc = VD->getLocation();
5377 }
5378
5379 // For ObjC methods, give the start location of the method name.
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005380 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Guy Benyei11169dd2012-12-18 14:30:41 +00005381 Loc = MD->getSelectorStartLoc();
5382
5383 return cxloc::translateSourceLocation(getCursorContext(C), Loc);
5384}
5385
5386} // end extern "C"
5387
5388CXCursor cxcursor::getCursor(CXTranslationUnit TU, SourceLocation SLoc) {
5389 assert(TU);
5390
5391 // Guard against an invalid SourceLocation, or we may assert in one
5392 // of the following calls.
5393 if (SLoc.isInvalid())
5394 return clang_getNullCursor();
5395
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00005396 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00005397
5398 // Translate the given source location to make it point at the beginning of
5399 // the token under the cursor.
5400 SLoc = Lexer::GetBeginningOfToken(SLoc, CXXUnit->getSourceManager(),
5401 CXXUnit->getASTContext().getLangOpts());
5402
5403 CXCursor Result = MakeCXCursorInvalid(CXCursor_NoDeclFound);
5404 if (SLoc.isValid()) {
5405 GetCursorData ResultData(CXXUnit->getSourceManager(), SLoc, Result);
5406 CursorVisitor CursorVis(TU, GetCursorVisitor, &ResultData,
5407 /*VisitPreprocessorLast=*/true,
5408 /*VisitIncludedEntities=*/false,
5409 SourceLocation(SLoc));
5410 CursorVis.visitFileRegion();
5411 }
5412
5413 return Result;
5414}
5415
5416static SourceRange getRawCursorExtent(CXCursor C) {
5417 if (clang_isReference(C.kind)) {
5418 switch (C.kind) {
5419 case CXCursor_ObjCSuperClassRef:
5420 return getCursorObjCSuperClassRef(C).second;
5421
5422 case CXCursor_ObjCProtocolRef:
5423 return getCursorObjCProtocolRef(C).second;
5424
5425 case CXCursor_ObjCClassRef:
5426 return getCursorObjCClassRef(C).second;
5427
5428 case CXCursor_TypeRef:
5429 return getCursorTypeRef(C).second;
5430
5431 case CXCursor_TemplateRef:
5432 return getCursorTemplateRef(C).second;
5433
5434 case CXCursor_NamespaceRef:
5435 return getCursorNamespaceRef(C).second;
5436
5437 case CXCursor_MemberRef:
5438 return getCursorMemberRef(C).second;
5439
5440 case CXCursor_CXXBaseSpecifier:
5441 return getCursorCXXBaseSpecifier(C)->getSourceRange();
5442
5443 case CXCursor_LabelRef:
5444 return getCursorLabelRef(C).second;
5445
5446 case CXCursor_OverloadedDeclRef:
5447 return getCursorOverloadedDeclRef(C).second;
5448
5449 case CXCursor_VariableRef:
5450 return getCursorVariableRef(C).second;
5451
5452 default:
5453 // FIXME: Need a way to enumerate all non-reference cases.
5454 llvm_unreachable("Missed a reference kind");
5455 }
5456 }
5457
5458 if (clang_isExpression(C.kind))
5459 return getCursorExpr(C)->getSourceRange();
5460
5461 if (clang_isStatement(C.kind))
5462 return getCursorStmt(C)->getSourceRange();
5463
5464 if (clang_isAttribute(C.kind))
5465 return getCursorAttr(C)->getRange();
5466
5467 if (C.kind == CXCursor_PreprocessingDirective)
5468 return cxcursor::getCursorPreprocessingDirective(C);
5469
5470 if (C.kind == CXCursor_MacroExpansion) {
5471 ASTUnit *TU = getCursorASTUnit(C);
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00005472 SourceRange Range = cxcursor::getCursorMacroExpansion(C).getSourceRange();
Guy Benyei11169dd2012-12-18 14:30:41 +00005473 return TU->mapRangeFromPreamble(Range);
5474 }
5475
5476 if (C.kind == CXCursor_MacroDefinition) {
5477 ASTUnit *TU = getCursorASTUnit(C);
5478 SourceRange Range = cxcursor::getCursorMacroDefinition(C)->getSourceRange();
5479 return TU->mapRangeFromPreamble(Range);
5480 }
5481
5482 if (C.kind == CXCursor_InclusionDirective) {
5483 ASTUnit *TU = getCursorASTUnit(C);
5484 SourceRange Range = cxcursor::getCursorInclusionDirective(C)->getSourceRange();
5485 return TU->mapRangeFromPreamble(Range);
5486 }
5487
5488 if (C.kind == CXCursor_TranslationUnit) {
5489 ASTUnit *TU = getCursorASTUnit(C);
5490 FileID MainID = TU->getSourceManager().getMainFileID();
5491 SourceLocation Start = TU->getSourceManager().getLocForStartOfFile(MainID);
5492 SourceLocation End = TU->getSourceManager().getLocForEndOfFile(MainID);
5493 return SourceRange(Start, End);
5494 }
5495
5496 if (clang_isDeclaration(C.kind)) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005497 const Decl *D = cxcursor::getCursorDecl(C);
Guy Benyei11169dd2012-12-18 14:30:41 +00005498 if (!D)
5499 return SourceRange();
5500
5501 SourceRange R = D->getSourceRange();
5502 // FIXME: Multiple variables declared in a single declaration
5503 // currently lack the information needed to correctly determine their
5504 // ranges when accounting for the type-specifier. We use context
5505 // stored in the CXCursor to determine if the VarDecl is in a DeclGroup,
5506 // and if so, whether it is the first decl.
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005507 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00005508 if (!cxcursor::isFirstInDeclGroup(C))
5509 R.setBegin(VD->getLocation());
5510 }
5511 return R;
5512 }
5513 return SourceRange();
5514}
5515
5516/// \brief Retrieves the "raw" cursor extent, which is then extended to include
5517/// the decl-specifier-seq for declarations.
5518static SourceRange getFullCursorExtent(CXCursor C, SourceManager &SrcMgr) {
5519 if (clang_isDeclaration(C.kind)) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005520 const Decl *D = cxcursor::getCursorDecl(C);
Guy Benyei11169dd2012-12-18 14:30:41 +00005521 if (!D)
5522 return SourceRange();
5523
5524 SourceRange R = D->getSourceRange();
5525
5526 // Adjust the start of the location for declarations preceded by
5527 // declaration specifiers.
5528 SourceLocation StartLoc;
5529 if (const DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
5530 if (TypeSourceInfo *TI = DD->getTypeSourceInfo())
5531 StartLoc = TI->getTypeLoc().getLocStart();
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005532 } else if (const TypedefDecl *Typedef = dyn_cast<TypedefDecl>(D)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00005533 if (TypeSourceInfo *TI = Typedef->getTypeSourceInfo())
5534 StartLoc = TI->getTypeLoc().getLocStart();
5535 }
5536
5537 if (StartLoc.isValid() && R.getBegin().isValid() &&
5538 SrcMgr.isBeforeInTranslationUnit(StartLoc, R.getBegin()))
5539 R.setBegin(StartLoc);
5540
5541 // FIXME: Multiple variables declared in a single declaration
5542 // currently lack the information needed to correctly determine their
5543 // ranges when accounting for the type-specifier. We use context
5544 // stored in the CXCursor to determine if the VarDecl is in a DeclGroup,
5545 // and if so, whether it is the first decl.
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005546 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00005547 if (!cxcursor::isFirstInDeclGroup(C))
5548 R.setBegin(VD->getLocation());
5549 }
5550
5551 return R;
5552 }
5553
5554 return getRawCursorExtent(C);
5555}
5556
5557extern "C" {
5558
5559CXSourceRange clang_getCursorExtent(CXCursor C) {
5560 SourceRange R = getRawCursorExtent(C);
5561 if (R.isInvalid())
5562 return clang_getNullRange();
5563
5564 return cxloc::translateSourceRange(getCursorContext(C), R);
5565}
5566
5567CXCursor clang_getCursorReferenced(CXCursor C) {
5568 if (clang_isInvalid(C.kind))
5569 return clang_getNullCursor();
5570
5571 CXTranslationUnit tu = getCursorTU(C);
5572 if (clang_isDeclaration(C.kind)) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005573 const Decl *D = getCursorDecl(C);
Guy Benyei11169dd2012-12-18 14:30:41 +00005574 if (!D)
5575 return clang_getNullCursor();
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005576 if (const UsingDecl *Using = dyn_cast<UsingDecl>(D))
Guy Benyei11169dd2012-12-18 14:30:41 +00005577 return MakeCursorOverloadedDeclRef(Using, D->getLocation(), tu);
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005578 if (const ObjCPropertyImplDecl *PropImpl =
5579 dyn_cast<ObjCPropertyImplDecl>(D))
Guy Benyei11169dd2012-12-18 14:30:41 +00005580 if (ObjCPropertyDecl *Property = PropImpl->getPropertyDecl())
5581 return MakeCXCursor(Property, tu);
5582
5583 return C;
5584 }
5585
5586 if (clang_isExpression(C.kind)) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005587 const Expr *E = getCursorExpr(C);
5588 const Decl *D = getDeclFromExpr(E);
Guy Benyei11169dd2012-12-18 14:30:41 +00005589 if (D) {
5590 CXCursor declCursor = MakeCXCursor(D, tu);
5591 declCursor = getSelectorIdentifierCursor(getSelectorIdentifierIndex(C),
5592 declCursor);
5593 return declCursor;
5594 }
5595
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005596 if (const OverloadExpr *Ovl = dyn_cast_or_null<OverloadExpr>(E))
Guy Benyei11169dd2012-12-18 14:30:41 +00005597 return MakeCursorOverloadedDeclRef(Ovl, tu);
5598
5599 return clang_getNullCursor();
5600 }
5601
5602 if (clang_isStatement(C.kind)) {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00005603 const Stmt *S = getCursorStmt(C);
5604 if (const GotoStmt *Goto = dyn_cast_or_null<GotoStmt>(S))
Guy Benyei11169dd2012-12-18 14:30:41 +00005605 if (LabelDecl *label = Goto->getLabel())
5606 if (LabelStmt *labelS = label->getStmt())
5607 return MakeCXCursor(labelS, getCursorDecl(C), tu);
5608
5609 return clang_getNullCursor();
5610 }
Richard Smith66a81862015-05-04 02:25:31 +00005611
Guy Benyei11169dd2012-12-18 14:30:41 +00005612 if (C.kind == CXCursor_MacroExpansion) {
Richard Smith66a81862015-05-04 02:25:31 +00005613 if (const MacroDefinitionRecord *Def =
5614 getCursorMacroExpansion(C).getDefinition())
Guy Benyei11169dd2012-12-18 14:30:41 +00005615 return MakeMacroDefinitionCursor(Def, tu);
5616 }
5617
5618 if (!clang_isReference(C.kind))
5619 return clang_getNullCursor();
5620
5621 switch (C.kind) {
5622 case CXCursor_ObjCSuperClassRef:
5623 return MakeCXCursor(getCursorObjCSuperClassRef(C).first, tu);
5624
5625 case CXCursor_ObjCProtocolRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00005626 const ObjCProtocolDecl *Prot = getCursorObjCProtocolRef(C).first;
5627 if (const ObjCProtocolDecl *Def = Prot->getDefinition())
Guy Benyei11169dd2012-12-18 14:30:41 +00005628 return MakeCXCursor(Def, tu);
5629
5630 return MakeCXCursor(Prot, tu);
5631 }
5632
5633 case CXCursor_ObjCClassRef: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00005634 const ObjCInterfaceDecl *Class = getCursorObjCClassRef(C).first;
5635 if (const ObjCInterfaceDecl *Def = Class->getDefinition())
Guy Benyei11169dd2012-12-18 14:30:41 +00005636 return MakeCXCursor(Def, tu);
5637
5638 return MakeCXCursor(Class, tu);
5639 }
5640
5641 case CXCursor_TypeRef:
5642 return MakeCXCursor(getCursorTypeRef(C).first, tu );
5643
5644 case CXCursor_TemplateRef:
5645 return MakeCXCursor(getCursorTemplateRef(C).first, tu );
5646
5647 case CXCursor_NamespaceRef:
5648 return MakeCXCursor(getCursorNamespaceRef(C).first, tu );
5649
5650 case CXCursor_MemberRef:
5651 return MakeCXCursor(getCursorMemberRef(C).first, tu );
5652
5653 case CXCursor_CXXBaseSpecifier: {
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00005654 const CXXBaseSpecifier *B = cxcursor::getCursorCXXBaseSpecifier(C);
Guy Benyei11169dd2012-12-18 14:30:41 +00005655 return clang_getTypeDeclaration(cxtype::MakeCXType(B->getType(),
5656 tu ));
5657 }
5658
5659 case CXCursor_LabelRef:
5660 // FIXME: We end up faking the "parent" declaration here because we
5661 // don't want to make CXCursor larger.
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00005662 return MakeCXCursor(getCursorLabelRef(C).first,
5663 cxtu::getASTUnit(tu)->getASTContext()
5664 .getTranslationUnitDecl(),
Guy Benyei11169dd2012-12-18 14:30:41 +00005665 tu);
5666
5667 case CXCursor_OverloadedDeclRef:
5668 return C;
5669
5670 case CXCursor_VariableRef:
5671 return MakeCXCursor(getCursorVariableRef(C).first, tu);
5672
5673 default:
5674 // We would prefer to enumerate all non-reference cursor kinds here.
5675 llvm_unreachable("Unhandled reference cursor kind");
5676 }
5677}
5678
5679CXCursor clang_getCursorDefinition(CXCursor C) {
5680 if (clang_isInvalid(C.kind))
5681 return clang_getNullCursor();
5682
5683 CXTranslationUnit TU = getCursorTU(C);
5684
5685 bool WasReference = false;
5686 if (clang_isReference(C.kind) || clang_isExpression(C.kind)) {
5687 C = clang_getCursorReferenced(C);
5688 WasReference = true;
5689 }
5690
5691 if (C.kind == CXCursor_MacroExpansion)
5692 return clang_getCursorReferenced(C);
5693
5694 if (!clang_isDeclaration(C.kind))
5695 return clang_getNullCursor();
5696
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005697 const Decl *D = getCursorDecl(C);
Guy Benyei11169dd2012-12-18 14:30:41 +00005698 if (!D)
5699 return clang_getNullCursor();
5700
5701 switch (D->getKind()) {
5702 // Declaration kinds that don't really separate the notions of
5703 // declaration and definition.
5704 case Decl::Namespace:
5705 case Decl::Typedef:
5706 case Decl::TypeAlias:
5707 case Decl::TypeAliasTemplate:
5708 case Decl::TemplateTypeParm:
5709 case Decl::EnumConstant:
5710 case Decl::Field:
Richard Smithbdb84f32016-07-22 23:36:59 +00005711 case Decl::Binding:
John McCall5e77d762013-04-16 07:28:30 +00005712 case Decl::MSProperty:
Guy Benyei11169dd2012-12-18 14:30:41 +00005713 case Decl::IndirectField:
5714 case Decl::ObjCIvar:
5715 case Decl::ObjCAtDefsField:
5716 case Decl::ImplicitParam:
5717 case Decl::ParmVar:
5718 case Decl::NonTypeTemplateParm:
5719 case Decl::TemplateTemplateParm:
5720 case Decl::ObjCCategoryImpl:
5721 case Decl::ObjCImplementation:
5722 case Decl::AccessSpec:
5723 case Decl::LinkageSpec:
Richard Smith8df390f2016-09-08 23:14:54 +00005724 case Decl::Export:
Guy Benyei11169dd2012-12-18 14:30:41 +00005725 case Decl::ObjCPropertyImpl:
5726 case Decl::FileScopeAsm:
5727 case Decl::StaticAssert:
5728 case Decl::Block:
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00005729 case Decl::Captured:
Alexey Bataev4244be22016-02-11 05:35:55 +00005730 case Decl::OMPCapturedExpr:
Guy Benyei11169dd2012-12-18 14:30:41 +00005731 case Decl::Label: // FIXME: Is this right??
5732 case Decl::ClassScopeFunctionSpecialization:
5733 case Decl::Import:
Alexey Bataeva769e072013-03-22 06:34:35 +00005734 case Decl::OMPThreadPrivate:
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00005735 case Decl::OMPDeclareReduction:
Douglas Gregor85f3f952015-07-07 03:57:15 +00005736 case Decl::ObjCTypeParam:
David Majnemerd9b1a4f2015-11-04 03:40:30 +00005737 case Decl::BuiltinTemplate:
Nico Weber66220292016-03-02 17:28:48 +00005738 case Decl::PragmaComment:
Nico Webercbbaeb12016-03-02 19:28:54 +00005739 case Decl::PragmaDetectMismatch:
Guy Benyei11169dd2012-12-18 14:30:41 +00005740 return C;
5741
5742 // Declaration kinds that don't make any sense here, but are
5743 // nonetheless harmless.
David Blaikief005d3c2013-02-22 17:44:58 +00005744 case Decl::Empty:
Guy Benyei11169dd2012-12-18 14:30:41 +00005745 case Decl::TranslationUnit:
Richard Smithf19e1272015-03-07 00:04:49 +00005746 case Decl::ExternCContext:
Guy Benyei11169dd2012-12-18 14:30:41 +00005747 break;
5748
5749 // Declaration kinds for which the definition is not resolvable.
5750 case Decl::UnresolvedUsingTypename:
5751 case Decl::UnresolvedUsingValue:
5752 break;
5753
5754 case Decl::UsingDirective:
5755 return MakeCXCursor(cast<UsingDirectiveDecl>(D)->getNominatedNamespace(),
5756 TU);
5757
5758 case Decl::NamespaceAlias:
5759 return MakeCXCursor(cast<NamespaceAliasDecl>(D)->getNamespace(), TU);
5760
5761 case Decl::Enum:
5762 case Decl::Record:
5763 case Decl::CXXRecord:
5764 case Decl::ClassTemplateSpecialization:
5765 case Decl::ClassTemplatePartialSpecialization:
5766 if (TagDecl *Def = cast<TagDecl>(D)->getDefinition())
5767 return MakeCXCursor(Def, TU);
5768 return clang_getNullCursor();
5769
5770 case Decl::Function:
5771 case Decl::CXXMethod:
5772 case Decl::CXXConstructor:
5773 case Decl::CXXDestructor:
5774 case Decl::CXXConversion: {
Craig Topper69186e72014-06-08 08:38:04 +00005775 const FunctionDecl *Def = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00005776 if (cast<FunctionDecl>(D)->getBody(Def))
Dmitri Gribenko9c256e32013-01-14 00:46:27 +00005777 return MakeCXCursor(Def, TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00005778 return clang_getNullCursor();
5779 }
5780
Larisse Voufo39a1e502013-08-06 01:03:05 +00005781 case Decl::Var:
5782 case Decl::VarTemplateSpecialization:
Richard Smithbdb84f32016-07-22 23:36:59 +00005783 case Decl::VarTemplatePartialSpecialization:
5784 case Decl::Decomposition: {
Guy Benyei11169dd2012-12-18 14:30:41 +00005785 // Ask the variable if it has a definition.
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005786 if (const VarDecl *Def = cast<VarDecl>(D)->getDefinition())
Guy Benyei11169dd2012-12-18 14:30:41 +00005787 return MakeCXCursor(Def, TU);
5788 return clang_getNullCursor();
5789 }
5790
5791 case Decl::FunctionTemplate: {
Craig Topper69186e72014-06-08 08:38:04 +00005792 const FunctionDecl *Def = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00005793 if (cast<FunctionTemplateDecl>(D)->getTemplatedDecl()->getBody(Def))
5794 return MakeCXCursor(Def->getDescribedFunctionTemplate(), TU);
5795 return clang_getNullCursor();
5796 }
5797
5798 case Decl::ClassTemplate: {
5799 if (RecordDecl *Def = cast<ClassTemplateDecl>(D)->getTemplatedDecl()
5800 ->getDefinition())
5801 return MakeCXCursor(cast<CXXRecordDecl>(Def)->getDescribedClassTemplate(),
5802 TU);
5803 return clang_getNullCursor();
5804 }
5805
Larisse Voufo39a1e502013-08-06 01:03:05 +00005806 case Decl::VarTemplate: {
5807 if (VarDecl *Def =
5808 cast<VarTemplateDecl>(D)->getTemplatedDecl()->getDefinition())
5809 return MakeCXCursor(cast<VarDecl>(Def)->getDescribedVarTemplate(), TU);
5810 return clang_getNullCursor();
5811 }
5812
Guy Benyei11169dd2012-12-18 14:30:41 +00005813 case Decl::Using:
5814 return MakeCursorOverloadedDeclRef(cast<UsingDecl>(D),
5815 D->getLocation(), TU);
5816
5817 case Decl::UsingShadow:
Richard Smith5179eb72016-06-28 19:03:57 +00005818 case Decl::ConstructorUsingShadow:
Guy Benyei11169dd2012-12-18 14:30:41 +00005819 return clang_getCursorDefinition(
5820 MakeCXCursor(cast<UsingShadowDecl>(D)->getTargetDecl(),
5821 TU));
5822
5823 case Decl::ObjCMethod: {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005824 const ObjCMethodDecl *Method = cast<ObjCMethodDecl>(D);
Guy Benyei11169dd2012-12-18 14:30:41 +00005825 if (Method->isThisDeclarationADefinition())
5826 return C;
5827
5828 // Dig out the method definition in the associated
5829 // @implementation, if we have it.
5830 // FIXME: The ASTs should make finding the definition easier.
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005831 if (const ObjCInterfaceDecl *Class
Guy Benyei11169dd2012-12-18 14:30:41 +00005832 = dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext()))
5833 if (ObjCImplementationDecl *ClassImpl = Class->getImplementation())
5834 if (ObjCMethodDecl *Def = ClassImpl->getMethod(Method->getSelector(),
5835 Method->isInstanceMethod()))
5836 if (Def->isThisDeclarationADefinition())
5837 return MakeCXCursor(Def, TU);
5838
5839 return clang_getNullCursor();
5840 }
5841
5842 case Decl::ObjCCategory:
5843 if (ObjCCategoryImplDecl *Impl
5844 = cast<ObjCCategoryDecl>(D)->getImplementation())
5845 return MakeCXCursor(Impl, TU);
5846 return clang_getNullCursor();
5847
5848 case Decl::ObjCProtocol:
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005849 if (const ObjCProtocolDecl *Def = cast<ObjCProtocolDecl>(D)->getDefinition())
Guy Benyei11169dd2012-12-18 14:30:41 +00005850 return MakeCXCursor(Def, TU);
5851 return clang_getNullCursor();
5852
5853 case Decl::ObjCInterface: {
5854 // There are two notions of a "definition" for an Objective-C
5855 // class: the interface and its implementation. When we resolved a
5856 // reference to an Objective-C class, produce the @interface as
5857 // the definition; when we were provided with the interface,
5858 // produce the @implementation as the definition.
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005859 const ObjCInterfaceDecl *IFace = cast<ObjCInterfaceDecl>(D);
Guy Benyei11169dd2012-12-18 14:30:41 +00005860 if (WasReference) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005861 if (const ObjCInterfaceDecl *Def = IFace->getDefinition())
Guy Benyei11169dd2012-12-18 14:30:41 +00005862 return MakeCXCursor(Def, TU);
5863 } else if (ObjCImplementationDecl *Impl = IFace->getImplementation())
5864 return MakeCXCursor(Impl, TU);
5865 return clang_getNullCursor();
5866 }
5867
5868 case Decl::ObjCProperty:
5869 // FIXME: We don't really know where to find the
5870 // ObjCPropertyImplDecls that implement this property.
5871 return clang_getNullCursor();
5872
5873 case Decl::ObjCCompatibleAlias:
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005874 if (const ObjCInterfaceDecl *Class
Guy Benyei11169dd2012-12-18 14:30:41 +00005875 = cast<ObjCCompatibleAliasDecl>(D)->getClassInterface())
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005876 if (const ObjCInterfaceDecl *Def = Class->getDefinition())
Guy Benyei11169dd2012-12-18 14:30:41 +00005877 return MakeCXCursor(Def, TU);
5878
5879 return clang_getNullCursor();
5880
5881 case Decl::Friend:
5882 if (NamedDecl *Friend = cast<FriendDecl>(D)->getFriendDecl())
5883 return clang_getCursorDefinition(MakeCXCursor(Friend, TU));
5884 return clang_getNullCursor();
5885
5886 case Decl::FriendTemplate:
5887 if (NamedDecl *Friend = cast<FriendTemplateDecl>(D)->getFriendDecl())
5888 return clang_getCursorDefinition(MakeCXCursor(Friend, TU));
5889 return clang_getNullCursor();
5890 }
5891
5892 return clang_getNullCursor();
5893}
5894
5895unsigned clang_isCursorDefinition(CXCursor C) {
5896 if (!clang_isDeclaration(C.kind))
5897 return 0;
5898
5899 return clang_getCursorDefinition(C) == C;
5900}
5901
5902CXCursor clang_getCanonicalCursor(CXCursor C) {
5903 if (!clang_isDeclaration(C.kind))
5904 return C;
5905
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005906 if (const Decl *D = getCursorDecl(C)) {
5907 if (const ObjCCategoryImplDecl *CatImplD = dyn_cast<ObjCCategoryImplDecl>(D))
Guy Benyei11169dd2012-12-18 14:30:41 +00005908 if (ObjCCategoryDecl *CatD = CatImplD->getCategoryDecl())
5909 return MakeCXCursor(CatD, getCursorTU(C));
5910
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005911 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
5912 if (const ObjCInterfaceDecl *IFD = ImplD->getClassInterface())
Guy Benyei11169dd2012-12-18 14:30:41 +00005913 return MakeCXCursor(IFD, getCursorTU(C));
5914
5915 return MakeCXCursor(D->getCanonicalDecl(), getCursorTU(C));
5916 }
5917
5918 return C;
5919}
5920
5921int clang_Cursor_getObjCSelectorIndex(CXCursor cursor) {
5922 return cxcursor::getSelectorIdentifierIndexAndLoc(cursor).first;
5923}
5924
5925unsigned clang_getNumOverloadedDecls(CXCursor C) {
5926 if (C.kind != CXCursor_OverloadedDeclRef)
5927 return 0;
5928
5929 OverloadedDeclRefStorage Storage = getCursorOverloadedDeclRef(C).first;
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005930 if (const OverloadExpr *E = Storage.dyn_cast<const OverloadExpr *>())
Guy Benyei11169dd2012-12-18 14:30:41 +00005931 return E->getNumDecls();
5932
5933 if (OverloadedTemplateStorage *S
5934 = Storage.dyn_cast<OverloadedTemplateStorage*>())
5935 return S->size();
5936
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005937 const Decl *D = Storage.get<const Decl *>();
5938 if (const UsingDecl *Using = dyn_cast<UsingDecl>(D))
Guy Benyei11169dd2012-12-18 14:30:41 +00005939 return Using->shadow_size();
5940
5941 return 0;
5942}
5943
5944CXCursor clang_getOverloadedDecl(CXCursor cursor, unsigned index) {
5945 if (cursor.kind != CXCursor_OverloadedDeclRef)
5946 return clang_getNullCursor();
5947
5948 if (index >= clang_getNumOverloadedDecls(cursor))
5949 return clang_getNullCursor();
5950
5951 CXTranslationUnit TU = getCursorTU(cursor);
5952 OverloadedDeclRefStorage Storage = getCursorOverloadedDeclRef(cursor).first;
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005953 if (const OverloadExpr *E = Storage.dyn_cast<const OverloadExpr *>())
Guy Benyei11169dd2012-12-18 14:30:41 +00005954 return MakeCXCursor(E->decls_begin()[index], TU);
5955
5956 if (OverloadedTemplateStorage *S
5957 = Storage.dyn_cast<OverloadedTemplateStorage*>())
5958 return MakeCXCursor(S->begin()[index], TU);
5959
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005960 const Decl *D = Storage.get<const Decl *>();
5961 if (const UsingDecl *Using = dyn_cast<UsingDecl>(D)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00005962 // FIXME: This is, unfortunately, linear time.
5963 UsingDecl::shadow_iterator Pos = Using->shadow_begin();
5964 std::advance(Pos, index);
5965 return MakeCXCursor(cast<UsingShadowDecl>(*Pos)->getTargetDecl(), TU);
5966 }
5967
5968 return clang_getNullCursor();
5969}
5970
5971void clang_getDefinitionSpellingAndExtent(CXCursor C,
5972 const char **startBuf,
5973 const char **endBuf,
5974 unsigned *startLine,
5975 unsigned *startColumn,
5976 unsigned *endLine,
5977 unsigned *endColumn) {
5978 assert(getCursorDecl(C) && "CXCursor has null decl");
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00005979 const FunctionDecl *FD = dyn_cast<FunctionDecl>(getCursorDecl(C));
Guy Benyei11169dd2012-12-18 14:30:41 +00005980 CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody());
5981
5982 SourceManager &SM = FD->getASTContext().getSourceManager();
5983 *startBuf = SM.getCharacterData(Body->getLBracLoc());
5984 *endBuf = SM.getCharacterData(Body->getRBracLoc());
5985 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
5986 *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc());
5987 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc());
5988 *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc());
5989}
5990
5991
5992CXSourceRange clang_getCursorReferenceNameRange(CXCursor C, unsigned NameFlags,
5993 unsigned PieceIndex) {
5994 RefNamePieces Pieces;
5995
5996 switch (C.kind) {
5997 case CXCursor_MemberRefExpr:
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00005998 if (const MemberExpr *E = dyn_cast<MemberExpr>(getCursorExpr(C)))
Guy Benyei11169dd2012-12-18 14:30:41 +00005999 Pieces = buildPieces(NameFlags, true, E->getMemberNameInfo(),
6000 E->getQualifierLoc().getSourceRange());
6001 break;
6002
6003 case CXCursor_DeclRefExpr:
James Y Knight04ec5bf2015-12-24 02:59:37 +00006004 if (const DeclRefExpr *E = dyn_cast<DeclRefExpr>(getCursorExpr(C))) {
6005 SourceRange TemplateArgLoc(E->getLAngleLoc(), E->getRAngleLoc());
6006 Pieces =
6007 buildPieces(NameFlags, false, E->getNameInfo(),
6008 E->getQualifierLoc().getSourceRange(), &TemplateArgLoc);
6009 }
Guy Benyei11169dd2012-12-18 14:30:41 +00006010 break;
6011
6012 case CXCursor_CallExpr:
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00006013 if (const CXXOperatorCallExpr *OCE =
Guy Benyei11169dd2012-12-18 14:30:41 +00006014 dyn_cast<CXXOperatorCallExpr>(getCursorExpr(C))) {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00006015 const Expr *Callee = OCE->getCallee();
6016 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Callee))
Guy Benyei11169dd2012-12-18 14:30:41 +00006017 Callee = ICE->getSubExpr();
6018
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00006019 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Callee))
Guy Benyei11169dd2012-12-18 14:30:41 +00006020 Pieces = buildPieces(NameFlags, false, DRE->getNameInfo(),
6021 DRE->getQualifierLoc().getSourceRange());
6022 }
6023 break;
6024
6025 default:
6026 break;
6027 }
6028
6029 if (Pieces.empty()) {
6030 if (PieceIndex == 0)
6031 return clang_getCursorExtent(C);
6032 } else if (PieceIndex < Pieces.size()) {
6033 SourceRange R = Pieces[PieceIndex];
6034 if (R.isValid())
6035 return cxloc::translateSourceRange(getCursorContext(C), R);
6036 }
6037
6038 return clang_getNullRange();
6039}
6040
6041void clang_enableStackTraces(void) {
Richard Smithdfed58a2016-06-09 00:53:41 +00006042 // FIXME: Provide an argv0 here so we can find llvm-symbolizer.
6043 llvm::sys::PrintStackTraceOnErrorSignal(StringRef());
Guy Benyei11169dd2012-12-18 14:30:41 +00006044}
6045
6046void clang_executeOnThread(void (*fn)(void*), void *user_data,
6047 unsigned stack_size) {
6048 llvm::llvm_execute_on_thread(fn, user_data, stack_size);
6049}
6050
6051} // end: extern "C"
6052
6053//===----------------------------------------------------------------------===//
6054// Token-based Operations.
6055//===----------------------------------------------------------------------===//
6056
6057/* CXToken layout:
6058 * int_data[0]: a CXTokenKind
6059 * int_data[1]: starting token location
6060 * int_data[2]: token length
6061 * int_data[3]: reserved
6062 * ptr_data: for identifiers and keywords, an IdentifierInfo*.
6063 * otherwise unused.
6064 */
6065extern "C" {
6066
6067CXTokenKind clang_getTokenKind(CXToken CXTok) {
6068 return static_cast<CXTokenKind>(CXTok.int_data[0]);
6069}
6070
6071CXString clang_getTokenSpelling(CXTranslationUnit TU, CXToken CXTok) {
6072 switch (clang_getTokenKind(CXTok)) {
6073 case CXToken_Identifier:
6074 case CXToken_Keyword:
6075 // We know we have an IdentifierInfo*, so use that.
Dmitri Gribenko3c66b0b2013-02-02 00:02:12 +00006076 return cxstring::createRef(static_cast<IdentifierInfo *>(CXTok.ptr_data)
Guy Benyei11169dd2012-12-18 14:30:41 +00006077 ->getNameStart());
6078
6079 case CXToken_Literal: {
6080 // We have stashed the starting pointer in the ptr_data field. Use it.
6081 const char *Text = static_cast<const char *>(CXTok.ptr_data);
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00006082 return cxstring::createDup(StringRef(Text, CXTok.int_data[2]));
Guy Benyei11169dd2012-12-18 14:30:41 +00006083 }
6084
6085 case CXToken_Punctuation:
6086 case CXToken_Comment:
6087 break;
6088 }
6089
Dmitri Gribenko852d6222014-02-11 15:02:48 +00006090 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00006091 LOG_BAD_TU(TU);
6092 return cxstring::createEmpty();
6093 }
6094
Guy Benyei11169dd2012-12-18 14:30:41 +00006095 // We have to find the starting buffer pointer the hard way, by
6096 // deconstructing the source location.
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00006097 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00006098 if (!CXXUnit)
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00006099 return cxstring::createEmpty();
Guy Benyei11169dd2012-12-18 14:30:41 +00006100
6101 SourceLocation Loc = SourceLocation::getFromRawEncoding(CXTok.int_data[1]);
6102 std::pair<FileID, unsigned> LocInfo
6103 = CXXUnit->getSourceManager().getDecomposedSpellingLoc(Loc);
6104 bool Invalid = false;
6105 StringRef Buffer
6106 = CXXUnit->getSourceManager().getBufferData(LocInfo.first, &Invalid);
6107 if (Invalid)
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00006108 return cxstring::createEmpty();
Guy Benyei11169dd2012-12-18 14:30:41 +00006109
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00006110 return cxstring::createDup(Buffer.substr(LocInfo.second, CXTok.int_data[2]));
Guy Benyei11169dd2012-12-18 14:30:41 +00006111}
6112
6113CXSourceLocation clang_getTokenLocation(CXTranslationUnit TU, CXToken CXTok) {
Dmitri Gribenko852d6222014-02-11 15:02:48 +00006114 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00006115 LOG_BAD_TU(TU);
6116 return clang_getNullLocation();
6117 }
6118
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00006119 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00006120 if (!CXXUnit)
6121 return clang_getNullLocation();
6122
6123 return cxloc::translateSourceLocation(CXXUnit->getASTContext(),
6124 SourceLocation::getFromRawEncoding(CXTok.int_data[1]));
6125}
6126
6127CXSourceRange clang_getTokenExtent(CXTranslationUnit TU, CXToken CXTok) {
Dmitri Gribenko852d6222014-02-11 15:02:48 +00006128 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00006129 LOG_BAD_TU(TU);
6130 return clang_getNullRange();
6131 }
6132
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00006133 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00006134 if (!CXXUnit)
6135 return clang_getNullRange();
6136
6137 return cxloc::translateSourceRange(CXXUnit->getASTContext(),
6138 SourceLocation::getFromRawEncoding(CXTok.int_data[1]));
6139}
6140
6141static void getTokens(ASTUnit *CXXUnit, SourceRange Range,
6142 SmallVectorImpl<CXToken> &CXTokens) {
6143 SourceManager &SourceMgr = CXXUnit->getSourceManager();
6144 std::pair<FileID, unsigned> BeginLocInfo
Argyrios Kyrtzidis5d47a9b2013-02-13 18:33:28 +00006145 = SourceMgr.getDecomposedSpellingLoc(Range.getBegin());
Guy Benyei11169dd2012-12-18 14:30:41 +00006146 std::pair<FileID, unsigned> EndLocInfo
Argyrios Kyrtzidis5d47a9b2013-02-13 18:33:28 +00006147 = SourceMgr.getDecomposedSpellingLoc(Range.getEnd());
Guy Benyei11169dd2012-12-18 14:30:41 +00006148
6149 // Cannot tokenize across files.
6150 if (BeginLocInfo.first != EndLocInfo.first)
6151 return;
6152
6153 // Create a lexer
6154 bool Invalid = false;
6155 StringRef Buffer
6156 = SourceMgr.getBufferData(BeginLocInfo.first, &Invalid);
6157 if (Invalid)
6158 return;
6159
6160 Lexer Lex(SourceMgr.getLocForStartOfFile(BeginLocInfo.first),
6161 CXXUnit->getASTContext().getLangOpts(),
6162 Buffer.begin(), Buffer.data() + BeginLocInfo.second, Buffer.end());
6163 Lex.SetCommentRetentionState(true);
6164
6165 // Lex tokens until we hit the end of the range.
6166 const char *EffectiveBufferEnd = Buffer.data() + EndLocInfo.second;
6167 Token Tok;
6168 bool previousWasAt = false;
6169 do {
6170 // Lex the next token
6171 Lex.LexFromRawLexer(Tok);
6172 if (Tok.is(tok::eof))
6173 break;
6174
6175 // Initialize the CXToken.
6176 CXToken CXTok;
6177
6178 // - Common fields
6179 CXTok.int_data[1] = Tok.getLocation().getRawEncoding();
6180 CXTok.int_data[2] = Tok.getLength();
6181 CXTok.int_data[3] = 0;
6182
6183 // - Kind-specific fields
6184 if (Tok.isLiteral()) {
6185 CXTok.int_data[0] = CXToken_Literal;
Dmitri Gribenkof9304482013-01-23 15:56:07 +00006186 CXTok.ptr_data = const_cast<char *>(Tok.getLiteralData());
Guy Benyei11169dd2012-12-18 14:30:41 +00006187 } else if (Tok.is(tok::raw_identifier)) {
6188 // Lookup the identifier to determine whether we have a keyword.
6189 IdentifierInfo *II
6190 = CXXUnit->getPreprocessor().LookUpIdentifierInfo(Tok);
6191
6192 if ((II->getObjCKeywordID() != tok::objc_not_keyword) && previousWasAt) {
6193 CXTok.int_data[0] = CXToken_Keyword;
6194 }
6195 else {
6196 CXTok.int_data[0] = Tok.is(tok::identifier)
6197 ? CXToken_Identifier
6198 : CXToken_Keyword;
6199 }
6200 CXTok.ptr_data = II;
6201 } else if (Tok.is(tok::comment)) {
6202 CXTok.int_data[0] = CXToken_Comment;
Craig Topper69186e72014-06-08 08:38:04 +00006203 CXTok.ptr_data = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00006204 } else {
6205 CXTok.int_data[0] = CXToken_Punctuation;
Craig Topper69186e72014-06-08 08:38:04 +00006206 CXTok.ptr_data = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00006207 }
6208 CXTokens.push_back(CXTok);
6209 previousWasAt = Tok.is(tok::at);
Argyrios Kyrtzidisc7c6a072016-11-09 23:58:39 +00006210 } while (Lex.getBufferLocation() < EffectiveBufferEnd);
Guy Benyei11169dd2012-12-18 14:30:41 +00006211}
6212
6213void clang_tokenize(CXTranslationUnit TU, CXSourceRange Range,
6214 CXToken **Tokens, unsigned *NumTokens) {
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00006215 LOG_FUNC_SECTION {
6216 *Log << TU << ' ' << Range;
6217 }
6218
Guy Benyei11169dd2012-12-18 14:30:41 +00006219 if (Tokens)
Craig Topper69186e72014-06-08 08:38:04 +00006220 *Tokens = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00006221 if (NumTokens)
6222 *NumTokens = 0;
6223
Dmitri Gribenko852d6222014-02-11 15:02:48 +00006224 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00006225 LOG_BAD_TU(TU);
Argyrios Kyrtzidis0e95fca2013-04-04 22:40:59 +00006226 return;
Dmitri Gribenko256454f2014-02-11 14:34:14 +00006227 }
Argyrios Kyrtzidis0e95fca2013-04-04 22:40:59 +00006228
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00006229 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00006230 if (!CXXUnit || !Tokens || !NumTokens)
6231 return;
6232
6233 ASTUnit::ConcurrencyCheck Check(*CXXUnit);
6234
6235 SourceRange R = cxloc::translateCXSourceRange(Range);
6236 if (R.isInvalid())
6237 return;
6238
6239 SmallVector<CXToken, 32> CXTokens;
6240 getTokens(CXXUnit, R, CXTokens);
6241
6242 if (CXTokens.empty())
6243 return;
6244
6245 *Tokens = (CXToken *)malloc(sizeof(CXToken) * CXTokens.size());
6246 memmove(*Tokens, CXTokens.data(), sizeof(CXToken) * CXTokens.size());
6247 *NumTokens = CXTokens.size();
6248}
6249
6250void clang_disposeTokens(CXTranslationUnit TU,
6251 CXToken *Tokens, unsigned NumTokens) {
6252 free(Tokens);
6253}
6254
6255} // end: extern "C"
6256
6257//===----------------------------------------------------------------------===//
6258// Token annotation APIs.
6259//===----------------------------------------------------------------------===//
6260
Guy Benyei11169dd2012-12-18 14:30:41 +00006261static enum CXChildVisitResult AnnotateTokensVisitor(CXCursor cursor,
6262 CXCursor parent,
6263 CXClientData client_data);
6264static bool AnnotateTokensPostChildrenVisitor(CXCursor cursor,
6265 CXClientData client_data);
6266
6267namespace {
6268class AnnotateTokensWorker {
Guy Benyei11169dd2012-12-18 14:30:41 +00006269 CXToken *Tokens;
6270 CXCursor *Cursors;
6271 unsigned NumTokens;
6272 unsigned TokIdx;
6273 unsigned PreprocessingTokIdx;
6274 CursorVisitor AnnotateVis;
6275 SourceManager &SrcMgr;
6276 bool HasContextSensitiveKeywords;
6277
6278 struct PostChildrenInfo {
6279 CXCursor Cursor;
6280 SourceRange CursorRange;
Argyrios Kyrtzidisa2ed8132013-02-08 01:12:25 +00006281 unsigned BeforeReachingCursorIdx;
Guy Benyei11169dd2012-12-18 14:30:41 +00006282 unsigned BeforeChildrenTokenIdx;
6283 };
Dmitri Gribenkof8579502013-01-12 19:30:44 +00006284 SmallVector<PostChildrenInfo, 8> PostChildrenInfos;
Argyrios Kyrtzidis50126f12013-11-27 05:50:55 +00006285
6286 CXToken &getTok(unsigned Idx) {
6287 assert(Idx < NumTokens);
6288 return Tokens[Idx];
6289 }
6290 const CXToken &getTok(unsigned Idx) const {
6291 assert(Idx < NumTokens);
6292 return Tokens[Idx];
6293 }
Guy Benyei11169dd2012-12-18 14:30:41 +00006294 bool MoreTokens() const { return TokIdx < NumTokens; }
6295 unsigned NextToken() const { return TokIdx; }
6296 void AdvanceToken() { ++TokIdx; }
6297 SourceLocation GetTokenLoc(unsigned tokI) {
Argyrios Kyrtzidis50126f12013-11-27 05:50:55 +00006298 return SourceLocation::getFromRawEncoding(getTok(tokI).int_data[1]);
Guy Benyei11169dd2012-12-18 14:30:41 +00006299 }
6300 bool isFunctionMacroToken(unsigned tokI) const {
Argyrios Kyrtzidis50126f12013-11-27 05:50:55 +00006301 return getTok(tokI).int_data[3] != 0;
Guy Benyei11169dd2012-12-18 14:30:41 +00006302 }
6303 SourceLocation getFunctionMacroTokenLoc(unsigned tokI) const {
Argyrios Kyrtzidis50126f12013-11-27 05:50:55 +00006304 return SourceLocation::getFromRawEncoding(getTok(tokI).int_data[3]);
Guy Benyei11169dd2012-12-18 14:30:41 +00006305 }
6306
6307 void annotateAndAdvanceTokens(CXCursor, RangeComparisonResult, SourceRange);
Argyrios Kyrtzidisa2ed8132013-02-08 01:12:25 +00006308 bool annotateAndAdvanceFunctionMacroTokens(CXCursor, RangeComparisonResult,
Guy Benyei11169dd2012-12-18 14:30:41 +00006309 SourceRange);
6310
6311public:
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006312 AnnotateTokensWorker(CXToken *tokens, CXCursor *cursors, unsigned numTokens,
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00006313 CXTranslationUnit TU, SourceRange RegionOfInterest)
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006314 : Tokens(tokens), Cursors(cursors),
Guy Benyei11169dd2012-12-18 14:30:41 +00006315 NumTokens(numTokens), TokIdx(0), PreprocessingTokIdx(0),
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00006316 AnnotateVis(TU,
Guy Benyei11169dd2012-12-18 14:30:41 +00006317 AnnotateTokensVisitor, this,
6318 /*VisitPreprocessorLast=*/true,
6319 /*VisitIncludedEntities=*/false,
6320 RegionOfInterest,
6321 /*VisitDeclsOnly=*/false,
6322 AnnotateTokensPostChildrenVisitor),
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00006323 SrcMgr(cxtu::getASTUnit(TU)->getSourceManager()),
Guy Benyei11169dd2012-12-18 14:30:41 +00006324 HasContextSensitiveKeywords(false) { }
6325
6326 void VisitChildren(CXCursor C) { AnnotateVis.VisitChildren(C); }
6327 enum CXChildVisitResult Visit(CXCursor cursor, CXCursor parent);
6328 bool postVisitChildren(CXCursor cursor);
6329 void AnnotateTokens();
6330
6331 /// \brief Determine whether the annotator saw any cursors that have
6332 /// context-sensitive keywords.
6333 bool hasContextSensitiveKeywords() const {
6334 return HasContextSensitiveKeywords;
6335 }
6336
6337 ~AnnotateTokensWorker() {
6338 assert(PostChildrenInfos.empty());
6339 }
6340};
Alexander Kornienkoab9db512015-06-22 23:07:51 +00006341}
Guy Benyei11169dd2012-12-18 14:30:41 +00006342
6343void AnnotateTokensWorker::AnnotateTokens() {
6344 // Walk the AST within the region of interest, annotating tokens
6345 // along the way.
6346 AnnotateVis.visitFileRegion();
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006347}
Guy Benyei11169dd2012-12-18 14:30:41 +00006348
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006349static inline void updateCursorAnnotation(CXCursor &Cursor,
6350 const CXCursor &updateC) {
Argyrios Kyrtzidisa2ed8132013-02-08 01:12:25 +00006351 if (clang_isInvalid(updateC.kind) || !clang_isInvalid(Cursor.kind))
Guy Benyei11169dd2012-12-18 14:30:41 +00006352 return;
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006353 Cursor = updateC;
Guy Benyei11169dd2012-12-18 14:30:41 +00006354}
6355
6356/// \brief It annotates and advances tokens with a cursor until the comparison
6357//// between the cursor location and the source range is the same as
6358/// \arg compResult.
6359///
6360/// Pass RangeBefore to annotate tokens with a cursor until a range is reached.
6361/// Pass RangeOverlap to annotate tokens inside a range.
6362void AnnotateTokensWorker::annotateAndAdvanceTokens(CXCursor updateC,
6363 RangeComparisonResult compResult,
6364 SourceRange range) {
6365 while (MoreTokens()) {
6366 const unsigned I = NextToken();
6367 if (isFunctionMacroToken(I))
Argyrios Kyrtzidisa2ed8132013-02-08 01:12:25 +00006368 if (!annotateAndAdvanceFunctionMacroTokens(updateC, compResult, range))
6369 return;
Guy Benyei11169dd2012-12-18 14:30:41 +00006370
6371 SourceLocation TokLoc = GetTokenLoc(I);
6372 if (LocationCompare(SrcMgr, TokLoc, range) == compResult) {
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006373 updateCursorAnnotation(Cursors[I], updateC);
Guy Benyei11169dd2012-12-18 14:30:41 +00006374 AdvanceToken();
6375 continue;
6376 }
6377 break;
6378 }
6379}
6380
6381/// \brief Special annotation handling for macro argument tokens.
Argyrios Kyrtzidisa2ed8132013-02-08 01:12:25 +00006382/// \returns true if it advanced beyond all macro tokens, false otherwise.
6383bool AnnotateTokensWorker::annotateAndAdvanceFunctionMacroTokens(
Guy Benyei11169dd2012-12-18 14:30:41 +00006384 CXCursor updateC,
6385 RangeComparisonResult compResult,
6386 SourceRange range) {
6387 assert(MoreTokens());
6388 assert(isFunctionMacroToken(NextToken()) &&
6389 "Should be called only for macro arg tokens");
6390
6391 // This works differently than annotateAndAdvanceTokens; because expanded
6392 // macro arguments can have arbitrary translation-unit source order, we do not
6393 // advance the token index one by one until a token fails the range test.
6394 // We only advance once past all of the macro arg tokens if all of them
6395 // pass the range test. If one of them fails we keep the token index pointing
6396 // at the start of the macro arg tokens so that the failing token will be
6397 // annotated by a subsequent annotation try.
6398
6399 bool atLeastOneCompFail = false;
6400
6401 unsigned I = NextToken();
6402 for (; I < NumTokens && isFunctionMacroToken(I); ++I) {
6403 SourceLocation TokLoc = getFunctionMacroTokenLoc(I);
6404 if (TokLoc.isFileID())
6405 continue; // not macro arg token, it's parens or comma.
6406 if (LocationCompare(SrcMgr, TokLoc, range) == compResult) {
6407 if (clang_isInvalid(clang_getCursorKind(Cursors[I])))
6408 Cursors[I] = updateC;
6409 } else
6410 atLeastOneCompFail = true;
6411 }
6412
Argyrios Kyrtzidisa2ed8132013-02-08 01:12:25 +00006413 if (atLeastOneCompFail)
6414 return false;
6415
6416 TokIdx = I; // All of the tokens were handled, advance beyond all of them.
6417 return true;
Guy Benyei11169dd2012-12-18 14:30:41 +00006418}
6419
6420enum CXChildVisitResult
6421AnnotateTokensWorker::Visit(CXCursor cursor, CXCursor parent) {
Guy Benyei11169dd2012-12-18 14:30:41 +00006422 SourceRange cursorRange = getRawCursorExtent(cursor);
6423 if (cursorRange.isInvalid())
6424 return CXChildVisit_Recurse;
6425
6426 if (!HasContextSensitiveKeywords) {
6427 // Objective-C properties can have context-sensitive keywords.
6428 if (cursor.kind == CXCursor_ObjCPropertyDecl) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00006429 if (const ObjCPropertyDecl *Property
Guy Benyei11169dd2012-12-18 14:30:41 +00006430 = dyn_cast_or_null<ObjCPropertyDecl>(getCursorDecl(cursor)))
6431 HasContextSensitiveKeywords = Property->getPropertyAttributesAsWritten() != 0;
6432 }
6433 // Objective-C methods can have context-sensitive keywords.
6434 else if (cursor.kind == CXCursor_ObjCInstanceMethodDecl ||
6435 cursor.kind == CXCursor_ObjCClassMethodDecl) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00006436 if (const ObjCMethodDecl *Method
Guy Benyei11169dd2012-12-18 14:30:41 +00006437 = dyn_cast_or_null<ObjCMethodDecl>(getCursorDecl(cursor))) {
6438 if (Method->getObjCDeclQualifier())
6439 HasContextSensitiveKeywords = true;
6440 else {
David Majnemer59f77922016-06-24 04:05:48 +00006441 for (const auto *P : Method->parameters()) {
Aaron Ballman43b68be2014-03-07 17:50:17 +00006442 if (P->getObjCDeclQualifier()) {
Guy Benyei11169dd2012-12-18 14:30:41 +00006443 HasContextSensitiveKeywords = true;
6444 break;
6445 }
6446 }
6447 }
6448 }
6449 }
6450 // C++ methods can have context-sensitive keywords.
6451 else if (cursor.kind == CXCursor_CXXMethod) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00006452 if (const CXXMethodDecl *Method
Guy Benyei11169dd2012-12-18 14:30:41 +00006453 = dyn_cast_or_null<CXXMethodDecl>(getCursorDecl(cursor))) {
6454 if (Method->hasAttr<FinalAttr>() || Method->hasAttr<OverrideAttr>())
6455 HasContextSensitiveKeywords = true;
6456 }
6457 }
6458 // C++ classes can have context-sensitive keywords.
6459 else if (cursor.kind == CXCursor_StructDecl ||
6460 cursor.kind == CXCursor_ClassDecl ||
6461 cursor.kind == CXCursor_ClassTemplate ||
6462 cursor.kind == CXCursor_ClassTemplatePartialSpecialization) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00006463 if (const Decl *D = getCursorDecl(cursor))
Guy Benyei11169dd2012-12-18 14:30:41 +00006464 if (D->hasAttr<FinalAttr>())
6465 HasContextSensitiveKeywords = true;
6466 }
6467 }
Argyrios Kyrtzidis990b3862013-06-04 18:24:30 +00006468
6469 // Don't override a property annotation with its getter/setter method.
6470 if (cursor.kind == CXCursor_ObjCInstanceMethodDecl &&
6471 parent.kind == CXCursor_ObjCPropertyDecl)
6472 return CXChildVisit_Continue;
Guy Benyei11169dd2012-12-18 14:30:41 +00006473
6474 if (clang_isPreprocessing(cursor.kind)) {
6475 // Items in the preprocessing record are kept separate from items in
6476 // declarations, so we keep a separate token index.
6477 unsigned SavedTokIdx = TokIdx;
6478 TokIdx = PreprocessingTokIdx;
6479
6480 // Skip tokens up until we catch up to the beginning of the preprocessing
6481 // entry.
6482 while (MoreTokens()) {
6483 const unsigned I = NextToken();
6484 SourceLocation TokLoc = GetTokenLoc(I);
6485 switch (LocationCompare(SrcMgr, TokLoc, cursorRange)) {
6486 case RangeBefore:
6487 AdvanceToken();
6488 continue;
6489 case RangeAfter:
6490 case RangeOverlap:
6491 break;
6492 }
6493 break;
6494 }
6495
6496 // Look at all of the tokens within this range.
6497 while (MoreTokens()) {
6498 const unsigned I = NextToken();
6499 SourceLocation TokLoc = GetTokenLoc(I);
6500 switch (LocationCompare(SrcMgr, TokLoc, cursorRange)) {
6501 case RangeBefore:
6502 llvm_unreachable("Infeasible");
6503 case RangeAfter:
6504 break;
6505 case RangeOverlap:
Argyrios Kyrtzidis5d47a9b2013-02-13 18:33:28 +00006506 // For macro expansions, just note where the beginning of the macro
6507 // expansion occurs.
6508 if (cursor.kind == CXCursor_MacroExpansion) {
6509 if (TokLoc == cursorRange.getBegin())
6510 Cursors[I] = cursor;
6511 AdvanceToken();
6512 break;
6513 }
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006514 // We may have already annotated macro names inside macro definitions.
6515 if (Cursors[I].kind != CXCursor_MacroExpansion)
6516 Cursors[I] = cursor;
Guy Benyei11169dd2012-12-18 14:30:41 +00006517 AdvanceToken();
Guy Benyei11169dd2012-12-18 14:30:41 +00006518 continue;
6519 }
6520 break;
6521 }
6522
6523 // Save the preprocessing token index; restore the non-preprocessing
6524 // token index.
6525 PreprocessingTokIdx = TokIdx;
6526 TokIdx = SavedTokIdx;
6527 return CXChildVisit_Recurse;
6528 }
6529
6530 if (cursorRange.isInvalid())
6531 return CXChildVisit_Continue;
Argyrios Kyrtzidisa2ed8132013-02-08 01:12:25 +00006532
6533 unsigned BeforeReachingCursorIdx = NextToken();
Guy Benyei11169dd2012-12-18 14:30:41 +00006534 const enum CXCursorKind cursorK = clang_getCursorKind(cursor);
Guy Benyei11169dd2012-12-18 14:30:41 +00006535 const enum CXCursorKind K = clang_getCursorKind(parent);
6536 const CXCursor updateC =
Argyrios Kyrtzidisa2ed8132013-02-08 01:12:25 +00006537 (clang_isInvalid(K) || K == CXCursor_TranslationUnit ||
6538 // Attributes are annotated out-of-order, skip tokens until we reach it.
6539 clang_isAttribute(cursor.kind))
Guy Benyei11169dd2012-12-18 14:30:41 +00006540 ? clang_getNullCursor() : parent;
6541
6542 annotateAndAdvanceTokens(updateC, RangeBefore, cursorRange);
6543
6544 // Avoid having the cursor of an expression "overwrite" the annotation of the
6545 // variable declaration that it belongs to.
6546 // This can happen for C++ constructor expressions whose range generally
6547 // include the variable declaration, e.g.:
6548 // MyCXXClass foo; // Make sure we don't annotate 'foo' as a CallExpr cursor.
Argyrios Kyrtzidis50126f12013-11-27 05:50:55 +00006549 if (clang_isExpression(cursorK) && MoreTokens()) {
Dmitri Gribenkoe8354062013-01-26 15:29:08 +00006550 const Expr *E = getCursorExpr(cursor);
Dmitri Gribenkoa1691182013-01-26 18:12:08 +00006551 if (const Decl *D = getCursorParentDecl(cursor)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00006552 const unsigned I = NextToken();
6553 if (E->getLocStart().isValid() && D->getLocation().isValid() &&
6554 E->getLocStart() == D->getLocation() &&
6555 E->getLocStart() == GetTokenLoc(I)) {
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006556 updateCursorAnnotation(Cursors[I], updateC);
Guy Benyei11169dd2012-12-18 14:30:41 +00006557 AdvanceToken();
6558 }
6559 }
6560 }
6561
6562 // Before recursing into the children keep some state that we are going
6563 // to use in the AnnotateTokensWorker::postVisitChildren callback to do some
6564 // extra work after the child nodes are visited.
6565 // Note that we don't call VisitChildren here to avoid traversing statements
6566 // code-recursively which can blow the stack.
6567
6568 PostChildrenInfo Info;
6569 Info.Cursor = cursor;
6570 Info.CursorRange = cursorRange;
Argyrios Kyrtzidisa2ed8132013-02-08 01:12:25 +00006571 Info.BeforeReachingCursorIdx = BeforeReachingCursorIdx;
Guy Benyei11169dd2012-12-18 14:30:41 +00006572 Info.BeforeChildrenTokenIdx = NextToken();
6573 PostChildrenInfos.push_back(Info);
6574
6575 return CXChildVisit_Recurse;
6576}
6577
6578bool AnnotateTokensWorker::postVisitChildren(CXCursor cursor) {
6579 if (PostChildrenInfos.empty())
6580 return false;
6581 const PostChildrenInfo &Info = PostChildrenInfos.back();
6582 if (!clang_equalCursors(Info.Cursor, cursor))
6583 return false;
6584
6585 const unsigned BeforeChildren = Info.BeforeChildrenTokenIdx;
6586 const unsigned AfterChildren = NextToken();
6587 SourceRange cursorRange = Info.CursorRange;
6588
6589 // Scan the tokens that are at the end of the cursor, but are not captured
6590 // but the child cursors.
6591 annotateAndAdvanceTokens(cursor, RangeOverlap, cursorRange);
6592
6593 // Scan the tokens that are at the beginning of the cursor, but are not
6594 // capture by the child cursors.
6595 for (unsigned I = BeforeChildren; I != AfterChildren; ++I) {
6596 if (!clang_isInvalid(clang_getCursorKind(Cursors[I])))
6597 break;
6598
6599 Cursors[I] = cursor;
6600 }
6601
Argyrios Kyrtzidisa2ed8132013-02-08 01:12:25 +00006602 // Attributes are annotated out-of-order, rewind TokIdx to when we first
6603 // encountered the attribute cursor.
6604 if (clang_isAttribute(cursor.kind))
6605 TokIdx = Info.BeforeReachingCursorIdx;
6606
Guy Benyei11169dd2012-12-18 14:30:41 +00006607 PostChildrenInfos.pop_back();
6608 return false;
6609}
6610
6611static enum CXChildVisitResult AnnotateTokensVisitor(CXCursor cursor,
6612 CXCursor parent,
6613 CXClientData client_data) {
6614 return static_cast<AnnotateTokensWorker*>(client_data)->Visit(cursor, parent);
6615}
6616
6617static bool AnnotateTokensPostChildrenVisitor(CXCursor cursor,
6618 CXClientData client_data) {
6619 return static_cast<AnnotateTokensWorker*>(client_data)->
6620 postVisitChildren(cursor);
6621}
6622
6623namespace {
6624
6625/// \brief Uses the macro expansions in the preprocessing record to find
6626/// and mark tokens that are macro arguments. This info is used by the
6627/// AnnotateTokensWorker.
6628class MarkMacroArgTokensVisitor {
6629 SourceManager &SM;
6630 CXToken *Tokens;
6631 unsigned NumTokens;
6632 unsigned CurIdx;
6633
6634public:
6635 MarkMacroArgTokensVisitor(SourceManager &SM,
6636 CXToken *tokens, unsigned numTokens)
6637 : SM(SM), Tokens(tokens), NumTokens(numTokens), CurIdx(0) { }
6638
6639 CXChildVisitResult visit(CXCursor cursor, CXCursor parent) {
6640 if (cursor.kind != CXCursor_MacroExpansion)
6641 return CXChildVisit_Continue;
6642
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00006643 SourceRange macroRange = getCursorMacroExpansion(cursor).getSourceRange();
Guy Benyei11169dd2012-12-18 14:30:41 +00006644 if (macroRange.getBegin() == macroRange.getEnd())
6645 return CXChildVisit_Continue; // it's not a function macro.
6646
6647 for (; CurIdx < NumTokens; ++CurIdx) {
6648 if (!SM.isBeforeInTranslationUnit(getTokenLoc(CurIdx),
6649 macroRange.getBegin()))
6650 break;
6651 }
6652
6653 if (CurIdx == NumTokens)
6654 return CXChildVisit_Break;
6655
6656 for (; CurIdx < NumTokens; ++CurIdx) {
6657 SourceLocation tokLoc = getTokenLoc(CurIdx);
6658 if (!SM.isBeforeInTranslationUnit(tokLoc, macroRange.getEnd()))
6659 break;
6660
6661 setFunctionMacroTokenLoc(CurIdx, SM.getMacroArgExpandedLocation(tokLoc));
6662 }
6663
6664 if (CurIdx == NumTokens)
6665 return CXChildVisit_Break;
6666
6667 return CXChildVisit_Continue;
6668 }
6669
6670private:
Argyrios Kyrtzidis50126f12013-11-27 05:50:55 +00006671 CXToken &getTok(unsigned Idx) {
6672 assert(Idx < NumTokens);
6673 return Tokens[Idx];
6674 }
6675 const CXToken &getTok(unsigned Idx) const {
6676 assert(Idx < NumTokens);
6677 return Tokens[Idx];
6678 }
6679
Guy Benyei11169dd2012-12-18 14:30:41 +00006680 SourceLocation getTokenLoc(unsigned tokI) {
Argyrios Kyrtzidis50126f12013-11-27 05:50:55 +00006681 return SourceLocation::getFromRawEncoding(getTok(tokI).int_data[1]);
Guy Benyei11169dd2012-12-18 14:30:41 +00006682 }
6683
6684 void setFunctionMacroTokenLoc(unsigned tokI, SourceLocation loc) {
6685 // The third field is reserved and currently not used. Use it here
6686 // to mark macro arg expanded tokens with their expanded locations.
Argyrios Kyrtzidis50126f12013-11-27 05:50:55 +00006687 getTok(tokI).int_data[3] = loc.getRawEncoding();
Guy Benyei11169dd2012-12-18 14:30:41 +00006688 }
6689};
6690
6691} // end anonymous namespace
6692
6693static CXChildVisitResult
6694MarkMacroArgTokensVisitorDelegate(CXCursor cursor, CXCursor parent,
6695 CXClientData client_data) {
6696 return static_cast<MarkMacroArgTokensVisitor*>(client_data)->visit(cursor,
6697 parent);
6698}
6699
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006700/// \brief Used by \c annotatePreprocessorTokens.
6701/// \returns true if lexing was finished, false otherwise.
6702static bool lexNext(Lexer &Lex, Token &Tok,
6703 unsigned &NextIdx, unsigned NumTokens) {
6704 if (NextIdx >= NumTokens)
6705 return true;
6706
6707 ++NextIdx;
6708 Lex.LexFromRawLexer(Tok);
Alexander Kornienko1a9f1842015-12-28 15:24:08 +00006709 return Tok.is(tok::eof);
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006710}
6711
Guy Benyei11169dd2012-12-18 14:30:41 +00006712static void annotatePreprocessorTokens(CXTranslationUnit TU,
6713 SourceRange RegionOfInterest,
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006714 CXCursor *Cursors,
6715 CXToken *Tokens,
6716 unsigned NumTokens) {
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00006717 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00006718
Argyrios Kyrtzidis68d31ce2013-01-07 19:16:32 +00006719 Preprocessor &PP = CXXUnit->getPreprocessor();
Guy Benyei11169dd2012-12-18 14:30:41 +00006720 SourceManager &SourceMgr = CXXUnit->getSourceManager();
6721 std::pair<FileID, unsigned> BeginLocInfo
Argyrios Kyrtzidis5d47a9b2013-02-13 18:33:28 +00006722 = SourceMgr.getDecomposedSpellingLoc(RegionOfInterest.getBegin());
Guy Benyei11169dd2012-12-18 14:30:41 +00006723 std::pair<FileID, unsigned> EndLocInfo
Argyrios Kyrtzidis5d47a9b2013-02-13 18:33:28 +00006724 = SourceMgr.getDecomposedSpellingLoc(RegionOfInterest.getEnd());
Guy Benyei11169dd2012-12-18 14:30:41 +00006725
6726 if (BeginLocInfo.first != EndLocInfo.first)
6727 return;
6728
6729 StringRef Buffer;
6730 bool Invalid = false;
6731 Buffer = SourceMgr.getBufferData(BeginLocInfo.first, &Invalid);
6732 if (Buffer.empty() || Invalid)
6733 return;
6734
6735 Lexer Lex(SourceMgr.getLocForStartOfFile(BeginLocInfo.first),
6736 CXXUnit->getASTContext().getLangOpts(),
6737 Buffer.begin(), Buffer.data() + BeginLocInfo.second,
6738 Buffer.end());
6739 Lex.SetCommentRetentionState(true);
6740
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006741 unsigned NextIdx = 0;
Guy Benyei11169dd2012-12-18 14:30:41 +00006742 // Lex tokens in raw mode until we hit the end of the range, to avoid
6743 // entering #includes or expanding macros.
6744 while (true) {
6745 Token Tok;
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006746 if (lexNext(Lex, Tok, NextIdx, NumTokens))
6747 break;
6748 unsigned TokIdx = NextIdx-1;
6749 assert(Tok.getLocation() ==
6750 SourceLocation::getFromRawEncoding(Tokens[TokIdx].int_data[1]));
Guy Benyei11169dd2012-12-18 14:30:41 +00006751
6752 reprocess:
6753 if (Tok.is(tok::hash) && Tok.isAtStartOfLine()) {
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006754 // We have found a preprocessing directive. Annotate the tokens
6755 // appropriately.
Guy Benyei11169dd2012-12-18 14:30:41 +00006756 //
6757 // FIXME: Some simple tests here could identify macro definitions and
6758 // #undefs, to provide specific cursor kinds for those.
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006759
6760 SourceLocation BeginLoc = Tok.getLocation();
Argyrios Kyrtzidis68d31ce2013-01-07 19:16:32 +00006761 if (lexNext(Lex, Tok, NextIdx, NumTokens))
6762 break;
6763
Craig Topper69186e72014-06-08 08:38:04 +00006764 MacroInfo *MI = nullptr;
Alp Toker2d57cea2014-05-17 04:53:25 +00006765 if (Tok.is(tok::raw_identifier) && Tok.getRawIdentifier() == "define") {
Argyrios Kyrtzidis68d31ce2013-01-07 19:16:32 +00006766 if (lexNext(Lex, Tok, NextIdx, NumTokens))
6767 break;
6768
6769 if (Tok.is(tok::raw_identifier)) {
Alp Toker2d57cea2014-05-17 04:53:25 +00006770 IdentifierInfo &II =
6771 PP.getIdentifierTable().get(Tok.getRawIdentifier());
Argyrios Kyrtzidis68d31ce2013-01-07 19:16:32 +00006772 SourceLocation MappedTokLoc =
6773 CXXUnit->mapLocationToPreamble(Tok.getLocation());
6774 MI = getMacroInfo(II, MappedTokLoc, TU);
6775 }
6776 }
6777
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006778 bool finished = false;
Guy Benyei11169dd2012-12-18 14:30:41 +00006779 do {
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006780 if (lexNext(Lex, Tok, NextIdx, NumTokens)) {
6781 finished = true;
6782 break;
6783 }
Argyrios Kyrtzidis68d31ce2013-01-07 19:16:32 +00006784 // If we are in a macro definition, check if the token was ever a
6785 // macro name and annotate it if that's the case.
6786 if (MI) {
6787 SourceLocation SaveLoc = Tok.getLocation();
6788 Tok.setLocation(CXXUnit->mapLocationToPreamble(SaveLoc));
Richard Smith66a81862015-05-04 02:25:31 +00006789 MacroDefinitionRecord *MacroDef =
6790 checkForMacroInMacroDefinition(MI, Tok, TU);
Argyrios Kyrtzidis68d31ce2013-01-07 19:16:32 +00006791 Tok.setLocation(SaveLoc);
6792 if (MacroDef)
Richard Smith66a81862015-05-04 02:25:31 +00006793 Cursors[NextIdx - 1] =
6794 MakeMacroExpansionCursor(MacroDef, Tok.getLocation(), TU);
Argyrios Kyrtzidis68d31ce2013-01-07 19:16:32 +00006795 }
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006796 } while (!Tok.isAtStartOfLine());
6797
6798 unsigned LastIdx = finished ? NextIdx-1 : NextIdx-2;
6799 assert(TokIdx <= LastIdx);
6800 SourceLocation EndLoc =
6801 SourceLocation::getFromRawEncoding(Tokens[LastIdx].int_data[1]);
6802 CXCursor Cursor =
6803 MakePreprocessingDirectiveCursor(SourceRange(BeginLoc, EndLoc), TU);
6804
6805 for (; TokIdx <= LastIdx; ++TokIdx)
Argyrios Kyrtzidis68d31ce2013-01-07 19:16:32 +00006806 updateCursorAnnotation(Cursors[TokIdx], Cursor);
Guy Benyei11169dd2012-12-18 14:30:41 +00006807
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006808 if (finished)
6809 break;
6810 goto reprocess;
Guy Benyei11169dd2012-12-18 14:30:41 +00006811 }
Guy Benyei11169dd2012-12-18 14:30:41 +00006812 }
6813}
6814
6815// This gets run a separate thread to avoid stack blowout.
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00006816static void clang_annotateTokensImpl(CXTranslationUnit TU, ASTUnit *CXXUnit,
6817 CXToken *Tokens, unsigned NumTokens,
6818 CXCursor *Cursors) {
Dmitri Gribenko183436e2013-01-26 21:49:50 +00006819 CIndexer *CXXIdx = TU->CIdx;
Guy Benyei11169dd2012-12-18 14:30:41 +00006820 if (CXXIdx->isOptEnabled(CXGlobalOpt_ThreadBackgroundPriorityForEditing))
6821 setThreadBackgroundPriority();
6822
6823 // Determine the region of interest, which contains all of the tokens.
6824 SourceRange RegionOfInterest;
6825 RegionOfInterest.setBegin(
6826 cxloc::translateSourceLocation(clang_getTokenLocation(TU, Tokens[0])));
6827 RegionOfInterest.setEnd(
6828 cxloc::translateSourceLocation(clang_getTokenLocation(TU,
6829 Tokens[NumTokens-1])));
6830
Guy Benyei11169dd2012-12-18 14:30:41 +00006831 // Relex the tokens within the source range to look for preprocessing
6832 // directives.
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006833 annotatePreprocessorTokens(TU, RegionOfInterest, Cursors, Tokens, NumTokens);
Argyrios Kyrtzidis5d47a9b2013-02-13 18:33:28 +00006834
6835 // If begin location points inside a macro argument, set it to the expansion
6836 // location so we can have the full context when annotating semantically.
6837 {
6838 SourceManager &SM = CXXUnit->getSourceManager();
6839 SourceLocation Loc =
6840 SM.getMacroArgExpandedLocation(RegionOfInterest.getBegin());
6841 if (Loc.isMacroID())
6842 RegionOfInterest.setBegin(SM.getExpansionLoc(Loc));
6843 }
6844
Guy Benyei11169dd2012-12-18 14:30:41 +00006845 if (CXXUnit->getPreprocessor().getPreprocessingRecord()) {
6846 // Search and mark tokens that are macro argument expansions.
6847 MarkMacroArgTokensVisitor Visitor(CXXUnit->getSourceManager(),
6848 Tokens, NumTokens);
6849 CursorVisitor MacroArgMarker(TU,
6850 MarkMacroArgTokensVisitorDelegate, &Visitor,
6851 /*VisitPreprocessorLast=*/true,
6852 /*VisitIncludedEntities=*/false,
6853 RegionOfInterest);
6854 MacroArgMarker.visitPreprocessedEntitiesInRegion();
6855 }
6856
6857 // Annotate all of the source locations in the region of interest that map to
6858 // a specific cursor.
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00006859 AnnotateTokensWorker W(Tokens, Cursors, NumTokens, TU, RegionOfInterest);
Guy Benyei11169dd2012-12-18 14:30:41 +00006860
6861 // FIXME: We use a ridiculous stack size here because the data-recursion
6862 // algorithm uses a large stack frame than the non-data recursive version,
6863 // and AnnotationTokensWorker currently transforms the data-recursion
6864 // algorithm back into a traditional recursion by explicitly calling
6865 // VisitChildren(). We will need to remove this explicit recursive call.
6866 W.AnnotateTokens();
6867
6868 // If we ran into any entities that involve context-sensitive keywords,
6869 // take another pass through the tokens to mark them as such.
6870 if (W.hasContextSensitiveKeywords()) {
6871 for (unsigned I = 0; I != NumTokens; ++I) {
6872 if (clang_getTokenKind(Tokens[I]) != CXToken_Identifier)
6873 continue;
6874
6875 if (Cursors[I].kind == CXCursor_ObjCPropertyDecl) {
6876 IdentifierInfo *II = static_cast<IdentifierInfo *>(Tokens[I].ptr_data);
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00006877 if (const ObjCPropertyDecl *Property
Guy Benyei11169dd2012-12-18 14:30:41 +00006878 = dyn_cast_or_null<ObjCPropertyDecl>(getCursorDecl(Cursors[I]))) {
6879 if (Property->getPropertyAttributesAsWritten() != 0 &&
6880 llvm::StringSwitch<bool>(II->getName())
6881 .Case("readonly", true)
6882 .Case("assign", true)
6883 .Case("unsafe_unretained", true)
6884 .Case("readwrite", true)
6885 .Case("retain", true)
6886 .Case("copy", true)
6887 .Case("nonatomic", true)
6888 .Case("atomic", true)
6889 .Case("getter", true)
6890 .Case("setter", true)
6891 .Case("strong", true)
6892 .Case("weak", true)
Manman Ren04fd4d82016-05-31 23:22:04 +00006893 .Case("class", true)
Guy Benyei11169dd2012-12-18 14:30:41 +00006894 .Default(false))
6895 Tokens[I].int_data[0] = CXToken_Keyword;
6896 }
6897 continue;
6898 }
6899
6900 if (Cursors[I].kind == CXCursor_ObjCInstanceMethodDecl ||
6901 Cursors[I].kind == CXCursor_ObjCClassMethodDecl) {
6902 IdentifierInfo *II = static_cast<IdentifierInfo *>(Tokens[I].ptr_data);
6903 if (llvm::StringSwitch<bool>(II->getName())
6904 .Case("in", true)
6905 .Case("out", true)
6906 .Case("inout", true)
6907 .Case("oneway", true)
6908 .Case("bycopy", true)
6909 .Case("byref", true)
6910 .Default(false))
6911 Tokens[I].int_data[0] = CXToken_Keyword;
6912 continue;
6913 }
6914
6915 if (Cursors[I].kind == CXCursor_CXXFinalAttr ||
6916 Cursors[I].kind == CXCursor_CXXOverrideAttr) {
6917 Tokens[I].int_data[0] = CXToken_Keyword;
6918 continue;
6919 }
6920 }
6921 }
6922}
6923
6924extern "C" {
6925
6926void clang_annotateTokens(CXTranslationUnit TU,
6927 CXToken *Tokens, unsigned NumTokens,
6928 CXCursor *Cursors) {
Dmitri Gribenko852d6222014-02-11 15:02:48 +00006929 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00006930 LOG_BAD_TU(TU);
6931 return;
6932 }
6933 if (NumTokens == 0 || !Tokens || !Cursors) {
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00006934 LOG_FUNC_SECTION { *Log << "<null input>"; }
Guy Benyei11169dd2012-12-18 14:30:41 +00006935 return;
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00006936 }
6937
6938 LOG_FUNC_SECTION {
6939 *Log << TU << ' ';
6940 CXSourceLocation bloc = clang_getTokenLocation(TU, Tokens[0]);
6941 CXSourceLocation eloc = clang_getTokenLocation(TU, Tokens[NumTokens-1]);
6942 *Log << clang_getRange(bloc, eloc);
6943 }
Guy Benyei11169dd2012-12-18 14:30:41 +00006944
6945 // Any token we don't specifically annotate will have a NULL cursor.
6946 CXCursor C = clang_getNullCursor();
6947 for (unsigned I = 0; I != NumTokens; ++I)
6948 Cursors[I] = C;
6949
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00006950 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Guy Benyei11169dd2012-12-18 14:30:41 +00006951 if (!CXXUnit)
6952 return;
6953
6954 ASTUnit::ConcurrencyCheck Check(*CXXUnit);
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00006955
6956 auto AnnotateTokensImpl = [=]() {
6957 clang_annotateTokensImpl(TU, CXXUnit, Tokens, NumTokens, Cursors);
6958 };
Guy Benyei11169dd2012-12-18 14:30:41 +00006959 llvm::CrashRecoveryContext CRC;
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00006960 if (!RunSafely(CRC, AnnotateTokensImpl, GetSafetyThreadStackSize() * 2)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00006961 fprintf(stderr, "libclang: crash detected while annotating tokens\n");
6962 }
6963}
6964
6965} // end: extern "C"
6966
6967//===----------------------------------------------------------------------===//
6968// Operations for querying linkage of a cursor.
6969//===----------------------------------------------------------------------===//
6970
6971extern "C" {
6972CXLinkageKind clang_getCursorLinkage(CXCursor cursor) {
6973 if (!clang_isDeclaration(cursor.kind))
6974 return CXLinkage_Invalid;
6975
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00006976 const Decl *D = cxcursor::getCursorDecl(cursor);
6977 if (const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(D))
Rafael Espindola3ae00052013-05-13 00:12:11 +00006978 switch (ND->getLinkageInternal()) {
Rafael Espindola50df3a02013-05-25 17:16:20 +00006979 case NoLinkage:
6980 case VisibleNoLinkage: return CXLinkage_NoLinkage;
Guy Benyei11169dd2012-12-18 14:30:41 +00006981 case InternalLinkage: return CXLinkage_Internal;
6982 case UniqueExternalLinkage: return CXLinkage_UniqueExternal;
6983 case ExternalLinkage: return CXLinkage_External;
6984 };
6985
6986 return CXLinkage_Invalid;
6987}
6988} // end: extern "C"
6989
6990//===----------------------------------------------------------------------===//
Ehsan Akhgarib743de72016-05-31 15:55:51 +00006991// Operations for querying visibility of a cursor.
6992//===----------------------------------------------------------------------===//
6993
6994extern "C" {
6995CXVisibilityKind clang_getCursorVisibility(CXCursor cursor) {
6996 if (!clang_isDeclaration(cursor.kind))
6997 return CXVisibility_Invalid;
6998
6999 const Decl *D = cxcursor::getCursorDecl(cursor);
7000 if (const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(D))
7001 switch (ND->getVisibility()) {
7002 case HiddenVisibility: return CXVisibility_Hidden;
7003 case ProtectedVisibility: return CXVisibility_Protected;
7004 case DefaultVisibility: return CXVisibility_Default;
7005 };
7006
7007 return CXVisibility_Invalid;
7008}
7009} // end: extern "C"
7010
7011//===----------------------------------------------------------------------===//
Guy Benyei11169dd2012-12-18 14:30:41 +00007012// Operations for querying language of a cursor.
7013//===----------------------------------------------------------------------===//
7014
7015static CXLanguageKind getDeclLanguage(const Decl *D) {
7016 if (!D)
7017 return CXLanguage_C;
7018
7019 switch (D->getKind()) {
7020 default:
7021 break;
7022 case Decl::ImplicitParam:
7023 case Decl::ObjCAtDefsField:
7024 case Decl::ObjCCategory:
7025 case Decl::ObjCCategoryImpl:
7026 case Decl::ObjCCompatibleAlias:
7027 case Decl::ObjCImplementation:
7028 case Decl::ObjCInterface:
7029 case Decl::ObjCIvar:
7030 case Decl::ObjCMethod:
7031 case Decl::ObjCProperty:
7032 case Decl::ObjCPropertyImpl:
7033 case Decl::ObjCProtocol:
Douglas Gregor85f3f952015-07-07 03:57:15 +00007034 case Decl::ObjCTypeParam:
Guy Benyei11169dd2012-12-18 14:30:41 +00007035 return CXLanguage_ObjC;
7036 case Decl::CXXConstructor:
7037 case Decl::CXXConversion:
7038 case Decl::CXXDestructor:
7039 case Decl::CXXMethod:
7040 case Decl::CXXRecord:
7041 case Decl::ClassTemplate:
7042 case Decl::ClassTemplatePartialSpecialization:
7043 case Decl::ClassTemplateSpecialization:
7044 case Decl::Friend:
7045 case Decl::FriendTemplate:
7046 case Decl::FunctionTemplate:
7047 case Decl::LinkageSpec:
7048 case Decl::Namespace:
7049 case Decl::NamespaceAlias:
7050 case Decl::NonTypeTemplateParm:
7051 case Decl::StaticAssert:
7052 case Decl::TemplateTemplateParm:
7053 case Decl::TemplateTypeParm:
7054 case Decl::UnresolvedUsingTypename:
7055 case Decl::UnresolvedUsingValue:
7056 case Decl::Using:
7057 case Decl::UsingDirective:
7058 case Decl::UsingShadow:
7059 return CXLanguage_CPlusPlus;
7060 }
7061
7062 return CXLanguage_C;
7063}
7064
7065extern "C" {
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007066
7067static CXAvailabilityKind getCursorAvailabilityForDecl(const Decl *D) {
7068 if (isa<FunctionDecl>(D) && cast<FunctionDecl>(D)->isDeleted())
Manuel Klimek8e3a7ed2015-09-25 17:53:16 +00007069 return CXAvailability_NotAvailable;
Guy Benyei11169dd2012-12-18 14:30:41 +00007070
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007071 switch (D->getAvailability()) {
7072 case AR_Available:
7073 case AR_NotYetIntroduced:
7074 if (const EnumConstantDecl *EnumConst = dyn_cast<EnumConstantDecl>(D))
Benjamin Kramer656363d2013-10-15 18:53:18 +00007075 return getCursorAvailabilityForDecl(
7076 cast<Decl>(EnumConst->getDeclContext()));
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007077 return CXAvailability_Available;
7078
7079 case AR_Deprecated:
7080 return CXAvailability_Deprecated;
7081
7082 case AR_Unavailable:
7083 return CXAvailability_NotAvailable;
7084 }
Benjamin Kramer656363d2013-10-15 18:53:18 +00007085
7086 llvm_unreachable("Unknown availability kind!");
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007087}
7088
Guy Benyei11169dd2012-12-18 14:30:41 +00007089enum CXAvailabilityKind clang_getCursorAvailability(CXCursor cursor) {
7090 if (clang_isDeclaration(cursor.kind))
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007091 if (const Decl *D = cxcursor::getCursorDecl(cursor))
7092 return getCursorAvailabilityForDecl(D);
Guy Benyei11169dd2012-12-18 14:30:41 +00007093
7094 return CXAvailability_Available;
7095}
7096
7097static CXVersion convertVersion(VersionTuple In) {
7098 CXVersion Out = { -1, -1, -1 };
7099 if (In.empty())
7100 return Out;
7101
7102 Out.Major = In.getMajor();
7103
NAKAMURA Takumic2b5d1f2013-02-21 02:32:34 +00007104 Optional<unsigned> Minor = In.getMinor();
7105 if (Minor.hasValue())
Guy Benyei11169dd2012-12-18 14:30:41 +00007106 Out.Minor = *Minor;
7107 else
7108 return Out;
7109
NAKAMURA Takumic2b5d1f2013-02-21 02:32:34 +00007110 Optional<unsigned> Subminor = In.getSubminor();
7111 if (Subminor.hasValue())
Guy Benyei11169dd2012-12-18 14:30:41 +00007112 Out.Subminor = *Subminor;
7113
7114 return Out;
7115}
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007116
7117static int getCursorPlatformAvailabilityForDecl(const Decl *D,
7118 int *always_deprecated,
7119 CXString *deprecated_message,
7120 int *always_unavailable,
7121 CXString *unavailable_message,
7122 CXPlatformAvailability *availability,
7123 int availability_size) {
7124 bool HadAvailAttr = false;
7125 int N = 0;
Aaron Ballmanb97112e2014-03-08 22:19:01 +00007126 for (auto A : D->attrs()) {
7127 if (DeprecatedAttr *Deprecated = dyn_cast<DeprecatedAttr>(A)) {
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007128 HadAvailAttr = true;
7129 if (always_deprecated)
7130 *always_deprecated = 1;
Nico Weberaacf0312014-04-24 05:16:45 +00007131 if (deprecated_message) {
Argyrios Kyrtzidisedfe07f2014-04-24 06:05:40 +00007132 clang_disposeString(*deprecated_message);
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007133 *deprecated_message = cxstring::createDup(Deprecated->getMessage());
Nico Weberaacf0312014-04-24 05:16:45 +00007134 }
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007135 continue;
7136 }
7137
Aaron Ballmanb97112e2014-03-08 22:19:01 +00007138 if (UnavailableAttr *Unavailable = dyn_cast<UnavailableAttr>(A)) {
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007139 HadAvailAttr = true;
7140 if (always_unavailable)
7141 *always_unavailable = 1;
7142 if (unavailable_message) {
Argyrios Kyrtzidisedfe07f2014-04-24 06:05:40 +00007143 clang_disposeString(*unavailable_message);
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007144 *unavailable_message = cxstring::createDup(Unavailable->getMessage());
7145 }
7146 continue;
7147 }
7148
Aaron Ballmanb97112e2014-03-08 22:19:01 +00007149 if (AvailabilityAttr *Avail = dyn_cast<AvailabilityAttr>(A)) {
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007150 HadAvailAttr = true;
7151 if (N < availability_size) {
7152 availability[N].Platform
7153 = cxstring::createDup(Avail->getPlatform()->getName());
7154 availability[N].Introduced = convertVersion(Avail->getIntroduced());
7155 availability[N].Deprecated = convertVersion(Avail->getDeprecated());
7156 availability[N].Obsoleted = convertVersion(Avail->getObsoleted());
7157 availability[N].Unavailable = Avail->getUnavailable();
7158 availability[N].Message = cxstring::createDup(Avail->getMessage());
7159 }
7160 ++N;
7161 }
7162 }
7163
7164 if (!HadAvailAttr)
7165 if (const EnumConstantDecl *EnumConst = dyn_cast<EnumConstantDecl>(D))
7166 return getCursorPlatformAvailabilityForDecl(
7167 cast<Decl>(EnumConst->getDeclContext()),
7168 always_deprecated,
7169 deprecated_message,
7170 always_unavailable,
7171 unavailable_message,
7172 availability,
7173 availability_size);
Guy Benyei11169dd2012-12-18 14:30:41 +00007174
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007175 return N;
7176}
7177
Guy Benyei11169dd2012-12-18 14:30:41 +00007178int clang_getCursorPlatformAvailability(CXCursor cursor,
7179 int *always_deprecated,
7180 CXString *deprecated_message,
7181 int *always_unavailable,
7182 CXString *unavailable_message,
7183 CXPlatformAvailability *availability,
7184 int availability_size) {
7185 if (always_deprecated)
7186 *always_deprecated = 0;
7187 if (deprecated_message)
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00007188 *deprecated_message = cxstring::createEmpty();
Guy Benyei11169dd2012-12-18 14:30:41 +00007189 if (always_unavailable)
7190 *always_unavailable = 0;
7191 if (unavailable_message)
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00007192 *unavailable_message = cxstring::createEmpty();
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007193
Guy Benyei11169dd2012-12-18 14:30:41 +00007194 if (!clang_isDeclaration(cursor.kind))
7195 return 0;
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007196
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00007197 const Decl *D = cxcursor::getCursorDecl(cursor);
Guy Benyei11169dd2012-12-18 14:30:41 +00007198 if (!D)
7199 return 0;
Argyrios Kyrtzidisdc2973f2013-10-15 17:00:53 +00007200
7201 return getCursorPlatformAvailabilityForDecl(D, always_deprecated,
7202 deprecated_message,
7203 always_unavailable,
7204 unavailable_message,
7205 availability,
7206 availability_size);
Guy Benyei11169dd2012-12-18 14:30:41 +00007207}
7208
7209void clang_disposeCXPlatformAvailability(CXPlatformAvailability *availability) {
7210 clang_disposeString(availability->Platform);
7211 clang_disposeString(availability->Message);
7212}
7213
7214CXLanguageKind clang_getCursorLanguage(CXCursor cursor) {
7215 if (clang_isDeclaration(cursor.kind))
7216 return getDeclLanguage(cxcursor::getCursorDecl(cursor));
7217
7218 return CXLanguage_Invalid;
7219}
7220
7221 /// \brief If the given cursor is the "templated" declaration
7222 /// descibing a class or function template, return the class or
7223 /// function template.
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00007224static const Decl *maybeGetTemplateCursor(const Decl *D) {
Guy Benyei11169dd2012-12-18 14:30:41 +00007225 if (!D)
Craig Topper69186e72014-06-08 08:38:04 +00007226 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00007227
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00007228 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
Guy Benyei11169dd2012-12-18 14:30:41 +00007229 if (FunctionTemplateDecl *FunTmpl = FD->getDescribedFunctionTemplate())
7230 return FunTmpl;
7231
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00007232 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D))
Guy Benyei11169dd2012-12-18 14:30:41 +00007233 if (ClassTemplateDecl *ClassTmpl = RD->getDescribedClassTemplate())
7234 return ClassTmpl;
7235
7236 return D;
7237}
7238
Argyrios Kyrtzidis4e0854f2014-10-15 17:05:31 +00007239
7240enum CX_StorageClass clang_Cursor_getStorageClass(CXCursor C) {
7241 StorageClass sc = SC_None;
7242 const Decl *D = getCursorDecl(C);
7243 if (D) {
7244 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
7245 sc = FD->getStorageClass();
7246 } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
7247 sc = VD->getStorageClass();
7248 } else {
7249 return CX_SC_Invalid;
7250 }
7251 } else {
7252 return CX_SC_Invalid;
7253 }
7254 switch (sc) {
7255 case SC_None:
7256 return CX_SC_None;
7257 case SC_Extern:
7258 return CX_SC_Extern;
7259 case SC_Static:
7260 return CX_SC_Static;
7261 case SC_PrivateExtern:
7262 return CX_SC_PrivateExtern;
Argyrios Kyrtzidis4e0854f2014-10-15 17:05:31 +00007263 case SC_Auto:
7264 return CX_SC_Auto;
7265 case SC_Register:
7266 return CX_SC_Register;
Argyrios Kyrtzidis4e0854f2014-10-15 17:05:31 +00007267 }
Kaelyn Takataab61e702014-10-15 18:03:26 +00007268 llvm_unreachable("Unhandled storage class!");
Argyrios Kyrtzidis4e0854f2014-10-15 17:05:31 +00007269}
7270
Guy Benyei11169dd2012-12-18 14:30:41 +00007271CXCursor clang_getCursorSemanticParent(CXCursor cursor) {
7272 if (clang_isDeclaration(cursor.kind)) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00007273 if (const Decl *D = getCursorDecl(cursor)) {
7274 const DeclContext *DC = D->getDeclContext();
Guy Benyei11169dd2012-12-18 14:30:41 +00007275 if (!DC)
7276 return clang_getNullCursor();
7277
7278 return MakeCXCursor(maybeGetTemplateCursor(cast<Decl>(DC)),
7279 getCursorTU(cursor));
7280 }
7281 }
7282
7283 if (clang_isStatement(cursor.kind) || clang_isExpression(cursor.kind)) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00007284 if (const Decl *D = getCursorDecl(cursor))
Guy Benyei11169dd2012-12-18 14:30:41 +00007285 return MakeCXCursor(D, getCursorTU(cursor));
7286 }
7287
7288 return clang_getNullCursor();
7289}
7290
7291CXCursor clang_getCursorLexicalParent(CXCursor cursor) {
7292 if (clang_isDeclaration(cursor.kind)) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00007293 if (const Decl *D = getCursorDecl(cursor)) {
7294 const DeclContext *DC = D->getLexicalDeclContext();
Guy Benyei11169dd2012-12-18 14:30:41 +00007295 if (!DC)
7296 return clang_getNullCursor();
7297
7298 return MakeCXCursor(maybeGetTemplateCursor(cast<Decl>(DC)),
7299 getCursorTU(cursor));
7300 }
7301 }
7302
7303 // FIXME: Note that we can't easily compute the lexical context of a
7304 // statement or expression, so we return nothing.
7305 return clang_getNullCursor();
7306}
7307
7308CXFile clang_getIncludedFile(CXCursor cursor) {
7309 if (cursor.kind != CXCursor_InclusionDirective)
Craig Topper69186e72014-06-08 08:38:04 +00007310 return nullptr;
7311
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00007312 const InclusionDirective *ID = getCursorInclusionDirective(cursor);
Dmitri Gribenkof9304482013-01-23 15:56:07 +00007313 return const_cast<FileEntry *>(ID->getFile());
Guy Benyei11169dd2012-12-18 14:30:41 +00007314}
7315
Argyrios Kyrtzidis9adfd8a2013-04-18 22:15:49 +00007316unsigned clang_Cursor_getObjCPropertyAttributes(CXCursor C, unsigned reserved) {
7317 if (C.kind != CXCursor_ObjCPropertyDecl)
7318 return CXObjCPropertyAttr_noattr;
7319
7320 unsigned Result = CXObjCPropertyAttr_noattr;
7321 const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(getCursorDecl(C));
7322 ObjCPropertyDecl::PropertyAttributeKind Attr =
7323 PD->getPropertyAttributesAsWritten();
7324
7325#define SET_CXOBJCPROP_ATTR(A) \
7326 if (Attr & ObjCPropertyDecl::OBJC_PR_##A) \
7327 Result |= CXObjCPropertyAttr_##A
7328 SET_CXOBJCPROP_ATTR(readonly);
7329 SET_CXOBJCPROP_ATTR(getter);
7330 SET_CXOBJCPROP_ATTR(assign);
7331 SET_CXOBJCPROP_ATTR(readwrite);
7332 SET_CXOBJCPROP_ATTR(retain);
7333 SET_CXOBJCPROP_ATTR(copy);
7334 SET_CXOBJCPROP_ATTR(nonatomic);
7335 SET_CXOBJCPROP_ATTR(setter);
7336 SET_CXOBJCPROP_ATTR(atomic);
7337 SET_CXOBJCPROP_ATTR(weak);
7338 SET_CXOBJCPROP_ATTR(strong);
7339 SET_CXOBJCPROP_ATTR(unsafe_unretained);
Manman Ren04fd4d82016-05-31 23:22:04 +00007340 SET_CXOBJCPROP_ATTR(class);
Argyrios Kyrtzidis9adfd8a2013-04-18 22:15:49 +00007341#undef SET_CXOBJCPROP_ATTR
7342
7343 return Result;
7344}
7345
Argyrios Kyrtzidis9d9bc012013-04-18 23:29:12 +00007346unsigned clang_Cursor_getObjCDeclQualifiers(CXCursor C) {
7347 if (!clang_isDeclaration(C.kind))
7348 return CXObjCDeclQualifier_None;
7349
7350 Decl::ObjCDeclQualifier QT = Decl::OBJC_TQ_None;
7351 const Decl *D = getCursorDecl(C);
7352 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
7353 QT = MD->getObjCDeclQualifier();
7354 else if (const ParmVarDecl *PD = dyn_cast<ParmVarDecl>(D))
7355 QT = PD->getObjCDeclQualifier();
7356 if (QT == Decl::OBJC_TQ_None)
7357 return CXObjCDeclQualifier_None;
7358
7359 unsigned Result = CXObjCDeclQualifier_None;
7360 if (QT & Decl::OBJC_TQ_In) Result |= CXObjCDeclQualifier_In;
7361 if (QT & Decl::OBJC_TQ_Inout) Result |= CXObjCDeclQualifier_Inout;
7362 if (QT & Decl::OBJC_TQ_Out) Result |= CXObjCDeclQualifier_Out;
7363 if (QT & Decl::OBJC_TQ_Bycopy) Result |= CXObjCDeclQualifier_Bycopy;
7364 if (QT & Decl::OBJC_TQ_Byref) Result |= CXObjCDeclQualifier_Byref;
7365 if (QT & Decl::OBJC_TQ_Oneway) Result |= CXObjCDeclQualifier_Oneway;
7366
7367 return Result;
7368}
7369
Argyrios Kyrtzidis7b50fc52013-07-05 20:44:37 +00007370unsigned clang_Cursor_isObjCOptional(CXCursor C) {
7371 if (!clang_isDeclaration(C.kind))
7372 return 0;
7373
7374 const Decl *D = getCursorDecl(C);
7375 if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
7376 return PD->getPropertyImplementation() == ObjCPropertyDecl::Optional;
7377 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
7378 return MD->getImplementationControl() == ObjCMethodDecl::Optional;
7379
7380 return 0;
7381}
7382
Argyrios Kyrtzidis23814e42013-04-18 23:53:05 +00007383unsigned clang_Cursor_isVariadic(CXCursor C) {
7384 if (!clang_isDeclaration(C.kind))
7385 return 0;
7386
7387 const Decl *D = getCursorDecl(C);
7388 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
7389 return FD->isVariadic();
7390 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
7391 return MD->isVariadic();
7392
7393 return 0;
7394}
7395
Guy Benyei11169dd2012-12-18 14:30:41 +00007396CXSourceRange clang_Cursor_getCommentRange(CXCursor C) {
7397 if (!clang_isDeclaration(C.kind))
7398 return clang_getNullRange();
7399
7400 const Decl *D = getCursorDecl(C);
7401 ASTContext &Context = getCursorContext(C);
7402 const RawComment *RC = Context.getRawCommentForAnyRedecl(D);
7403 if (!RC)
7404 return clang_getNullRange();
7405
7406 return cxloc::translateSourceRange(Context, RC->getSourceRange());
7407}
7408
7409CXString clang_Cursor_getRawCommentText(CXCursor C) {
7410 if (!clang_isDeclaration(C.kind))
Dmitri Gribenkof98dfba2013-02-01 14:13:32 +00007411 return cxstring::createNull();
Guy Benyei11169dd2012-12-18 14:30:41 +00007412
7413 const Decl *D = getCursorDecl(C);
7414 ASTContext &Context = getCursorContext(C);
7415 const RawComment *RC = Context.getRawCommentForAnyRedecl(D);
7416 StringRef RawText = RC ? RC->getRawText(Context.getSourceManager()) :
7417 StringRef();
7418
7419 // Don't duplicate the string because RawText points directly into source
7420 // code.
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00007421 return cxstring::createRef(RawText);
Guy Benyei11169dd2012-12-18 14:30:41 +00007422}
7423
7424CXString clang_Cursor_getBriefCommentText(CXCursor C) {
7425 if (!clang_isDeclaration(C.kind))
Dmitri Gribenkof98dfba2013-02-01 14:13:32 +00007426 return cxstring::createNull();
Guy Benyei11169dd2012-12-18 14:30:41 +00007427
7428 const Decl *D = getCursorDecl(C);
7429 const ASTContext &Context = getCursorContext(C);
7430 const RawComment *RC = Context.getRawCommentForAnyRedecl(D);
7431
7432 if (RC) {
7433 StringRef BriefText = RC->getBriefText(Context);
7434
7435 // Don't duplicate the string because RawComment ensures that this memory
7436 // will not go away.
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00007437 return cxstring::createRef(BriefText);
Guy Benyei11169dd2012-12-18 14:30:41 +00007438 }
7439
Dmitri Gribenkof98dfba2013-02-01 14:13:32 +00007440 return cxstring::createNull();
Guy Benyei11169dd2012-12-18 14:30:41 +00007441}
7442
Guy Benyei11169dd2012-12-18 14:30:41 +00007443CXModule clang_Cursor_getModule(CXCursor C) {
7444 if (C.kind == CXCursor_ModuleImportDecl) {
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00007445 if (const ImportDecl *ImportD =
7446 dyn_cast_or_null<ImportDecl>(getCursorDecl(C)))
Guy Benyei11169dd2012-12-18 14:30:41 +00007447 return ImportD->getImportedModule();
7448 }
7449
Craig Topper69186e72014-06-08 08:38:04 +00007450 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00007451}
7452
Argyrios Kyrtzidisf6d49c32014-05-14 23:14:37 +00007453CXModule clang_getModuleForFile(CXTranslationUnit TU, CXFile File) {
7454 if (isNotUsableTU(TU)) {
7455 LOG_BAD_TU(TU);
7456 return nullptr;
7457 }
7458 if (!File)
7459 return nullptr;
7460 FileEntry *FE = static_cast<FileEntry *>(File);
7461
7462 ASTUnit &Unit = *cxtu::getASTUnit(TU);
7463 HeaderSearch &HS = Unit.getPreprocessor().getHeaderSearchInfo();
7464 ModuleMap::KnownHeader Header = HS.findModuleForHeader(FE);
7465
Richard Smithfeb54b62014-10-23 02:01:19 +00007466 return Header.getModule();
Argyrios Kyrtzidisf6d49c32014-05-14 23:14:37 +00007467}
7468
Argyrios Kyrtzidis12fdb9e2013-04-26 22:47:49 +00007469CXFile clang_Module_getASTFile(CXModule CXMod) {
7470 if (!CXMod)
Craig Topper69186e72014-06-08 08:38:04 +00007471 return nullptr;
Argyrios Kyrtzidis12fdb9e2013-04-26 22:47:49 +00007472 Module *Mod = static_cast<Module*>(CXMod);
7473 return const_cast<FileEntry *>(Mod->getASTFile());
7474}
7475
Guy Benyei11169dd2012-12-18 14:30:41 +00007476CXModule clang_Module_getParent(CXModule CXMod) {
7477 if (!CXMod)
Craig Topper69186e72014-06-08 08:38:04 +00007478 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00007479 Module *Mod = static_cast<Module*>(CXMod);
7480 return Mod->Parent;
7481}
7482
7483CXString clang_Module_getName(CXModule CXMod) {
7484 if (!CXMod)
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00007485 return cxstring::createEmpty();
Guy Benyei11169dd2012-12-18 14:30:41 +00007486 Module *Mod = static_cast<Module*>(CXMod);
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00007487 return cxstring::createDup(Mod->Name);
Guy Benyei11169dd2012-12-18 14:30:41 +00007488}
7489
7490CXString clang_Module_getFullName(CXModule CXMod) {
7491 if (!CXMod)
Dmitri Gribenko36a6dd02013-02-01 14:21:22 +00007492 return cxstring::createEmpty();
Guy Benyei11169dd2012-12-18 14:30:41 +00007493 Module *Mod = static_cast<Module*>(CXMod);
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00007494 return cxstring::createDup(Mod->getFullModuleName());
Guy Benyei11169dd2012-12-18 14:30:41 +00007495}
7496
Argyrios Kyrtzidis884337f2014-05-15 04:44:25 +00007497int clang_Module_isSystem(CXModule CXMod) {
7498 if (!CXMod)
7499 return 0;
7500 Module *Mod = static_cast<Module*>(CXMod);
7501 return Mod->IsSystem;
7502}
7503
Argyrios Kyrtzidis3c5305c2013-03-13 21:13:43 +00007504unsigned clang_Module_getNumTopLevelHeaders(CXTranslationUnit TU,
7505 CXModule CXMod) {
Dmitri Gribenko852d6222014-02-11 15:02:48 +00007506 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00007507 LOG_BAD_TU(TU);
7508 return 0;
7509 }
7510 if (!CXMod)
Guy Benyei11169dd2012-12-18 14:30:41 +00007511 return 0;
7512 Module *Mod = static_cast<Module*>(CXMod);
Argyrios Kyrtzidis3c5305c2013-03-13 21:13:43 +00007513 FileManager &FileMgr = cxtu::getASTUnit(TU)->getFileManager();
7514 ArrayRef<const FileEntry *> TopHeaders = Mod->getTopHeaders(FileMgr);
7515 return TopHeaders.size();
Guy Benyei11169dd2012-12-18 14:30:41 +00007516}
7517
Argyrios Kyrtzidis3c5305c2013-03-13 21:13:43 +00007518CXFile clang_Module_getTopLevelHeader(CXTranslationUnit TU,
7519 CXModule CXMod, unsigned Index) {
Dmitri Gribenko852d6222014-02-11 15:02:48 +00007520 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00007521 LOG_BAD_TU(TU);
Craig Topper69186e72014-06-08 08:38:04 +00007522 return nullptr;
Dmitri Gribenko256454f2014-02-11 14:34:14 +00007523 }
7524 if (!CXMod)
Craig Topper69186e72014-06-08 08:38:04 +00007525 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00007526 Module *Mod = static_cast<Module*>(CXMod);
Argyrios Kyrtzidis3c5305c2013-03-13 21:13:43 +00007527 FileManager &FileMgr = cxtu::getASTUnit(TU)->getFileManager();
Guy Benyei11169dd2012-12-18 14:30:41 +00007528
Argyrios Kyrtzidis3c5305c2013-03-13 21:13:43 +00007529 ArrayRef<const FileEntry *> TopHeaders = Mod->getTopHeaders(FileMgr);
7530 if (Index < TopHeaders.size())
7531 return const_cast<FileEntry *>(TopHeaders[Index]);
Guy Benyei11169dd2012-12-18 14:30:41 +00007532
Craig Topper69186e72014-06-08 08:38:04 +00007533 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00007534}
7535
7536} // end: extern "C"
7537
7538//===----------------------------------------------------------------------===//
7539// C++ AST instrospection.
7540//===----------------------------------------------------------------------===//
7541
7542extern "C" {
Jonathan Coe29565352016-04-27 12:48:25 +00007543
7544unsigned clang_CXXConstructor_isDefaultConstructor(CXCursor C) {
7545 if (!clang_isDeclaration(C.kind))
7546 return 0;
7547
7548 const Decl *D = cxcursor::getCursorDecl(C);
7549 const CXXConstructorDecl *Constructor =
7550 D ? dyn_cast_or_null<CXXConstructorDecl>(D->getAsFunction()) : nullptr;
7551 return (Constructor && Constructor->isDefaultConstructor()) ? 1 : 0;
7552}
7553
7554unsigned clang_CXXConstructor_isCopyConstructor(CXCursor C) {
7555 if (!clang_isDeclaration(C.kind))
7556 return 0;
7557
7558 const Decl *D = cxcursor::getCursorDecl(C);
7559 const CXXConstructorDecl *Constructor =
7560 D ? dyn_cast_or_null<CXXConstructorDecl>(D->getAsFunction()) : nullptr;
7561 return (Constructor && Constructor->isCopyConstructor()) ? 1 : 0;
7562}
7563
7564unsigned clang_CXXConstructor_isMoveConstructor(CXCursor C) {
7565 if (!clang_isDeclaration(C.kind))
7566 return 0;
7567
7568 const Decl *D = cxcursor::getCursorDecl(C);
7569 const CXXConstructorDecl *Constructor =
7570 D ? dyn_cast_or_null<CXXConstructorDecl>(D->getAsFunction()) : nullptr;
7571 return (Constructor && Constructor->isMoveConstructor()) ? 1 : 0;
7572}
7573
7574unsigned clang_CXXConstructor_isConvertingConstructor(CXCursor C) {
7575 if (!clang_isDeclaration(C.kind))
7576 return 0;
7577
7578 const Decl *D = cxcursor::getCursorDecl(C);
7579 const CXXConstructorDecl *Constructor =
7580 D ? dyn_cast_or_null<CXXConstructorDecl>(D->getAsFunction()) : nullptr;
7581 // Passing 'false' excludes constructors marked 'explicit'.
7582 return (Constructor && Constructor->isConvertingConstructor(false)) ? 1 : 0;
7583}
7584
Saleem Abdulrasool6ea75db2015-10-27 15:50:22 +00007585unsigned clang_CXXField_isMutable(CXCursor C) {
7586 if (!clang_isDeclaration(C.kind))
7587 return 0;
7588
7589 if (const auto D = cxcursor::getCursorDecl(C))
7590 if (const auto FD = dyn_cast_or_null<FieldDecl>(D))
7591 return FD->isMutable() ? 1 : 0;
7592 return 0;
7593}
7594
Dmitri Gribenko62770be2013-05-17 18:38:35 +00007595unsigned clang_CXXMethod_isPureVirtual(CXCursor C) {
7596 if (!clang_isDeclaration(C.kind))
7597 return 0;
7598
Dmitri Gribenko62770be2013-05-17 18:38:35 +00007599 const Decl *D = cxcursor::getCursorDecl(C);
Alp Tokera2794f92014-01-22 07:29:52 +00007600 const CXXMethodDecl *Method =
Craig Topper69186e72014-06-08 08:38:04 +00007601 D ? dyn_cast_or_null<CXXMethodDecl>(D->getAsFunction()) : nullptr;
Dmitri Gribenko62770be2013-05-17 18:38:35 +00007602 return (Method && Method->isVirtual() && Method->isPure()) ? 1 : 0;
7603}
7604
Dmitri Gribenkoe570ede2014-04-07 14:59:13 +00007605unsigned clang_CXXMethod_isConst(CXCursor C) {
7606 if (!clang_isDeclaration(C.kind))
7607 return 0;
7608
7609 const Decl *D = cxcursor::getCursorDecl(C);
7610 const CXXMethodDecl *Method =
Craig Topper69186e72014-06-08 08:38:04 +00007611 D ? dyn_cast_or_null<CXXMethodDecl>(D->getAsFunction()) : nullptr;
Dmitri Gribenkoe570ede2014-04-07 14:59:13 +00007612 return (Method && (Method->getTypeQualifiers() & Qualifiers::Const)) ? 1 : 0;
7613}
7614
Jonathan Coe29565352016-04-27 12:48:25 +00007615unsigned clang_CXXMethod_isDefaulted(CXCursor C) {
7616 if (!clang_isDeclaration(C.kind))
7617 return 0;
7618
7619 const Decl *D = cxcursor::getCursorDecl(C);
7620 const CXXMethodDecl *Method =
7621 D ? dyn_cast_or_null<CXXMethodDecl>(D->getAsFunction()) : nullptr;
7622 return (Method && Method->isDefaulted()) ? 1 : 0;
7623}
7624
Guy Benyei11169dd2012-12-18 14:30:41 +00007625unsigned clang_CXXMethod_isStatic(CXCursor C) {
7626 if (!clang_isDeclaration(C.kind))
7627 return 0;
7628
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00007629 const Decl *D = cxcursor::getCursorDecl(C);
Alp Tokera2794f92014-01-22 07:29:52 +00007630 const CXXMethodDecl *Method =
Craig Topper69186e72014-06-08 08:38:04 +00007631 D ? dyn_cast_or_null<CXXMethodDecl>(D->getAsFunction()) : nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00007632 return (Method && Method->isStatic()) ? 1 : 0;
7633}
7634
7635unsigned clang_CXXMethod_isVirtual(CXCursor C) {
7636 if (!clang_isDeclaration(C.kind))
7637 return 0;
7638
Dmitri Gribenkod15bb302013-01-23 17:25:27 +00007639 const Decl *D = cxcursor::getCursorDecl(C);
Alp Tokera2794f92014-01-22 07:29:52 +00007640 const CXXMethodDecl *Method =
Craig Topper69186e72014-06-08 08:38:04 +00007641 D ? dyn_cast_or_null<CXXMethodDecl>(D->getAsFunction()) : nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00007642 return (Method && Method->isVirtual()) ? 1 : 0;
7643}
7644} // end: extern "C"
7645
7646//===----------------------------------------------------------------------===//
7647// Attribute introspection.
7648//===----------------------------------------------------------------------===//
7649
7650extern "C" {
7651CXType clang_getIBOutletCollectionType(CXCursor C) {
7652 if (C.kind != CXCursor_IBOutletCollectionAttr)
7653 return cxtype::MakeCXType(QualType(), cxcursor::getCursorTU(C));
7654
Dmitri Gribenkoe4baea62013-01-26 18:08:08 +00007655 const IBOutletCollectionAttr *A =
Guy Benyei11169dd2012-12-18 14:30:41 +00007656 cast<IBOutletCollectionAttr>(cxcursor::getCursorAttr(C));
7657
7658 return cxtype::MakeCXType(A->getInterface(), cxcursor::getCursorTU(C));
7659}
7660} // end: extern "C"
7661
7662//===----------------------------------------------------------------------===//
7663// Inspecting memory usage.
7664//===----------------------------------------------------------------------===//
7665
7666typedef std::vector<CXTUResourceUsageEntry> MemUsageEntries;
7667
7668static inline void createCXTUResourceUsageEntry(MemUsageEntries &entries,
7669 enum CXTUResourceUsageKind k,
7670 unsigned long amount) {
7671 CXTUResourceUsageEntry entry = { k, amount };
7672 entries.push_back(entry);
7673}
7674
7675extern "C" {
7676
7677const char *clang_getTUResourceUsageName(CXTUResourceUsageKind kind) {
7678 const char *str = "";
7679 switch (kind) {
7680 case CXTUResourceUsage_AST:
7681 str = "ASTContext: expressions, declarations, and types";
7682 break;
7683 case CXTUResourceUsage_Identifiers:
7684 str = "ASTContext: identifiers";
7685 break;
7686 case CXTUResourceUsage_Selectors:
7687 str = "ASTContext: selectors";
7688 break;
7689 case CXTUResourceUsage_GlobalCompletionResults:
7690 str = "Code completion: cached global results";
7691 break;
7692 case CXTUResourceUsage_SourceManagerContentCache:
7693 str = "SourceManager: content cache allocator";
7694 break;
7695 case CXTUResourceUsage_AST_SideTables:
7696 str = "ASTContext: side tables";
7697 break;
7698 case CXTUResourceUsage_SourceManager_Membuffer_Malloc:
7699 str = "SourceManager: malloc'ed memory buffers";
7700 break;
7701 case CXTUResourceUsage_SourceManager_Membuffer_MMap:
7702 str = "SourceManager: mmap'ed memory buffers";
7703 break;
7704 case CXTUResourceUsage_ExternalASTSource_Membuffer_Malloc:
7705 str = "ExternalASTSource: malloc'ed memory buffers";
7706 break;
7707 case CXTUResourceUsage_ExternalASTSource_Membuffer_MMap:
7708 str = "ExternalASTSource: mmap'ed memory buffers";
7709 break;
7710 case CXTUResourceUsage_Preprocessor:
7711 str = "Preprocessor: malloc'ed memory";
7712 break;
7713 case CXTUResourceUsage_PreprocessingRecord:
7714 str = "Preprocessor: PreprocessingRecord";
7715 break;
7716 case CXTUResourceUsage_SourceManager_DataStructures:
7717 str = "SourceManager: data structures and tables";
7718 break;
7719 case CXTUResourceUsage_Preprocessor_HeaderSearch:
7720 str = "Preprocessor: header search tables";
7721 break;
7722 }
7723 return str;
7724}
7725
7726CXTUResourceUsage clang_getCXTUResourceUsage(CXTranslationUnit TU) {
Dmitri Gribenko852d6222014-02-11 15:02:48 +00007727 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00007728 LOG_BAD_TU(TU);
Craig Topper69186e72014-06-08 08:38:04 +00007729 CXTUResourceUsage usage = { (void*) nullptr, 0, nullptr };
Guy Benyei11169dd2012-12-18 14:30:41 +00007730 return usage;
7731 }
7732
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00007733 ASTUnit *astUnit = cxtu::getASTUnit(TU);
Ahmed Charlesb8984322014-03-07 20:03:18 +00007734 std::unique_ptr<MemUsageEntries> entries(new MemUsageEntries());
Guy Benyei11169dd2012-12-18 14:30:41 +00007735 ASTContext &astContext = astUnit->getASTContext();
7736
7737 // How much memory is used by AST nodes and types?
7738 createCXTUResourceUsageEntry(*entries, CXTUResourceUsage_AST,
7739 (unsigned long) astContext.getASTAllocatedMemory());
7740
7741 // How much memory is used by identifiers?
7742 createCXTUResourceUsageEntry(*entries, CXTUResourceUsage_Identifiers,
7743 (unsigned long) astContext.Idents.getAllocator().getTotalMemory());
7744
7745 // How much memory is used for selectors?
7746 createCXTUResourceUsageEntry(*entries, CXTUResourceUsage_Selectors,
7747 (unsigned long) astContext.Selectors.getTotalMemory());
7748
7749 // How much memory is used by ASTContext's side tables?
7750 createCXTUResourceUsageEntry(*entries, CXTUResourceUsage_AST_SideTables,
7751 (unsigned long) astContext.getSideTableAllocatedMemory());
7752
7753 // How much memory is used for caching global code completion results?
7754 unsigned long completionBytes = 0;
7755 if (GlobalCodeCompletionAllocator *completionAllocator =
Alp Tokerf994cef2014-07-05 03:08:06 +00007756 astUnit->getCachedCompletionAllocator().get()) {
Guy Benyei11169dd2012-12-18 14:30:41 +00007757 completionBytes = completionAllocator->getTotalMemory();
7758 }
7759 createCXTUResourceUsageEntry(*entries,
7760 CXTUResourceUsage_GlobalCompletionResults,
7761 completionBytes);
7762
7763 // How much memory is being used by SourceManager's content cache?
7764 createCXTUResourceUsageEntry(*entries,
7765 CXTUResourceUsage_SourceManagerContentCache,
7766 (unsigned long) astContext.getSourceManager().getContentCacheSize());
7767
7768 // How much memory is being used by the MemoryBuffer's in SourceManager?
7769 const SourceManager::MemoryBufferSizes &srcBufs =
7770 astUnit->getSourceManager().getMemoryBufferSizes();
7771
7772 createCXTUResourceUsageEntry(*entries,
7773 CXTUResourceUsage_SourceManager_Membuffer_Malloc,
7774 (unsigned long) srcBufs.malloc_bytes);
7775 createCXTUResourceUsageEntry(*entries,
7776 CXTUResourceUsage_SourceManager_Membuffer_MMap,
7777 (unsigned long) srcBufs.mmap_bytes);
7778 createCXTUResourceUsageEntry(*entries,
7779 CXTUResourceUsage_SourceManager_DataStructures,
7780 (unsigned long) astContext.getSourceManager()
7781 .getDataStructureSizes());
7782
7783 // How much memory is being used by the ExternalASTSource?
7784 if (ExternalASTSource *esrc = astContext.getExternalSource()) {
7785 const ExternalASTSource::MemoryBufferSizes &sizes =
7786 esrc->getMemoryBufferSizes();
7787
7788 createCXTUResourceUsageEntry(*entries,
7789 CXTUResourceUsage_ExternalASTSource_Membuffer_Malloc,
7790 (unsigned long) sizes.malloc_bytes);
7791 createCXTUResourceUsageEntry(*entries,
7792 CXTUResourceUsage_ExternalASTSource_Membuffer_MMap,
7793 (unsigned long) sizes.mmap_bytes);
7794 }
7795
7796 // How much memory is being used by the Preprocessor?
7797 Preprocessor &pp = astUnit->getPreprocessor();
7798 createCXTUResourceUsageEntry(*entries,
7799 CXTUResourceUsage_Preprocessor,
7800 pp.getTotalMemory());
7801
7802 if (PreprocessingRecord *pRec = pp.getPreprocessingRecord()) {
7803 createCXTUResourceUsageEntry(*entries,
7804 CXTUResourceUsage_PreprocessingRecord,
7805 pRec->getTotalMemory());
7806 }
7807
7808 createCXTUResourceUsageEntry(*entries,
7809 CXTUResourceUsage_Preprocessor_HeaderSearch,
7810 pp.getHeaderSearchInfo().getTotalMemory());
Craig Topper69186e72014-06-08 08:38:04 +00007811
Guy Benyei11169dd2012-12-18 14:30:41 +00007812 CXTUResourceUsage usage = { (void*) entries.get(),
7813 (unsigned) entries->size(),
Alexander Kornienko6ee521c2015-01-23 15:36:10 +00007814 !entries->empty() ? &(*entries)[0] : nullptr };
Eric Fiseliere95fc442016-11-14 07:03:50 +00007815 (void)entries.release();
Guy Benyei11169dd2012-12-18 14:30:41 +00007816 return usage;
7817}
7818
7819void clang_disposeCXTUResourceUsage(CXTUResourceUsage usage) {
7820 if (usage.data)
7821 delete (MemUsageEntries*) usage.data;
7822}
7823
Argyrios Kyrtzidis0e282ef2013-12-06 18:55:45 +00007824CXSourceRangeList *clang_getSkippedRanges(CXTranslationUnit TU, CXFile file) {
7825 CXSourceRangeList *skipped = new CXSourceRangeList;
Argyrios Kyrtzidis9ef57752013-12-05 08:19:32 +00007826 skipped->count = 0;
Craig Topper69186e72014-06-08 08:38:04 +00007827 skipped->ranges = nullptr;
Argyrios Kyrtzidis9ef57752013-12-05 08:19:32 +00007828
Dmitri Gribenko852d6222014-02-11 15:02:48 +00007829 if (isNotUsableTU(TU)) {
Dmitri Gribenko256454f2014-02-11 14:34:14 +00007830 LOG_BAD_TU(TU);
7831 return skipped;
7832 }
7833
Argyrios Kyrtzidis9ef57752013-12-05 08:19:32 +00007834 if (!file)
7835 return skipped;
7836
7837 ASTUnit *astUnit = cxtu::getASTUnit(TU);
7838 PreprocessingRecord *ppRec = astUnit->getPreprocessor().getPreprocessingRecord();
7839 if (!ppRec)
7840 return skipped;
7841
7842 ASTContext &Ctx = astUnit->getASTContext();
7843 SourceManager &sm = Ctx.getSourceManager();
7844 FileEntry *fileEntry = static_cast<FileEntry *>(file);
7845 FileID wantedFileID = sm.translateFile(fileEntry);
7846
7847 const std::vector<SourceRange> &SkippedRanges = ppRec->getSkippedRanges();
7848 std::vector<SourceRange> wantedRanges;
7849 for (std::vector<SourceRange>::const_iterator i = SkippedRanges.begin(), ei = SkippedRanges.end();
7850 i != ei; ++i) {
7851 if (sm.getFileID(i->getBegin()) == wantedFileID || sm.getFileID(i->getEnd()) == wantedFileID)
7852 wantedRanges.push_back(*i);
7853 }
7854
7855 skipped->count = wantedRanges.size();
7856 skipped->ranges = new CXSourceRange[skipped->count];
7857 for (unsigned i = 0, ei = skipped->count; i != ei; ++i)
7858 skipped->ranges[i] = cxloc::translateSourceRange(Ctx, wantedRanges[i]);
7859
7860 return skipped;
7861}
7862
Cameron Desrochersd8091282016-08-18 15:43:55 +00007863CXSourceRangeList *clang_getAllSkippedRanges(CXTranslationUnit TU) {
7864 CXSourceRangeList *skipped = new CXSourceRangeList;
7865 skipped->count = 0;
7866 skipped->ranges = nullptr;
7867
7868 if (isNotUsableTU(TU)) {
7869 LOG_BAD_TU(TU);
7870 return skipped;
7871 }
7872
7873 ASTUnit *astUnit = cxtu::getASTUnit(TU);
7874 PreprocessingRecord *ppRec = astUnit->getPreprocessor().getPreprocessingRecord();
7875 if (!ppRec)
7876 return skipped;
7877
7878 ASTContext &Ctx = astUnit->getASTContext();
7879
7880 const std::vector<SourceRange> &SkippedRanges = ppRec->getSkippedRanges();
7881
7882 skipped->count = SkippedRanges.size();
7883 skipped->ranges = new CXSourceRange[skipped->count];
7884 for (unsigned i = 0, ei = skipped->count; i != ei; ++i)
7885 skipped->ranges[i] = cxloc::translateSourceRange(Ctx, SkippedRanges[i]);
7886
7887 return skipped;
7888}
7889
Argyrios Kyrtzidis0e282ef2013-12-06 18:55:45 +00007890void clang_disposeSourceRangeList(CXSourceRangeList *ranges) {
7891 if (ranges) {
7892 delete[] ranges->ranges;
7893 delete ranges;
Argyrios Kyrtzidis9ef57752013-12-05 08:19:32 +00007894 }
7895}
7896
Guy Benyei11169dd2012-12-18 14:30:41 +00007897} // end extern "C"
7898
7899void clang::PrintLibclangResourceUsage(CXTranslationUnit TU) {
7900 CXTUResourceUsage Usage = clang_getCXTUResourceUsage(TU);
7901 for (unsigned I = 0; I != Usage.numEntries; ++I)
7902 fprintf(stderr, " %s: %lu\n",
7903 clang_getTUResourceUsageName(Usage.entries[I].kind),
7904 Usage.entries[I].amount);
7905
7906 clang_disposeCXTUResourceUsage(Usage);
7907}
7908
7909//===----------------------------------------------------------------------===//
7910// Misc. utility functions.
7911//===----------------------------------------------------------------------===//
7912
7913/// Default to using an 8 MB stack size on "safety" threads.
7914static unsigned SafetyStackThreadSize = 8 << 20;
7915
7916namespace clang {
7917
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00007918bool RunSafely(llvm::CrashRecoveryContext &CRC, llvm::function_ref<void()> Fn,
Guy Benyei11169dd2012-12-18 14:30:41 +00007919 unsigned Size) {
7920 if (!Size)
7921 Size = GetSafetyThreadStackSize();
7922 if (Size)
Benjamin Kramer11a9cd92015-07-25 20:55:44 +00007923 return CRC.RunSafelyOnThread(Fn, Size);
7924 return CRC.RunSafely(Fn);
Guy Benyei11169dd2012-12-18 14:30:41 +00007925}
7926
7927unsigned GetSafetyThreadStackSize() {
7928 return SafetyStackThreadSize;
7929}
7930
7931void SetSafetyThreadStackSize(unsigned Value) {
7932 SafetyStackThreadSize = Value;
7933}
7934
Alexander Kornienkoab9db512015-06-22 23:07:51 +00007935}
Guy Benyei11169dd2012-12-18 14:30:41 +00007936
7937void clang::setThreadBackgroundPriority() {
7938 if (getenv("LIBCLANG_BGPRIO_DISABLE"))
7939 return;
7940
Alp Toker1a86ad22014-07-06 06:24:00 +00007941#ifdef USE_DARWIN_THREADS
Guy Benyei11169dd2012-12-18 14:30:41 +00007942 setpriority(PRIO_DARWIN_THREAD, 0, PRIO_DARWIN_BG);
7943#endif
7944}
7945
7946void cxindex::printDiagsToStderr(ASTUnit *Unit) {
7947 if (!Unit)
7948 return;
7949
7950 for (ASTUnit::stored_diag_iterator D = Unit->stored_diag_begin(),
7951 DEnd = Unit->stored_diag_end();
7952 D != DEnd; ++D) {
Ben Langmuir749323f2014-04-22 17:40:12 +00007953 CXStoredDiagnostic Diag(*D, Unit->getLangOpts());
Guy Benyei11169dd2012-12-18 14:30:41 +00007954 CXString Msg = clang_formatDiagnostic(&Diag,
7955 clang_defaultDiagnosticDisplayOptions());
7956 fprintf(stderr, "%s\n", clang_getCString(Msg));
7957 clang_disposeString(Msg);
7958 }
7959#ifdef LLVM_ON_WIN32
7960 // On Windows, force a flush, since there may be multiple copies of
7961 // stderr and stdout in the file system, all with different buffers
7962 // but writing to the same device.
7963 fflush(stderr);
7964#endif
7965}
7966
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00007967MacroInfo *cxindex::getMacroInfo(const IdentifierInfo &II,
7968 SourceLocation MacroDefLoc,
7969 CXTranslationUnit TU){
7970 if (MacroDefLoc.isInvalid() || !TU)
Craig Topper69186e72014-06-08 08:38:04 +00007971 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00007972 if (!II.hadMacroDefinition())
Craig Topper69186e72014-06-08 08:38:04 +00007973 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00007974
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00007975 ASTUnit *Unit = cxtu::getASTUnit(TU);
Argyrios Kyrtzidis2d77aeb2013-01-07 19:16:30 +00007976 Preprocessor &PP = Unit->getPreprocessor();
Richard Smith20e883e2015-04-29 23:20:19 +00007977 MacroDirective *MD = PP.getLocalMacroDirectiveHistory(&II);
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00007978 if (MD) {
7979 for (MacroDirective::DefInfo
7980 Def = MD->getDefinition(); Def; Def = Def.getPreviousDefinition()) {
7981 if (MacroDefLoc == Def.getMacroInfo()->getDefinitionLoc())
7982 return Def.getMacroInfo();
7983 }
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00007984 }
7985
Craig Topper69186e72014-06-08 08:38:04 +00007986 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00007987}
7988
Richard Smith66a81862015-05-04 02:25:31 +00007989const MacroInfo *cxindex::getMacroInfo(const MacroDefinitionRecord *MacroDef,
Dmitri Gribenkoba2f7462013-01-11 21:01:49 +00007990 CXTranslationUnit TU) {
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00007991 if (!MacroDef || !TU)
Craig Topper69186e72014-06-08 08:38:04 +00007992 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00007993 const IdentifierInfo *II = MacroDef->getName();
7994 if (!II)
Craig Topper69186e72014-06-08 08:38:04 +00007995 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00007996
7997 return getMacroInfo(*II, MacroDef->getLocation(), TU);
7998}
7999
Richard Smith66a81862015-05-04 02:25:31 +00008000MacroDefinitionRecord *
8001cxindex::checkForMacroInMacroDefinition(const MacroInfo *MI, const Token &Tok,
8002 CXTranslationUnit TU) {
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008003 if (!MI || !TU)
Craig Topper69186e72014-06-08 08:38:04 +00008004 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008005 if (Tok.isNot(tok::raw_identifier))
Craig Topper69186e72014-06-08 08:38:04 +00008006 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008007
8008 if (MI->getNumTokens() == 0)
Craig Topper69186e72014-06-08 08:38:04 +00008009 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008010 SourceRange DefRange(MI->getReplacementToken(0).getLocation(),
8011 MI->getDefinitionEndLoc());
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00008012 ASTUnit *Unit = cxtu::getASTUnit(TU);
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008013
8014 // Check that the token is inside the definition and not its argument list.
8015 SourceManager &SM = Unit->getSourceManager();
8016 if (SM.isBeforeInTranslationUnit(Tok.getLocation(), DefRange.getBegin()))
Craig Topper69186e72014-06-08 08:38:04 +00008017 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008018 if (SM.isBeforeInTranslationUnit(DefRange.getEnd(), Tok.getLocation()))
Craig Topper69186e72014-06-08 08:38:04 +00008019 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008020
8021 Preprocessor &PP = Unit->getPreprocessor();
8022 PreprocessingRecord *PPRec = PP.getPreprocessingRecord();
8023 if (!PPRec)
Craig Topper69186e72014-06-08 08:38:04 +00008024 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008025
Alp Toker2d57cea2014-05-17 04:53:25 +00008026 IdentifierInfo &II = PP.getIdentifierTable().get(Tok.getRawIdentifier());
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008027 if (!II.hadMacroDefinition())
Craig Topper69186e72014-06-08 08:38:04 +00008028 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008029
8030 // Check that the identifier is not one of the macro arguments.
8031 if (std::find(MI->arg_begin(), MI->arg_end(), &II) != MI->arg_end())
Craig Topper69186e72014-06-08 08:38:04 +00008032 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008033
Richard Smith20e883e2015-04-29 23:20:19 +00008034 MacroDirective *InnerMD = PP.getLocalMacroDirectiveHistory(&II);
Argyrios Kyrtzidis09c9e812013-02-20 00:54:57 +00008035 if (!InnerMD)
Craig Topper69186e72014-06-08 08:38:04 +00008036 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008037
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00008038 return PPRec->findMacroDefinition(InnerMD->getMacroInfo());
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008039}
8040
Richard Smith66a81862015-05-04 02:25:31 +00008041MacroDefinitionRecord *
8042cxindex::checkForMacroInMacroDefinition(const MacroInfo *MI, SourceLocation Loc,
8043 CXTranslationUnit TU) {
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008044 if (Loc.isInvalid() || !MI || !TU)
Craig Topper69186e72014-06-08 08:38:04 +00008045 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008046
8047 if (MI->getNumTokens() == 0)
Craig Topper69186e72014-06-08 08:38:04 +00008048 return nullptr;
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00008049 ASTUnit *Unit = cxtu::getASTUnit(TU);
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008050 Preprocessor &PP = Unit->getPreprocessor();
8051 if (!PP.getPreprocessingRecord())
Craig Topper69186e72014-06-08 08:38:04 +00008052 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008053 Loc = Unit->getSourceManager().getSpellingLoc(Loc);
8054 Token Tok;
8055 if (PP.getRawToken(Loc, Tok))
Craig Topper69186e72014-06-08 08:38:04 +00008056 return nullptr;
Argyrios Kyrtzidis579825a2013-01-07 19:16:25 +00008057
8058 return checkForMacroInMacroDefinition(MI, Tok, TU);
8059}
8060
Guy Benyei11169dd2012-12-18 14:30:41 +00008061extern "C" {
8062
8063CXString clang_getClangVersion() {
Dmitri Gribenko2f23e9c2013-02-02 02:19:29 +00008064 return cxstring::createDup(getClangFullVersion());
Guy Benyei11169dd2012-12-18 14:30:41 +00008065}
8066
8067} // end: extern "C"
8068
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008069Logger &cxindex::Logger::operator<<(CXTranslationUnit TU) {
8070 if (TU) {
Dmitri Gribenkoc22ea1c2013-01-26 18:53:38 +00008071 if (ASTUnit *Unit = cxtu::getASTUnit(TU)) {
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008072 LogOS << '<' << Unit->getMainFileName() << '>';
Argyrios Kyrtzidis37f2ab42013-03-05 20:21:14 +00008073 if (Unit->isMainFileAST())
8074 LogOS << " (" << Unit->getASTFileName() << ')';
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008075 return *this;
8076 }
Dmitri Gribenkoea4d1c32014-02-12 19:12:37 +00008077 } else {
8078 LogOS << "<NULL TU>";
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008079 }
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008080 return *this;
8081}
8082
Argyrios Kyrtzidisba4b5f82013-03-08 02:32:26 +00008083Logger &cxindex::Logger::operator<<(const FileEntry *FE) {
8084 *this << FE->getName();
8085 return *this;
8086}
8087
8088Logger &cxindex::Logger::operator<<(CXCursor cursor) {
8089 CXString cursorName = clang_getCursorDisplayName(cursor);
8090 *this << cursorName << "@" << clang_getCursorLocation(cursor);
8091 clang_disposeString(cursorName);
8092 return *this;
8093}
8094
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008095Logger &cxindex::Logger::operator<<(CXSourceLocation Loc) {
8096 CXFile File;
8097 unsigned Line, Column;
Craig Topper69186e72014-06-08 08:38:04 +00008098 clang_getFileLocation(Loc, &File, &Line, &Column, nullptr);
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008099 CXString FileName = clang_getFileName(File);
8100 *this << llvm::format("(%s:%d:%d)", clang_getCString(FileName), Line, Column);
8101 clang_disposeString(FileName);
8102 return *this;
8103}
8104
8105Logger &cxindex::Logger::operator<<(CXSourceRange range) {
8106 CXSourceLocation BLoc = clang_getRangeStart(range);
8107 CXSourceLocation ELoc = clang_getRangeEnd(range);
8108
8109 CXFile BFile;
8110 unsigned BLine, BColumn;
Craig Topper69186e72014-06-08 08:38:04 +00008111 clang_getFileLocation(BLoc, &BFile, &BLine, &BColumn, nullptr);
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008112
8113 CXFile EFile;
8114 unsigned ELine, EColumn;
Craig Topper69186e72014-06-08 08:38:04 +00008115 clang_getFileLocation(ELoc, &EFile, &ELine, &EColumn, nullptr);
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008116
8117 CXString BFileName = clang_getFileName(BFile);
8118 if (BFile == EFile) {
8119 *this << llvm::format("[%s %d:%d-%d:%d]", clang_getCString(BFileName),
8120 BLine, BColumn, ELine, EColumn);
8121 } else {
8122 CXString EFileName = clang_getFileName(EFile);
8123 *this << llvm::format("[%s:%d:%d - ", clang_getCString(BFileName),
8124 BLine, BColumn)
8125 << llvm::format("%s:%d:%d]", clang_getCString(EFileName),
8126 ELine, EColumn);
8127 clang_disposeString(EFileName);
8128 }
8129 clang_disposeString(BFileName);
8130 return *this;
8131}
8132
8133Logger &cxindex::Logger::operator<<(CXString Str) {
8134 *this << clang_getCString(Str);
8135 return *this;
8136}
8137
8138Logger &cxindex::Logger::operator<<(const llvm::format_object_base &Fmt) {
8139 LogOS << Fmt;
8140 return *this;
8141}
8142
Chandler Carruth37ad2582014-06-27 15:14:39 +00008143static llvm::ManagedStatic<llvm::sys::Mutex> LoggingMutex;
8144
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008145cxindex::Logger::~Logger() {
Chandler Carruth37ad2582014-06-27 15:14:39 +00008146 llvm::sys::ScopedLock L(*LoggingMutex);
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008147
8148 static llvm::TimeRecord sBeginTR = llvm::TimeRecord::getCurrentTime();
8149
Dmitri Gribenkof8579502013-01-12 19:30:44 +00008150 raw_ostream &OS = llvm::errs();
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008151 OS << "[libclang:" << Name << ':';
8152
Alp Toker1a86ad22014-07-06 06:24:00 +00008153#ifdef USE_DARWIN_THREADS
8154 // TODO: Portability.
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008155 mach_port_t tid = pthread_mach_thread_np(pthread_self());
8156 OS << tid << ':';
8157#endif
8158
8159 llvm::TimeRecord TR = llvm::TimeRecord::getCurrentTime();
8160 OS << llvm::format("%7.4f] ", TR.getWallTime() - sBeginTR.getWallTime());
Yaron Keren09fb7c62015-03-10 07:33:23 +00008161 OS << Msg << '\n';
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008162
8163 if (Trace) {
Zachary Turner1fe2a8d2015-03-05 19:15:09 +00008164 llvm::sys::PrintStackTrace(OS);
Argyrios Kyrtzidisea474352013-01-10 18:54:52 +00008165 OS << "--------------------------------------------------\n";
8166 }
8167}
Benjamin Kramerc1ffdab2016-03-03 08:58:18 +00008168
8169#ifdef CLANG_TOOL_EXTRA_BUILD
8170// This anchor is used to force the linker to link the clang-tidy plugin.
8171extern volatile int ClangTidyPluginAnchorSource;
8172static int LLVM_ATTRIBUTE_UNUSED ClangTidyPluginAnchorDestination =
8173 ClangTidyPluginAnchorSource;
Benjamin Kramer9eba7352016-11-17 15:22:36 +00008174
8175// This anchor is used to force the linker to link the clang-include-fixer
8176// plugin.
8177extern volatile int ClangIncludeFixerPluginAnchorSource;
8178static int LLVM_ATTRIBUTE_UNUSED ClangIncludeFixerPluginAnchorDestination =
8179 ClangIncludeFixerPluginAnchorSource;
Benjamin Kramerc1ffdab2016-03-03 08:58:18 +00008180#endif