blob: 53c7634d46e9471e11ae16a357b755b6775a61e4 [file] [log] [blame]
Ted Kremenekd2fa5662009-08-26 22:36:44 +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.
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00007//
Ted Kremenekd2fa5662009-08-26 22:36:44 +00008//===----------------------------------------------------------------------===//
9//
Ted Kremenekab188932010-01-05 19:32:54 +000010// This file implements the main API hooks in the Clang-C Source Indexing
11// library.
Ted Kremenekd2fa5662009-08-26 22:36:44 +000012//
13//===----------------------------------------------------------------------===//
14
Ted Kremenekab188932010-01-05 19:32:54 +000015#include "CIndexer.h"
Ted Kremenek16c440a2010-01-15 20:35:54 +000016#include "CXCursor.h"
Ted Kremenek0a90d322010-11-17 23:24:11 +000017#include "CXTranslationUnit.h"
Ted Kremeneked122732010-11-16 01:56:27 +000018#include "CXString.h"
Ted Kremenek95f33552010-08-26 01:42:22 +000019#include "CXType.h"
Ted Kremeneka297de22010-01-25 22:34:44 +000020#include "CXSourceLocation.h"
Douglas Gregor5352ac02010-01-28 00:27:43 +000021#include "CIndexDiagnostic.h"
Argyrios Kyrtzidise397bf12011-11-03 19:02:34 +000022#include "CursorVisitor.h"
Ted Kremenekab188932010-01-05 19:32:54 +000023
Ted Kremenek04bb7162010-01-22 22:44:15 +000024#include "clang/Basic/Version.h"
Douglas Gregor936ea3b2010-01-28 00:56:43 +000025
Steve Narofffb570422009-09-22 19:25:29 +000026#include "clang/AST/StmtVisitor.h"
Benjamin Kramerb846deb2010-04-12 19:45:50 +000027#include "clang/Basic/Diagnostic.h"
28#include "clang/Frontend/ASTUnit.h"
29#include "clang/Frontend/CompilerInstance.h"
Douglas Gregor936ea3b2010-01-28 00:56:43 +000030#include "clang/Frontend/FrontendDiagnostic.h"
Ted Kremenekd8210652010-01-06 23:43:31 +000031#include "clang/Lex/Lexer.h"
Douglas Gregordd3e5542011-05-04 00:14:37 +000032#include "clang/Lex/HeaderSearch.h"
Benjamin Kramerb846deb2010-04-12 19:45:50 +000033#include "clang/Lex/PreprocessingRecord.h"
Douglas Gregor33e9abd2010-01-22 19:49:59 +000034#include "clang/Lex/Preprocessor.h"
Douglas Gregora67e03f2010-09-09 21:42:20 +000035#include "llvm/ADT/STLExtras.h"
Ted Kremenekd8c370c2010-11-02 23:10:24 +000036#include "llvm/ADT/Optional.h"
Douglas Gregorf5251602011-03-08 17:10:18 +000037#include "llvm/ADT/StringSwitch.h"
Ted Kremenekd8c370c2010-11-02 23:10:24 +000038#include "clang/Analysis/Support/SaveAndRestore.h"
Daniel Dunbarc7df4f32010-08-18 18:43:14 +000039#include "llvm/Support/CrashRecoveryContext.h"
Daniel Dunbar48615ff2010-10-08 19:30:33 +000040#include "llvm/Support/PrettyStackTrace.h"
Douglas Gregor02465752009-10-16 21:24:31 +000041#include "llvm/Support/MemoryBuffer.h"
Douglas Gregor358559d2010-10-02 22:49:11 +000042#include "llvm/Support/raw_ostream.h"
Douglas Gregor7a07fcb2010-08-09 21:00:09 +000043#include "llvm/Support/Timer.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000044#include "llvm/Support/Mutex.h"
45#include "llvm/Support/Program.h"
46#include "llvm/Support/Signals.h"
47#include "llvm/Support/Threading.h"
Ted Kremenek37f1ea02010-11-15 23:11:54 +000048#include "llvm/Support/Compiler.h"
Ted Kremenekfc062212009-10-19 21:44:57 +000049
Steve Naroff50398192009-08-28 15:28:48 +000050using namespace clang;
Ted Kremenek16c440a2010-01-15 20:35:54 +000051using namespace clang::cxcursor;
Ted Kremenekee4db4f2010-02-17 00:41:08 +000052using namespace clang::cxstring;
Argyrios Kyrtzidis9049cf62011-10-12 07:07:33 +000053using namespace clang::cxtu;
Steve Naroff50398192009-08-28 15:28:48 +000054
Argyrios Kyrtzidis9049cf62011-10-12 07:07:33 +000055CXTranslationUnit cxtu::MakeCXTranslationUnit(ASTUnit *TU) {
Ted Kremeneka60ed472010-11-16 08:15:36 +000056 if (!TU)
57 return 0;
58 CXTranslationUnit D = new CXTranslationUnitImpl();
59 D->TUData = TU;
60 D->StringPool = createCXStringPool();
Ted Kremenek15322172011-11-10 08:43:12 +000061 D->Diagnostics = 0;
Ted Kremeneka60ed472010-11-16 08:15:36 +000062 return D;
63}
64
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +000065cxtu::CXTUOwner::~CXTUOwner() {
66 if (TU)
67 clang_disposeTranslationUnit(TU);
68}
69
Ted Kremenekf0e23e82010-02-17 00:41:40 +000070/// \brief Compare two source ranges to determine their relative position in
Douglas Gregor33e9abd2010-01-22 19:49:59 +000071/// the translation unit.
Ted Kremenekf0e23e82010-02-17 00:41:40 +000072static RangeComparisonResult RangeCompare(SourceManager &SM,
73 SourceRange R1,
Douglas Gregor33e9abd2010-01-22 19:49:59 +000074 SourceRange R2) {
75 assert(R1.isValid() && "First range is invalid?");
76 assert(R2.isValid() && "Second range is invalid?");
Douglas Gregora8e5c5b2010-07-22 20:22:31 +000077 if (R1.getEnd() != R2.getBegin() &&
Daniel Dunbard52864b2010-02-14 10:02:57 +000078 SM.isBeforeInTranslationUnit(R1.getEnd(), R2.getBegin()))
Douglas Gregor33e9abd2010-01-22 19:49:59 +000079 return RangeBefore;
Douglas Gregora8e5c5b2010-07-22 20:22:31 +000080 if (R2.getEnd() != R1.getBegin() &&
Daniel Dunbard52864b2010-02-14 10:02:57 +000081 SM.isBeforeInTranslationUnit(R2.getEnd(), R1.getBegin()))
Douglas Gregor33e9abd2010-01-22 19:49:59 +000082 return RangeAfter;
83 return RangeOverlap;
84}
85
Ted Kremenekfbd84ca2010-05-05 00:55:23 +000086/// \brief Determine if a source location falls within, before, or after a
87/// a given source range.
88static RangeComparisonResult LocationCompare(SourceManager &SM,
89 SourceLocation L, SourceRange R) {
90 assert(R.isValid() && "First range is invalid?");
91 assert(L.isValid() && "Second range is invalid?");
Douglas Gregora8e5c5b2010-07-22 20:22:31 +000092 if (L == R.getBegin() || L == R.getEnd())
Ted Kremenekfbd84ca2010-05-05 00:55:23 +000093 return RangeOverlap;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +000094 if (SM.isBeforeInTranslationUnit(L, R.getBegin()))
95 return RangeBefore;
96 if (SM.isBeforeInTranslationUnit(R.getEnd(), L))
97 return RangeAfter;
98 return RangeOverlap;
99}
100
Daniel Dunbar76dd3c22010-02-14 01:47:29 +0000101/// \brief Translate a Clang source range into a CIndex source range.
102///
103/// Clang internally represents ranges where the end location points to the
104/// start of the token at the end. However, for external clients it is more
105/// useful to have a CXSourceRange be a proper half-open interval. This routine
106/// does the appropriate translation.
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000107CXSourceRange cxloc::translateSourceRange(const SourceManager &SM,
Daniel Dunbar76dd3c22010-02-14 01:47:29 +0000108 const LangOptions &LangOpts,
Chris Lattner0a76aae2010-06-18 22:45:06 +0000109 const CharSourceRange &R) {
Daniel Dunbar76dd3c22010-02-14 01:47:29 +0000110 // We want the last character in this location, so we will adjust the
Douglas Gregor6a5a23f2010-03-19 21:51:54 +0000111 // location accordingly.
Daniel Dunbar76dd3c22010-02-14 01:47:29 +0000112 SourceLocation EndLoc = R.getEnd();
Douglas Gregora9b06d42010-11-09 06:24:54 +0000113 if (EndLoc.isValid() && EndLoc.isMacroID())
Chandler Carruthedc3dcc2011-07-25 16:56:02 +0000114 EndLoc = SM.getExpansionRange(EndLoc).second;
Chris Lattner0a76aae2010-06-18 22:45:06 +0000115 if (R.isTokenRange() && !EndLoc.isInvalid() && EndLoc.isFileID()) {
Douglas Gregor6a5a23f2010-03-19 21:51:54 +0000116 unsigned Length = Lexer::MeasureTokenLength(EndLoc, SM, LangOpts);
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +0000117 EndLoc = EndLoc.getLocWithOffset(Length);
Daniel Dunbar76dd3c22010-02-14 01:47:29 +0000118 }
119
120 CXSourceRange Result = { { (void *)&SM, (void *)&LangOpts },
121 R.getBegin().getRawEncoding(),
122 EndLoc.getRawEncoding() };
123 return Result;
124}
Douglas Gregor1db19de2010-01-19 21:36:55 +0000125
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000126//===----------------------------------------------------------------------===//
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000127// Cursor visitor.
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000128//===----------------------------------------------------------------------===//
129
Douglas Gregora8e5c5b2010-07-22 20:22:31 +0000130static SourceRange getRawCursorExtent(CXCursor C);
Douglas Gregor66537982010-11-17 17:14:07 +0000131static SourceRange getFullCursorExtent(CXCursor C, SourceManager &SrcMgr);
132
Douglas Gregora8e5c5b2010-07-22 20:22:31 +0000133
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000134RangeComparisonResult CursorVisitor::CompareRegionOfInterest(SourceRange R) {
Ted Kremeneka60ed472010-11-16 08:15:36 +0000135 return RangeCompare(AU->getSourceManager(), R, RegionOfInterest);
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000136}
137
Douglas Gregorb1373d02010-01-20 20:59:29 +0000138/// \brief Visit the given cursor and, if requested by the visitor,
139/// its children.
140///
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000141/// \param Cursor the cursor to visit.
142///
143/// \param CheckRegionOfInterest if true, then the caller already checked that
144/// this cursor is within the region of interest.
145///
Douglas Gregorb1373d02010-01-20 20:59:29 +0000146/// \returns true if the visitation should be aborted, false if it
147/// should continue.
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000148bool CursorVisitor::Visit(CXCursor Cursor, bool CheckedRegionOfInterest) {
Douglas Gregorb1373d02010-01-20 20:59:29 +0000149 if (clang_isInvalid(Cursor.kind))
150 return false;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000151
Douglas Gregorb1373d02010-01-20 20:59:29 +0000152 if (clang_isDeclaration(Cursor.kind)) {
153 Decl *D = getCursorDecl(Cursor);
Argyrios Kyrtzidis16ed0e62011-12-10 02:36:25 +0000154 if (!D) {
155 assert(0 && "Invalid declaration cursor");
156 return true; // abort.
157 }
158
Argyrios Kyrtzidis65ab9072011-09-26 19:05:37 +0000159 // Ignore implicit declarations, unless it's an objc method because
160 // currently we should report implicit methods for properties when indexing.
161 if (D->isImplicit() && !isa<ObjCMethodDecl>(D))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000162 return false;
163 }
164
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000165 // If we have a range of interest, and this cursor doesn't intersect with it,
166 // we're done.
167 if (RegionOfInterest.isValid() && !CheckedRegionOfInterest) {
Douglas Gregora8e5c5b2010-07-22 20:22:31 +0000168 SourceRange Range = getRawCursorExtent(Cursor);
Daniel Dunbarf408f322010-02-14 08:32:05 +0000169 if (Range.isInvalid() || CompareRegionOfInterest(Range))
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000170 return false;
171 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000172
Douglas Gregorb1373d02010-01-20 20:59:29 +0000173 switch (Visitor(Cursor, Parent, ClientData)) {
174 case CXChildVisit_Break:
175 return true;
176
177 case CXChildVisit_Continue:
178 return false;
179
180 case CXChildVisit_Recurse:
181 return VisitChildren(Cursor);
182 }
183
David Blaikie7530c032012-01-17 06:56:22 +0000184 llvm_unreachable("Invalid CXChildVisitResult!");
Douglas Gregorb1373d02010-01-20 20:59:29 +0000185}
186
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +0000187static bool visitPreprocessedEntitiesInRange(SourceRange R,
188 PreprocessingRecord &PPRec,
189 CursorVisitor &Visitor) {
190 SourceManager &SM = Visitor.getASTUnit()->getSourceManager();
191 FileID FID;
192
Argyrios Kyrtzidise7098462011-10-31 07:19:54 +0000193 if (!Visitor.shouldVisitIncludedEntities()) {
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +0000194 // If the begin/end of the range lie in the same FileID, do the optimization
195 // where we skip preprocessed entities that do not come from the same FileID.
Argyrios Kyrtzidisacca4112011-12-21 16:56:38 +0000196 FID = SM.getFileID(SM.getFileLoc(R.getBegin()));
197 if (FID != SM.getFileID(SM.getFileLoc(R.getEnd())))
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +0000198 FID = FileID();
199 }
200
201 std::pair<PreprocessingRecord::iterator, PreprocessingRecord::iterator>
202 Entities = PPRec.getPreprocessedEntitiesInRange(R);
203 return Visitor.visitPreprocessedEntities(Entities.first, Entities.second,
204 PPRec, FID);
205}
206
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +0000207void CursorVisitor::visitFileRegion() {
208 if (RegionOfInterest.isInvalid())
209 return;
210
211 ASTUnit *Unit = static_cast<ASTUnit *>(TU->TUData);
212 SourceManager &SM = Unit->getSourceManager();
213
214 std::pair<FileID, unsigned>
215 Begin = SM.getDecomposedLoc(SM.getFileLoc(RegionOfInterest.getBegin())),
216 End = SM.getDecomposedLoc(SM.getFileLoc(RegionOfInterest.getEnd()));
217
218 if (End.first != Begin.first) {
219 // If the end does not reside in the same file, try to recover by
220 // picking the end of the file of begin location.
221 End.first = Begin.first;
222 End.second = SM.getFileIDSize(Begin.first);
223 }
224
225 assert(Begin.first == End.first);
226 if (Begin.second > End.second)
227 return;
228
229 FileID File = Begin.first;
230 unsigned Offset = Begin.second;
231 unsigned Length = End.second - Begin.second;
232
Argyrios Kyrtzidisb49e7282011-11-29 03:14:11 +0000233 if (!VisitDeclsOnly && !VisitPreprocessorLast)
234 if (visitPreprocessedEntitiesInRegion())
235 return; // visitation break.
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +0000236
237 visitDeclsFromFileRegion(File, Offset, Length);
238
Argyrios Kyrtzidisb49e7282011-11-29 03:14:11 +0000239 if (!VisitDeclsOnly && VisitPreprocessorLast)
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +0000240 visitPreprocessedEntitiesInRegion();
241}
242
Argyrios Kyrtzidise2079cf2011-11-16 08:58:54 +0000243static bool isInLexicalContext(Decl *D, DeclContext *DC) {
244 if (!DC)
245 return false;
246
247 for (DeclContext *DeclDC = D->getLexicalDeclContext();
248 DeclDC; DeclDC = DeclDC->getLexicalParent()) {
249 if (DeclDC == DC)
250 return true;
251 }
252 return false;
253}
254
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +0000255void CursorVisitor::visitDeclsFromFileRegion(FileID File,
256 unsigned Offset, unsigned Length) {
257 ASTUnit *Unit = static_cast<ASTUnit *>(TU->TUData);
258 SourceManager &SM = Unit->getSourceManager();
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +0000259 SourceRange Range = RegionOfInterest;
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +0000260
261 SmallVector<Decl *, 16> Decls;
262 Unit->findFileRegionDecls(File, Offset, Length, Decls);
263
264 // If we didn't find any file level decls for the file, try looking at the
265 // file that it was included from.
Argyrios Kyrtzidisc14a03d2011-11-23 20:27:36 +0000266 while (Decls.empty() || Decls.front()->isTopLevelDeclInObjCContainer()) {
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +0000267 bool Invalid = false;
268 const SrcMgr::SLocEntry &SLEntry = SM.getSLocEntry(File, &Invalid);
269 if (Invalid)
270 return;
271
272 SourceLocation Outer;
273 if (SLEntry.isFile())
274 Outer = SLEntry.getFile().getIncludeLoc();
275 else
276 Outer = SLEntry.getExpansion().getExpansionLocStart();
277 if (Outer.isInvalid())
278 return;
279
280 llvm::tie(File, Offset) = SM.getDecomposedExpansionLoc(Outer);
281 Length = 0;
282 Unit->findFileRegionDecls(File, Offset, Length, Decls);
283 }
284
285 assert(!Decls.empty());
286
287 bool VisitedAtLeastOnce = false;
Argyrios Kyrtzidise2079cf2011-11-16 08:58:54 +0000288 DeclContext *CurDC = 0;
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +0000289 SmallVector<Decl *, 16>::iterator DIt = Decls.begin();
290 for (SmallVector<Decl *, 16>::iterator DE = Decls.end(); DIt != DE; ++DIt) {
291 Decl *D = *DIt;
Argyrios Kyrtzidised8bef42011-11-28 22:38:07 +0000292 if (D->getSourceRange().isInvalid())
293 continue;
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +0000294
Argyrios Kyrtzidise2079cf2011-11-16 08:58:54 +0000295 if (isInLexicalContext(D, CurDC))
296 continue;
297
298 CurDC = dyn_cast<DeclContext>(D);
299
Argyrios Kyrtzidise2079cf2011-11-16 08:58:54 +0000300 if (TagDecl *TD = dyn_cast<TagDecl>(D))
301 if (!TD->isFreeStanding())
302 continue;
303
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +0000304 RangeComparisonResult CompRes = RangeCompare(SM, D->getSourceRange(),Range);
305 if (CompRes == RangeBefore)
306 continue;
307 if (CompRes == RangeAfter)
308 break;
309
310 assert(CompRes == RangeOverlap);
311 VisitedAtLeastOnce = true;
Argyrios Kyrtzidis03ee2dd2011-11-16 08:58:57 +0000312
313 if (isa<ObjCContainerDecl>(D)) {
314 FileDI_current = &DIt;
315 FileDE_current = DE;
316 } else {
317 FileDI_current = 0;
318 }
319
Argyrios Kyrtzidisba986172011-11-03 19:02:28 +0000320 if (Visit(MakeCXCursor(D, TU, Range), /*CheckedRegionOfInterest=*/true))
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +0000321 break;
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +0000322 }
323
324 if (VisitedAtLeastOnce)
325 return;
326
327 // No Decls overlapped with the range. Move up the lexical context until there
328 // is a context that contains the range or we reach the translation unit
329 // level.
330 DeclContext *DC = DIt == Decls.begin() ? (*DIt)->getLexicalDeclContext()
331 : (*(DIt-1))->getLexicalDeclContext();
332
333 while (DC && !DC->isTranslationUnit()) {
334 Decl *D = cast<Decl>(DC);
335 SourceRange CurDeclRange = D->getSourceRange();
336 if (CurDeclRange.isInvalid())
337 break;
338
339 if (RangeCompare(SM, CurDeclRange, Range) == RangeOverlap) {
Argyrios Kyrtzidisba986172011-11-03 19:02:28 +0000340 Visit(MakeCXCursor(D, TU, Range), /*CheckedRegionOfInterest=*/true);
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +0000341 break;
342 }
343
344 DC = D->getLexicalDeclContext();
345 }
346}
347
Douglas Gregor4c30bb12011-07-21 00:47:40 +0000348bool CursorVisitor::visitPreprocessedEntitiesInRegion() {
Argyrios Kyrtzidisb49e7282011-11-29 03:14:11 +0000349 if (!AU->getPreprocessor().getPreprocessingRecord())
350 return false;
351
Douglas Gregor788f5a12010-03-20 00:41:21 +0000352 PreprocessingRecord &PPRec
Ted Kremeneka60ed472010-11-16 08:15:36 +0000353 = *AU->getPreprocessor().getPreprocessingRecord();
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +0000354 SourceManager &SM = AU->getSourceManager();
Douglas Gregor788f5a12010-03-20 00:41:21 +0000355
Argyrios Kyrtzidis92ddef12011-09-19 20:40:48 +0000356 if (RegionOfInterest.isValid()) {
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +0000357 SourceRange MappedRange = AU->mapRangeToPreamble(RegionOfInterest);
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +0000358 SourceLocation B = MappedRange.getBegin();
359 SourceLocation E = MappedRange.getEnd();
360
361 if (AU->isInPreambleFileID(B)) {
362 if (SM.isLoadedSourceLocation(E))
363 return visitPreprocessedEntitiesInRange(SourceRange(B, E),
364 PPRec, *this);
365
366 // Beginning of range lies in the preamble but it also extends beyond
367 // it into the main file. Split the range into 2 parts, one covering
368 // the preamble and another covering the main file. This allows subsequent
369 // calls to visitPreprocessedEntitiesInRange to accept a source range that
370 // lies in the same FileID, allowing it to skip preprocessed entities that
371 // do not come from the same FileID.
372 bool breaked =
373 visitPreprocessedEntitiesInRange(
374 SourceRange(B, AU->getEndOfPreambleFileID()),
375 PPRec, *this);
376 if (breaked) return true;
377 return visitPreprocessedEntitiesInRange(
378 SourceRange(AU->getStartOfMainFileID(), E),
379 PPRec, *this);
380 }
381
382 return visitPreprocessedEntitiesInRange(SourceRange(B, E), PPRec, *this);
Argyrios Kyrtzidis92ddef12011-09-19 20:40:48 +0000383 }
384
Douglas Gregor788f5a12010-03-20 00:41:21 +0000385 bool OnlyLocalDecls
Douglas Gregor32038bb2010-12-21 19:07:48 +0000386 = !AU->isMainFileAST() && AU->getOnlyLocalDecls();
387
Argyrios Kyrtzidis92ddef12011-09-19 20:40:48 +0000388 if (OnlyLocalDecls)
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +0000389 return visitPreprocessedEntities(PPRec.local_begin(), PPRec.local_end(),
390 PPRec);
Douglas Gregor4c30bb12011-07-21 00:47:40 +0000391
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +0000392 return visitPreprocessedEntities(PPRec.begin(), PPRec.end(), PPRec);
Douglas Gregor4c30bb12011-07-21 00:47:40 +0000393}
394
395template<typename InputIterator>
396bool CursorVisitor::visitPreprocessedEntities(InputIterator First,
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +0000397 InputIterator Last,
398 PreprocessingRecord &PPRec,
399 FileID FID) {
Douglas Gregor4c30bb12011-07-21 00:47:40 +0000400 for (; First != Last; ++First) {
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +0000401 if (!FID.isInvalid() && !PPRec.isEntityInFileID(First, FID))
402 continue;
403
404 PreprocessedEntity *PPE = *First;
405 if (MacroExpansion *ME = dyn_cast<MacroExpansion>(PPE)) {
Douglas Gregor4c30bb12011-07-21 00:47:40 +0000406 if (Visit(MakeMacroExpansionCursor(ME, TU)))
407 return true;
408
409 continue;
410 }
411
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +0000412 if (MacroDefinition *MD = dyn_cast<MacroDefinition>(PPE)) {
Douglas Gregor4c30bb12011-07-21 00:47:40 +0000413 if (Visit(MakeMacroDefinitionCursor(MD, TU)))
414 return true;
415
416 continue;
417 }
418
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +0000419 if (InclusionDirective *ID = dyn_cast<InclusionDirective>(PPE)) {
Douglas Gregor4c30bb12011-07-21 00:47:40 +0000420 if (Visit(MakeInclusionDirectiveCursor(ID, TU)))
421 return true;
422
423 continue;
Douglas Gregor788f5a12010-03-20 00:41:21 +0000424 }
425 }
426
Douglas Gregor4c30bb12011-07-21 00:47:40 +0000427 return false;
Douglas Gregor788f5a12010-03-20 00:41:21 +0000428}
429
Douglas Gregorb1373d02010-01-20 20:59:29 +0000430/// \brief Visit the children of the given cursor.
Ted Kremeneka60ed472010-11-16 08:15:36 +0000431///
Douglas Gregorb1373d02010-01-20 20:59:29 +0000432/// \returns true if the visitation should be aborted, false if it
433/// should continue.
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000434bool CursorVisitor::VisitChildren(CXCursor Cursor) {
Douglas Gregorc314aa42011-03-02 19:17:03 +0000435 if (clang_isReference(Cursor.kind) &&
436 Cursor.kind != CXCursor_CXXBaseSpecifier) {
Douglas Gregora59e3902010-01-21 23:27:09 +0000437 // By definition, references have no children.
438 return false;
439 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000440
441 // Set the Parent field to Cursor, then back to its old value once we're
Douglas Gregorb1373d02010-01-20 20:59:29 +0000442 // done.
Ted Kremenek0f91f6a2010-05-13 00:25:00 +0000443 SetParentRAII SetParent(Parent, StmtParent, Cursor);
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000444
Douglas Gregorb1373d02010-01-20 20:59:29 +0000445 if (clang_isDeclaration(Cursor.kind)) {
446 Decl *D = getCursorDecl(Cursor);
Douglas Gregor06d9b1a2011-04-14 21:41:34 +0000447 if (!D)
448 return false;
449
Ted Kremenek539311e2010-02-18 18:47:01 +0000450 return VisitAttributes(D) || Visit(D);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000451 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000452
Douglas Gregor06d9b1a2011-04-14 21:41:34 +0000453 if (clang_isStatement(Cursor.kind)) {
454 if (Stmt *S = getCursorStmt(Cursor))
455 return Visit(S);
456
457 return false;
458 }
459
460 if (clang_isExpression(Cursor.kind)) {
461 if (Expr *E = getCursorExpr(Cursor))
462 return Visit(E);
463
464 return false;
465 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000466
Douglas Gregorb1373d02010-01-20 20:59:29 +0000467 if (clang_isTranslationUnit(Cursor.kind)) {
Ted Kremeneka60ed472010-11-16 08:15:36 +0000468 CXTranslationUnit tu = getCursorTU(Cursor);
469 ASTUnit *CXXUnit = static_cast<ASTUnit*>(tu->TUData);
Douglas Gregor04a9eb32011-03-16 23:23:30 +0000470
471 int VisitOrder[2] = { VisitPreprocessorLast, !VisitPreprocessorLast };
472 for (unsigned I = 0; I != 2; ++I) {
473 if (VisitOrder[I]) {
474 if (!CXXUnit->isMainFileAST() && CXXUnit->getOnlyLocalDecls() &&
475 RegionOfInterest.isInvalid()) {
476 for (ASTUnit::top_level_iterator TL = CXXUnit->top_level_begin(),
477 TLEnd = CXXUnit->top_level_end();
478 TL != TLEnd; ++TL) {
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +0000479 if (Visit(MakeCXCursor(*TL, tu, RegionOfInterest), true))
Douglas Gregor04a9eb32011-03-16 23:23:30 +0000480 return true;
481 }
482 } else if (VisitDeclContext(
483 CXXUnit->getASTContext().getTranslationUnitDecl()))
Douglas Gregor7b691f332010-01-20 21:13:59 +0000484 return true;
Douglas Gregor04a9eb32011-03-16 23:23:30 +0000485 continue;
Douglas Gregor7b691f332010-01-20 21:13:59 +0000486 }
Bob Wilson3178cb62010-03-19 03:57:57 +0000487
Douglas Gregor04a9eb32011-03-16 23:23:30 +0000488 // Walk the preprocessing record.
Douglas Gregor4c30bb12011-07-21 00:47:40 +0000489 if (CXXUnit->getPreprocessor().getPreprocessingRecord())
490 visitPreprocessedEntitiesInRegion();
Douglas Gregor0396f462010-03-19 05:22:59 +0000491 }
Douglas Gregor04a9eb32011-03-16 23:23:30 +0000492
Douglas Gregor7b691f332010-01-20 21:13:59 +0000493 return false;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000494 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000495
Douglas Gregorc314aa42011-03-02 19:17:03 +0000496 if (Cursor.kind == CXCursor_CXXBaseSpecifier) {
497 if (CXXBaseSpecifier *Base = getCursorCXXBaseSpecifier(Cursor)) {
498 if (TypeSourceInfo *BaseTSInfo = Base->getTypeSourceInfo()) {
499 return Visit(BaseTSInfo->getTypeLoc());
500 }
501 }
502 }
Argyrios Kyrtzidis221d5a52011-09-13 18:49:56 +0000503
504 if (Cursor.kind == CXCursor_IBOutletCollectionAttr) {
505 IBOutletCollectionAttr *A =
506 cast<IBOutletCollectionAttr>(cxcursor::getCursorAttr(Cursor));
507 if (const ObjCInterfaceType *InterT = A->getInterface()->getAs<ObjCInterfaceType>())
508 return Visit(cxcursor::MakeCursorObjCClassRef(InterT->getInterface(),
509 A->getInterfaceLoc(), TU));
510 }
511
Douglas Gregorb1373d02010-01-20 20:59:29 +0000512 // Nothing to visit at the moment.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000513 return false;
514}
515
Ted Kremenek1ee6cad2010-04-11 21:47:37 +0000516bool CursorVisitor::VisitBlockDecl(BlockDecl *B) {
Douglas Gregor13c8ccb2011-04-22 23:49:24 +0000517 if (TypeSourceInfo *TSInfo = B->getSignatureAsWritten())
518 if (Visit(TSInfo->getTypeLoc()))
519 return true;
Ted Kremenek1ee6cad2010-04-11 21:47:37 +0000520
Ted Kremenek664cffd2010-07-22 11:30:19 +0000521 if (Stmt *Body = B->getBody())
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +0000522 return Visit(MakeCXCursor(Body, StmtParent, TU, RegionOfInterest));
Ted Kremenek664cffd2010-07-22 11:30:19 +0000523
524 return false;
Ted Kremenek1ee6cad2010-04-11 21:47:37 +0000525}
526
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000527llvm::Optional<bool> CursorVisitor::shouldVisitCursor(CXCursor Cursor) {
528 if (RegionOfInterest.isValid()) {
Douglas Gregor66537982010-11-17 17:14:07 +0000529 SourceRange Range = getFullCursorExtent(Cursor, AU->getSourceManager());
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000530 if (Range.isInvalid())
531 return llvm::Optional<bool>();
Douglas Gregor66537982010-11-17 17:14:07 +0000532
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000533 switch (CompareRegionOfInterest(Range)) {
534 case RangeBefore:
535 // This declaration comes before the region of interest; skip it.
536 return llvm::Optional<bool>();
537
538 case RangeAfter:
539 // This declaration comes after the region of interest; we're done.
540 return false;
541
542 case RangeOverlap:
543 // This declaration overlaps the region of interest; visit it.
544 break;
545 }
546 }
547 return true;
548}
549
550bool CursorVisitor::VisitDeclContext(DeclContext *DC) {
551 DeclContext::decl_iterator I = DC->decls_begin(), E = DC->decls_end();
552
553 // FIXME: Eventually remove. This part of a hack to support proper
554 // iteration over all Decls contained lexically within an ObjC container.
555 SaveAndRestore<DeclContext::decl_iterator*> DI_saved(DI_current, &I);
556 SaveAndRestore<DeclContext::decl_iterator> DE_saved(DE_current, E);
557
558 for ( ; I != E; ++I) {
Ted Kremenek23173d72010-05-18 21:09:07 +0000559 Decl *D = *I;
560 if (D->getLexicalDeclContext() != DC)
561 continue;
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +0000562 CXCursor Cursor = MakeCXCursor(D, TU, RegionOfInterest);
Argyrios Kyrtzidis1836db02012-02-04 01:04:58 +0000563
564 // FIXME: ObjCClassRef/ObjCProtocolRef for forward class/protocol
565 // declarations is a mismatch with the compiler semantics.
566 if (Cursor.kind == CXCursor_ObjCInterfaceDecl) {
567 ObjCInterfaceDecl *ID = cast<ObjCInterfaceDecl>(D);
568 if (!ID->isThisDeclarationADefinition())
569 Cursor = MakeCursorObjCClassRef(ID, ID->getLocation(), TU);
570
571 } else if (Cursor.kind == CXCursor_ObjCProtocolDecl) {
572 ObjCProtocolDecl *PD = cast<ObjCProtocolDecl>(D);
573 if (!PD->isThisDeclarationADefinition())
574 Cursor = MakeCursorObjCProtocolRef(PD, PD->getLocation(), TU);
575 }
576
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000577 const llvm::Optional<bool> &V = shouldVisitCursor(Cursor);
578 if (!V.hasValue())
579 continue;
580 if (!V.getValue())
581 return false;
Daniel Dunbard52864b2010-02-14 10:02:57 +0000582 if (Visit(Cursor, true))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000583 return true;
584 }
Douglas Gregorb1373d02010-01-20 20:59:29 +0000585 return false;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000586}
587
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000588bool CursorVisitor::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
589 llvm_unreachable("Translation units are visited directly by Visit()");
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000590}
591
Richard Smith162e1c12011-04-15 14:24:37 +0000592bool CursorVisitor::VisitTypeAliasDecl(TypeAliasDecl *D) {
593 if (TypeSourceInfo *TSInfo = D->getTypeSourceInfo())
594 return Visit(TSInfo->getTypeLoc());
595
596 return false;
597}
598
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000599bool CursorVisitor::VisitTypedefDecl(TypedefDecl *D) {
600 if (TypeSourceInfo *TSInfo = D->getTypeSourceInfo())
601 return Visit(TSInfo->getTypeLoc());
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000602
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000603 return false;
604}
605
606bool CursorVisitor::VisitTagDecl(TagDecl *D) {
607 return VisitDeclContext(D);
608}
609
Douglas Gregor0ab1e9f2010-09-01 17:32:36 +0000610bool CursorVisitor::VisitClassTemplateSpecializationDecl(
611 ClassTemplateSpecializationDecl *D) {
612 bool ShouldVisitBody = false;
613 switch (D->getSpecializationKind()) {
614 case TSK_Undeclared:
615 case TSK_ImplicitInstantiation:
616 // Nothing to visit
617 return false;
618
619 case TSK_ExplicitInstantiationDeclaration:
620 case TSK_ExplicitInstantiationDefinition:
621 break;
622
623 case TSK_ExplicitSpecialization:
624 ShouldVisitBody = true;
625 break;
626 }
627
628 // Visit the template arguments used in the specialization.
629 if (TypeSourceInfo *SpecType = D->getTypeAsWritten()) {
630 TypeLoc TL = SpecType->getTypeLoc();
631 if (TemplateSpecializationTypeLoc *TSTLoc
632 = dyn_cast<TemplateSpecializationTypeLoc>(&TL)) {
633 for (unsigned I = 0, N = TSTLoc->getNumArgs(); I != N; ++I)
634 if (VisitTemplateArgumentLoc(TSTLoc->getArgLoc(I)))
635 return true;
636 }
637 }
638
639 if (ShouldVisitBody && VisitCXXRecordDecl(D))
640 return true;
641
642 return false;
643}
644
Douglas Gregor74dbe642010-08-31 19:31:58 +0000645bool CursorVisitor::VisitClassTemplatePartialSpecializationDecl(
646 ClassTemplatePartialSpecializationDecl *D) {
647 // FIXME: Visit the "outer" template parameter lists on the TagDecl
648 // before visiting these template parameters.
649 if (VisitTemplateParameters(D->getTemplateParameters()))
650 return true;
651
652 // Visit the partial specialization arguments.
653 const TemplateArgumentLoc *TemplateArgs = D->getTemplateArgsAsWritten();
654 for (unsigned I = 0, N = D->getNumTemplateArgsAsWritten(); I != N; ++I)
655 if (VisitTemplateArgumentLoc(TemplateArgs[I]))
656 return true;
657
658 return VisitCXXRecordDecl(D);
659}
660
Douglas Gregorfe72e9c2010-08-31 17:01:39 +0000661bool CursorVisitor::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) {
Douglas Gregor84b51d72010-09-01 20:16:53 +0000662 // Visit the default argument.
663 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited())
664 if (TypeSourceInfo *DefArg = D->getDefaultArgumentInfo())
665 if (Visit(DefArg->getTypeLoc()))
666 return true;
667
Douglas Gregorfe72e9c2010-08-31 17:01:39 +0000668 return false;
669}
670
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000671bool CursorVisitor::VisitEnumConstantDecl(EnumConstantDecl *D) {
672 if (Expr *Init = D->getInitExpr())
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +0000673 return Visit(MakeCXCursor(Init, StmtParent, TU, RegionOfInterest));
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000674 return false;
675}
676
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000677bool CursorVisitor::VisitDeclaratorDecl(DeclaratorDecl *DD) {
678 if (TypeSourceInfo *TSInfo = DD->getTypeSourceInfo())
679 if (Visit(TSInfo->getTypeLoc()))
680 return true;
681
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000682 // Visit the nested-name-specifier, if present.
683 if (NestedNameSpecifierLoc QualifierLoc = DD->getQualifierLoc())
684 if (VisitNestedNameSpecifierLoc(QualifierLoc))
685 return true;
686
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000687 return false;
688}
689
Douglas Gregora67e03f2010-09-09 21:42:20 +0000690/// \brief Compare two base or member initializers based on their source order.
Sean Huntcbb67482011-01-08 20:30:50 +0000691static int CompareCXXCtorInitializers(const void* Xp, const void *Yp) {
692 CXXCtorInitializer const * const *X
693 = static_cast<CXXCtorInitializer const * const *>(Xp);
694 CXXCtorInitializer const * const *Y
695 = static_cast<CXXCtorInitializer const * const *>(Yp);
Douglas Gregora67e03f2010-09-09 21:42:20 +0000696
697 if ((*X)->getSourceOrder() < (*Y)->getSourceOrder())
698 return -1;
699 else if ((*X)->getSourceOrder() > (*Y)->getSourceOrder())
700 return 1;
701 else
702 return 0;
703}
704
Douglas Gregorb1373d02010-01-20 20:59:29 +0000705bool CursorVisitor::VisitFunctionDecl(FunctionDecl *ND) {
Douglas Gregor01829d32010-08-31 14:41:23 +0000706 if (TypeSourceInfo *TSInfo = ND->getTypeSourceInfo()) {
707 // Visit the function declaration's syntactic components in the order
708 // written. This requires a bit of work.
Abramo Bagnara723df242010-12-14 22:11:44 +0000709 TypeLoc TL = TSInfo->getTypeLoc().IgnoreParens();
Douglas Gregor01829d32010-08-31 14:41:23 +0000710 FunctionTypeLoc *FTL = dyn_cast<FunctionTypeLoc>(&TL);
711
712 // If we have a function declared directly (without the use of a typedef),
713 // visit just the return type. Otherwise, just visit the function's type
714 // now.
715 if ((FTL && !isa<CXXConversionDecl>(ND) && Visit(FTL->getResultLoc())) ||
716 (!FTL && Visit(TL)))
717 return true;
718
Douglas Gregorc5ade2e2010-09-02 17:35:32 +0000719 // Visit the nested-name-specifier, if present.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000720 if (NestedNameSpecifierLoc QualifierLoc = ND->getQualifierLoc())
721 if (VisitNestedNameSpecifierLoc(QualifierLoc))
Douglas Gregorc5ade2e2010-09-02 17:35:32 +0000722 return true;
Douglas Gregor01829d32010-08-31 14:41:23 +0000723
724 // Visit the declaration name.
725 if (VisitDeclarationNameInfo(ND->getNameInfo()))
726 return true;
727
728 // FIXME: Visit explicitly-specified template arguments!
729
730 // Visit the function parameters, if we have a function type.
731 if (FTL && VisitFunctionTypeLoc(*FTL, true))
732 return true;
733
734 // FIXME: Attributes?
735 }
736
Sean Hunt10620eb2011-05-06 20:44:56 +0000737 if (ND->doesThisDeclarationHaveABody() && !ND->isLateTemplateParsed()) {
Douglas Gregora67e03f2010-09-09 21:42:20 +0000738 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(ND)) {
739 // Find the initializers that were written in the source.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000740 SmallVector<CXXCtorInitializer *, 4> WrittenInits;
Douglas Gregora67e03f2010-09-09 21:42:20 +0000741 for (CXXConstructorDecl::init_iterator I = Constructor->init_begin(),
742 IEnd = Constructor->init_end();
743 I != IEnd; ++I) {
744 if (!(*I)->isWritten())
745 continue;
746
747 WrittenInits.push_back(*I);
748 }
749
750 // Sort the initializers in source order
751 llvm::array_pod_sort(WrittenInits.begin(), WrittenInits.end(),
Sean Huntcbb67482011-01-08 20:30:50 +0000752 &CompareCXXCtorInitializers);
Douglas Gregora67e03f2010-09-09 21:42:20 +0000753
754 // Visit the initializers in source order
755 for (unsigned I = 0, N = WrittenInits.size(); I != N; ++I) {
Sean Huntcbb67482011-01-08 20:30:50 +0000756 CXXCtorInitializer *Init = WrittenInits[I];
Francois Pichet00eb3f92010-12-04 09:14:42 +0000757 if (Init->isAnyMemberInitializer()) {
758 if (Visit(MakeCursorMemberRef(Init->getAnyMember(),
Douglas Gregora67e03f2010-09-09 21:42:20 +0000759 Init->getMemberLocation(), TU)))
760 return true;
Douglas Gregor76852c22011-11-01 01:16:03 +0000761 } else if (TypeSourceInfo *TInfo = Init->getTypeSourceInfo()) {
762 if (Visit(TInfo->getTypeLoc()))
Douglas Gregora67e03f2010-09-09 21:42:20 +0000763 return true;
764 }
765
766 // Visit the initializer value.
767 if (Expr *Initializer = Init->getInit())
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +0000768 if (Visit(MakeCXCursor(Initializer, ND, TU, RegionOfInterest)))
Douglas Gregora67e03f2010-09-09 21:42:20 +0000769 return true;
770 }
771 }
772
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +0000773 if (Visit(MakeCXCursor(ND->getBody(), StmtParent, TU, RegionOfInterest)))
Douglas Gregora67e03f2010-09-09 21:42:20 +0000774 return true;
775 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000776
Douglas Gregorb1373d02010-01-20 20:59:29 +0000777 return false;
778}
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000779
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000780bool CursorVisitor::VisitFieldDecl(FieldDecl *D) {
781 if (VisitDeclaratorDecl(D))
782 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000783
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000784 if (Expr *BitWidth = D->getBitWidth())
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +0000785 return Visit(MakeCXCursor(BitWidth, StmtParent, TU, RegionOfInterest));
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000786
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000787 return false;
788}
789
790bool CursorVisitor::VisitVarDecl(VarDecl *D) {
791 if (VisitDeclaratorDecl(D))
792 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000793
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000794 if (Expr *Init = D->getInit())
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +0000795 return Visit(MakeCXCursor(Init, StmtParent, TU, RegionOfInterest));
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000796
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000797 return false;
798}
799
Douglas Gregor84b51d72010-09-01 20:16:53 +0000800bool CursorVisitor::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) {
801 if (VisitDeclaratorDecl(D))
802 return true;
803
804 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited())
805 if (Expr *DefArg = D->getDefaultArgument())
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +0000806 return Visit(MakeCXCursor(DefArg, StmtParent, TU, RegionOfInterest));
Douglas Gregor84b51d72010-09-01 20:16:53 +0000807
808 return false;
809}
810
Douglas Gregorfe72e9c2010-08-31 17:01:39 +0000811bool CursorVisitor::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
812 // FIXME: Visit the "outer" template parameter lists on the FunctionDecl
813 // before visiting these template parameters.
814 if (VisitTemplateParameters(D->getTemplateParameters()))
815 return true;
816
817 return VisitFunctionDecl(D->getTemplatedDecl());
818}
819
Douglas Gregor39d6f072010-08-31 19:02:00 +0000820bool CursorVisitor::VisitClassTemplateDecl(ClassTemplateDecl *D) {
821 // FIXME: Visit the "outer" template parameter lists on the TagDecl
822 // before visiting these template parameters.
823 if (VisitTemplateParameters(D->getTemplateParameters()))
824 return true;
825
826 return VisitCXXRecordDecl(D->getTemplatedDecl());
827}
828
Douglas Gregor84b51d72010-09-01 20:16:53 +0000829bool CursorVisitor::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) {
830 if (VisitTemplateParameters(D->getTemplateParameters()))
831 return true;
832
833 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited() &&
834 VisitTemplateArgumentLoc(D->getDefaultArgument()))
835 return true;
836
837 return false;
838}
839
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000840bool CursorVisitor::VisitObjCMethodDecl(ObjCMethodDecl *ND) {
Douglas Gregor4bc1cb62010-03-08 14:59:44 +0000841 if (TypeSourceInfo *TSInfo = ND->getResultTypeSourceInfo())
842 if (Visit(TSInfo->getTypeLoc()))
843 return true;
844
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000845 for (ObjCMethodDecl::param_iterator P = ND->param_begin(),
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000846 PEnd = ND->param_end();
847 P != PEnd; ++P) {
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +0000848 if (Visit(MakeCXCursor(*P, TU, RegionOfInterest)))
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000849 return true;
850 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000851
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000852 if (ND->isThisDeclarationADefinition() &&
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +0000853 Visit(MakeCXCursor(ND->getBody(), StmtParent, TU, RegionOfInterest)))
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000854 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000855
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000856 return false;
857}
858
Argyrios Kyrtzidis03ee2dd2011-11-16 08:58:57 +0000859template <typename DeclIt>
860static void addRangedDeclsInContainer(DeclIt *DI_current, DeclIt DE_current,
861 SourceManager &SM, SourceLocation EndLoc,
862 SmallVectorImpl<Decl *> &Decls) {
863 DeclIt next = *DI_current;
864 while (++next != DE_current) {
865 Decl *D_next = *next;
866 if (!D_next)
867 break;
868 SourceLocation L = D_next->getLocStart();
869 if (!L.isValid())
870 break;
871 if (SM.isBeforeInTranslationUnit(L, EndLoc)) {
872 *DI_current = next;
873 Decls.push_back(D_next);
874 continue;
875 }
876 break;
877 }
878}
879
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000880namespace {
881 struct ContainerDeclsSort {
882 SourceManager &SM;
883 ContainerDeclsSort(SourceManager &sm) : SM(sm) {}
884 bool operator()(Decl *A, Decl *B) {
885 SourceLocation L_A = A->getLocStart();
886 SourceLocation L_B = B->getLocStart();
887 assert(L_A.isValid() && L_B.isValid());
888 return SM.isBeforeInTranslationUnit(L_A, L_B);
889 }
890 };
891}
892
Douglas Gregora59e3902010-01-21 23:27:09 +0000893bool CursorVisitor::VisitObjCContainerDecl(ObjCContainerDecl *D) {
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000894 // FIXME: Eventually convert back to just 'VisitDeclContext()'. Essentially
895 // an @implementation can lexically contain Decls that are not properly
896 // nested in the AST. When we identify such cases, we need to retrofit
897 // this nesting here.
Argyrios Kyrtzidis03ee2dd2011-11-16 08:58:57 +0000898 if (!DI_current && !FileDI_current)
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000899 return VisitDeclContext(D);
900
901 // Scan the Decls that immediately come after the container
902 // in the current DeclContext. If any fall within the
903 // container's lexical region, stash them into a vector
904 // for later processing.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000905 SmallVector<Decl *, 24> DeclsInContainer;
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000906 SourceLocation EndLoc = D->getSourceRange().getEnd();
Ted Kremeneka60ed472010-11-16 08:15:36 +0000907 SourceManager &SM = AU->getSourceManager();
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000908 if (EndLoc.isValid()) {
Argyrios Kyrtzidis03ee2dd2011-11-16 08:58:57 +0000909 if (DI_current) {
910 addRangedDeclsInContainer(DI_current, DE_current, SM, EndLoc,
911 DeclsInContainer);
912 } else {
913 addRangedDeclsInContainer(FileDI_current, FileDE_current, SM, EndLoc,
914 DeclsInContainer);
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000915 }
916 }
917
918 // The common case.
919 if (DeclsInContainer.empty())
920 return VisitDeclContext(D);
921
922 // Get all the Decls in the DeclContext, and sort them with the
923 // additional ones we've collected. Then visit them.
924 for (DeclContext::decl_iterator I = D->decls_begin(), E = D->decls_end();
925 I!=E; ++I) {
926 Decl *subDecl = *I;
Ted Kremenek0582c892010-11-02 23:17:51 +0000927 if (!subDecl || subDecl->getLexicalDeclContext() != D ||
928 subDecl->getLocStart().isInvalid())
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000929 continue;
930 DeclsInContainer.push_back(subDecl);
931 }
932
933 // Now sort the Decls so that they appear in lexical order.
934 std::sort(DeclsInContainer.begin(), DeclsInContainer.end(),
935 ContainerDeclsSort(SM));
936
937 // Now visit the decls.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000938 for (SmallVectorImpl<Decl*>::iterator I = DeclsInContainer.begin(),
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000939 E = DeclsInContainer.end(); I != E; ++I) {
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +0000940 CXCursor Cursor = MakeCXCursor(*I, TU, RegionOfInterest);
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000941 const llvm::Optional<bool> &V = shouldVisitCursor(Cursor);
942 if (!V.hasValue())
943 continue;
944 if (!V.getValue())
945 return false;
946 if (Visit(Cursor, true))
947 return true;
948 }
949 return false;
Douglas Gregora59e3902010-01-21 23:27:09 +0000950}
951
Douglas Gregorb1373d02010-01-20 20:59:29 +0000952bool CursorVisitor::VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000953 if (Visit(MakeCursorObjCClassRef(ND->getClassInterface(), ND->getLocation(),
954 TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000955 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000956
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000957 ObjCCategoryDecl::protocol_loc_iterator PL = ND->protocol_loc_begin();
958 for (ObjCCategoryDecl::protocol_iterator I = ND->protocol_begin(),
959 E = ND->protocol_end(); I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000960 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000961 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000962
Douglas Gregora59e3902010-01-21 23:27:09 +0000963 return VisitObjCContainerDecl(ND);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000964}
965
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000966bool CursorVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
Douglas Gregorbd9482d2012-01-01 21:23:57 +0000967 if (!PID->isThisDeclarationADefinition())
968 return Visit(MakeCursorObjCProtocolRef(PID, PID->getLocation(), TU));
969
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000970 ObjCProtocolDecl::protocol_loc_iterator PL = PID->protocol_loc_begin();
971 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
972 E = PID->protocol_end(); I != E; ++I, ++PL)
973 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
974 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000975
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000976 return VisitObjCContainerDecl(PID);
977}
978
Ted Kremenek23173d72010-05-18 21:09:07 +0000979bool CursorVisitor::VisitObjCPropertyDecl(ObjCPropertyDecl *PD) {
Douglas Gregor83cb9422010-09-09 17:09:21 +0000980 if (PD->getTypeSourceInfo() && Visit(PD->getTypeSourceInfo()->getTypeLoc()))
John McCallfc929202010-06-04 22:33:30 +0000981 return true;
982
Ted Kremenek23173d72010-05-18 21:09:07 +0000983 // FIXME: This implements a workaround with @property declarations also being
984 // installed in the DeclContext for the @interface. Eventually this code
985 // should be removed.
986 ObjCCategoryDecl *CDecl = dyn_cast<ObjCCategoryDecl>(PD->getDeclContext());
987 if (!CDecl || !CDecl->IsClassExtension())
988 return false;
989
990 ObjCInterfaceDecl *ID = CDecl->getClassInterface();
991 if (!ID)
992 return false;
993
994 IdentifierInfo *PropertyId = PD->getIdentifier();
995 ObjCPropertyDecl *prevDecl =
996 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(ID), PropertyId);
997
998 if (!prevDecl)
999 return false;
1000
1001 // Visit synthesized methods since they will be skipped when visiting
1002 // the @interface.
1003 if (ObjCMethodDecl *MD = prevDecl->getGetterMethodDecl())
Ted Kremeneka054fb42010-09-21 20:52:59 +00001004 if (MD->isSynthesized() && MD->getLexicalDeclContext() == CDecl)
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00001005 if (Visit(MakeCXCursor(MD, TU, RegionOfInterest)))
Ted Kremenek23173d72010-05-18 21:09:07 +00001006 return true;
1007
1008 if (ObjCMethodDecl *MD = prevDecl->getSetterMethodDecl())
Ted Kremeneka054fb42010-09-21 20:52:59 +00001009 if (MD->isSynthesized() && MD->getLexicalDeclContext() == CDecl)
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00001010 if (Visit(MakeCXCursor(MD, TU, RegionOfInterest)))
Ted Kremenek23173d72010-05-18 21:09:07 +00001011 return true;
1012
1013 return false;
1014}
1015
Douglas Gregorb1373d02010-01-20 20:59:29 +00001016bool CursorVisitor::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
Douglas Gregor375bb142011-12-27 22:43:10 +00001017 if (!D->isThisDeclarationADefinition()) {
1018 // Forward declaration is treated like a reference.
1019 return Visit(MakeCursorObjCClassRef(D, D->getLocation(), TU));
1020 }
1021
Ted Kremenekdd6bcc52010-01-13 00:22:49 +00001022 // Issue callbacks for super class.
Douglas Gregorb1373d02010-01-20 20:59:29 +00001023 if (D->getSuperClass() &&
1024 Visit(MakeCursorObjCSuperClassRef(D->getSuperClass(),
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001025 D->getSuperClassLoc(),
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001026 TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +00001027 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001028
Douglas Gregor78db0cd2010-01-16 15:44:18 +00001029 ObjCInterfaceDecl::protocol_loc_iterator PL = D->protocol_loc_begin();
1030 for (ObjCInterfaceDecl::protocol_iterator I = D->protocol_begin(),
1031 E = D->protocol_end(); I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001032 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +00001033 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001034
Douglas Gregora59e3902010-01-21 23:27:09 +00001035 return VisitObjCContainerDecl(D);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +00001036}
1037
Douglas Gregor1ef2fc12010-01-22 00:50:27 +00001038bool CursorVisitor::VisitObjCImplDecl(ObjCImplDecl *D) {
1039 return VisitObjCContainerDecl(D);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +00001040}
1041
Douglas Gregor1ef2fc12010-01-22 00:50:27 +00001042bool CursorVisitor::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
Ted Kremenekebfa3392010-03-19 20:39:03 +00001043 // 'ID' could be null when dealing with invalid code.
1044 if (ObjCInterfaceDecl *ID = D->getClassInterface())
1045 if (Visit(MakeCursorObjCClassRef(ID, D->getLocation(), TU)))
1046 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001047
Douglas Gregor1ef2fc12010-01-22 00:50:27 +00001048 return VisitObjCImplDecl(D);
1049}
1050
1051bool CursorVisitor::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
1052#if 0
1053 // Issue callbacks for super class.
1054 // FIXME: No source location information!
1055 if (D->getSuperClass() &&
1056 Visit(MakeCursorObjCSuperClassRef(D->getSuperClass(),
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001057 D->getSuperClassLoc(),
Douglas Gregor1ef2fc12010-01-22 00:50:27 +00001058 TU)))
1059 return true;
1060#endif
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001061
Douglas Gregor1ef2fc12010-01-22 00:50:27 +00001062 return VisitObjCImplDecl(D);
1063}
1064
Douglas Gregora4ffd852010-11-17 01:03:52 +00001065bool CursorVisitor::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PD) {
1066 if (ObjCIvarDecl *Ivar = PD->getPropertyIvarDecl())
1067 return Visit(MakeCursorMemberRef(Ivar, PD->getPropertyIvarDeclLoc(), TU));
1068
1069 return false;
1070}
1071
Ted Kremenek8f06e0e2010-05-06 23:38:21 +00001072bool CursorVisitor::VisitNamespaceDecl(NamespaceDecl *D) {
1073 return VisitDeclContext(D);
1074}
1075
Douglas Gregor69319002010-08-31 23:48:11 +00001076bool CursorVisitor::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001077 // Visit nested-name-specifier.
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00001078 if (NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc())
1079 if (VisitNestedNameSpecifierLoc(QualifierLoc))
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001080 return true;
Douglas Gregor69319002010-08-31 23:48:11 +00001081
1082 return Visit(MakeCursorNamespaceRef(D->getAliasedNamespace(),
1083 D->getTargetNameLoc(), TU));
1084}
1085
Douglas Gregor7e242562010-09-01 19:52:22 +00001086bool CursorVisitor::VisitUsingDecl(UsingDecl *D) {
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001087 // Visit nested-name-specifier.
Douglas Gregordc355712011-02-25 00:36:19 +00001088 if (NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc()) {
1089 if (VisitNestedNameSpecifierLoc(QualifierLoc))
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001090 return true;
Douglas Gregordc355712011-02-25 00:36:19 +00001091 }
Douglas Gregor7e242562010-09-01 19:52:22 +00001092
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00001093 if (Visit(MakeCursorOverloadedDeclRef(D, D->getLocation(), TU)))
1094 return true;
1095
Douglas Gregor7e242562010-09-01 19:52:22 +00001096 return VisitDeclarationNameInfo(D->getNameInfo());
1097}
1098
Douglas Gregor0a35bce2010-09-01 03:07:18 +00001099bool CursorVisitor::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001100 // Visit nested-name-specifier.
Douglas Gregordb992412011-02-25 16:33:46 +00001101 if (NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc())
1102 if (VisitNestedNameSpecifierLoc(QualifierLoc))
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001103 return true;
Douglas Gregor0a35bce2010-09-01 03:07:18 +00001104
1105 return Visit(MakeCursorNamespaceRef(D->getNominatedNamespaceAsWritten(),
1106 D->getIdentLocation(), TU));
1107}
1108
Douglas Gregor7e242562010-09-01 19:52:22 +00001109bool CursorVisitor::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001110 // Visit nested-name-specifier.
Douglas Gregordc355712011-02-25 00:36:19 +00001111 if (NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc()) {
1112 if (VisitNestedNameSpecifierLoc(QualifierLoc))
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001113 return true;
Douglas Gregordc355712011-02-25 00:36:19 +00001114 }
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001115
Douglas Gregor7e242562010-09-01 19:52:22 +00001116 return VisitDeclarationNameInfo(D->getNameInfo());
1117}
1118
1119bool CursorVisitor::VisitUnresolvedUsingTypenameDecl(
1120 UnresolvedUsingTypenameDecl *D) {
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001121 // Visit nested-name-specifier.
Douglas Gregordc355712011-02-25 00:36:19 +00001122 if (NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc())
1123 if (VisitNestedNameSpecifierLoc(QualifierLoc))
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001124 return true;
1125
Douglas Gregor7e242562010-09-01 19:52:22 +00001126 return false;
1127}
1128
Douglas Gregor01829d32010-08-31 14:41:23 +00001129bool CursorVisitor::VisitDeclarationNameInfo(DeclarationNameInfo Name) {
1130 switch (Name.getName().getNameKind()) {
1131 case clang::DeclarationName::Identifier:
1132 case clang::DeclarationName::CXXLiteralOperatorName:
1133 case clang::DeclarationName::CXXOperatorName:
1134 case clang::DeclarationName::CXXUsingDirective:
1135 return false;
1136
1137 case clang::DeclarationName::CXXConstructorName:
1138 case clang::DeclarationName::CXXDestructorName:
1139 case clang::DeclarationName::CXXConversionFunctionName:
1140 if (TypeSourceInfo *TSInfo = Name.getNamedTypeInfo())
1141 return Visit(TSInfo->getTypeLoc());
1142 return false;
1143
1144 case clang::DeclarationName::ObjCZeroArgSelector:
1145 case clang::DeclarationName::ObjCOneArgSelector:
1146 case clang::DeclarationName::ObjCMultiArgSelector:
1147 // FIXME: Per-identifier location info?
1148 return false;
1149 }
David Blaikie7530c032012-01-17 06:56:22 +00001150
1151 llvm_unreachable("Invalid DeclarationName::Kind!");
Douglas Gregor01829d32010-08-31 14:41:23 +00001152}
1153
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001154bool CursorVisitor::VisitNestedNameSpecifier(NestedNameSpecifier *NNS,
1155 SourceRange Range) {
1156 // FIXME: This whole routine is a hack to work around the lack of proper
1157 // source information in nested-name-specifiers (PR5791). Since we do have
1158 // a beginning source location, we can visit the first component of the
1159 // nested-name-specifier, if it's a single-token component.
1160 if (!NNS)
1161 return false;
1162
1163 // Get the first component in the nested-name-specifier.
1164 while (NestedNameSpecifier *Prefix = NNS->getPrefix())
1165 NNS = Prefix;
1166
1167 switch (NNS->getKind()) {
1168 case NestedNameSpecifier::Namespace:
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001169 return Visit(MakeCursorNamespaceRef(NNS->getAsNamespace(), Range.getBegin(),
1170 TU));
1171
Douglas Gregor14aba762011-02-24 02:36:08 +00001172 case NestedNameSpecifier::NamespaceAlias:
1173 return Visit(MakeCursorNamespaceRef(NNS->getAsNamespaceAlias(),
1174 Range.getBegin(), TU));
1175
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001176 case NestedNameSpecifier::TypeSpec: {
1177 // If the type has a form where we know that the beginning of the source
1178 // range matches up with a reference cursor. Visit the appropriate reference
1179 // cursor.
John McCallf4c73712011-01-19 06:33:43 +00001180 const Type *T = NNS->getAsType();
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001181 if (const TypedefType *Typedef = dyn_cast<TypedefType>(T))
1182 return Visit(MakeCursorTypeRef(Typedef->getDecl(), Range.getBegin(), TU));
1183 if (const TagType *Tag = dyn_cast<TagType>(T))
1184 return Visit(MakeCursorTypeRef(Tag->getDecl(), Range.getBegin(), TU));
1185 if (const TemplateSpecializationType *TST
1186 = dyn_cast<TemplateSpecializationType>(T))
1187 return VisitTemplateName(TST->getTemplateName(), Range.getBegin());
1188 break;
1189 }
1190
1191 case NestedNameSpecifier::TypeSpecWithTemplate:
1192 case NestedNameSpecifier::Global:
1193 case NestedNameSpecifier::Identifier:
1194 break;
1195 }
1196
1197 return false;
1198}
1199
Douglas Gregordc355712011-02-25 00:36:19 +00001200bool
1201CursorVisitor::VisitNestedNameSpecifierLoc(NestedNameSpecifierLoc Qualifier) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001202 SmallVector<NestedNameSpecifierLoc, 4> Qualifiers;
Douglas Gregordc355712011-02-25 00:36:19 +00001203 for (; Qualifier; Qualifier = Qualifier.getPrefix())
1204 Qualifiers.push_back(Qualifier);
1205
1206 while (!Qualifiers.empty()) {
1207 NestedNameSpecifierLoc Q = Qualifiers.pop_back_val();
1208 NestedNameSpecifier *NNS = Q.getNestedNameSpecifier();
1209 switch (NNS->getKind()) {
1210 case NestedNameSpecifier::Namespace:
1211 if (Visit(MakeCursorNamespaceRef(NNS->getAsNamespace(),
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001212 Q.getLocalBeginLoc(),
Douglas Gregordc355712011-02-25 00:36:19 +00001213 TU)))
1214 return true;
1215
1216 break;
1217
1218 case NestedNameSpecifier::NamespaceAlias:
1219 if (Visit(MakeCursorNamespaceRef(NNS->getAsNamespaceAlias(),
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001220 Q.getLocalBeginLoc(),
Douglas Gregordc355712011-02-25 00:36:19 +00001221 TU)))
1222 return true;
1223
1224 break;
1225
1226 case NestedNameSpecifier::TypeSpec:
1227 case NestedNameSpecifier::TypeSpecWithTemplate:
1228 if (Visit(Q.getTypeLoc()))
1229 return true;
1230
1231 break;
1232
1233 case NestedNameSpecifier::Global:
1234 case NestedNameSpecifier::Identifier:
1235 break;
1236 }
1237 }
1238
1239 return false;
1240}
1241
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001242bool CursorVisitor::VisitTemplateParameters(
1243 const TemplateParameterList *Params) {
1244 if (!Params)
1245 return false;
1246
1247 for (TemplateParameterList::const_iterator P = Params->begin(),
1248 PEnd = Params->end();
1249 P != PEnd; ++P) {
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00001250 if (Visit(MakeCXCursor(*P, TU, RegionOfInterest)))
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001251 return true;
1252 }
1253
1254 return false;
1255}
1256
Douglas Gregor0b36e612010-08-31 20:37:03 +00001257bool CursorVisitor::VisitTemplateName(TemplateName Name, SourceLocation Loc) {
1258 switch (Name.getKind()) {
1259 case TemplateName::Template:
1260 return Visit(MakeCursorTemplateRef(Name.getAsTemplateDecl(), Loc, TU));
1261
1262 case TemplateName::OverloadedTemplate:
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00001263 // Visit the overloaded template set.
1264 if (Visit(MakeCursorOverloadedDeclRef(Name, Loc, TU)))
1265 return true;
1266
Douglas Gregor0b36e612010-08-31 20:37:03 +00001267 return false;
1268
1269 case TemplateName::DependentTemplate:
1270 // FIXME: Visit nested-name-specifier.
1271 return false;
1272
1273 case TemplateName::QualifiedTemplate:
1274 // FIXME: Visit nested-name-specifier.
1275 return Visit(MakeCursorTemplateRef(
1276 Name.getAsQualifiedTemplateName()->getDecl(),
1277 Loc, TU));
John McCall14606042011-06-30 08:33:18 +00001278
1279 case TemplateName::SubstTemplateTemplateParm:
1280 return Visit(MakeCursorTemplateRef(
1281 Name.getAsSubstTemplateTemplateParm()->getParameter(),
1282 Loc, TU));
Douglas Gregor1aee05d2011-01-15 06:45:20 +00001283
1284 case TemplateName::SubstTemplateTemplateParmPack:
1285 return Visit(MakeCursorTemplateRef(
1286 Name.getAsSubstTemplateTemplateParmPack()->getParameterPack(),
1287 Loc, TU));
Douglas Gregor0b36e612010-08-31 20:37:03 +00001288 }
David Blaikie7530c032012-01-17 06:56:22 +00001289
1290 llvm_unreachable("Invalid TemplateName::Kind!");
Douglas Gregor0b36e612010-08-31 20:37:03 +00001291}
1292
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001293bool CursorVisitor::VisitTemplateArgumentLoc(const TemplateArgumentLoc &TAL) {
1294 switch (TAL.getArgument().getKind()) {
1295 case TemplateArgument::Null:
1296 case TemplateArgument::Integral:
Douglas Gregor87dd6972010-12-20 16:52:59 +00001297 case TemplateArgument::Pack:
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001298 return false;
1299
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001300 case TemplateArgument::Type:
1301 if (TypeSourceInfo *TSInfo = TAL.getTypeSourceInfo())
1302 return Visit(TSInfo->getTypeLoc());
1303 return false;
1304
1305 case TemplateArgument::Declaration:
1306 if (Expr *E = TAL.getSourceDeclExpression())
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00001307 return Visit(MakeCXCursor(E, StmtParent, TU, RegionOfInterest));
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001308 return false;
1309
1310 case TemplateArgument::Expression:
1311 if (Expr *E = TAL.getSourceExpression())
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00001312 return Visit(MakeCXCursor(E, StmtParent, TU, RegionOfInterest));
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001313 return false;
1314
1315 case TemplateArgument::Template:
Douglas Gregora7fc9012011-01-05 18:58:31 +00001316 case TemplateArgument::TemplateExpansion:
Douglas Gregorb6744ef2011-03-02 17:09:35 +00001317 if (VisitNestedNameSpecifierLoc(TAL.getTemplateQualifierLoc()))
1318 return true;
1319
Douglas Gregora7fc9012011-01-05 18:58:31 +00001320 return VisitTemplateName(TAL.getArgument().getAsTemplateOrTemplatePattern(),
Douglas Gregor0b36e612010-08-31 20:37:03 +00001321 TAL.getTemplateNameLoc());
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001322 }
David Blaikie7530c032012-01-17 06:56:22 +00001323
1324 llvm_unreachable("Invalid TemplateArgument::Kind!");
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001325}
1326
Ted Kremeneka0536d82010-05-07 01:04:29 +00001327bool CursorVisitor::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
1328 return VisitDeclContext(D);
1329}
1330
Douglas Gregor01829d32010-08-31 14:41:23 +00001331bool CursorVisitor::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
1332 return Visit(TL.getUnqualifiedLoc());
1333}
1334
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001335bool CursorVisitor::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Ted Kremeneka60ed472010-11-16 08:15:36 +00001336 ASTContext &Context = AU->getASTContext();
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001337
1338 // Some builtin types (such as Objective-C's "id", "sel", and
1339 // "Class") have associated declarations. Create cursors for those.
1340 QualType VisitType;
John McCalle0a22d02011-10-18 21:02:43 +00001341 switch (TL.getTypePtr()->getKind()) {
John McCall2dde35b2011-10-18 22:28:37 +00001342
Ted Kremenek6b3b5142010-02-18 22:32:43 +00001343 case BuiltinType::Void:
Ted Kremenek6b3b5142010-02-18 22:32:43 +00001344 case BuiltinType::NullPtr:
Ted Kremenek6b3b5142010-02-18 22:32:43 +00001345 case BuiltinType::Dependent:
John McCall2dde35b2011-10-18 22:28:37 +00001346#define BUILTIN_TYPE(Id, SingletonId)
1347#define SIGNED_TYPE(Id, SingletonId) case BuiltinType::Id:
1348#define UNSIGNED_TYPE(Id, SingletonId) case BuiltinType::Id:
1349#define FLOATING_TYPE(Id, SingletonId) case BuiltinType::Id:
1350#define PLACEHOLDER_TYPE(Id, SingletonId) case BuiltinType::Id:
1351#include "clang/AST/BuiltinTypes.def"
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001352 break;
Ted Kremenek6b3b5142010-02-18 22:32:43 +00001353
Ted Kremenekc4174cc2010-02-18 18:52:18 +00001354 case BuiltinType::ObjCId:
1355 VisitType = Context.getObjCIdType();
1356 break;
Ted Kremenek6b3b5142010-02-18 22:32:43 +00001357
1358 case BuiltinType::ObjCClass:
1359 VisitType = Context.getObjCClassType();
1360 break;
1361
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001362 case BuiltinType::ObjCSel:
1363 VisitType = Context.getObjCSelType();
1364 break;
1365 }
1366
1367 if (!VisitType.isNull()) {
1368 if (const TypedefType *Typedef = VisitType->getAs<TypedefType>())
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001369 return Visit(MakeCursorTypeRef(Typedef->getDecl(), TL.getBuiltinLoc(),
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001370 TU));
1371 }
1372
1373 return false;
1374}
1375
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001376bool CursorVisitor::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
Richard Smith162e1c12011-04-15 14:24:37 +00001377 return Visit(MakeCursorTypeRef(TL.getTypedefNameDecl(), TL.getNameLoc(), TU));
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001378}
1379
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001380bool CursorVisitor::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
1381 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
1382}
1383
1384bool CursorVisitor::VisitTagTypeLoc(TagTypeLoc TL) {
Argyrios Kyrtzidis6f155de2011-08-25 22:24:47 +00001385 if (TL.isDefinition())
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00001386 return Visit(MakeCXCursor(TL.getDecl(), TU, RegionOfInterest));
Argyrios Kyrtzidis6f155de2011-08-25 22:24:47 +00001387
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001388 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
1389}
1390
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001391bool CursorVisitor::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
Chandler Carruth960d13d2011-05-01 09:53:37 +00001392 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001393}
1394
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001395bool CursorVisitor::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
1396 if (Visit(MakeCursorObjCClassRef(TL.getIFaceDecl(), TL.getNameLoc(), TU)))
1397 return true;
1398
John McCallc12c5bb2010-05-15 11:32:37 +00001399 return false;
1400}
1401
1402bool CursorVisitor::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
1403 if (TL.hasBaseTypeAsWritten() && Visit(TL.getBaseLoc()))
1404 return true;
1405
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001406 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {
1407 if (Visit(MakeCursorObjCProtocolRef(TL.getProtocol(I), TL.getProtocolLoc(I),
1408 TU)))
1409 return true;
1410 }
1411
1412 return false;
1413}
1414
1415bool CursorVisitor::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
John McCallc12c5bb2010-05-15 11:32:37 +00001416 return Visit(TL.getPointeeLoc());
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001417}
1418
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001419bool CursorVisitor::VisitParenTypeLoc(ParenTypeLoc TL) {
1420 return Visit(TL.getInnerLoc());
1421}
1422
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001423bool CursorVisitor::VisitPointerTypeLoc(PointerTypeLoc TL) {
1424 return Visit(TL.getPointeeLoc());
1425}
1426
1427bool CursorVisitor::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
1428 return Visit(TL.getPointeeLoc());
1429}
1430
1431bool CursorVisitor::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
1432 return Visit(TL.getPointeeLoc());
1433}
1434
1435bool CursorVisitor::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001436 return Visit(TL.getPointeeLoc());
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001437}
1438
1439bool CursorVisitor::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001440 return Visit(TL.getPointeeLoc());
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001441}
1442
Argyrios Kyrtzidis3422fbc2011-08-15 18:44:43 +00001443bool CursorVisitor::VisitAttributedTypeLoc(AttributedTypeLoc TL) {
1444 return Visit(TL.getModifiedLoc());
1445}
1446
Douglas Gregor01829d32010-08-31 14:41:23 +00001447bool CursorVisitor::VisitFunctionTypeLoc(FunctionTypeLoc TL,
1448 bool SkipResultType) {
1449 if (!SkipResultType && Visit(TL.getResultLoc()))
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001450 return true;
1451
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001452 for (unsigned I = 0, N = TL.getNumArgs(); I != N; ++I)
Ted Kremenek5dbacb42010-04-07 00:27:13 +00001453 if (Decl *D = TL.getArg(I))
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00001454 if (Visit(MakeCXCursor(D, TU, RegionOfInterest)))
Ted Kremenek5dbacb42010-04-07 00:27:13 +00001455 return true;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001456
1457 return false;
1458}
1459
1460bool CursorVisitor::VisitArrayTypeLoc(ArrayTypeLoc TL) {
1461 if (Visit(TL.getElementLoc()))
1462 return true;
1463
1464 if (Expr *Size = TL.getSizeExpr())
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00001465 return Visit(MakeCXCursor(Size, StmtParent, TU, RegionOfInterest));
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001466
1467 return false;
1468}
1469
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001470bool CursorVisitor::VisitTemplateSpecializationTypeLoc(
1471 TemplateSpecializationTypeLoc TL) {
Douglas Gregor0b36e612010-08-31 20:37:03 +00001472 // Visit the template name.
1473 if (VisitTemplateName(TL.getTypePtr()->getTemplateName(),
1474 TL.getTemplateNameLoc()))
1475 return true;
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001476
1477 // Visit the template arguments.
1478 for (unsigned I = 0, N = TL.getNumArgs(); I != N; ++I)
1479 if (VisitTemplateArgumentLoc(TL.getArgLoc(I)))
1480 return true;
1481
1482 return false;
1483}
1484
Douglas Gregor2332c112010-01-21 20:48:56 +00001485bool CursorVisitor::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
1486 return Visit(MakeCXCursor(TL.getUnderlyingExpr(), StmtParent, TU));
1487}
1488
1489bool CursorVisitor::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
1490 if (TypeSourceInfo *TSInfo = TL.getUnderlyingTInfo())
1491 return Visit(TSInfo->getTypeLoc());
1492
1493 return false;
1494}
1495
Sean Huntca63c202011-05-24 22:41:36 +00001496bool CursorVisitor::VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) {
1497 if (TypeSourceInfo *TSInfo = TL.getUnderlyingTInfo())
1498 return Visit(TSInfo->getTypeLoc());
1499
1500 return false;
1501}
1502
Douglas Gregor2494dd02011-03-01 01:34:45 +00001503bool CursorVisitor::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
1504 if (VisitNestedNameSpecifierLoc(TL.getQualifierLoc()))
1505 return true;
1506
1507 return false;
1508}
1509
Douglas Gregor94fdffa2011-03-01 20:11:18 +00001510bool CursorVisitor::VisitDependentTemplateSpecializationTypeLoc(
1511 DependentTemplateSpecializationTypeLoc TL) {
1512 // Visit the nested-name-specifier, if there is one.
1513 if (TL.getQualifierLoc() &&
1514 VisitNestedNameSpecifierLoc(TL.getQualifierLoc()))
1515 return true;
1516
1517 // Visit the template arguments.
1518 for (unsigned I = 0, N = TL.getNumArgs(); I != N; ++I)
1519 if (VisitTemplateArgumentLoc(TL.getArgLoc(I)))
1520 return true;
1521
1522 return false;
1523}
1524
Douglas Gregor9e876872011-03-01 18:12:44 +00001525bool CursorVisitor::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
1526 if (VisitNestedNameSpecifierLoc(TL.getQualifierLoc()))
1527 return true;
1528
1529 return Visit(TL.getNamedTypeLoc());
1530}
1531
Douglas Gregor7536dd52010-12-20 02:24:11 +00001532bool CursorVisitor::VisitPackExpansionTypeLoc(PackExpansionTypeLoc TL) {
1533 return Visit(TL.getPatternLoc());
1534}
1535
Argyrios Kyrtzidis427964e2011-08-15 22:40:24 +00001536bool CursorVisitor::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
1537 if (Expr *E = TL.getUnderlyingExpr())
1538 return Visit(MakeCXCursor(E, StmtParent, TU));
1539
1540 return false;
1541}
1542
1543bool CursorVisitor::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
1544 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
1545}
1546
Eli Friedmanb001de72011-10-06 23:00:33 +00001547bool CursorVisitor::VisitAtomicTypeLoc(AtomicTypeLoc TL) {
1548 return Visit(TL.getValueLoc());
1549}
1550
Argyrios Kyrtzidis427964e2011-08-15 22:40:24 +00001551#define DEFAULT_TYPELOC_IMPL(CLASS, PARENT) \
1552bool CursorVisitor::Visit##CLASS##TypeLoc(CLASS##TypeLoc TL) { \
1553 return Visit##PARENT##Loc(TL); \
1554}
1555
1556DEFAULT_TYPELOC_IMPL(Complex, Type)
1557DEFAULT_TYPELOC_IMPL(ConstantArray, ArrayType)
1558DEFAULT_TYPELOC_IMPL(IncompleteArray, ArrayType)
1559DEFAULT_TYPELOC_IMPL(VariableArray, ArrayType)
1560DEFAULT_TYPELOC_IMPL(DependentSizedArray, ArrayType)
1561DEFAULT_TYPELOC_IMPL(DependentSizedExtVector, Type)
1562DEFAULT_TYPELOC_IMPL(Vector, Type)
1563DEFAULT_TYPELOC_IMPL(ExtVector, VectorType)
1564DEFAULT_TYPELOC_IMPL(FunctionProto, FunctionType)
1565DEFAULT_TYPELOC_IMPL(FunctionNoProto, FunctionType)
1566DEFAULT_TYPELOC_IMPL(Record, TagType)
1567DEFAULT_TYPELOC_IMPL(Enum, TagType)
1568DEFAULT_TYPELOC_IMPL(SubstTemplateTypeParm, Type)
1569DEFAULT_TYPELOC_IMPL(SubstTemplateTypeParmPack, Type)
1570DEFAULT_TYPELOC_IMPL(Auto, Type)
1571
Ted Kremenek3064ef92010-08-27 21:34:58 +00001572bool CursorVisitor::VisitCXXRecordDecl(CXXRecordDecl *D) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001573 // Visit the nested-name-specifier, if present.
1574 if (NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc())
1575 if (VisitNestedNameSpecifierLoc(QualifierLoc))
1576 return true;
1577
John McCall5e1cdac2011-10-07 06:10:15 +00001578 if (D->isCompleteDefinition()) {
Ted Kremenek3064ef92010-08-27 21:34:58 +00001579 for (CXXRecordDecl::base_class_iterator I = D->bases_begin(),
1580 E = D->bases_end(); I != E; ++I) {
1581 if (Visit(cxcursor::MakeCursorCXXBaseSpecifier(I, TU)))
1582 return true;
1583 }
1584 }
1585
1586 return VisitTagDecl(D);
1587}
1588
Ted Kremenek09dfa372010-02-18 05:46:33 +00001589bool CursorVisitor::VisitAttributes(Decl *D) {
Sean Huntcf807c42010-08-18 23:23:40 +00001590 for (AttrVec::const_iterator i = D->attr_begin(), e = D->attr_end();
1591 i != e; ++i)
1592 if (Visit(MakeCXCursor(*i, D, TU)))
Ted Kremenek09dfa372010-02-18 05:46:33 +00001593 return true;
1594
1595 return false;
1596}
1597
Ted Kremenekc0e1d922010-11-11 08:05:18 +00001598//===----------------------------------------------------------------------===//
1599// Data-recursive visitor methods.
1600//===----------------------------------------------------------------------===//
1601
Ted Kremenek28a71942010-11-13 00:36:47 +00001602namespace {
Ted Kremenek035dc412010-11-13 00:36:50 +00001603#define DEF_JOB(NAME, DATA, KIND)\
1604class NAME : public VisitorJob {\
1605public:\
1606 NAME(DATA *d, CXCursor parent) : VisitorJob(parent, VisitorJob::KIND, d) {} \
1607 static bool classof(const VisitorJob *VJ) { return VJ->getKind() == KIND; }\
Ted Kremenekf64d8032010-11-18 00:02:32 +00001608 DATA *get() const { return static_cast<DATA*>(data[0]); }\
Ted Kremenek035dc412010-11-13 00:36:50 +00001609};
1610
1611DEF_JOB(StmtVisit, Stmt, StmtVisitKind)
1612DEF_JOB(MemberExprParts, MemberExpr, MemberExprPartsKind)
Ted Kremeneke4979cc2010-11-13 00:58:18 +00001613DEF_JOB(DeclRefExprParts, DeclRefExpr, DeclRefExprPartsKind)
Ted Kremenek035dc412010-11-13 00:36:50 +00001614DEF_JOB(OverloadExprParts, OverloadExpr, OverloadExprPartsKind)
Argyrios Kyrtzidisb0c3e092011-09-22 20:07:03 +00001615DEF_JOB(ExplicitTemplateArgsVisit, ASTTemplateArgumentListInfo,
Ted Kremenek60608ec2010-11-17 00:50:47 +00001616 ExplicitTemplateArgsVisitKind)
Douglas Gregor94d96292011-01-19 20:34:17 +00001617DEF_JOB(SizeOfPackExprParts, SizeOfPackExpr, SizeOfPackExprPartsKind)
Douglas Gregor011d8b92012-02-15 00:54:55 +00001618DEF_JOB(LambdaExprParts, LambdaExpr, LambdaExprPartsKind)
Ted Kremenek035dc412010-11-13 00:36:50 +00001619#undef DEF_JOB
1620
1621class DeclVisit : public VisitorJob {
1622public:
1623 DeclVisit(Decl *d, CXCursor parent, bool isFirst) :
1624 VisitorJob(parent, VisitorJob::DeclVisitKind,
1625 d, isFirst ? (void*) 1 : (void*) 0) {}
1626 static bool classof(const VisitorJob *VJ) {
Ted Kremenek82f3c502010-11-15 22:23:26 +00001627 return VJ->getKind() == DeclVisitKind;
Ted Kremenek035dc412010-11-13 00:36:50 +00001628 }
Ted Kremenekf64d8032010-11-18 00:02:32 +00001629 Decl *get() const { return static_cast<Decl*>(data[0]); }
1630 bool isFirst() const { return data[1] ? true : false; }
Ted Kremenek035dc412010-11-13 00:36:50 +00001631};
Ted Kremenek035dc412010-11-13 00:36:50 +00001632class TypeLocVisit : public VisitorJob {
1633public:
1634 TypeLocVisit(TypeLoc tl, CXCursor parent) :
1635 VisitorJob(parent, VisitorJob::TypeLocVisitKind,
1636 tl.getType().getAsOpaquePtr(), tl.getOpaqueData()) {}
1637
1638 static bool classof(const VisitorJob *VJ) {
1639 return VJ->getKind() == TypeLocVisitKind;
1640 }
1641
Ted Kremenek82f3c502010-11-15 22:23:26 +00001642 TypeLoc get() const {
Ted Kremenekf64d8032010-11-18 00:02:32 +00001643 QualType T = QualType::getFromOpaquePtr(data[0]);
1644 return TypeLoc(T, data[1]);
Ted Kremenek035dc412010-11-13 00:36:50 +00001645 }
1646};
1647
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001648class LabelRefVisit : public VisitorJob {
1649public:
Chris Lattnerad8dcf42011-02-17 07:39:24 +00001650 LabelRefVisit(LabelDecl *LD, SourceLocation labelLoc, CXCursor parent)
1651 : VisitorJob(parent, VisitorJob::LabelRefVisitKind, LD,
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001652 labelLoc.getPtrEncoding()) {}
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001653
1654 static bool classof(const VisitorJob *VJ) {
1655 return VJ->getKind() == VisitorJob::LabelRefVisitKind;
1656 }
Chris Lattnerad8dcf42011-02-17 07:39:24 +00001657 LabelDecl *get() const { return static_cast<LabelDecl*>(data[0]); }
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001658 SourceLocation getLoc() const {
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001659 return SourceLocation::getFromPtrEncoding(data[1]); }
Ted Kremenekf64d8032010-11-18 00:02:32 +00001660};
Douglas Gregorf3db29f2011-02-25 18:19:59 +00001661
1662class NestedNameSpecifierLocVisit : public VisitorJob {
1663public:
1664 NestedNameSpecifierLocVisit(NestedNameSpecifierLoc Qualifier, CXCursor parent)
1665 : VisitorJob(parent, VisitorJob::NestedNameSpecifierLocVisitKind,
1666 Qualifier.getNestedNameSpecifier(),
1667 Qualifier.getOpaqueData()) { }
1668
1669 static bool classof(const VisitorJob *VJ) {
1670 return VJ->getKind() == VisitorJob::NestedNameSpecifierLocVisitKind;
1671 }
1672
1673 NestedNameSpecifierLoc get() const {
1674 return NestedNameSpecifierLoc(static_cast<NestedNameSpecifier*>(data[0]),
1675 data[1]);
1676 }
1677};
1678
Ted Kremenekf64d8032010-11-18 00:02:32 +00001679class DeclarationNameInfoVisit : public VisitorJob {
1680public:
1681 DeclarationNameInfoVisit(Stmt *S, CXCursor parent)
1682 : VisitorJob(parent, VisitorJob::DeclarationNameInfoVisitKind, S) {}
1683 static bool classof(const VisitorJob *VJ) {
1684 return VJ->getKind() == VisitorJob::DeclarationNameInfoVisitKind;
1685 }
1686 DeclarationNameInfo get() const {
1687 Stmt *S = static_cast<Stmt*>(data[0]);
1688 switch (S->getStmtClass()) {
1689 default:
1690 llvm_unreachable("Unhandled Stmt");
Douglas Gregorba0513d2011-10-25 01:33:02 +00001691 case clang::Stmt::MSDependentExistsStmtClass:
1692 return cast<MSDependentExistsStmt>(S)->getNameInfo();
Ted Kremenekf64d8032010-11-18 00:02:32 +00001693 case Stmt::CXXDependentScopeMemberExprClass:
1694 return cast<CXXDependentScopeMemberExpr>(S)->getMemberNameInfo();
1695 case Stmt::DependentScopeDeclRefExprClass:
1696 return cast<DependentScopeDeclRefExpr>(S)->getNameInfo();
1697 }
1698 }
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001699};
Ted Kremenekcdba6592010-11-18 00:42:18 +00001700class MemberRefVisit : public VisitorJob {
1701public:
1702 MemberRefVisit(FieldDecl *D, SourceLocation L, CXCursor parent)
1703 : VisitorJob(parent, VisitorJob::MemberRefVisitKind, D,
Jeffrey Yasskindec09842011-01-18 02:00:16 +00001704 L.getPtrEncoding()) {}
Ted Kremenekcdba6592010-11-18 00:42:18 +00001705 static bool classof(const VisitorJob *VJ) {
1706 return VJ->getKind() == VisitorJob::MemberRefVisitKind;
1707 }
1708 FieldDecl *get() const {
1709 return static_cast<FieldDecl*>(data[0]);
1710 }
1711 SourceLocation getLoc() const {
1712 return SourceLocation::getFromRawEncoding((unsigned)(uintptr_t) data[1]);
1713 }
1714};
Ted Kremenek28a71942010-11-13 00:36:47 +00001715class EnqueueVisitor : public StmtVisitor<EnqueueVisitor, void> {
1716 VisitorWorkList &WL;
1717 CXCursor Parent;
1718public:
1719 EnqueueVisitor(VisitorWorkList &wl, CXCursor parent)
1720 : WL(wl), Parent(parent) {}
1721
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001722 void VisitAddrLabelExpr(AddrLabelExpr *E);
Ted Kremenek73d15c42010-11-13 01:09:29 +00001723 void VisitBlockExpr(BlockExpr *B);
Ted Kremenek28a71942010-11-13 00:36:47 +00001724 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Ted Kremenek083c7e22010-11-13 05:38:03 +00001725 void VisitCompoundStmt(CompoundStmt *S);
Ted Kremenek11b8e3e2010-11-13 05:55:53 +00001726 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) { /* Do nothing. */ }
Douglas Gregorba0513d2011-10-25 01:33:02 +00001727 void VisitMSDependentExistsStmt(MSDependentExistsStmt *S);
Ted Kremenekf64d8032010-11-18 00:02:32 +00001728 void VisitCXXDependentScopeMemberExpr(CXXDependentScopeMemberExpr *E);
Ted Kremenek11b8e3e2010-11-13 05:55:53 +00001729 void VisitCXXNewExpr(CXXNewExpr *E);
Ted Kremenek6d0a00d2010-11-17 02:18:35 +00001730 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Ted Kremenek28a71942010-11-13 00:36:47 +00001731 void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E);
Ted Kremenekcdba6592010-11-18 00:42:18 +00001732 void VisitCXXPseudoDestructorExpr(CXXPseudoDestructorExpr *E);
Ted Kremenek73d15c42010-11-13 01:09:29 +00001733 void VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *E);
Ted Kremenekb8dd1ca2010-11-17 00:50:41 +00001734 void VisitCXXTypeidExpr(CXXTypeidExpr *E);
Ted Kremenek55b933a2010-11-17 00:50:36 +00001735 void VisitCXXUnresolvedConstructExpr(CXXUnresolvedConstructExpr *E);
Ted Kremenek1e7e8772010-11-17 00:50:52 +00001736 void VisitCXXUuidofExpr(CXXUuidofExpr *E);
Argyrios Kyrtzidisdcbb2fb2011-12-03 03:49:44 +00001737 void VisitCXXCatchStmt(CXXCatchStmt *S);
Ted Kremeneke4979cc2010-11-13 00:58:18 +00001738 void VisitDeclRefExpr(DeclRefExpr *D);
Ted Kremenek035dc412010-11-13 00:36:50 +00001739 void VisitDeclStmt(DeclStmt *S);
Ted Kremenekf64d8032010-11-18 00:02:32 +00001740 void VisitDependentScopeDeclRefExpr(DependentScopeDeclRefExpr *E);
Ted Kremenekcdba6592010-11-18 00:42:18 +00001741 void VisitDesignatedInitExpr(DesignatedInitExpr *E);
Ted Kremenek28a71942010-11-13 00:36:47 +00001742 void VisitExplicitCastExpr(ExplicitCastExpr *E);
1743 void VisitForStmt(ForStmt *FS);
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001744 void VisitGotoStmt(GotoStmt *GS);
Ted Kremenek28a71942010-11-13 00:36:47 +00001745 void VisitIfStmt(IfStmt *If);
1746 void VisitInitListExpr(InitListExpr *IE);
1747 void VisitMemberExpr(MemberExpr *M);
Ted Kremenekcdba6592010-11-18 00:42:18 +00001748 void VisitOffsetOfExpr(OffsetOfExpr *E);
Ted Kremenek73d15c42010-11-13 01:09:29 +00001749 void VisitObjCEncodeExpr(ObjCEncodeExpr *E);
Ted Kremenek28a71942010-11-13 00:36:47 +00001750 void VisitObjCMessageExpr(ObjCMessageExpr *M);
1751 void VisitOverloadExpr(OverloadExpr *E);
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00001752 void VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E);
Ted Kremenek28a71942010-11-13 00:36:47 +00001753 void VisitStmt(Stmt *S);
1754 void VisitSwitchStmt(SwitchStmt *S);
1755 void VisitWhileStmt(WhileStmt *W);
Ted Kremenek2939b6f2010-11-17 00:50:50 +00001756 void VisitUnaryTypeTraitExpr(UnaryTypeTraitExpr *E);
Francois Pichet6ad6f282010-12-07 00:08:36 +00001757 void VisitBinaryTypeTraitExpr(BinaryTypeTraitExpr *E);
Douglas Gregor4ca8ac22012-02-24 07:38:34 +00001758 void VisitTypeTraitExpr(TypeTraitExpr *E);
John Wiegley21ff2e52011-04-28 00:16:57 +00001759 void VisitArrayTypeTraitExpr(ArrayTypeTraitExpr *E);
John Wiegley55262202011-04-25 06:54:41 +00001760 void VisitExpressionTraitExpr(ExpressionTraitExpr *E);
Ted Kremenek28a71942010-11-13 00:36:47 +00001761 void VisitUnresolvedMemberExpr(UnresolvedMemberExpr *U);
Ted Kremenek9d3bf792010-11-17 00:50:43 +00001762 void VisitVAArgExpr(VAArgExpr *E);
Douglas Gregor94d96292011-01-19 20:34:17 +00001763 void VisitSizeOfPackExpr(SizeOfPackExpr *E);
John McCall4b9c2d22011-11-06 09:01:30 +00001764 void VisitPseudoObjectExpr(PseudoObjectExpr *E);
1765 void VisitOpaqueValueExpr(OpaqueValueExpr *E);
Douglas Gregor011d8b92012-02-15 00:54:55 +00001766 void VisitLambdaExpr(LambdaExpr *E);
Douglas Gregoree8aff02011-01-04 17:33:58 +00001767
Ted Kremenek28a71942010-11-13 00:36:47 +00001768private:
Ted Kremenekf64d8032010-11-18 00:02:32 +00001769 void AddDeclarationNameInfo(Stmt *S);
Douglas Gregorf3db29f2011-02-25 18:19:59 +00001770 void AddNestedNameSpecifierLoc(NestedNameSpecifierLoc Qualifier);
Argyrios Kyrtzidisb0c3e092011-09-22 20:07:03 +00001771 void AddExplicitTemplateArgs(const ASTTemplateArgumentListInfo *A);
Ted Kremenekcdba6592010-11-18 00:42:18 +00001772 void AddMemberRef(FieldDecl *D, SourceLocation L);
Ted Kremenek28a71942010-11-13 00:36:47 +00001773 void AddStmt(Stmt *S);
Ted Kremenek035dc412010-11-13 00:36:50 +00001774 void AddDecl(Decl *D, bool isFirst = true);
Ted Kremenek28a71942010-11-13 00:36:47 +00001775 void AddTypeLoc(TypeSourceInfo *TI);
1776 void EnqueueChildren(Stmt *S);
1777};
1778} // end anonyous namespace
1779
Ted Kremenekf64d8032010-11-18 00:02:32 +00001780void EnqueueVisitor::AddDeclarationNameInfo(Stmt *S) {
1781 // 'S' should always be non-null, since it comes from the
1782 // statement we are visiting.
1783 WL.push_back(DeclarationNameInfoVisit(S, Parent));
1784}
Douglas Gregorf3db29f2011-02-25 18:19:59 +00001785
1786void
1787EnqueueVisitor::AddNestedNameSpecifierLoc(NestedNameSpecifierLoc Qualifier) {
1788 if (Qualifier)
1789 WL.push_back(NestedNameSpecifierLocVisit(Qualifier, Parent));
1790}
1791
Ted Kremenek28a71942010-11-13 00:36:47 +00001792void EnqueueVisitor::AddStmt(Stmt *S) {
1793 if (S)
1794 WL.push_back(StmtVisit(S, Parent));
1795}
Ted Kremenek035dc412010-11-13 00:36:50 +00001796void EnqueueVisitor::AddDecl(Decl *D, bool isFirst) {
Ted Kremenek28a71942010-11-13 00:36:47 +00001797 if (D)
Ted Kremenek035dc412010-11-13 00:36:50 +00001798 WL.push_back(DeclVisit(D, Parent, isFirst));
Ted Kremenek28a71942010-11-13 00:36:47 +00001799}
Ted Kremenek60608ec2010-11-17 00:50:47 +00001800void EnqueueVisitor::
Argyrios Kyrtzidisb0c3e092011-09-22 20:07:03 +00001801 AddExplicitTemplateArgs(const ASTTemplateArgumentListInfo *A) {
Ted Kremenek60608ec2010-11-17 00:50:47 +00001802 if (A)
1803 WL.push_back(ExplicitTemplateArgsVisit(
Argyrios Kyrtzidisb0c3e092011-09-22 20:07:03 +00001804 const_cast<ASTTemplateArgumentListInfo*>(A), Parent));
Ted Kremenek60608ec2010-11-17 00:50:47 +00001805}
Ted Kremenekcdba6592010-11-18 00:42:18 +00001806void EnqueueVisitor::AddMemberRef(FieldDecl *D, SourceLocation L) {
1807 if (D)
1808 WL.push_back(MemberRefVisit(D, L, Parent));
1809}
Ted Kremenek28a71942010-11-13 00:36:47 +00001810void EnqueueVisitor::AddTypeLoc(TypeSourceInfo *TI) {
1811 if (TI)
1812 WL.push_back(TypeLocVisit(TI->getTypeLoc(), Parent));
1813 }
1814void EnqueueVisitor::EnqueueChildren(Stmt *S) {
Ted Kremeneka6b70432010-11-12 21:34:09 +00001815 unsigned size = WL.size();
John McCall7502c1d2011-02-13 04:07:26 +00001816 for (Stmt::child_range Child = S->children(); Child; ++Child) {
Ted Kremenek28a71942010-11-13 00:36:47 +00001817 AddStmt(*Child);
Ted Kremeneka6b70432010-11-12 21:34:09 +00001818 }
1819 if (size == WL.size())
1820 return;
1821 // Now reverse the entries we just added. This will match the DFS
1822 // ordering performed by the worklist.
1823 VisitorWorkList::iterator I = WL.begin() + size, E = WL.end();
1824 std::reverse(I, E);
1825}
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001826void EnqueueVisitor::VisitAddrLabelExpr(AddrLabelExpr *E) {
1827 WL.push_back(LabelRefVisit(E->getLabel(), E->getLabelLoc(), Parent));
1828}
Ted Kremenek73d15c42010-11-13 01:09:29 +00001829void EnqueueVisitor::VisitBlockExpr(BlockExpr *B) {
1830 AddDecl(B->getBlockDecl());
1831}
Ted Kremenek28a71942010-11-13 00:36:47 +00001832void EnqueueVisitor::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
1833 EnqueueChildren(E);
1834 AddTypeLoc(E->getTypeSourceInfo());
1835}
Ted Kremenek083c7e22010-11-13 05:38:03 +00001836void EnqueueVisitor::VisitCompoundStmt(CompoundStmt *S) {
1837 for (CompoundStmt::reverse_body_iterator I = S->body_rbegin(),
1838 E = S->body_rend(); I != E; ++I) {
1839 AddStmt(*I);
1840 }
Ted Kremenek11b8e3e2010-11-13 05:55:53 +00001841}
Ted Kremenekf64d8032010-11-18 00:02:32 +00001842void EnqueueVisitor::
Douglas Gregorba0513d2011-10-25 01:33:02 +00001843VisitMSDependentExistsStmt(MSDependentExistsStmt *S) {
1844 AddStmt(S->getSubStmt());
1845 AddDeclarationNameInfo(S);
1846 if (NestedNameSpecifierLoc QualifierLoc = S->getQualifierLoc())
1847 AddNestedNameSpecifierLoc(QualifierLoc);
1848}
1849
1850void EnqueueVisitor::
Ted Kremenekf64d8032010-11-18 00:02:32 +00001851VisitCXXDependentScopeMemberExpr(CXXDependentScopeMemberExpr *E) {
1852 AddExplicitTemplateArgs(E->getOptionalExplicitTemplateArgs());
1853 AddDeclarationNameInfo(E);
Douglas Gregor7c3179c2011-02-28 18:50:33 +00001854 if (NestedNameSpecifierLoc QualifierLoc = E->getQualifierLoc())
1855 AddNestedNameSpecifierLoc(QualifierLoc);
Ted Kremenekf64d8032010-11-18 00:02:32 +00001856 if (!E->isImplicitAccess())
1857 AddStmt(E->getBase());
1858}
Ted Kremenek11b8e3e2010-11-13 05:55:53 +00001859void EnqueueVisitor::VisitCXXNewExpr(CXXNewExpr *E) {
Sebastian Redl2aed8b82012-02-16 12:22:20 +00001860 // Enqueue the initializer , if any.
1861 AddStmt(E->getInitializer());
Ted Kremenek11b8e3e2010-11-13 05:55:53 +00001862 // Enqueue the array size, if any.
1863 AddStmt(E->getArraySize());
1864 // Enqueue the allocated type.
1865 AddTypeLoc(E->getAllocatedTypeSourceInfo());
1866 // Enqueue the placement arguments.
1867 for (unsigned I = E->getNumPlacementArgs(); I > 0; --I)
1868 AddStmt(E->getPlacementArg(I-1));
1869}
Ted Kremenek28a71942010-11-13 00:36:47 +00001870void EnqueueVisitor::VisitCXXOperatorCallExpr(CXXOperatorCallExpr *CE) {
Ted Kremenek8b8d8c92010-11-13 05:55:56 +00001871 for (unsigned I = CE->getNumArgs(); I > 1 /* Yes, this is 1 */; --I)
1872 AddStmt(CE->getArg(I-1));
Ted Kremenek28a71942010-11-13 00:36:47 +00001873 AddStmt(CE->getCallee());
1874 AddStmt(CE->getArg(0));
1875}
Ted Kremenekcdba6592010-11-18 00:42:18 +00001876void EnqueueVisitor::VisitCXXPseudoDestructorExpr(CXXPseudoDestructorExpr *E) {
1877 // Visit the name of the type being destroyed.
1878 AddTypeLoc(E->getDestroyedTypeInfo());
1879 // Visit the scope type that looks disturbingly like the nested-name-specifier
1880 // but isn't.
1881 AddTypeLoc(E->getScopeTypeInfo());
1882 // Visit the nested-name-specifier.
Douglas Gregorf3db29f2011-02-25 18:19:59 +00001883 if (NestedNameSpecifierLoc QualifierLoc = E->getQualifierLoc())
1884 AddNestedNameSpecifierLoc(QualifierLoc);
Ted Kremenekcdba6592010-11-18 00:42:18 +00001885 // Visit base expression.
1886 AddStmt(E->getBase());
1887}
Ted Kremenek6d0a00d2010-11-17 02:18:35 +00001888void EnqueueVisitor::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
1889 AddTypeLoc(E->getTypeSourceInfo());
1890}
Ted Kremenek73d15c42010-11-13 01:09:29 +00001891void EnqueueVisitor::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *E) {
1892 EnqueueChildren(E);
1893 AddTypeLoc(E->getTypeSourceInfo());
1894}
Ted Kremenekb8dd1ca2010-11-17 00:50:41 +00001895void EnqueueVisitor::VisitCXXTypeidExpr(CXXTypeidExpr *E) {
1896 EnqueueChildren(E);
1897 if (E->isTypeOperand())
1898 AddTypeLoc(E->getTypeOperandSourceInfo());
1899}
Ted Kremenek55b933a2010-11-17 00:50:36 +00001900
1901void EnqueueVisitor::VisitCXXUnresolvedConstructExpr(CXXUnresolvedConstructExpr
1902 *E) {
1903 EnqueueChildren(E);
1904 AddTypeLoc(E->getTypeSourceInfo());
1905}
Ted Kremenek1e7e8772010-11-17 00:50:52 +00001906void EnqueueVisitor::VisitCXXUuidofExpr(CXXUuidofExpr *E) {
1907 EnqueueChildren(E);
1908 if (E->isTypeOperand())
1909 AddTypeLoc(E->getTypeOperandSourceInfo());
1910}
Argyrios Kyrtzidisdcbb2fb2011-12-03 03:49:44 +00001911
1912void EnqueueVisitor::VisitCXXCatchStmt(CXXCatchStmt *S) {
1913 EnqueueChildren(S);
1914 AddDecl(S->getExceptionDecl());
1915}
1916
Ted Kremeneke4979cc2010-11-13 00:58:18 +00001917void EnqueueVisitor::VisitDeclRefExpr(DeclRefExpr *DR) {
Ted Kremenek60608ec2010-11-17 00:50:47 +00001918 if (DR->hasExplicitTemplateArgs()) {
1919 AddExplicitTemplateArgs(&DR->getExplicitTemplateArgs());
1920 }
Ted Kremeneke4979cc2010-11-13 00:58:18 +00001921 WL.push_back(DeclRefExprParts(DR, Parent));
1922}
Ted Kremenekf64d8032010-11-18 00:02:32 +00001923void EnqueueVisitor::VisitDependentScopeDeclRefExpr(DependentScopeDeclRefExpr *E) {
1924 AddExplicitTemplateArgs(E->getOptionalExplicitTemplateArgs());
1925 AddDeclarationNameInfo(E);
Douglas Gregor00cf3cc2011-02-25 20:49:16 +00001926 AddNestedNameSpecifierLoc(E->getQualifierLoc());
Ted Kremenekf64d8032010-11-18 00:02:32 +00001927}
Ted Kremenek035dc412010-11-13 00:36:50 +00001928void EnqueueVisitor::VisitDeclStmt(DeclStmt *S) {
1929 unsigned size = WL.size();
1930 bool isFirst = true;
1931 for (DeclStmt::decl_iterator D = S->decl_begin(), DEnd = S->decl_end();
1932 D != DEnd; ++D) {
1933 AddDecl(*D, isFirst);
1934 isFirst = false;
1935 }
1936 if (size == WL.size())
1937 return;
1938 // Now reverse the entries we just added. This will match the DFS
1939 // ordering performed by the worklist.
1940 VisitorWorkList::iterator I = WL.begin() + size, E = WL.end();
1941 std::reverse(I, E);
1942}
Ted Kremenekcdba6592010-11-18 00:42:18 +00001943void EnqueueVisitor::VisitDesignatedInitExpr(DesignatedInitExpr *E) {
1944 AddStmt(E->getInit());
1945 typedef DesignatedInitExpr::Designator Designator;
1946 for (DesignatedInitExpr::reverse_designators_iterator
1947 D = E->designators_rbegin(), DEnd = E->designators_rend();
1948 D != DEnd; ++D) {
1949 if (D->isFieldDesignator()) {
1950 if (FieldDecl *Field = D->getField())
1951 AddMemberRef(Field, D->getFieldLoc());
1952 continue;
1953 }
1954 if (D->isArrayDesignator()) {
1955 AddStmt(E->getArrayIndex(*D));
1956 continue;
1957 }
1958 assert(D->isArrayRangeDesignator() && "Unknown designator kind");
1959 AddStmt(E->getArrayRangeEnd(*D));
1960 AddStmt(E->getArrayRangeStart(*D));
1961 }
1962}
Ted Kremenek28a71942010-11-13 00:36:47 +00001963void EnqueueVisitor::VisitExplicitCastExpr(ExplicitCastExpr *E) {
1964 EnqueueChildren(E);
1965 AddTypeLoc(E->getTypeInfoAsWritten());
1966}
1967void EnqueueVisitor::VisitForStmt(ForStmt *FS) {
1968 AddStmt(FS->getBody());
1969 AddStmt(FS->getInc());
1970 AddStmt(FS->getCond());
1971 AddDecl(FS->getConditionVariable());
1972 AddStmt(FS->getInit());
1973}
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001974void EnqueueVisitor::VisitGotoStmt(GotoStmt *GS) {
1975 WL.push_back(LabelRefVisit(GS->getLabel(), GS->getLabelLoc(), Parent));
1976}
Ted Kremenek28a71942010-11-13 00:36:47 +00001977void EnqueueVisitor::VisitIfStmt(IfStmt *If) {
1978 AddStmt(If->getElse());
1979 AddStmt(If->getThen());
1980 AddStmt(If->getCond());
1981 AddDecl(If->getConditionVariable());
1982}
1983void EnqueueVisitor::VisitInitListExpr(InitListExpr *IE) {
1984 // We care about the syntactic form of the initializer list, only.
1985 if (InitListExpr *Syntactic = IE->getSyntacticForm())
1986 IE = Syntactic;
1987 EnqueueChildren(IE);
1988}
1989void EnqueueVisitor::VisitMemberExpr(MemberExpr *M) {
Douglas Gregor89629a72010-11-17 17:15:08 +00001990 WL.push_back(MemberExprParts(M, Parent));
1991
1992 // If the base of the member access expression is an implicit 'this', don't
1993 // visit it.
1994 // FIXME: If we ever want to show these implicit accesses, this will be
1995 // unfortunate. However, clang_getCursor() relies on this behavior.
Douglas Gregor75e85042011-03-02 21:06:53 +00001996 if (!M->isImplicitAccess())
1997 AddStmt(M->getBase());
Ted Kremenek28a71942010-11-13 00:36:47 +00001998}
Ted Kremenek73d15c42010-11-13 01:09:29 +00001999void EnqueueVisitor::VisitObjCEncodeExpr(ObjCEncodeExpr *E) {
2000 AddTypeLoc(E->getEncodedTypeSourceInfo());
2001}
Ted Kremenek28a71942010-11-13 00:36:47 +00002002void EnqueueVisitor::VisitObjCMessageExpr(ObjCMessageExpr *M) {
2003 EnqueueChildren(M);
2004 AddTypeLoc(M->getClassReceiverTypeInfo());
2005}
Ted Kremenekcdba6592010-11-18 00:42:18 +00002006void EnqueueVisitor::VisitOffsetOfExpr(OffsetOfExpr *E) {
2007 // Visit the components of the offsetof expression.
2008 for (unsigned N = E->getNumComponents(), I = N; I > 0; --I) {
2009 typedef OffsetOfExpr::OffsetOfNode OffsetOfNode;
2010 const OffsetOfNode &Node = E->getComponent(I-1);
2011 switch (Node.getKind()) {
2012 case OffsetOfNode::Array:
2013 AddStmt(E->getIndexExpr(Node.getArrayExprIndex()));
2014 break;
2015 case OffsetOfNode::Field:
Abramo Bagnara06dec892011-03-12 09:45:03 +00002016 AddMemberRef(Node.getField(), Node.getSourceRange().getEnd());
Ted Kremenekcdba6592010-11-18 00:42:18 +00002017 break;
2018 case OffsetOfNode::Identifier:
2019 case OffsetOfNode::Base:
2020 continue;
2021 }
2022 }
2023 // Visit the type into which we're computing the offset.
2024 AddTypeLoc(E->getTypeSourceInfo());
2025}
Ted Kremenek28a71942010-11-13 00:36:47 +00002026void EnqueueVisitor::VisitOverloadExpr(OverloadExpr *E) {
Ted Kremenek60608ec2010-11-17 00:50:47 +00002027 AddExplicitTemplateArgs(E->getOptionalExplicitTemplateArgs());
Ted Kremenek60458782010-11-12 21:34:16 +00002028 WL.push_back(OverloadExprParts(E, Parent));
2029}
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002030void EnqueueVisitor::VisitUnaryExprOrTypeTraitExpr(
2031 UnaryExprOrTypeTraitExpr *E) {
Ted Kremenek6d0a00d2010-11-17 02:18:35 +00002032 EnqueueChildren(E);
2033 if (E->isArgumentType())
2034 AddTypeLoc(E->getArgumentTypeInfo());
2035}
Ted Kremenek28a71942010-11-13 00:36:47 +00002036void EnqueueVisitor::VisitStmt(Stmt *S) {
2037 EnqueueChildren(S);
2038}
2039void EnqueueVisitor::VisitSwitchStmt(SwitchStmt *S) {
2040 AddStmt(S->getBody());
2041 AddStmt(S->getCond());
2042 AddDecl(S->getConditionVariable());
2043}
Ted Kremenekfafa75a2010-11-17 00:50:39 +00002044
Ted Kremenek28a71942010-11-13 00:36:47 +00002045void EnqueueVisitor::VisitWhileStmt(WhileStmt *W) {
2046 AddStmt(W->getBody());
2047 AddStmt(W->getCond());
2048 AddDecl(W->getConditionVariable());
2049}
John Wiegley21ff2e52011-04-28 00:16:57 +00002050
Ted Kremenek2939b6f2010-11-17 00:50:50 +00002051void EnqueueVisitor::VisitUnaryTypeTraitExpr(UnaryTypeTraitExpr *E) {
2052 AddTypeLoc(E->getQueriedTypeSourceInfo());
2053}
Francois Pichet6ad6f282010-12-07 00:08:36 +00002054
2055void EnqueueVisitor::VisitBinaryTypeTraitExpr(BinaryTypeTraitExpr *E) {
Francois Pichet6ad6f282010-12-07 00:08:36 +00002056 AddTypeLoc(E->getRhsTypeSourceInfo());
Francois Pichet0a03a3f2010-12-08 09:11:05 +00002057 AddTypeLoc(E->getLhsTypeSourceInfo());
Francois Pichet6ad6f282010-12-07 00:08:36 +00002058}
2059
Douglas Gregor4ca8ac22012-02-24 07:38:34 +00002060void EnqueueVisitor::VisitTypeTraitExpr(TypeTraitExpr *E) {
2061 for (unsigned I = E->getNumArgs(); I > 0; --I)
2062 AddTypeLoc(E->getArg(I-1));
2063}
2064
John Wiegley21ff2e52011-04-28 00:16:57 +00002065void EnqueueVisitor::VisitArrayTypeTraitExpr(ArrayTypeTraitExpr *E) {
2066 AddTypeLoc(E->getQueriedTypeSourceInfo());
2067}
2068
John Wiegley55262202011-04-25 06:54:41 +00002069void EnqueueVisitor::VisitExpressionTraitExpr(ExpressionTraitExpr *E) {
2070 EnqueueChildren(E);
2071}
2072
Ted Kremenek28a71942010-11-13 00:36:47 +00002073void EnqueueVisitor::VisitUnresolvedMemberExpr(UnresolvedMemberExpr *U) {
2074 VisitOverloadExpr(U);
2075 if (!U->isImplicitAccess())
2076 AddStmt(U->getBase());
2077}
Ted Kremenek9d3bf792010-11-17 00:50:43 +00002078void EnqueueVisitor::VisitVAArgExpr(VAArgExpr *E) {
2079 AddStmt(E->getSubExpr());
2080 AddTypeLoc(E->getWrittenTypeInfo());
2081}
Douglas Gregor94d96292011-01-19 20:34:17 +00002082void EnqueueVisitor::VisitSizeOfPackExpr(SizeOfPackExpr *E) {
2083 WL.push_back(SizeOfPackExprParts(E, Parent));
2084}
John McCall4b9c2d22011-11-06 09:01:30 +00002085void EnqueueVisitor::VisitOpaqueValueExpr(OpaqueValueExpr *E) {
2086 // If the opaque value has a source expression, just transparently
2087 // visit that. This is useful for (e.g.) pseudo-object expressions.
2088 if (Expr *SourceExpr = E->getSourceExpr())
2089 return Visit(SourceExpr);
John McCall4b9c2d22011-11-06 09:01:30 +00002090}
Douglas Gregor011d8b92012-02-15 00:54:55 +00002091void EnqueueVisitor::VisitLambdaExpr(LambdaExpr *E) {
2092 AddStmt(E->getBody());
2093 WL.push_back(LambdaExprParts(E, Parent));
2094}
John McCall4b9c2d22011-11-06 09:01:30 +00002095void EnqueueVisitor::VisitPseudoObjectExpr(PseudoObjectExpr *E) {
2096 // Treat the expression like its syntactic form.
2097 Visit(E->getSyntacticForm());
2098}
Ted Kremenek60458782010-11-12 21:34:16 +00002099
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002100void CursorVisitor::EnqueueWorkList(VisitorWorkList &WL, Stmt *S) {
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002101 EnqueueVisitor(WL, MakeCXCursor(S, StmtParent, TU,RegionOfInterest)).Visit(S);
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002102}
2103
2104bool CursorVisitor::IsInRegionOfInterest(CXCursor C) {
2105 if (RegionOfInterest.isValid()) {
2106 SourceRange Range = getRawCursorExtent(C);
2107 if (Range.isInvalid() || CompareRegionOfInterest(Range))
2108 return false;
2109 }
2110 return true;
2111}
2112
2113bool CursorVisitor::RunVisitorWorkList(VisitorWorkList &WL) {
2114 while (!WL.empty()) {
2115 // Dequeue the worklist item.
Ted Kremenek82f3c502010-11-15 22:23:26 +00002116 VisitorJob LI = WL.back();
2117 WL.pop_back();
2118
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002119 // Set the Parent field, then back to its old value once we're done.
2120 SetParentRAII SetParent(Parent, StmtParent, LI.getParent());
2121
2122 switch (LI.getKind()) {
Ted Kremenekf1107452010-11-12 18:26:56 +00002123 case VisitorJob::DeclVisitKind: {
Ted Kremenek82f3c502010-11-15 22:23:26 +00002124 Decl *D = cast<DeclVisit>(&LI)->get();
Ted Kremenekf1107452010-11-12 18:26:56 +00002125 if (!D)
2126 continue;
2127
2128 // For now, perform default visitation for Decls.
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002129 if (Visit(MakeCXCursor(D, TU, RegionOfInterest,
2130 cast<DeclVisit>(&LI)->isFirst())))
Ted Kremenekf1107452010-11-12 18:26:56 +00002131 return true;
2132
2133 continue;
2134 }
Ted Kremenek60608ec2010-11-17 00:50:47 +00002135 case VisitorJob::ExplicitTemplateArgsVisitKind: {
Argyrios Kyrtzidisb0c3e092011-09-22 20:07:03 +00002136 const ASTTemplateArgumentListInfo *ArgList =
Ted Kremenek60608ec2010-11-17 00:50:47 +00002137 cast<ExplicitTemplateArgsVisit>(&LI)->get();
2138 for (const TemplateArgumentLoc *Arg = ArgList->getTemplateArgs(),
2139 *ArgEnd = Arg + ArgList->NumTemplateArgs;
2140 Arg != ArgEnd; ++Arg) {
2141 if (VisitTemplateArgumentLoc(*Arg))
2142 return true;
2143 }
2144 continue;
2145 }
Ted Kremenekcdb4caf2010-11-12 21:34:12 +00002146 case VisitorJob::TypeLocVisitKind: {
2147 // Perform default visitation for TypeLocs.
Ted Kremenek82f3c502010-11-15 22:23:26 +00002148 if (Visit(cast<TypeLocVisit>(&LI)->get()))
Ted Kremenekcdb4caf2010-11-12 21:34:12 +00002149 return true;
2150 continue;
2151 }
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00002152 case VisitorJob::LabelRefVisitKind: {
Chris Lattnerad8dcf42011-02-17 07:39:24 +00002153 LabelDecl *LS = cast<LabelRefVisit>(&LI)->get();
Ted Kremeneke7455012011-02-23 04:54:51 +00002154 if (LabelStmt *stmt = LS->getStmt()) {
2155 if (Visit(MakeCursorLabelRef(stmt, cast<LabelRefVisit>(&LI)->getLoc(),
2156 TU))) {
2157 return true;
2158 }
2159 }
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00002160 continue;
2161 }
Ted Kremenek47695c82011-08-18 22:25:21 +00002162
Douglas Gregorf3db29f2011-02-25 18:19:59 +00002163 case VisitorJob::NestedNameSpecifierLocVisitKind: {
2164 NestedNameSpecifierLocVisit *V = cast<NestedNameSpecifierLocVisit>(&LI);
2165 if (VisitNestedNameSpecifierLoc(V->get()))
2166 return true;
2167 continue;
2168 }
2169
Ted Kremenekf64d8032010-11-18 00:02:32 +00002170 case VisitorJob::DeclarationNameInfoVisitKind: {
2171 if (VisitDeclarationNameInfo(cast<DeclarationNameInfoVisit>(&LI)
2172 ->get()))
2173 return true;
2174 continue;
2175 }
Ted Kremenekcdba6592010-11-18 00:42:18 +00002176 case VisitorJob::MemberRefVisitKind: {
2177 MemberRefVisit *V = cast<MemberRefVisit>(&LI);
2178 if (Visit(MakeCursorMemberRef(V->get(), V->getLoc(), TU)))
2179 return true;
2180 continue;
2181 }
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002182 case VisitorJob::StmtVisitKind: {
Ted Kremenek82f3c502010-11-15 22:23:26 +00002183 Stmt *S = cast<StmtVisit>(&LI)->get();
Ted Kremenek8c269ac2010-11-11 23:11:43 +00002184 if (!S)
2185 continue;
2186
Ted Kremenekf1107452010-11-12 18:26:56 +00002187 // Update the current cursor.
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002188 CXCursor Cursor = MakeCXCursor(S, StmtParent, TU, RegionOfInterest);
Ted Kremenekcdba6592010-11-18 00:42:18 +00002189 if (!IsInRegionOfInterest(Cursor))
2190 continue;
2191 switch (Visitor(Cursor, Parent, ClientData)) {
2192 case CXChildVisit_Break: return true;
2193 case CXChildVisit_Continue: break;
2194 case CXChildVisit_Recurse:
2195 EnqueueWorkList(WL, S);
Ted Kremenek82f3c502010-11-15 22:23:26 +00002196 break;
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002197 }
Ted Kremenek82f3c502010-11-15 22:23:26 +00002198 continue;
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002199 }
2200 case VisitorJob::MemberExprPartsKind: {
2201 // Handle the other pieces in the MemberExpr besides the base.
Ted Kremenek82f3c502010-11-15 22:23:26 +00002202 MemberExpr *M = cast<MemberExprParts>(&LI)->get();
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002203
2204 // Visit the nested-name-specifier
Douglas Gregor40d96a62011-02-28 21:54:11 +00002205 if (NestedNameSpecifierLoc QualifierLoc = M->getQualifierLoc())
2206 if (VisitNestedNameSpecifierLoc(QualifierLoc))
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002207 return true;
2208
2209 // Visit the declaration name.
2210 if (VisitDeclarationNameInfo(M->getMemberNameInfo()))
2211 return true;
2212
2213 // Visit the explicitly-specified template arguments, if any.
2214 if (M->hasExplicitTemplateArgs()) {
2215 for (const TemplateArgumentLoc *Arg = M->getTemplateArgs(),
2216 *ArgEnd = Arg + M->getNumTemplateArgs();
2217 Arg != ArgEnd; ++Arg) {
2218 if (VisitTemplateArgumentLoc(*Arg))
2219 return true;
2220 }
2221 }
2222 continue;
2223 }
Ted Kremeneke4979cc2010-11-13 00:58:18 +00002224 case VisitorJob::DeclRefExprPartsKind: {
Ted Kremenek82f3c502010-11-15 22:23:26 +00002225 DeclRefExpr *DR = cast<DeclRefExprParts>(&LI)->get();
Ted Kremeneke4979cc2010-11-13 00:58:18 +00002226 // Visit nested-name-specifier, if present.
Douglas Gregor40d96a62011-02-28 21:54:11 +00002227 if (NestedNameSpecifierLoc QualifierLoc = DR->getQualifierLoc())
2228 if (VisitNestedNameSpecifierLoc(QualifierLoc))
Ted Kremeneke4979cc2010-11-13 00:58:18 +00002229 return true;
2230 // Visit declaration name.
2231 if (VisitDeclarationNameInfo(DR->getNameInfo()))
2232 return true;
Ted Kremeneke4979cc2010-11-13 00:58:18 +00002233 continue;
2234 }
Ted Kremenek60458782010-11-12 21:34:16 +00002235 case VisitorJob::OverloadExprPartsKind: {
Ted Kremenek82f3c502010-11-15 22:23:26 +00002236 OverloadExpr *O = cast<OverloadExprParts>(&LI)->get();
Ted Kremenek60458782010-11-12 21:34:16 +00002237 // Visit the nested-name-specifier.
Douglas Gregor4c9be892011-02-28 20:01:57 +00002238 if (NestedNameSpecifierLoc QualifierLoc = O->getQualifierLoc())
2239 if (VisitNestedNameSpecifierLoc(QualifierLoc))
Ted Kremenek60458782010-11-12 21:34:16 +00002240 return true;
2241 // Visit the declaration name.
2242 if (VisitDeclarationNameInfo(O->getNameInfo()))
2243 return true;
2244 // Visit the overloaded declaration reference.
2245 if (Visit(MakeCursorOverloadedDeclRef(O, TU)))
2246 return true;
Ted Kremenek60458782010-11-12 21:34:16 +00002247 continue;
2248 }
Douglas Gregor94d96292011-01-19 20:34:17 +00002249 case VisitorJob::SizeOfPackExprPartsKind: {
2250 SizeOfPackExpr *E = cast<SizeOfPackExprParts>(&LI)->get();
2251 NamedDecl *Pack = E->getPack();
2252 if (isa<TemplateTypeParmDecl>(Pack)) {
2253 if (Visit(MakeCursorTypeRef(cast<TemplateTypeParmDecl>(Pack),
2254 E->getPackLoc(), TU)))
2255 return true;
2256
2257 continue;
2258 }
2259
2260 if (isa<TemplateTemplateParmDecl>(Pack)) {
2261 if (Visit(MakeCursorTemplateRef(cast<TemplateTemplateParmDecl>(Pack),
2262 E->getPackLoc(), TU)))
2263 return true;
2264
2265 continue;
2266 }
2267
2268 // Non-type template parameter packs and function parameter packs are
2269 // treated like DeclRefExpr cursors.
2270 continue;
2271 }
Douglas Gregor011d8b92012-02-15 00:54:55 +00002272
2273 case VisitorJob::LambdaExprPartsKind: {
2274 // Visit captures.
2275 LambdaExpr *E = cast<LambdaExprParts>(&LI)->get();
2276 for (LambdaExpr::capture_iterator C = E->explicit_capture_begin(),
2277 CEnd = E->explicit_capture_end();
2278 C != CEnd; ++C) {
2279 if (C->capturesThis())
2280 continue;
2281
2282 if (Visit(MakeCursorVariableRef(C->getCapturedVar(),
2283 C->getLocation(),
2284 TU)))
2285 return true;
2286 }
2287
2288 // Visit parameters and return type, if present.
2289 if (E->hasExplicitParameters() || E->hasExplicitResultType()) {
2290 TypeLoc TL = E->getCallOperator()->getTypeSourceInfo()->getTypeLoc();
2291 if (E->hasExplicitParameters() && E->hasExplicitResultType()) {
2292 // Visit the whole type.
2293 if (Visit(TL))
2294 return true;
2295 } else if (isa<FunctionProtoTypeLoc>(TL)) {
2296 FunctionProtoTypeLoc Proto = cast<FunctionProtoTypeLoc>(TL);
2297 if (E->hasExplicitParameters()) {
2298 // Visit parameters.
2299 for (unsigned I = 0, N = Proto.getNumArgs(); I != N; ++I)
2300 if (Visit(MakeCXCursor(Proto.getArg(I), TU)))
2301 return true;
2302 } else {
2303 // Visit result type.
2304 if (Visit(Proto.getResultLoc()))
2305 return true;
2306 }
2307 }
2308 }
2309 break;
2310 }
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002311 }
2312 }
2313 return false;
2314}
2315
Ted Kremenekcdba6592010-11-18 00:42:18 +00002316bool CursorVisitor::Visit(Stmt *S) {
Ted Kremenekd1ded662010-11-15 23:31:32 +00002317 VisitorWorkList *WL = 0;
2318 if (!WorkListFreeList.empty()) {
2319 WL = WorkListFreeList.back();
2320 WL->clear();
2321 WorkListFreeList.pop_back();
2322 }
2323 else {
2324 WL = new VisitorWorkList();
2325 WorkListCache.push_back(WL);
2326 }
2327 EnqueueWorkList(*WL, S);
2328 bool result = RunVisitorWorkList(*WL);
2329 WorkListFreeList.push_back(WL);
2330 return result;
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002331}
2332
Francois Pichet48a8d142011-07-25 22:00:44 +00002333namespace {
2334typedef llvm::SmallVector<SourceRange, 4> RefNamePieces;
2335RefNamePieces buildPieces(unsigned NameFlags, bool IsMemberRefExpr,
2336 const DeclarationNameInfo &NI,
2337 const SourceRange &QLoc,
Argyrios Kyrtzidisb0c3e092011-09-22 20:07:03 +00002338 const ASTTemplateArgumentListInfo *TemplateArgs = 0){
Francois Pichet48a8d142011-07-25 22:00:44 +00002339 const bool WantQualifier = NameFlags & CXNameRange_WantQualifier;
2340 const bool WantTemplateArgs = NameFlags & CXNameRange_WantTemplateArgs;
2341 const bool WantSinglePiece = NameFlags & CXNameRange_WantSinglePiece;
2342
2343 const DeclarationName::NameKind Kind = NI.getName().getNameKind();
2344
2345 RefNamePieces Pieces;
2346
2347 if (WantQualifier && QLoc.isValid())
2348 Pieces.push_back(QLoc);
2349
2350 if (Kind != DeclarationName::CXXOperatorName || IsMemberRefExpr)
2351 Pieces.push_back(NI.getLoc());
2352
2353 if (WantTemplateArgs && TemplateArgs)
2354 Pieces.push_back(SourceRange(TemplateArgs->LAngleLoc,
2355 TemplateArgs->RAngleLoc));
2356
2357 if (Kind == DeclarationName::CXXOperatorName) {
2358 Pieces.push_back(SourceLocation::getFromRawEncoding(
2359 NI.getInfo().CXXOperatorName.BeginOpNameLoc));
2360 Pieces.push_back(SourceLocation::getFromRawEncoding(
2361 NI.getInfo().CXXOperatorName.EndOpNameLoc));
2362 }
2363
2364 if (WantSinglePiece) {
2365 SourceRange R(Pieces.front().getBegin(), Pieces.back().getEnd());
2366 Pieces.clear();
2367 Pieces.push_back(R);
2368 }
2369
2370 return Pieces;
2371}
2372}
2373
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002374//===----------------------------------------------------------------------===//
2375// Misc. API hooks.
2376//===----------------------------------------------------------------------===//
2377
Douglas Gregor8c8d5412010-09-24 21:18:36 +00002378static llvm::sys::Mutex EnableMultithreadingMutex;
2379static bool EnabledMultithreading;
2380
Argyrios Kyrtzidisfa39f5b2011-12-15 04:52:41 +00002381static void fatal_error_handler(void *user_data, const std::string& reason) {
Argyrios Kyrtzidisfa39f5b2011-12-15 04:52:41 +00002382 // Write the result out to stderr avoiding errs() because raw_ostreams can
2383 // call report_fatal_error.
Argyrios Kyrtzidisdb7a8002011-12-15 06:51:30 +00002384 fprintf(stderr, "LIBCLANG FATAL ERROR: %s\n", reason.c_str());
Argyrios Kyrtzidisfa39f5b2011-12-15 04:52:41 +00002385 ::abort();
2386}
2387
Benjamin Kramer5e4bc592009-10-18 16:11:04 +00002388extern "C" {
Douglas Gregor0a812cf2010-02-18 23:07:20 +00002389CXIndex clang_createIndex(int excludeDeclarationsFromPCH,
2390 int displayDiagnostics) {
Daniel Dunbar48615ff2010-10-08 19:30:33 +00002391 // Disable pretty stack trace functionality, which will otherwise be a very
2392 // poor citizen of the world and set up all sorts of signal handlers.
2393 llvm::DisablePrettyStackTrace = true;
2394
Daniel Dunbarc7df4f32010-08-18 18:43:14 +00002395 // We use crash recovery to make some of our APIs more reliable, implicitly
2396 // enable it.
2397 llvm::CrashRecoveryContext::Enable();
2398
Douglas Gregor8c8d5412010-09-24 21:18:36 +00002399 // Enable support for multithreading in LLVM.
2400 {
2401 llvm::sys::ScopedLock L(EnableMultithreadingMutex);
2402 if (!EnabledMultithreading) {
Argyrios Kyrtzidisfa39f5b2011-12-15 04:52:41 +00002403 llvm::install_fatal_error_handler(fatal_error_handler, 0);
Douglas Gregor8c8d5412010-09-24 21:18:36 +00002404 llvm::llvm_start_multithreaded();
2405 EnabledMultithreading = true;
2406 }
2407 }
2408
Douglas Gregora030b7c2010-01-22 20:35:53 +00002409 CIndexer *CIdxr = new CIndexer();
Steve Naroffe56b4ba2009-10-20 14:46:24 +00002410 if (excludeDeclarationsFromPCH)
2411 CIdxr->setOnlyLocalDecls();
Douglas Gregor0a812cf2010-02-18 23:07:20 +00002412 if (displayDiagnostics)
2413 CIdxr->setDisplayDiagnostics();
Steve Naroffe56b4ba2009-10-20 14:46:24 +00002414 return CIdxr;
Steve Naroff600866c2009-08-27 19:51:58 +00002415}
2416
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00002417void clang_disposeIndex(CXIndex CIdx) {
Douglas Gregor2b37c9e2010-01-29 00:47:48 +00002418 if (CIdx)
2419 delete static_cast<CIndexer *>(CIdx);
Steve Naroff2bd6b9f2009-09-17 18:33:27 +00002420}
2421
Ted Kremenekd2427dd2011-03-18 23:05:39 +00002422void clang_toggleCrashRecovery(unsigned isEnabled) {
2423 if (isEnabled)
2424 llvm::CrashRecoveryContext::Enable();
2425 else
2426 llvm::CrashRecoveryContext::Disable();
2427}
2428
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00002429CXTranslationUnit clang_createTranslationUnit(CXIndex CIdx,
Douglas Gregora88084b2010-02-18 18:08:43 +00002430 const char *ast_filename) {
Douglas Gregor2b37c9e2010-01-29 00:47:48 +00002431 if (!CIdx)
2432 return 0;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002433
Douglas Gregor7d1d49d2009-10-16 20:01:17 +00002434 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +00002435 FileSystemOptions FileSystemOpts;
2436 FileSystemOpts.WorkingDir = CXXIdx->getWorkingDirectory();
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00002437
Dylan Noblesmithc93dc782012-02-20 14:00:23 +00002438 IntrusiveRefCntPtr<DiagnosticsEngine> Diags;
Ted Kremeneka60ed472010-11-16 08:15:36 +00002439 ASTUnit *TU = ASTUnit::LoadFromASTFile(ast_filename, Diags, FileSystemOpts,
Douglas Gregora88084b2010-02-18 18:08:43 +00002440 CXXIdx->getOnlyLocalDecls(),
2441 0, 0, true);
Ted Kremeneka60ed472010-11-16 08:15:36 +00002442 return MakeCXTranslationUnit(TU);
Steve Naroff600866c2009-08-27 19:51:58 +00002443}
2444
Douglas Gregorb1c031b2010-08-09 22:28:58 +00002445unsigned clang_defaultEditingTranslationUnitOptions() {
Douglas Gregor2a2c50b2010-09-27 05:49:58 +00002446 return CXTranslationUnit_PrecompiledPreamble |
Douglas Gregorb5af8432011-08-25 22:54:01 +00002447 CXTranslationUnit_CacheCompletionResults;
Douglas Gregorb1c031b2010-08-09 22:28:58 +00002448}
2449
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00002450CXTranslationUnit
2451clang_createTranslationUnitFromSourceFile(CXIndex CIdx,
2452 const char *source_filename,
2453 int num_command_line_args,
Douglas Gregor2ef69442010-09-01 16:43:19 +00002454 const char * const *command_line_args,
Douglas Gregor4db64a42010-01-23 00:14:00 +00002455 unsigned num_unsaved_files,
Douglas Gregora88084b2010-02-18 18:08:43 +00002456 struct CXUnsavedFile *unsaved_files) {
Douglas Gregordca8ee82011-05-06 16:33:08 +00002457 unsigned Options = CXTranslationUnit_DetailedPreprocessingRecord |
Chandler Carruthba7537f2011-07-14 09:02:10 +00002458 CXTranslationUnit_NestedMacroExpansions;
Douglas Gregor5a430212010-07-21 18:52:53 +00002459 return clang_parseTranslationUnit(CIdx, source_filename,
2460 command_line_args, num_command_line_args,
2461 unsaved_files, num_unsaved_files,
Douglas Gregordca8ee82011-05-06 16:33:08 +00002462 Options);
Douglas Gregor5a430212010-07-21 18:52:53 +00002463}
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002464
2465struct ParseTranslationUnitInfo {
2466 CXIndex CIdx;
2467 const char *source_filename;
Douglas Gregor2ef69442010-09-01 16:43:19 +00002468 const char *const *command_line_args;
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002469 int num_command_line_args;
2470 struct CXUnsavedFile *unsaved_files;
2471 unsigned num_unsaved_files;
2472 unsigned options;
2473 CXTranslationUnit result;
2474};
Daniel Dunbarb1fd3452010-08-19 23:44:10 +00002475static void clang_parseTranslationUnit_Impl(void *UserData) {
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002476 ParseTranslationUnitInfo *PTUI =
2477 static_cast<ParseTranslationUnitInfo*>(UserData);
2478 CXIndex CIdx = PTUI->CIdx;
2479 const char *source_filename = PTUI->source_filename;
Douglas Gregor2ef69442010-09-01 16:43:19 +00002480 const char * const *command_line_args = PTUI->command_line_args;
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002481 int num_command_line_args = PTUI->num_command_line_args;
2482 struct CXUnsavedFile *unsaved_files = PTUI->unsaved_files;
2483 unsigned num_unsaved_files = PTUI->num_unsaved_files;
2484 unsigned options = PTUI->options;
2485 PTUI->result = 0;
Douglas Gregor5a430212010-07-21 18:52:53 +00002486
Douglas Gregor2b37c9e2010-01-29 00:47:48 +00002487 if (!CIdx)
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002488 return;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002489
Steve Naroffe56b4ba2009-10-20 14:46:24 +00002490 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
2491
Douglas Gregor44c181a2010-07-23 00:33:23 +00002492 bool PrecompilePreamble = options & CXTranslationUnit_PrecompiledPreamble;
Douglas Gregor467dc882011-08-25 22:30:56 +00002493 // FIXME: Add a flag for modules.
2494 TranslationUnitKind TUKind
2495 = (options & CXTranslationUnit_Incomplete)? TU_Prefix : TU_Complete;
Douglas Gregor87c08a52010-08-13 22:48:40 +00002496 bool CacheCodeCompetionResults
2497 = options & CXTranslationUnit_CacheCompletionResults;
2498
Douglas Gregor5352ac02010-01-28 00:27:43 +00002499 // Configure the diagnostics.
2500 DiagnosticOptions DiagOpts;
Dylan Noblesmithc93dc782012-02-20 14:00:23 +00002501 IntrusiveRefCntPtr<DiagnosticsEngine>
Ted Kremenek25a11e12011-03-22 01:15:24 +00002502 Diags(CompilerInstance::createDiagnostics(DiagOpts, num_command_line_args,
2503 command_line_args));
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002504
Ted Kremenek25a11e12011-03-22 01:15:24 +00002505 // Recover resources if we crash before exiting this function.
David Blaikied6471f72011-09-25 23:23:43 +00002506 llvm::CrashRecoveryContextCleanupRegistrar<DiagnosticsEngine,
2507 llvm::CrashRecoveryContextReleaseRefCleanup<DiagnosticsEngine> >
Ted Kremenek25a11e12011-03-22 01:15:24 +00002508 DiagCleanup(Diags.getPtr());
2509
Dylan Noblesmith1e4c01b2012-02-13 12:32:21 +00002510 OwningPtr<std::vector<ASTUnit::RemappedFile> >
Ted Kremenek25a11e12011-03-22 01:15:24 +00002511 RemappedFiles(new std::vector<ASTUnit::RemappedFile>());
2512
2513 // Recover resources if we crash before exiting this function.
2514 llvm::CrashRecoveryContextCleanupRegistrar<
2515 std::vector<ASTUnit::RemappedFile> > RemappedCleanup(RemappedFiles.get());
2516
Douglas Gregor4db64a42010-01-23 00:14:00 +00002517 for (unsigned I = 0; I != num_unsaved_files; ++I) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00002518 StringRef Data(unsaved_files[I].Contents, unsaved_files[I].Length);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002519 const llvm::MemoryBuffer *Buffer
Chris Lattnera0a270c2010-04-05 22:42:27 +00002520 = llvm::MemoryBuffer::getMemBufferCopy(Data, unsaved_files[I].Filename);
Ted Kremenek25a11e12011-03-22 01:15:24 +00002521 RemappedFiles->push_back(std::make_pair(unsaved_files[I].Filename,
2522 Buffer));
Douglas Gregor4db64a42010-01-23 00:14:00 +00002523 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002524
Dylan Noblesmith1e4c01b2012-02-13 12:32:21 +00002525 OwningPtr<std::vector<const char *> >
Ted Kremenek25a11e12011-03-22 01:15:24 +00002526 Args(new std::vector<const char*>());
2527
2528 // Recover resources if we crash before exiting this method.
2529 llvm::CrashRecoveryContextCleanupRegistrar<std::vector<const char*> >
2530 ArgsCleanup(Args.get());
2531
Douglas Gregor52ddc5d2010-07-09 18:39:07 +00002532 // Since the Clang C library is primarily used by batch tools dealing with
2533 // (often very broken) source code, where spell-checking can have a
2534 // significant negative impact on performance (particularly when
2535 // precompiled headers are involved), we disable it by default.
Douglas Gregorb10daed2010-10-11 16:52:23 +00002536 // Only do this if we haven't found a spell-checking-related argument.
2537 bool FoundSpellCheckingArgument = false;
2538 for (int I = 0; I != num_command_line_args; ++I) {
2539 if (strcmp(command_line_args[I], "-fno-spell-checking") == 0 ||
2540 strcmp(command_line_args[I], "-fspell-checking") == 0) {
2541 FoundSpellCheckingArgument = true;
2542 break;
Steve Naroffe56b4ba2009-10-20 14:46:24 +00002543 }
Douglas Gregorb10daed2010-10-11 16:52:23 +00002544 }
2545 if (!FoundSpellCheckingArgument)
Ted Kremenek25a11e12011-03-22 01:15:24 +00002546 Args->push_back("-fno-spell-checking");
Douglas Gregorb10daed2010-10-11 16:52:23 +00002547
Ted Kremenek25a11e12011-03-22 01:15:24 +00002548 Args->insert(Args->end(), command_line_args,
2549 command_line_args + num_command_line_args);
Douglas Gregord93256e2010-01-28 06:00:51 +00002550
Argyrios Kyrtzidisc8429552011-03-20 18:17:52 +00002551 // The 'source_filename' argument is optional. If the caller does not
2552 // specify it then it is assumed that the source file is specified
2553 // in the actual argument list.
2554 // Put the source file after command_line_args otherwise if '-x' flag is
2555 // present it will be unused.
2556 if (source_filename)
Ted Kremenek25a11e12011-03-22 01:15:24 +00002557 Args->push_back(source_filename);
Argyrios Kyrtzidisc8429552011-03-20 18:17:52 +00002558
Douglas Gregor44c181a2010-07-23 00:33:23 +00002559 // Do we need the detailed preprocessing record?
Chandler Carruthba7537f2011-07-14 09:02:10 +00002560 bool NestedMacroExpansions = false;
Douglas Gregor44c181a2010-07-23 00:33:23 +00002561 if (options & CXTranslationUnit_DetailedPreprocessingRecord) {
Ted Kremenek25a11e12011-03-22 01:15:24 +00002562 Args->push_back("-Xclang");
2563 Args->push_back("-detailed-preprocessing-record");
Chandler Carruthba7537f2011-07-14 09:02:10 +00002564 NestedMacroExpansions
2565 = (options & CXTranslationUnit_NestedMacroExpansions);
Douglas Gregor44c181a2010-07-23 00:33:23 +00002566 }
2567
Argyrios Kyrtzidis026f6912010-11-18 21:47:04 +00002568 unsigned NumErrors = Diags->getClient()->getNumErrors();
Dylan Noblesmith1e4c01b2012-02-13 12:32:21 +00002569 OwningPtr<ASTUnit> Unit(
Ted Kremenek4ee99262011-03-22 20:16:19 +00002570 ASTUnit::LoadFromCommandLine(Args->size() ? &(*Args)[0] : 0
2571 /* vector::data() not portable */,
2572 Args->size() ? (&(*Args)[0] + Args->size()) :0,
Douglas Gregorb10daed2010-10-11 16:52:23 +00002573 Diags,
2574 CXXIdx->getClangResourcesPath(),
2575 CXXIdx->getOnlyLocalDecls(),
Douglas Gregore47be3e2010-11-11 00:39:14 +00002576 /*CaptureDiagnostics=*/true,
Ted Kremenek4ee99262011-03-22 20:16:19 +00002577 RemappedFiles->size() ? &(*RemappedFiles)[0]:0,
Ted Kremenek25a11e12011-03-22 01:15:24 +00002578 RemappedFiles->size(),
Argyrios Kyrtzidis299a4a92011-03-08 23:35:24 +00002579 /*RemappedFilesKeepOriginalName=*/true,
Douglas Gregorb10daed2010-10-11 16:52:23 +00002580 PrecompilePreamble,
Douglas Gregor467dc882011-08-25 22:30:56 +00002581 TUKind,
Douglas Gregor99ba2022010-10-27 17:24:53 +00002582 CacheCodeCompetionResults,
Chandler Carruthba7537f2011-07-14 09:02:10 +00002583 NestedMacroExpansions));
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002584
Argyrios Kyrtzidis026f6912010-11-18 21:47:04 +00002585 if (NumErrors != Diags->getClient()->getNumErrors()) {
Douglas Gregorb10daed2010-10-11 16:52:23 +00002586 // Make sure to check that 'Unit' is non-NULL.
2587 if (CXXIdx->getDisplayDiagnostics() && Unit.get()) {
2588 for (ASTUnit::stored_diag_iterator D = Unit->stored_diag_begin(),
2589 DEnd = Unit->stored_diag_end();
2590 D != DEnd; ++D) {
2591 CXStoredDiagnostic Diag(*D, Unit->getASTContext().getLangOptions());
2592 CXString Msg = clang_formatDiagnostic(&Diag,
2593 clang_defaultDiagnosticDisplayOptions());
2594 fprintf(stderr, "%s\n", clang_getCString(Msg));
2595 clang_disposeString(Msg);
2596 }
Douglas Gregor274f1902010-02-22 23:17:23 +00002597#ifdef LLVM_ON_WIN32
Douglas Gregorb10daed2010-10-11 16:52:23 +00002598 // On Windows, force a flush, since there may be multiple copies of
2599 // stderr and stdout in the file system, all with different buffers
2600 // but writing to the same device.
2601 fflush(stderr);
2602#endif
2603 }
Douglas Gregora88084b2010-02-18 18:08:43 +00002604 }
Douglas Gregord93256e2010-01-28 06:00:51 +00002605
Ted Kremeneka60ed472010-11-16 08:15:36 +00002606 PTUI->result = MakeCXTranslationUnit(Unit.take());
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002607}
2608CXTranslationUnit clang_parseTranslationUnit(CXIndex CIdx,
2609 const char *source_filename,
Douglas Gregor2ef69442010-09-01 16:43:19 +00002610 const char * const *command_line_args,
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002611 int num_command_line_args,
Daniel Dunbar9e1ebdd2010-11-05 07:19:21 +00002612 struct CXUnsavedFile *unsaved_files,
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002613 unsigned num_unsaved_files,
2614 unsigned options) {
2615 ParseTranslationUnitInfo PTUI = { CIdx, source_filename, command_line_args,
Daniel Dunbar9e1ebdd2010-11-05 07:19:21 +00002616 num_command_line_args, unsaved_files,
2617 num_unsaved_files, options, 0 };
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002618 llvm::CrashRecoveryContext CRC;
2619
Daniel Dunbarbf44c3b2010-11-05 07:19:31 +00002620 if (!RunSafely(CRC, clang_parseTranslationUnit_Impl, &PTUI)) {
Daniel Dunbar60a45432010-08-23 22:35:34 +00002621 fprintf(stderr, "libclang: crash detected during parsing: {\n");
2622 fprintf(stderr, " 'source_filename' : '%s'\n", source_filename);
2623 fprintf(stderr, " 'command_line_args' : [");
2624 for (int i = 0; i != num_command_line_args; ++i) {
2625 if (i)
2626 fprintf(stderr, ", ");
2627 fprintf(stderr, "'%s'", command_line_args[i]);
2628 }
2629 fprintf(stderr, "],\n");
2630 fprintf(stderr, " 'unsaved_files' : [");
2631 for (unsigned i = 0; i != num_unsaved_files; ++i) {
2632 if (i)
2633 fprintf(stderr, ", ");
2634 fprintf(stderr, "('%s', '...', %ld)", unsaved_files[i].Filename,
2635 unsaved_files[i].Length);
2636 }
2637 fprintf(stderr, "],\n");
2638 fprintf(stderr, " 'options' : %d,\n", options);
2639 fprintf(stderr, "}\n");
2640
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002641 return 0;
Douglas Gregor6df78732011-05-05 20:27:22 +00002642 } else if (getenv("LIBCLANG_RESOURCE_USAGE")) {
2643 PrintLibclangResourceUsage(PTUI.result);
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002644 }
Douglas Gregor6df78732011-05-05 20:27:22 +00002645
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002646 return PTUI.result;
Steve Naroff5b7d8e22009-10-15 20:04:39 +00002647}
2648
Douglas Gregor19998442010-08-13 15:35:05 +00002649unsigned clang_defaultSaveOptions(CXTranslationUnit TU) {
2650 return CXSaveTranslationUnit_None;
2651}
2652
2653int clang_saveTranslationUnit(CXTranslationUnit TU, const char *FileName,
2654 unsigned options) {
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002655 if (!TU)
Douglas Gregor39c411f2011-07-06 16:43:36 +00002656 return CXSaveError_InvalidTU;
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002657
Douglas Gregor39c411f2011-07-06 16:43:36 +00002658 CXSaveError result = static_cast<ASTUnit *>(TU->TUData)->Save(FileName);
Douglas Gregor6df78732011-05-05 20:27:22 +00002659 if (getenv("LIBCLANG_RESOURCE_USAGE"))
2660 PrintLibclangResourceUsage(TU);
2661 return result;
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002662}
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002663
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00002664void clang_disposeTranslationUnit(CXTranslationUnit CTUnit) {
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002665 if (CTUnit) {
2666 // If the translation unit has been marked as unsafe to free, just discard
2667 // it.
Ted Kremeneka60ed472010-11-16 08:15:36 +00002668 if (static_cast<ASTUnit *>(CTUnit->TUData)->isUnsafeToFree())
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002669 return;
2670
Ted Kremeneka60ed472010-11-16 08:15:36 +00002671 delete static_cast<ASTUnit *>(CTUnit->TUData);
2672 disposeCXStringPool(CTUnit->StringPool);
Ted Kremenek15322172011-11-10 08:43:12 +00002673 delete static_cast<CXDiagnosticSetImpl *>(CTUnit->Diagnostics);
Ted Kremeneka60ed472010-11-16 08:15:36 +00002674 delete CTUnit;
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002675 }
Steve Naroff2bd6b9f2009-09-17 18:33:27 +00002676}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00002677
Douglas Gregore1e13bf2010-08-11 15:58:42 +00002678unsigned clang_defaultReparseOptions(CXTranslationUnit TU) {
2679 return CXReparse_None;
2680}
2681
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002682struct ReparseTranslationUnitInfo {
2683 CXTranslationUnit TU;
2684 unsigned num_unsaved_files;
2685 struct CXUnsavedFile *unsaved_files;
2686 unsigned options;
2687 int result;
2688};
Douglas Gregor593b0c12010-09-23 18:47:53 +00002689
Daniel Dunbarb1fd3452010-08-19 23:44:10 +00002690static void clang_reparseTranslationUnit_Impl(void *UserData) {
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002691 ReparseTranslationUnitInfo *RTUI =
2692 static_cast<ReparseTranslationUnitInfo*>(UserData);
2693 CXTranslationUnit TU = RTUI->TU;
Ted Kremenek15322172011-11-10 08:43:12 +00002694
2695 // Reset the associated diagnostics.
2696 delete static_cast<CXDiagnosticSetImpl*>(TU->Diagnostics);
2697 TU->Diagnostics = 0;
2698
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002699 unsigned num_unsaved_files = RTUI->num_unsaved_files;
2700 struct CXUnsavedFile *unsaved_files = RTUI->unsaved_files;
2701 unsigned options = RTUI->options;
2702 (void) options;
2703 RTUI->result = 1;
2704
Douglas Gregorabc563f2010-07-19 21:46:24 +00002705 if (!TU)
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002706 return;
Douglas Gregor593b0c12010-09-23 18:47:53 +00002707
Ted Kremeneka60ed472010-11-16 08:15:36 +00002708 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
Douglas Gregor593b0c12010-09-23 18:47:53 +00002709 ASTUnit::ConcurrencyCheck Check(*CXXUnit);
Douglas Gregorabc563f2010-07-19 21:46:24 +00002710
Dylan Noblesmith1e4c01b2012-02-13 12:32:21 +00002711 OwningPtr<std::vector<ASTUnit::RemappedFile> >
Ted Kremenek25a11e12011-03-22 01:15:24 +00002712 RemappedFiles(new std::vector<ASTUnit::RemappedFile>());
2713
2714 // Recover resources if we crash before exiting this function.
2715 llvm::CrashRecoveryContextCleanupRegistrar<
2716 std::vector<ASTUnit::RemappedFile> > RemappedCleanup(RemappedFiles.get());
2717
Douglas Gregorabc563f2010-07-19 21:46:24 +00002718 for (unsigned I = 0; I != num_unsaved_files; ++I) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00002719 StringRef Data(unsaved_files[I].Contents, unsaved_files[I].Length);
Douglas Gregorabc563f2010-07-19 21:46:24 +00002720 const llvm::MemoryBuffer *Buffer
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002721 = llvm::MemoryBuffer::getMemBufferCopy(Data, unsaved_files[I].Filename);
Ted Kremenek25a11e12011-03-22 01:15:24 +00002722 RemappedFiles->push_back(std::make_pair(unsaved_files[I].Filename,
2723 Buffer));
Douglas Gregorabc563f2010-07-19 21:46:24 +00002724 }
2725
Ted Kremenek4ee99262011-03-22 20:16:19 +00002726 if (!CXXUnit->Reparse(RemappedFiles->size() ? &(*RemappedFiles)[0] : 0,
2727 RemappedFiles->size()))
Douglas Gregor593b0c12010-09-23 18:47:53 +00002728 RTUI->result = 0;
Douglas Gregorabc563f2010-07-19 21:46:24 +00002729}
Douglas Gregor593b0c12010-09-23 18:47:53 +00002730
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002731int clang_reparseTranslationUnit(CXTranslationUnit TU,
2732 unsigned num_unsaved_files,
2733 struct CXUnsavedFile *unsaved_files,
2734 unsigned options) {
2735 ReparseTranslationUnitInfo RTUI = { TU, num_unsaved_files, unsaved_files,
2736 options, 0 };
Argyrios Kyrtzidis8c4b47e2011-10-28 22:54:33 +00002737
Argyrios Kyrtzidise7de9b42011-10-29 19:32:39 +00002738 if (getenv("LIBCLANG_NOTHREADS")) {
Argyrios Kyrtzidis8c4b47e2011-10-28 22:54:33 +00002739 clang_reparseTranslationUnit_Impl(&RTUI);
2740 return RTUI.result;
2741 }
2742
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002743 llvm::CrashRecoveryContext CRC;
2744
Daniel Dunbarbf44c3b2010-11-05 07:19:31 +00002745 if (!RunSafely(CRC, clang_reparseTranslationUnit_Impl, &RTUI)) {
Daniel Dunbarb1fd3452010-08-19 23:44:10 +00002746 fprintf(stderr, "libclang: crash detected during reparsing\n");
Ted Kremeneka60ed472010-11-16 08:15:36 +00002747 static_cast<ASTUnit *>(TU->TUData)->setUnsafeToFree(true);
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002748 return 1;
Douglas Gregor6df78732011-05-05 20:27:22 +00002749 } else if (getenv("LIBCLANG_RESOURCE_USAGE"))
2750 PrintLibclangResourceUsage(TU);
Ted Kremenek1dfb26a2010-10-29 01:06:50 +00002751
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002752 return RTUI.result;
2753}
2754
Douglas Gregordf95a132010-08-09 20:45:32 +00002755
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00002756CXString clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit) {
Douglas Gregor2b37c9e2010-01-29 00:47:48 +00002757 if (!CTUnit)
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002758 return createCXString("");
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002759
Ted Kremeneka60ed472010-11-16 08:15:36 +00002760 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit->TUData);
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002761 return createCXString(CXXUnit->getOriginalSourceFileName(), true);
Steve Naroffaf08ddc2009-09-03 15:49:00 +00002762}
Daniel Dunbar1eb79b52009-08-28 16:30:07 +00002763
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00002764CXCursor clang_getTranslationUnitCursor(CXTranslationUnit TU) {
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002765 CXCursor Result = { CXCursor_TranslationUnit, 0, { 0, 0, TU } };
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00002766 return Result;
2767}
2768
Ted Kremenekfb480492010-01-13 21:46:36 +00002769} // end: extern "C"
Steve Naroff600866c2009-08-27 19:51:58 +00002770
Ted Kremenekfb480492010-01-13 21:46:36 +00002771//===----------------------------------------------------------------------===//
Ted Kremenekfb480492010-01-13 21:46:36 +00002772// CXFile Operations.
2773//===----------------------------------------------------------------------===//
2774
2775extern "C" {
Ted Kremenek74844072010-02-17 00:41:20 +00002776CXString clang_getFileName(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +00002777 if (!SFile)
Ted Kremeneka60ed472010-11-16 08:15:36 +00002778 return createCXString((const char*)NULL);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002779
Steve Naroff88145032009-10-27 14:35:18 +00002780 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
Ted Kremenek74844072010-02-17 00:41:20 +00002781 return createCXString(FEnt->getName());
Steve Naroff88145032009-10-27 14:35:18 +00002782}
2783
2784time_t clang_getFileTime(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +00002785 if (!SFile)
2786 return 0;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002787
Steve Naroff88145032009-10-27 14:35:18 +00002788 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
2789 return FEnt->getModificationTime();
Steve Naroffee9405e2009-09-25 21:45:39 +00002790}
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002791
Douglas Gregorb9790342010-01-22 21:44:22 +00002792CXFile clang_getFile(CXTranslationUnit tu, const char *file_name) {
2793 if (!tu)
2794 return 0;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002795
Ted Kremeneka60ed472010-11-16 08:15:36 +00002796 ASTUnit *CXXUnit = static_cast<ASTUnit *>(tu->TUData);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002797
Douglas Gregorb9790342010-01-22 21:44:22 +00002798 FileManager &FMgr = CXXUnit->getFileManager();
Chris Lattner39b49bc2010-11-23 08:35:12 +00002799 return const_cast<FileEntry *>(FMgr.getFile(file_name));
Douglas Gregorb9790342010-01-22 21:44:22 +00002800}
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002801
Douglas Gregordd3e5542011-05-04 00:14:37 +00002802unsigned clang_isFileMultipleIncludeGuarded(CXTranslationUnit tu, CXFile file) {
2803 if (!tu || !file)
2804 return 0;
2805
2806 ASTUnit *CXXUnit = static_cast<ASTUnit *>(tu->TUData);
2807 FileEntry *FEnt = static_cast<FileEntry *>(file);
2808 return CXXUnit->getPreprocessor().getHeaderSearchInfo()
2809 .isFileMultipleIncludeGuarded(FEnt);
2810}
2811
Ted Kremenekfb480492010-01-13 21:46:36 +00002812} // end: extern "C"
Steve Naroffee9405e2009-09-25 21:45:39 +00002813
Ted Kremenekfb480492010-01-13 21:46:36 +00002814//===----------------------------------------------------------------------===//
2815// CXCursor Operations.
2816//===----------------------------------------------------------------------===//
2817
Ted Kremenekfb480492010-01-13 21:46:36 +00002818static Decl *getDeclFromExpr(Stmt *E) {
Argyrios Kyrtzidisc2954612011-09-12 22:17:26 +00002819 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E))
Douglas Gregordb1314e2010-10-01 21:11:22 +00002820 return getDeclFromExpr(CE->getSubExpr());
2821
Ted Kremenekfb480492010-01-13 21:46:36 +00002822 if (DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E))
2823 return RefExpr->getDecl();
Douglas Gregor38f28c12010-10-22 22:24:08 +00002824 if (BlockDeclRefExpr *RefExpr = dyn_cast<BlockDeclRefExpr>(E))
2825 return RefExpr->getDecl();
Ted Kremenekfb480492010-01-13 21:46:36 +00002826 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
2827 return ME->getMemberDecl();
2828 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E))
2829 return RE->getDecl();
Douglas Gregordb1314e2010-10-01 21:11:22 +00002830 if (ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(E))
John McCall12f78a62010-12-02 01:19:52 +00002831 return PRE->isExplicitProperty() ? PRE->getExplicitProperty() : 0;
John McCall4b9c2d22011-11-06 09:01:30 +00002832 if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E))
2833 return getDeclFromExpr(POE->getSyntacticForm());
2834 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E))
2835 if (Expr *Src = OVE->getSourceExpr())
2836 return getDeclFromExpr(Src);
Douglas Gregordb1314e2010-10-01 21:11:22 +00002837
Ted Kremenekfb480492010-01-13 21:46:36 +00002838 if (CallExpr *CE = dyn_cast<CallExpr>(E))
2839 return getDeclFromExpr(CE->getCallee());
Chris Lattner5f9e2722011-07-23 10:55:15 +00002840 if (CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(E))
Douglas Gregor93798e22010-11-05 21:11:19 +00002841 if (!CE->isElidable())
2842 return CE->getConstructor();
Ted Kremenekfb480492010-01-13 21:46:36 +00002843 if (ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E))
2844 return OME->getMethodDecl();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002845
Douglas Gregordb1314e2010-10-01 21:11:22 +00002846 if (ObjCProtocolExpr *PE = dyn_cast<ObjCProtocolExpr>(E))
2847 return PE->getProtocol();
Douglas Gregorc7793c72011-01-15 01:15:58 +00002848 if (SubstNonTypeTemplateParmPackExpr *NTTP
2849 = dyn_cast<SubstNonTypeTemplateParmPackExpr>(E))
2850 return NTTP->getParameterPack();
Douglas Gregor94d96292011-01-19 20:34:17 +00002851 if (SizeOfPackExpr *SizeOfPack = dyn_cast<SizeOfPackExpr>(E))
2852 if (isa<NonTypeTemplateParmDecl>(SizeOfPack->getPack()) ||
2853 isa<ParmVarDecl>(SizeOfPack->getPack()))
2854 return SizeOfPack->getPack();
Douglas Gregordb1314e2010-10-01 21:11:22 +00002855
Ted Kremenekfb480492010-01-13 21:46:36 +00002856 return 0;
2857}
2858
Daniel Dunbarc29f4c32010-02-02 05:00:22 +00002859static SourceLocation getLocationFromExpr(Expr *E) {
Argyrios Kyrtzidisc2954612011-09-12 22:17:26 +00002860 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E))
2861 return getLocationFromExpr(CE->getSubExpr());
2862
Daniel Dunbarc29f4c32010-02-02 05:00:22 +00002863 if (ObjCMessageExpr *Msg = dyn_cast<ObjCMessageExpr>(E))
2864 return /*FIXME:*/Msg->getLeftLoc();
2865 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
2866 return DRE->getLocation();
Douglas Gregor38f28c12010-10-22 22:24:08 +00002867 if (BlockDeclRefExpr *RefExpr = dyn_cast<BlockDeclRefExpr>(E))
2868 return RefExpr->getLocation();
Daniel Dunbarc29f4c32010-02-02 05:00:22 +00002869 if (MemberExpr *Member = dyn_cast<MemberExpr>(E))
2870 return Member->getMemberLoc();
2871 if (ObjCIvarRefExpr *Ivar = dyn_cast<ObjCIvarRefExpr>(E))
2872 return Ivar->getLocation();
Douglas Gregor94d96292011-01-19 20:34:17 +00002873 if (SizeOfPackExpr *SizeOfPack = dyn_cast<SizeOfPackExpr>(E))
2874 return SizeOfPack->getPackLoc();
2875
Daniel Dunbarc29f4c32010-02-02 05:00:22 +00002876 return E->getLocStart();
2877}
2878
Ted Kremenekfb480492010-01-13 21:46:36 +00002879extern "C" {
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002880
2881unsigned clang_visitChildren(CXCursor parent,
Douglas Gregorb1373d02010-01-20 20:59:29 +00002882 CXCursorVisitor visitor,
2883 CXClientData client_data) {
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00002884 CursorVisitor CursorVis(getCursorTU(parent), visitor, client_data,
2885 /*VisitPreprocessorLast=*/false);
Douglas Gregorb1373d02010-01-20 20:59:29 +00002886 return CursorVis.VisitChildren(parent);
2887}
2888
David Chisnall3387c652010-11-03 14:12:26 +00002889#ifndef __has_feature
2890#define __has_feature(x) 0
2891#endif
2892#if __has_feature(blocks)
2893typedef enum CXChildVisitResult
2894 (^CXCursorVisitorBlock)(CXCursor cursor, CXCursor parent);
2895
2896static enum CXChildVisitResult visitWithBlock(CXCursor cursor, CXCursor parent,
2897 CXClientData client_data) {
2898 CXCursorVisitorBlock block = (CXCursorVisitorBlock)client_data;
2899 return block(cursor, parent);
2900}
2901#else
2902// If we are compiled with a compiler that doesn't have native blocks support,
2903// define and call the block manually, so the
2904typedef struct _CXChildVisitResult
2905{
2906 void *isa;
2907 int flags;
2908 int reserved;
Daniel Dunbar9e1ebdd2010-11-05 07:19:21 +00002909 enum CXChildVisitResult(*invoke)(struct _CXChildVisitResult*, CXCursor,
2910 CXCursor);
David Chisnall3387c652010-11-03 14:12:26 +00002911} *CXCursorVisitorBlock;
2912
2913static enum CXChildVisitResult visitWithBlock(CXCursor cursor, CXCursor parent,
2914 CXClientData client_data) {
2915 CXCursorVisitorBlock block = (CXCursorVisitorBlock)client_data;
2916 return block->invoke(block, cursor, parent);
2917}
2918#endif
2919
2920
Daniel Dunbar9e1ebdd2010-11-05 07:19:21 +00002921unsigned clang_visitChildrenWithBlock(CXCursor parent,
2922 CXCursorVisitorBlock block) {
David Chisnall3387c652010-11-03 14:12:26 +00002923 return clang_visitChildren(parent, visitWithBlock, block);
2924}
2925
Douglas Gregor78205d42010-01-20 21:45:58 +00002926static CXString getDeclSpelling(Decl *D) {
Argyrios Kyrtzidis16ed0e62011-12-10 02:36:25 +00002927 if (!D)
2928 return createCXString("");
2929
2930 NamedDecl *ND = dyn_cast<NamedDecl>(D);
Douglas Gregore3c60a72010-11-17 00:13:31 +00002931 if (!ND) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00002932 if (ObjCPropertyImplDecl *PropImpl =dyn_cast<ObjCPropertyImplDecl>(D))
Douglas Gregore3c60a72010-11-17 00:13:31 +00002933 if (ObjCPropertyDecl *Property = PropImpl->getPropertyDecl())
2934 return createCXString(Property->getIdentifier()->getName());
2935
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002936 return createCXString("");
Douglas Gregore3c60a72010-11-17 00:13:31 +00002937 }
2938
Douglas Gregor78205d42010-01-20 21:45:58 +00002939 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002940 return createCXString(OMD->getSelector().getAsString());
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002941
Douglas Gregor78205d42010-01-20 21:45:58 +00002942 if (ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND))
2943 // No, this isn't the same as the code below. getIdentifier() is non-virtual
2944 // and returns different names. NamedDecl returns the class name and
2945 // ObjCCategoryImplDecl returns the category name.
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002946 return createCXString(CIMP->getIdentifier()->getNameStart());
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002947
Douglas Gregor0a35bce2010-09-01 03:07:18 +00002948 if (isa<UsingDirectiveDecl>(D))
2949 return createCXString("");
2950
Dylan Noblesmith36d59272012-02-13 12:32:26 +00002951 SmallString<1024> S;
Ted Kremenek50aa6ac2010-05-19 21:51:10 +00002952 llvm::raw_svector_ostream os(S);
2953 ND->printName(os);
2954
2955 return createCXString(os.str());
Douglas Gregor78205d42010-01-20 21:45:58 +00002956}
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002957
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00002958CXString clang_getCursorSpelling(CXCursor C) {
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00002959 if (clang_isTranslationUnit(C.kind))
Ted Kremeneka60ed472010-11-16 08:15:36 +00002960 return clang_getTranslationUnitSpelling(
2961 static_cast<CXTranslationUnit>(C.data[2]));
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00002962
Steve Narofff334b4e2009-09-02 18:26:48 +00002963 if (clang_isReference(C.kind)) {
2964 switch (C.kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +00002965 case CXCursor_ObjCSuperClassRef: {
Douglas Gregor2e331b92010-01-16 14:00:32 +00002966 ObjCInterfaceDecl *Super = getCursorObjCSuperClassRef(C).first;
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002967 return createCXString(Super->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00002968 }
2969 case CXCursor_ObjCClassRef: {
Douglas Gregor1adb0822010-01-16 17:14:40 +00002970 ObjCInterfaceDecl *Class = getCursorObjCClassRef(C).first;
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002971 return createCXString(Class->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00002972 }
2973 case CXCursor_ObjCProtocolRef: {
Douglas Gregor78db0cd2010-01-16 15:44:18 +00002974 ObjCProtocolDecl *OID = getCursorObjCProtocolRef(C).first;
Douglas Gregorf46034a2010-01-18 23:41:10 +00002975 assert(OID && "getCursorSpelling(): Missing protocol decl");
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002976 return createCXString(OID->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00002977 }
Ted Kremenek3064ef92010-08-27 21:34:58 +00002978 case CXCursor_CXXBaseSpecifier: {
2979 CXXBaseSpecifier *B = getCursorCXXBaseSpecifier(C);
2980 return createCXString(B->getType().getAsString());
2981 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00002982 case CXCursor_TypeRef: {
2983 TypeDecl *Type = getCursorTypeRef(C).first;
2984 assert(Type && "Missing type decl");
2985
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002986 return createCXString(getCursorContext(C).getTypeDeclType(Type).
2987 getAsString());
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00002988 }
Douglas Gregor0b36e612010-08-31 20:37:03 +00002989 case CXCursor_TemplateRef: {
2990 TemplateDecl *Template = getCursorTemplateRef(C).first;
Douglas Gregor69319002010-08-31 23:48:11 +00002991 assert(Template && "Missing template decl");
Douglas Gregor0b36e612010-08-31 20:37:03 +00002992
2993 return createCXString(Template->getNameAsString());
2994 }
Douglas Gregor69319002010-08-31 23:48:11 +00002995
2996 case CXCursor_NamespaceRef: {
2997 NamedDecl *NS = getCursorNamespaceRef(C).first;
2998 assert(NS && "Missing namespace decl");
2999
3000 return createCXString(NS->getNameAsString());
3001 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00003002
Douglas Gregora67e03f2010-09-09 21:42:20 +00003003 case CXCursor_MemberRef: {
3004 FieldDecl *Field = getCursorMemberRef(C).first;
3005 assert(Field && "Missing member decl");
3006
3007 return createCXString(Field->getNameAsString());
3008 }
3009
Douglas Gregor36897b02010-09-10 00:22:18 +00003010 case CXCursor_LabelRef: {
3011 LabelStmt *Label = getCursorLabelRef(C).first;
3012 assert(Label && "Missing label");
3013
Chris Lattnerad8dcf42011-02-17 07:39:24 +00003014 return createCXString(Label->getName());
Douglas Gregor36897b02010-09-10 00:22:18 +00003015 }
3016
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003017 case CXCursor_OverloadedDeclRef: {
3018 OverloadedDeclRefStorage Storage = getCursorOverloadedDeclRef(C).first;
3019 if (Decl *D = Storage.dyn_cast<Decl *>()) {
3020 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
3021 return createCXString(ND->getNameAsString());
3022 return createCXString("");
3023 }
3024 if (OverloadExpr *E = Storage.dyn_cast<OverloadExpr *>())
3025 return createCXString(E->getName().getAsString());
3026 OverloadedTemplateStorage *Ovl
3027 = Storage.get<OverloadedTemplateStorage*>();
3028 if (Ovl->size() == 0)
3029 return createCXString("");
3030 return createCXString((*Ovl->begin())->getNameAsString());
3031 }
3032
Douglas Gregor011d8b92012-02-15 00:54:55 +00003033 case CXCursor_VariableRef: {
3034 VarDecl *Var = getCursorVariableRef(C).first;
3035 assert(Var && "Missing variable decl");
3036
3037 return createCXString(Var->getNameAsString());
3038 }
3039
Daniel Dunbaracca7252009-11-30 20:42:49 +00003040 default:
Ted Kremenekee4db4f2010-02-17 00:41:08 +00003041 return createCXString("<not implemented>");
Steve Narofff334b4e2009-09-02 18:26:48 +00003042 }
3043 }
Douglas Gregor97b98722010-01-19 23:20:36 +00003044
3045 if (clang_isExpression(C.kind)) {
3046 Decl *D = getDeclFromExpr(getCursorExpr(C));
3047 if (D)
Douglas Gregor78205d42010-01-20 21:45:58 +00003048 return getDeclSpelling(D);
Ted Kremenekee4db4f2010-02-17 00:41:08 +00003049 return createCXString("");
Douglas Gregor97b98722010-01-19 23:20:36 +00003050 }
3051
Douglas Gregor36897b02010-09-10 00:22:18 +00003052 if (clang_isStatement(C.kind)) {
3053 Stmt *S = getCursorStmt(C);
3054 if (LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S))
Chris Lattnerad8dcf42011-02-17 07:39:24 +00003055 return createCXString(Label->getName());
Douglas Gregor36897b02010-09-10 00:22:18 +00003056
3057 return createCXString("");
3058 }
3059
Chandler Carruth9b2a0ac2011-07-14 08:41:15 +00003060 if (C.kind == CXCursor_MacroExpansion)
Chandler Carruth9e5bb852011-07-14 08:20:46 +00003061 return createCXString(getCursorMacroExpansion(C)->getName()
Douglas Gregor4ae8f292010-03-18 17:52:52 +00003062 ->getNameStart());
3063
Douglas Gregor572feb22010-03-18 18:04:21 +00003064 if (C.kind == CXCursor_MacroDefinition)
3065 return createCXString(getCursorMacroDefinition(C)->getName()
3066 ->getNameStart());
3067
Douglas Gregorecdcb882010-10-20 22:00:55 +00003068 if (C.kind == CXCursor_InclusionDirective)
3069 return createCXString(getCursorInclusionDirective(C)->getFileName());
3070
Douglas Gregor60cbfac2010-01-25 16:56:17 +00003071 if (clang_isDeclaration(C.kind))
3072 return getDeclSpelling(getCursorDecl(C));
Ted Kremeneke68fff62010-02-17 00:41:32 +00003073
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00003074 if (C.kind == CXCursor_AnnotateAttr) {
3075 AnnotateAttr *AA = cast<AnnotateAttr>(cxcursor::getCursorAttr(C));
3076 return createCXString(AA->getAnnotation());
3077 }
3078
Argyrios Kyrtzidis84b79642011-12-06 22:05:01 +00003079 if (C.kind == CXCursor_AsmLabelAttr) {
3080 AsmLabelAttr *AA = cast<AsmLabelAttr>(cxcursor::getCursorAttr(C));
3081 return createCXString(AA->getLabel());
3082 }
3083
Ted Kremenekee4db4f2010-02-17 00:41:08 +00003084 return createCXString("");
Steve Narofff334b4e2009-09-02 18:26:48 +00003085}
3086
Douglas Gregor358559d2010-10-02 22:49:11 +00003087CXString clang_getCursorDisplayName(CXCursor C) {
3088 if (!clang_isDeclaration(C.kind))
3089 return clang_getCursorSpelling(C);
3090
3091 Decl *D = getCursorDecl(C);
3092 if (!D)
3093 return createCXString("");
3094
Douglas Gregor30c42402011-09-27 22:38:19 +00003095 PrintingPolicy Policy = getCursorContext(C).getPrintingPolicy();
Douglas Gregor358559d2010-10-02 22:49:11 +00003096 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D))
3097 D = FunTmpl->getTemplatedDecl();
3098
3099 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Dylan Noblesmith36d59272012-02-13 12:32:26 +00003100 SmallString<64> Str;
Douglas Gregor358559d2010-10-02 22:49:11 +00003101 llvm::raw_svector_ostream OS(Str);
Benjamin Kramera59d20b2012-02-07 11:57:57 +00003102 OS << *Function;
Douglas Gregor358559d2010-10-02 22:49:11 +00003103 if (Function->getPrimaryTemplate())
3104 OS << "<>";
3105 OS << "(";
3106 for (unsigned I = 0, N = Function->getNumParams(); I != N; ++I) {
3107 if (I)
3108 OS << ", ";
3109 OS << Function->getParamDecl(I)->getType().getAsString(Policy);
3110 }
3111
3112 if (Function->isVariadic()) {
3113 if (Function->getNumParams())
3114 OS << ", ";
3115 OS << "...";
3116 }
3117 OS << ")";
3118 return createCXString(OS.str());
3119 }
3120
3121 if (ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(D)) {
Dylan Noblesmith36d59272012-02-13 12:32:26 +00003122 SmallString<64> Str;
Douglas Gregor358559d2010-10-02 22:49:11 +00003123 llvm::raw_svector_ostream OS(Str);
Benjamin Kramera59d20b2012-02-07 11:57:57 +00003124 OS << *ClassTemplate;
Douglas Gregor358559d2010-10-02 22:49:11 +00003125 OS << "<";
3126 TemplateParameterList *Params = ClassTemplate->getTemplateParameters();
3127 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
3128 if (I)
3129 OS << ", ";
3130
3131 NamedDecl *Param = Params->getParam(I);
3132 if (Param->getIdentifier()) {
3133 OS << Param->getIdentifier()->getName();
3134 continue;
3135 }
3136
3137 // There is no parameter name, which makes this tricky. Try to come up
3138 // with something useful that isn't too long.
3139 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
3140 OS << (TTP->wasDeclaredWithTypename()? "typename" : "class");
3141 else if (NonTypeTemplateParmDecl *NTTP
3142 = dyn_cast<NonTypeTemplateParmDecl>(Param))
3143 OS << NTTP->getType().getAsString(Policy);
3144 else
3145 OS << "template<...> class";
3146 }
3147
3148 OS << ">";
3149 return createCXString(OS.str());
3150 }
3151
3152 if (ClassTemplateSpecializationDecl *ClassSpec
3153 = dyn_cast<ClassTemplateSpecializationDecl>(D)) {
3154 // If the type was explicitly written, use that.
3155 if (TypeSourceInfo *TSInfo = ClassSpec->getTypeAsWritten())
3156 return createCXString(TSInfo->getType().getAsString(Policy));
3157
Dylan Noblesmith36d59272012-02-13 12:32:26 +00003158 SmallString<64> Str;
Douglas Gregor358559d2010-10-02 22:49:11 +00003159 llvm::raw_svector_ostream OS(Str);
Benjamin Kramera59d20b2012-02-07 11:57:57 +00003160 OS << *ClassSpec;
Douglas Gregor358559d2010-10-02 22:49:11 +00003161 OS << TemplateSpecializationType::PrintTemplateArgumentList(
Douglas Gregor910f8002010-11-07 23:05:16 +00003162 ClassSpec->getTemplateArgs().data(),
3163 ClassSpec->getTemplateArgs().size(),
Douglas Gregor358559d2010-10-02 22:49:11 +00003164 Policy);
3165 return createCXString(OS.str());
3166 }
3167
3168 return clang_getCursorSpelling(C);
3169}
3170
Ted Kremeneke68fff62010-02-17 00:41:32 +00003171CXString clang_getCursorKindSpelling(enum CXCursorKind Kind) {
Steve Naroff89922f82009-08-31 00:59:03 +00003172 switch (Kind) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00003173 case CXCursor_FunctionDecl:
3174 return createCXString("FunctionDecl");
3175 case CXCursor_TypedefDecl:
3176 return createCXString("TypedefDecl");
3177 case CXCursor_EnumDecl:
3178 return createCXString("EnumDecl");
3179 case CXCursor_EnumConstantDecl:
3180 return createCXString("EnumConstantDecl");
3181 case CXCursor_StructDecl:
3182 return createCXString("StructDecl");
3183 case CXCursor_UnionDecl:
3184 return createCXString("UnionDecl");
3185 case CXCursor_ClassDecl:
3186 return createCXString("ClassDecl");
3187 case CXCursor_FieldDecl:
3188 return createCXString("FieldDecl");
3189 case CXCursor_VarDecl:
3190 return createCXString("VarDecl");
3191 case CXCursor_ParmDecl:
3192 return createCXString("ParmDecl");
3193 case CXCursor_ObjCInterfaceDecl:
3194 return createCXString("ObjCInterfaceDecl");
3195 case CXCursor_ObjCCategoryDecl:
3196 return createCXString("ObjCCategoryDecl");
3197 case CXCursor_ObjCProtocolDecl:
3198 return createCXString("ObjCProtocolDecl");
3199 case CXCursor_ObjCPropertyDecl:
3200 return createCXString("ObjCPropertyDecl");
3201 case CXCursor_ObjCIvarDecl:
3202 return createCXString("ObjCIvarDecl");
3203 case CXCursor_ObjCInstanceMethodDecl:
3204 return createCXString("ObjCInstanceMethodDecl");
3205 case CXCursor_ObjCClassMethodDecl:
3206 return createCXString("ObjCClassMethodDecl");
3207 case CXCursor_ObjCImplementationDecl:
3208 return createCXString("ObjCImplementationDecl");
3209 case CXCursor_ObjCCategoryImplDecl:
3210 return createCXString("ObjCCategoryImplDecl");
Ted Kremenek8bd5a692010-04-13 23:39:06 +00003211 case CXCursor_CXXMethod:
3212 return createCXString("CXXMethod");
Ted Kremeneke68fff62010-02-17 00:41:32 +00003213 case CXCursor_UnexposedDecl:
3214 return createCXString("UnexposedDecl");
3215 case CXCursor_ObjCSuperClassRef:
3216 return createCXString("ObjCSuperClassRef");
3217 case CXCursor_ObjCProtocolRef:
3218 return createCXString("ObjCProtocolRef");
3219 case CXCursor_ObjCClassRef:
3220 return createCXString("ObjCClassRef");
3221 case CXCursor_TypeRef:
3222 return createCXString("TypeRef");
Douglas Gregor0b36e612010-08-31 20:37:03 +00003223 case CXCursor_TemplateRef:
3224 return createCXString("TemplateRef");
Douglas Gregor69319002010-08-31 23:48:11 +00003225 case CXCursor_NamespaceRef:
3226 return createCXString("NamespaceRef");
Douglas Gregora67e03f2010-09-09 21:42:20 +00003227 case CXCursor_MemberRef:
3228 return createCXString("MemberRef");
Douglas Gregor36897b02010-09-10 00:22:18 +00003229 case CXCursor_LabelRef:
3230 return createCXString("LabelRef");
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003231 case CXCursor_OverloadedDeclRef:
3232 return createCXString("OverloadedDeclRef");
Douglas Gregor011d8b92012-02-15 00:54:55 +00003233 case CXCursor_VariableRef:
3234 return createCXString("VariableRef");
Douglas Gregor42b29842011-10-05 19:00:14 +00003235 case CXCursor_IntegerLiteral:
3236 return createCXString("IntegerLiteral");
3237 case CXCursor_FloatingLiteral:
3238 return createCXString("FloatingLiteral");
3239 case CXCursor_ImaginaryLiteral:
3240 return createCXString("ImaginaryLiteral");
3241 case CXCursor_StringLiteral:
3242 return createCXString("StringLiteral");
3243 case CXCursor_CharacterLiteral:
3244 return createCXString("CharacterLiteral");
3245 case CXCursor_ParenExpr:
3246 return createCXString("ParenExpr");
3247 case CXCursor_UnaryOperator:
3248 return createCXString("UnaryOperator");
3249 case CXCursor_ArraySubscriptExpr:
3250 return createCXString("ArraySubscriptExpr");
3251 case CXCursor_BinaryOperator:
3252 return createCXString("BinaryOperator");
3253 case CXCursor_CompoundAssignOperator:
3254 return createCXString("CompoundAssignOperator");
3255 case CXCursor_ConditionalOperator:
3256 return createCXString("ConditionalOperator");
3257 case CXCursor_CStyleCastExpr:
3258 return createCXString("CStyleCastExpr");
3259 case CXCursor_CompoundLiteralExpr:
3260 return createCXString("CompoundLiteralExpr");
3261 case CXCursor_InitListExpr:
3262 return createCXString("InitListExpr");
3263 case CXCursor_AddrLabelExpr:
3264 return createCXString("AddrLabelExpr");
3265 case CXCursor_StmtExpr:
3266 return createCXString("StmtExpr");
3267 case CXCursor_GenericSelectionExpr:
3268 return createCXString("GenericSelectionExpr");
3269 case CXCursor_GNUNullExpr:
3270 return createCXString("GNUNullExpr");
3271 case CXCursor_CXXStaticCastExpr:
3272 return createCXString("CXXStaticCastExpr");
3273 case CXCursor_CXXDynamicCastExpr:
3274 return createCXString("CXXDynamicCastExpr");
3275 case CXCursor_CXXReinterpretCastExpr:
3276 return createCXString("CXXReinterpretCastExpr");
3277 case CXCursor_CXXConstCastExpr:
3278 return createCXString("CXXConstCastExpr");
3279 case CXCursor_CXXFunctionalCastExpr:
3280 return createCXString("CXXFunctionalCastExpr");
3281 case CXCursor_CXXTypeidExpr:
3282 return createCXString("CXXTypeidExpr");
3283 case CXCursor_CXXBoolLiteralExpr:
3284 return createCXString("CXXBoolLiteralExpr");
3285 case CXCursor_CXXNullPtrLiteralExpr:
3286 return createCXString("CXXNullPtrLiteralExpr");
3287 case CXCursor_CXXThisExpr:
3288 return createCXString("CXXThisExpr");
3289 case CXCursor_CXXThrowExpr:
3290 return createCXString("CXXThrowExpr");
3291 case CXCursor_CXXNewExpr:
3292 return createCXString("CXXNewExpr");
3293 case CXCursor_CXXDeleteExpr:
3294 return createCXString("CXXDeleteExpr");
3295 case CXCursor_UnaryExpr:
3296 return createCXString("UnaryExpr");
3297 case CXCursor_ObjCStringLiteral:
3298 return createCXString("ObjCStringLiteral");
3299 case CXCursor_ObjCEncodeExpr:
3300 return createCXString("ObjCEncodeExpr");
3301 case CXCursor_ObjCSelectorExpr:
3302 return createCXString("ObjCSelectorExpr");
3303 case CXCursor_ObjCProtocolExpr:
3304 return createCXString("ObjCProtocolExpr");
3305 case CXCursor_ObjCBridgedCastExpr:
3306 return createCXString("ObjCBridgedCastExpr");
Ted Kremenek1ee6cad2010-04-11 21:47:37 +00003307 case CXCursor_BlockExpr:
3308 return createCXString("BlockExpr");
Douglas Gregor42b29842011-10-05 19:00:14 +00003309 case CXCursor_PackExpansionExpr:
3310 return createCXString("PackExpansionExpr");
3311 case CXCursor_SizeOfPackExpr:
3312 return createCXString("SizeOfPackExpr");
Douglas Gregor011d8b92012-02-15 00:54:55 +00003313 case CXCursor_LambdaExpr:
3314 return createCXString("LambdaExpr");
Douglas Gregor42b29842011-10-05 19:00:14 +00003315 case CXCursor_UnexposedExpr:
3316 return createCXString("UnexposedExpr");
Ted Kremeneke68fff62010-02-17 00:41:32 +00003317 case CXCursor_DeclRefExpr:
3318 return createCXString("DeclRefExpr");
3319 case CXCursor_MemberRefExpr:
3320 return createCXString("MemberRefExpr");
3321 case CXCursor_CallExpr:
3322 return createCXString("CallExpr");
3323 case CXCursor_ObjCMessageExpr:
3324 return createCXString("ObjCMessageExpr");
3325 case CXCursor_UnexposedStmt:
3326 return createCXString("UnexposedStmt");
Douglas Gregor42b29842011-10-05 19:00:14 +00003327 case CXCursor_DeclStmt:
3328 return createCXString("DeclStmt");
Douglas Gregor36897b02010-09-10 00:22:18 +00003329 case CXCursor_LabelStmt:
3330 return createCXString("LabelStmt");
Douglas Gregor42b29842011-10-05 19:00:14 +00003331 case CXCursor_CompoundStmt:
3332 return createCXString("CompoundStmt");
3333 case CXCursor_CaseStmt:
3334 return createCXString("CaseStmt");
3335 case CXCursor_DefaultStmt:
3336 return createCXString("DefaultStmt");
3337 case CXCursor_IfStmt:
3338 return createCXString("IfStmt");
3339 case CXCursor_SwitchStmt:
3340 return createCXString("SwitchStmt");
3341 case CXCursor_WhileStmt:
3342 return createCXString("WhileStmt");
3343 case CXCursor_DoStmt:
3344 return createCXString("DoStmt");
3345 case CXCursor_ForStmt:
3346 return createCXString("ForStmt");
3347 case CXCursor_GotoStmt:
3348 return createCXString("GotoStmt");
3349 case CXCursor_IndirectGotoStmt:
3350 return createCXString("IndirectGotoStmt");
3351 case CXCursor_ContinueStmt:
3352 return createCXString("ContinueStmt");
3353 case CXCursor_BreakStmt:
3354 return createCXString("BreakStmt");
3355 case CXCursor_ReturnStmt:
3356 return createCXString("ReturnStmt");
3357 case CXCursor_AsmStmt:
3358 return createCXString("AsmStmt");
3359 case CXCursor_ObjCAtTryStmt:
3360 return createCXString("ObjCAtTryStmt");
3361 case CXCursor_ObjCAtCatchStmt:
3362 return createCXString("ObjCAtCatchStmt");
3363 case CXCursor_ObjCAtFinallyStmt:
3364 return createCXString("ObjCAtFinallyStmt");
3365 case CXCursor_ObjCAtThrowStmt:
3366 return createCXString("ObjCAtThrowStmt");
3367 case CXCursor_ObjCAtSynchronizedStmt:
3368 return createCXString("ObjCAtSynchronizedStmt");
3369 case CXCursor_ObjCAutoreleasePoolStmt:
3370 return createCXString("ObjCAutoreleasePoolStmt");
3371 case CXCursor_ObjCForCollectionStmt:
3372 return createCXString("ObjCForCollectionStmt");
3373 case CXCursor_CXXCatchStmt:
3374 return createCXString("CXXCatchStmt");
3375 case CXCursor_CXXTryStmt:
3376 return createCXString("CXXTryStmt");
3377 case CXCursor_CXXForRangeStmt:
3378 return createCXString("CXXForRangeStmt");
3379 case CXCursor_SEHTryStmt:
3380 return createCXString("SEHTryStmt");
3381 case CXCursor_SEHExceptStmt:
3382 return createCXString("SEHExceptStmt");
3383 case CXCursor_SEHFinallyStmt:
3384 return createCXString("SEHFinallyStmt");
3385 case CXCursor_NullStmt:
3386 return createCXString("NullStmt");
Ted Kremeneke68fff62010-02-17 00:41:32 +00003387 case CXCursor_InvalidFile:
3388 return createCXString("InvalidFile");
Ted Kremenek292db642010-03-19 20:39:05 +00003389 case CXCursor_InvalidCode:
3390 return createCXString("InvalidCode");
Ted Kremeneke68fff62010-02-17 00:41:32 +00003391 case CXCursor_NoDeclFound:
3392 return createCXString("NoDeclFound");
3393 case CXCursor_NotImplemented:
3394 return createCXString("NotImplemented");
3395 case CXCursor_TranslationUnit:
3396 return createCXString("TranslationUnit");
Ted Kremeneke77f4432010-02-18 03:09:07 +00003397 case CXCursor_UnexposedAttr:
3398 return createCXString("UnexposedAttr");
3399 case CXCursor_IBActionAttr:
3400 return createCXString("attribute(ibaction)");
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00003401 case CXCursor_IBOutletAttr:
3402 return createCXString("attribute(iboutlet)");
Ted Kremenek857e9182010-05-19 17:38:06 +00003403 case CXCursor_IBOutletCollectionAttr:
3404 return createCXString("attribute(iboutletcollection)");
Argyrios Kyrtzidis6639e922011-09-13 17:39:31 +00003405 case CXCursor_CXXFinalAttr:
3406 return createCXString("attribute(final)");
3407 case CXCursor_CXXOverrideAttr:
3408 return createCXString("attribute(override)");
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00003409 case CXCursor_AnnotateAttr:
3410 return createCXString("attribute(annotate)");
Argyrios Kyrtzidis84b79642011-12-06 22:05:01 +00003411 case CXCursor_AsmLabelAttr:
3412 return createCXString("asm label");
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00003413 case CXCursor_PreprocessingDirective:
3414 return createCXString("preprocessing directive");
Douglas Gregor572feb22010-03-18 18:04:21 +00003415 case CXCursor_MacroDefinition:
3416 return createCXString("macro definition");
Chandler Carruth9b2a0ac2011-07-14 08:41:15 +00003417 case CXCursor_MacroExpansion:
3418 return createCXString("macro expansion");
Douglas Gregorecdcb882010-10-20 22:00:55 +00003419 case CXCursor_InclusionDirective:
3420 return createCXString("inclusion directive");
Ted Kremenek8f06e0e2010-05-06 23:38:21 +00003421 case CXCursor_Namespace:
3422 return createCXString("Namespace");
Ted Kremeneka0536d82010-05-07 01:04:29 +00003423 case CXCursor_LinkageSpec:
3424 return createCXString("LinkageSpec");
Ted Kremenek3064ef92010-08-27 21:34:58 +00003425 case CXCursor_CXXBaseSpecifier:
3426 return createCXString("C++ base class specifier");
Douglas Gregor01829d32010-08-31 14:41:23 +00003427 case CXCursor_Constructor:
3428 return createCXString("CXXConstructor");
3429 case CXCursor_Destructor:
3430 return createCXString("CXXDestructor");
3431 case CXCursor_ConversionFunction:
3432 return createCXString("CXXConversion");
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00003433 case CXCursor_TemplateTypeParameter:
3434 return createCXString("TemplateTypeParameter");
3435 case CXCursor_NonTypeTemplateParameter:
3436 return createCXString("NonTypeTemplateParameter");
3437 case CXCursor_TemplateTemplateParameter:
3438 return createCXString("TemplateTemplateParameter");
3439 case CXCursor_FunctionTemplate:
3440 return createCXString("FunctionTemplate");
Douglas Gregor39d6f072010-08-31 19:02:00 +00003441 case CXCursor_ClassTemplate:
3442 return createCXString("ClassTemplate");
Douglas Gregor74dbe642010-08-31 19:31:58 +00003443 case CXCursor_ClassTemplatePartialSpecialization:
3444 return createCXString("ClassTemplatePartialSpecialization");
Douglas Gregor69319002010-08-31 23:48:11 +00003445 case CXCursor_NamespaceAlias:
3446 return createCXString("NamespaceAlias");
Douglas Gregor0a35bce2010-09-01 03:07:18 +00003447 case CXCursor_UsingDirective:
3448 return createCXString("UsingDirective");
Douglas Gregor7e242562010-09-01 19:52:22 +00003449 case CXCursor_UsingDeclaration:
3450 return createCXString("UsingDeclaration");
Richard Smith162e1c12011-04-15 14:24:37 +00003451 case CXCursor_TypeAliasDecl:
Douglas Gregor352697a2011-06-03 23:08:58 +00003452 return createCXString("TypeAliasDecl");
3453 case CXCursor_ObjCSynthesizeDecl:
3454 return createCXString("ObjCSynthesizeDecl");
3455 case CXCursor_ObjCDynamicDecl:
3456 return createCXString("ObjCDynamicDecl");
Argyrios Kyrtzidis2dfdb942011-09-30 17:58:23 +00003457 case CXCursor_CXXAccessSpecifier:
3458 return createCXString("CXXAccessSpecifier");
Steve Naroff89922f82009-08-31 00:59:03 +00003459 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00003460
Ted Kremenekdeb06bd2010-01-16 02:02:09 +00003461 llvm_unreachable("Unhandled CXCursorKind");
Steve Naroff600866c2009-08-27 19:51:58 +00003462}
Steve Naroff89922f82009-08-31 00:59:03 +00003463
Argyrios Kyrtzidis064c44b2011-06-27 19:42:23 +00003464struct GetCursorData {
3465 SourceLocation TokenBeginLoc;
Argyrios Kyrtzidis4b43b302011-08-17 00:31:25 +00003466 bool PointsAtMacroArgExpansion;
Argyrios Kyrtzidis064c44b2011-06-27 19:42:23 +00003467 CXCursor &BestCursor;
3468
Argyrios Kyrtzidis4b43b302011-08-17 00:31:25 +00003469 GetCursorData(SourceManager &SM,
3470 SourceLocation tokenBegin, CXCursor &outputCursor)
3471 : TokenBeginLoc(tokenBegin), BestCursor(outputCursor) {
3472 PointsAtMacroArgExpansion = SM.isMacroArgExpansion(tokenBegin);
3473 }
Argyrios Kyrtzidis064c44b2011-06-27 19:42:23 +00003474};
3475
Argyrios Kyrtzidis4b43b302011-08-17 00:31:25 +00003476static enum CXChildVisitResult GetCursorVisitor(CXCursor cursor,
3477 CXCursor parent,
3478 CXClientData client_data) {
Argyrios Kyrtzidis064c44b2011-06-27 19:42:23 +00003479 GetCursorData *Data = static_cast<GetCursorData *>(client_data);
3480 CXCursor *BestCursor = &Data->BestCursor;
Argyrios Kyrtzidis4b43b302011-08-17 00:31:25 +00003481
3482 // If we point inside a macro argument we should provide info of what the
3483 // token is so use the actual cursor, don't replace it with a macro expansion
3484 // cursor.
3485 if (cursor.kind == CXCursor_MacroExpansion && Data->PointsAtMacroArgExpansion)
3486 return CXChildVisit_Recurse;
Argyrios Kyrtzidis65ab9072011-09-26 19:05:37 +00003487
3488 if (clang_isDeclaration(cursor.kind)) {
3489 // Avoid having the implicit methods override the property decls.
Argyrios Kyrtzidis16ed0e62011-12-10 02:36:25 +00003490 if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(getCursorDecl(cursor)))
Argyrios Kyrtzidis65ab9072011-09-26 19:05:37 +00003491 if (MD->isImplicit())
3492 return CXChildVisit_Break;
3493 }
Argyrios Kyrtzidis064c44b2011-06-27 19:42:23 +00003494
3495 if (clang_isExpression(cursor.kind) &&
3496 clang_isDeclaration(BestCursor->kind)) {
Argyrios Kyrtzidis16ed0e62011-12-10 02:36:25 +00003497 if (Decl *D = getCursorDecl(*BestCursor)) {
3498 // Avoid having the cursor of an expression replace the declaration cursor
3499 // when the expression source range overlaps the declaration range.
3500 // This can happen for C++ constructor expressions whose range generally
3501 // include the variable declaration, e.g.:
3502 // MyCXXClass foo; // Make sure pointing at 'foo' returns a VarDecl cursor.
3503 if (D->getLocation().isValid() && Data->TokenBeginLoc.isValid() &&
3504 D->getLocation() == Data->TokenBeginLoc)
3505 return CXChildVisit_Break;
3506 }
Argyrios Kyrtzidis064c44b2011-06-27 19:42:23 +00003507 }
3508
Douglas Gregor93798e22010-11-05 21:11:19 +00003509 // If our current best cursor is the construction of a temporary object,
3510 // don't replace that cursor with a type reference, because we want
3511 // clang_getCursor() to point at the constructor.
3512 if (clang_isExpression(BestCursor->kind) &&
3513 isa<CXXTemporaryObjectExpr>(getCursorExpr(*BestCursor)) &&
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00003514 cursor.kind == CXCursor_TypeRef) {
3515 // Keep the cursor pointing at CXXTemporaryObjectExpr but also mark it
3516 // as having the actual point on the type reference.
3517 *BestCursor = getTypeRefedCallExprCursor(*BestCursor);
Douglas Gregor93798e22010-11-05 21:11:19 +00003518 return CXChildVisit_Recurse;
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00003519 }
Douglas Gregor93798e22010-11-05 21:11:19 +00003520
Douglas Gregor33e9abd2010-01-22 19:49:59 +00003521 *BestCursor = cursor;
3522 return CXChildVisit_Recurse;
3523}
Ted Kremeneke68fff62010-02-17 00:41:32 +00003524
Douglas Gregorb9790342010-01-22 21:44:22 +00003525CXCursor clang_getCursor(CXTranslationUnit TU, CXSourceLocation Loc) {
3526 if (!TU)
Ted Kremenekf4629892010-01-14 01:51:23 +00003527 return clang_getNullCursor();
Ted Kremeneke68fff62010-02-17 00:41:32 +00003528
Ted Kremeneka60ed472010-11-16 08:15:36 +00003529 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
Douglas Gregorbdf60622010-03-05 21:16:25 +00003530 ASTUnit::ConcurrencyCheck Check(*CXXUnit);
3531
Ted Kremeneka297de22010-01-25 22:34:44 +00003532 SourceLocation SLoc = cxloc::translateSourceLocation(Loc);
Argyrios Kyrtzidis671436e2011-09-27 00:30:33 +00003533 CXCursor Result = cxcursor::getCursor(TU, SLoc);
Ted Kremeneka629ea42010-07-29 00:52:07 +00003534
Douglas Gregor40749ee2010-11-03 00:35:38 +00003535 bool Logging = getenv("LIBCLANG_LOGGING");
Douglas Gregor40749ee2010-11-03 00:35:38 +00003536 if (Logging) {
3537 CXFile SearchFile;
3538 unsigned SearchLine, SearchColumn;
3539 CXFile ResultFile;
3540 unsigned ResultLine, ResultColumn;
Douglas Gregor66537982010-11-17 17:14:07 +00003541 CXString SearchFileName, ResultFileName, KindSpelling, USR;
3542 const char *IsDef = clang_isCursorDefinition(Result)? " (Definition)" : "";
Douglas Gregor40749ee2010-11-03 00:35:38 +00003543 CXSourceLocation ResultLoc = clang_getCursorLocation(Result);
3544
Chandler Carruth20174222011-08-31 16:53:37 +00003545 clang_getExpansionLocation(Loc, &SearchFile, &SearchLine, &SearchColumn, 0);
3546 clang_getExpansionLocation(ResultLoc, &ResultFile, &ResultLine,
3547 &ResultColumn, 0);
Douglas Gregor40749ee2010-11-03 00:35:38 +00003548 SearchFileName = clang_getFileName(SearchFile);
3549 ResultFileName = clang_getFileName(ResultFile);
3550 KindSpelling = clang_getCursorKindSpelling(Result.kind);
Douglas Gregor66537982010-11-17 17:14:07 +00003551 USR = clang_getCursorUSR(Result);
3552 fprintf(stderr, "clang_getCursor(%s:%d:%d) = %s(%s:%d:%d):%s%s\n",
Douglas Gregor40749ee2010-11-03 00:35:38 +00003553 clang_getCString(SearchFileName), SearchLine, SearchColumn,
3554 clang_getCString(KindSpelling),
Douglas Gregor66537982010-11-17 17:14:07 +00003555 clang_getCString(ResultFileName), ResultLine, ResultColumn,
3556 clang_getCString(USR), IsDef);
Douglas Gregor40749ee2010-11-03 00:35:38 +00003557 clang_disposeString(SearchFileName);
3558 clang_disposeString(ResultFileName);
3559 clang_disposeString(KindSpelling);
Douglas Gregor66537982010-11-17 17:14:07 +00003560 clang_disposeString(USR);
Douglas Gregor0aefbd82010-12-10 01:45:00 +00003561
3562 CXCursor Definition = clang_getCursorDefinition(Result);
3563 if (!clang_equalCursors(Definition, clang_getNullCursor())) {
3564 CXSourceLocation DefinitionLoc = clang_getCursorLocation(Definition);
3565 CXString DefinitionKindSpelling
3566 = clang_getCursorKindSpelling(Definition.kind);
3567 CXFile DefinitionFile;
3568 unsigned DefinitionLine, DefinitionColumn;
Chandler Carruth20174222011-08-31 16:53:37 +00003569 clang_getExpansionLocation(DefinitionLoc, &DefinitionFile,
3570 &DefinitionLine, &DefinitionColumn, 0);
Douglas Gregor0aefbd82010-12-10 01:45:00 +00003571 CXString DefinitionFileName = clang_getFileName(DefinitionFile);
3572 fprintf(stderr, " -> %s(%s:%d:%d)\n",
3573 clang_getCString(DefinitionKindSpelling),
3574 clang_getCString(DefinitionFileName),
3575 DefinitionLine, DefinitionColumn);
3576 clang_disposeString(DefinitionFileName);
3577 clang_disposeString(DefinitionKindSpelling);
3578 }
Douglas Gregor40749ee2010-11-03 00:35:38 +00003579 }
3580
Ted Kremeneke68fff62010-02-17 00:41:32 +00003581 return Result;
Steve Naroff600866c2009-08-27 19:51:58 +00003582}
3583
Ted Kremenek73885552009-11-17 19:28:59 +00003584CXCursor clang_getNullCursor(void) {
Douglas Gregor5bfb8c12010-01-20 23:34:41 +00003585 return MakeCXCursorInvalid(CXCursor_InvalidFile);
Ted Kremenek73885552009-11-17 19:28:59 +00003586}
3587
3588unsigned clang_equalCursors(CXCursor X, CXCursor Y) {
Douglas Gregor283cae32010-01-15 21:56:13 +00003589 return X == Y;
Ted Kremenek73885552009-11-17 19:28:59 +00003590}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00003591
Douglas Gregor9ce55842010-11-20 00:09:34 +00003592unsigned clang_hashCursor(CXCursor C) {
3593 unsigned Index = 0;
3594 if (clang_isExpression(C.kind) || clang_isStatement(C.kind))
3595 Index = 1;
3596
3597 return llvm::DenseMapInfo<std::pair<unsigned, void*> >::getHashValue(
3598 std::make_pair(C.kind, C.data[Index]));
3599}
3600
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00003601unsigned clang_isInvalid(enum CXCursorKind K) {
Steve Naroff77128dd2009-09-15 20:25:34 +00003602 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
3603}
3604
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00003605unsigned clang_isDeclaration(enum CXCursorKind K) {
Steve Naroff89922f82009-08-31 00:59:03 +00003606 return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl;
3607}
Steve Naroff2d4d6292009-08-31 14:26:51 +00003608
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00003609unsigned clang_isReference(enum CXCursorKind K) {
Steve Narofff334b4e2009-09-02 18:26:48 +00003610 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
3611}
3612
Douglas Gregor97b98722010-01-19 23:20:36 +00003613unsigned clang_isExpression(enum CXCursorKind K) {
3614 return K >= CXCursor_FirstExpr && K <= CXCursor_LastExpr;
3615}
3616
3617unsigned clang_isStatement(enum CXCursorKind K) {
3618 return K >= CXCursor_FirstStmt && K <= CXCursor_LastStmt;
3619}
3620
Douglas Gregor8be80e12011-07-06 03:00:34 +00003621unsigned clang_isAttribute(enum CXCursorKind K) {
3622 return K >= CXCursor_FirstAttr && K <= CXCursor_LastAttr;
3623}
3624
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00003625unsigned clang_isTranslationUnit(enum CXCursorKind K) {
3626 return K == CXCursor_TranslationUnit;
3627}
3628
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00003629unsigned clang_isPreprocessing(enum CXCursorKind K) {
3630 return K >= CXCursor_FirstPreprocessing && K <= CXCursor_LastPreprocessing;
3631}
3632
Ted Kremenekad6eff62010-03-08 21:17:29 +00003633unsigned clang_isUnexposed(enum CXCursorKind K) {
3634 switch (K) {
3635 case CXCursor_UnexposedDecl:
3636 case CXCursor_UnexposedExpr:
3637 case CXCursor_UnexposedStmt:
3638 case CXCursor_UnexposedAttr:
3639 return true;
3640 default:
3641 return false;
3642 }
3643}
3644
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00003645CXCursorKind clang_getCursorKind(CXCursor C) {
Steve Naroff9efa7672009-09-04 15:44:05 +00003646 return C.kind;
3647}
3648
Douglas Gregor98258af2010-01-18 22:46:11 +00003649CXSourceLocation clang_getCursorLocation(CXCursor C) {
3650 if (clang_isReference(C.kind)) {
Douglas Gregorf46034a2010-01-18 23:41:10 +00003651 switch (C.kind) {
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003652 case CXCursor_ObjCSuperClassRef: {
Douglas Gregorf46034a2010-01-18 23:41:10 +00003653 std::pair<ObjCInterfaceDecl *, SourceLocation> P
3654 = getCursorObjCSuperClassRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00003655 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00003656 }
3657
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003658 case CXCursor_ObjCProtocolRef: {
Douglas Gregorf46034a2010-01-18 23:41:10 +00003659 std::pair<ObjCProtocolDecl *, SourceLocation> P
3660 = getCursorObjCProtocolRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00003661 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00003662 }
3663
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003664 case CXCursor_ObjCClassRef: {
Douglas Gregorf46034a2010-01-18 23:41:10 +00003665 std::pair<ObjCInterfaceDecl *, SourceLocation> P
3666 = getCursorObjCClassRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00003667 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00003668 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00003669
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003670 case CXCursor_TypeRef: {
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00003671 std::pair<TypeDecl *, SourceLocation> P = getCursorTypeRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00003672 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00003673 }
Douglas Gregor0b36e612010-08-31 20:37:03 +00003674
3675 case CXCursor_TemplateRef: {
3676 std::pair<TemplateDecl *, SourceLocation> P = getCursorTemplateRef(C);
3677 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
3678 }
3679
Douglas Gregor69319002010-08-31 23:48:11 +00003680 case CXCursor_NamespaceRef: {
3681 std::pair<NamedDecl *, SourceLocation> P = getCursorNamespaceRef(C);
3682 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
3683 }
3684
Douglas Gregora67e03f2010-09-09 21:42:20 +00003685 case CXCursor_MemberRef: {
3686 std::pair<FieldDecl *, SourceLocation> P = getCursorMemberRef(C);
3687 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
3688 }
3689
Douglas Gregor011d8b92012-02-15 00:54:55 +00003690 case CXCursor_VariableRef: {
3691 std::pair<VarDecl *, SourceLocation> P = getCursorVariableRef(C);
3692 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
3693 }
3694
Ted Kremenek3064ef92010-08-27 21:34:58 +00003695 case CXCursor_CXXBaseSpecifier: {
Douglas Gregor1b0f7af2010-10-02 19:51:13 +00003696 CXXBaseSpecifier *BaseSpec = getCursorCXXBaseSpecifier(C);
3697 if (!BaseSpec)
3698 return clang_getNullLocation();
3699
3700 if (TypeSourceInfo *TSInfo = BaseSpec->getTypeSourceInfo())
3701 return cxloc::translateSourceLocation(getCursorContext(C),
3702 TSInfo->getTypeLoc().getBeginLoc());
3703
3704 return cxloc::translateSourceLocation(getCursorContext(C),
3705 BaseSpec->getSourceRange().getBegin());
Ted Kremenek3064ef92010-08-27 21:34:58 +00003706 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003707
Douglas Gregor36897b02010-09-10 00:22:18 +00003708 case CXCursor_LabelRef: {
3709 std::pair<LabelStmt *, SourceLocation> P = getCursorLabelRef(C);
3710 return cxloc::translateSourceLocation(getCursorContext(C), P.second);
3711 }
3712
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003713 case CXCursor_OverloadedDeclRef:
3714 return cxloc::translateSourceLocation(getCursorContext(C),
3715 getCursorOverloadedDeclRef(C).second);
3716
Douglas Gregorf46034a2010-01-18 23:41:10 +00003717 default:
3718 // FIXME: Need a way to enumerate all non-reference cases.
3719 llvm_unreachable("Missed a reference kind");
3720 }
Douglas Gregor98258af2010-01-18 22:46:11 +00003721 }
Douglas Gregor97b98722010-01-19 23:20:36 +00003722
3723 if (clang_isExpression(C.kind))
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003724 return cxloc::translateSourceLocation(getCursorContext(C),
Douglas Gregor97b98722010-01-19 23:20:36 +00003725 getLocationFromExpr(getCursorExpr(C)));
3726
Douglas Gregor36897b02010-09-10 00:22:18 +00003727 if (clang_isStatement(C.kind))
3728 return cxloc::translateSourceLocation(getCursorContext(C),
3729 getCursorStmt(C)->getLocStart());
3730
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00003731 if (C.kind == CXCursor_PreprocessingDirective) {
3732 SourceLocation L = cxcursor::getCursorPreprocessingDirective(C).getBegin();
3733 return cxloc::translateSourceLocation(getCursorContext(C), L);
3734 }
Douglas Gregor48072312010-03-18 15:23:44 +00003735
Chandler Carruth9b2a0ac2011-07-14 08:41:15 +00003736 if (C.kind == CXCursor_MacroExpansion) {
Douglas Gregor4ae8f292010-03-18 17:52:52 +00003737 SourceLocation L
Chandler Carruth9e5bb852011-07-14 08:20:46 +00003738 = cxcursor::getCursorMacroExpansion(C)->getSourceRange().getBegin();
Douglas Gregor48072312010-03-18 15:23:44 +00003739 return cxloc::translateSourceLocation(getCursorContext(C), L);
3740 }
Douglas Gregor572feb22010-03-18 18:04:21 +00003741
3742 if (C.kind == CXCursor_MacroDefinition) {
3743 SourceLocation L = cxcursor::getCursorMacroDefinition(C)->getLocation();
3744 return cxloc::translateSourceLocation(getCursorContext(C), L);
3745 }
Douglas Gregorecdcb882010-10-20 22:00:55 +00003746
3747 if (C.kind == CXCursor_InclusionDirective) {
3748 SourceLocation L
3749 = cxcursor::getCursorInclusionDirective(C)->getSourceRange().getBegin();
3750 return cxloc::translateSourceLocation(getCursorContext(C), L);
3751 }
3752
Ted Kremenek9a700d22010-05-12 06:16:13 +00003753 if (C.kind < CXCursor_FirstDecl || C.kind > CXCursor_LastDecl)
Douglas Gregor5352ac02010-01-28 00:27:43 +00003754 return clang_getNullLocation();
Douglas Gregor98258af2010-01-18 22:46:11 +00003755
Douglas Gregorf46034a2010-01-18 23:41:10 +00003756 Decl *D = getCursorDecl(C);
Argyrios Kyrtzidis16ed0e62011-12-10 02:36:25 +00003757 if (!D)
3758 return clang_getNullLocation();
3759
Douglas Gregorf46034a2010-01-18 23:41:10 +00003760 SourceLocation Loc = D->getLocation();
Ted Kremenek007a7c92010-11-01 23:26:51 +00003761 // FIXME: Multiple variables declared in a single declaration
3762 // currently lack the information needed to correctly determine their
3763 // ranges when accounting for the type-specifier. We use context
3764 // stored in the CXCursor to determine if the VarDecl is in a DeclGroup,
3765 // and if so, whether it is the first decl.
3766 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3767 if (!cxcursor::isFirstInDeclGroup(C))
3768 Loc = VD->getLocation();
3769 }
3770
Douglas Gregor2ca54fe2010-03-22 15:53:50 +00003771 return cxloc::translateSourceLocation(getCursorContext(C), Loc);
Douglas Gregor98258af2010-01-18 22:46:11 +00003772}
Douglas Gregora7bde202010-01-19 00:34:46 +00003773
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003774} // end extern "C"
3775
Argyrios Kyrtzidis671436e2011-09-27 00:30:33 +00003776CXCursor cxcursor::getCursor(CXTranslationUnit TU, SourceLocation SLoc) {
3777 assert(TU);
3778
3779 // Guard against an invalid SourceLocation, or we may assert in one
3780 // of the following calls.
3781 if (SLoc.isInvalid())
3782 return clang_getNullCursor();
3783
3784 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
3785
3786 // Translate the given source location to make it point at the beginning of
3787 // the token under the cursor.
3788 SLoc = Lexer::GetBeginningOfToken(SLoc, CXXUnit->getSourceManager(),
3789 CXXUnit->getASTContext().getLangOptions());
3790
3791 CXCursor Result = MakeCXCursorInvalid(CXCursor_NoDeclFound);
3792 if (SLoc.isValid()) {
Argyrios Kyrtzidis671436e2011-09-27 00:30:33 +00003793 GetCursorData ResultData(CXXUnit->getSourceManager(), SLoc, Result);
Argyrios Kyrtzidis671436e2011-09-27 00:30:33 +00003794 CursorVisitor CursorVis(TU, GetCursorVisitor, &ResultData,
3795 /*VisitPreprocessorLast=*/true,
Argyrios Kyrtzidise7098462011-10-31 07:19:54 +00003796 /*VisitIncludedEntities=*/false,
Argyrios Kyrtzidis671436e2011-09-27 00:30:33 +00003797 SourceLocation(SLoc));
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00003798 CursorVis.visitFileRegion();
Argyrios Kyrtzidis671436e2011-09-27 00:30:33 +00003799 }
3800
3801 return Result;
3802}
3803
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003804static SourceRange getRawCursorExtent(CXCursor C) {
Douglas Gregora7bde202010-01-19 00:34:46 +00003805 if (clang_isReference(C.kind)) {
3806 switch (C.kind) {
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003807 case CXCursor_ObjCSuperClassRef:
3808 return getCursorObjCSuperClassRef(C).second;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003809
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003810 case CXCursor_ObjCProtocolRef:
3811 return getCursorObjCProtocolRef(C).second;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003812
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003813 case CXCursor_ObjCClassRef:
3814 return getCursorObjCClassRef(C).second;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003815
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003816 case CXCursor_TypeRef:
3817 return getCursorTypeRef(C).second;
Douglas Gregor0b36e612010-08-31 20:37:03 +00003818
3819 case CXCursor_TemplateRef:
3820 return getCursorTemplateRef(C).second;
3821
Douglas Gregor69319002010-08-31 23:48:11 +00003822 case CXCursor_NamespaceRef:
3823 return getCursorNamespaceRef(C).second;
Douglas Gregora67e03f2010-09-09 21:42:20 +00003824
3825 case CXCursor_MemberRef:
3826 return getCursorMemberRef(C).second;
3827
Ted Kremenek3064ef92010-08-27 21:34:58 +00003828 case CXCursor_CXXBaseSpecifier:
Douglas Gregor1b0f7af2010-10-02 19:51:13 +00003829 return getCursorCXXBaseSpecifier(C)->getSourceRange();
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00003830
Douglas Gregor36897b02010-09-10 00:22:18 +00003831 case CXCursor_LabelRef:
3832 return getCursorLabelRef(C).second;
3833
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003834 case CXCursor_OverloadedDeclRef:
3835 return getCursorOverloadedDeclRef(C).second;
3836
Douglas Gregor011d8b92012-02-15 00:54:55 +00003837 case CXCursor_VariableRef:
3838 return getCursorVariableRef(C).second;
3839
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003840 default:
3841 // FIXME: Need a way to enumerate all non-reference cases.
3842 llvm_unreachable("Missed a reference kind");
Douglas Gregora7bde202010-01-19 00:34:46 +00003843 }
3844 }
Douglas Gregor97b98722010-01-19 23:20:36 +00003845
3846 if (clang_isExpression(C.kind))
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003847 return getCursorExpr(C)->getSourceRange();
Douglas Gregor33e9abd2010-01-22 19:49:59 +00003848
3849 if (clang_isStatement(C.kind))
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003850 return getCursorStmt(C)->getSourceRange();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003851
Argyrios Kyrtzidis6639e922011-09-13 17:39:31 +00003852 if (clang_isAttribute(C.kind))
3853 return getCursorAttr(C)->getRange();
3854
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003855 if (C.kind == CXCursor_PreprocessingDirective)
3856 return cxcursor::getCursorPreprocessingDirective(C);
Douglas Gregor48072312010-03-18 15:23:44 +00003857
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00003858 if (C.kind == CXCursor_MacroExpansion) {
3859 ASTUnit *TU = getCursorASTUnit(C);
3860 SourceRange Range = cxcursor::getCursorMacroExpansion(C)->getSourceRange();
3861 return TU->mapRangeFromPreamble(Range);
3862 }
Douglas Gregor572feb22010-03-18 18:04:21 +00003863
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00003864 if (C.kind == CXCursor_MacroDefinition) {
3865 ASTUnit *TU = getCursorASTUnit(C);
3866 SourceRange Range = cxcursor::getCursorMacroDefinition(C)->getSourceRange();
3867 return TU->mapRangeFromPreamble(Range);
3868 }
Douglas Gregorecdcb882010-10-20 22:00:55 +00003869
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00003870 if (C.kind == CXCursor_InclusionDirective) {
3871 ASTUnit *TU = getCursorASTUnit(C);
3872 SourceRange Range = cxcursor::getCursorInclusionDirective(C)->getSourceRange();
3873 return TU->mapRangeFromPreamble(Range);
3874 }
Douglas Gregorecdcb882010-10-20 22:00:55 +00003875
Ted Kremenek007a7c92010-11-01 23:26:51 +00003876 if (C.kind >= CXCursor_FirstDecl && C.kind <= CXCursor_LastDecl) {
3877 Decl *D = cxcursor::getCursorDecl(C);
Argyrios Kyrtzidis16ed0e62011-12-10 02:36:25 +00003878 if (!D)
3879 return SourceRange();
3880
Ted Kremenek007a7c92010-11-01 23:26:51 +00003881 SourceRange R = D->getSourceRange();
3882 // FIXME: Multiple variables declared in a single declaration
3883 // currently lack the information needed to correctly determine their
3884 // ranges when accounting for the type-specifier. We use context
3885 // stored in the CXCursor to determine if the VarDecl is in a DeclGroup,
3886 // and if so, whether it is the first decl.
3887 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3888 if (!cxcursor::isFirstInDeclGroup(C))
3889 R.setBegin(VD->getLocation());
3890 }
3891 return R;
3892 }
Douglas Gregor66537982010-11-17 17:14:07 +00003893 return SourceRange();
3894}
3895
3896/// \brief Retrieves the "raw" cursor extent, which is then extended to include
3897/// the decl-specifier-seq for declarations.
3898static SourceRange getFullCursorExtent(CXCursor C, SourceManager &SrcMgr) {
3899 if (C.kind >= CXCursor_FirstDecl && C.kind <= CXCursor_LastDecl) {
3900 Decl *D = cxcursor::getCursorDecl(C);
Argyrios Kyrtzidis16ed0e62011-12-10 02:36:25 +00003901 if (!D)
3902 return SourceRange();
3903
Douglas Gregor66537982010-11-17 17:14:07 +00003904 SourceRange R = D->getSourceRange();
Douglas Gregor66537982010-11-17 17:14:07 +00003905
Douglas Gregor2494dd02011-03-01 01:34:45 +00003906 // Adjust the start of the location for declarations preceded by
3907 // declaration specifiers.
3908 SourceLocation StartLoc;
3909 if (const DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
3910 if (TypeSourceInfo *TI = DD->getTypeSourceInfo())
3911 StartLoc = TI->getTypeLoc().getSourceRange().getBegin();
3912 } else if (TypedefDecl *Typedef = dyn_cast<TypedefDecl>(D)) {
3913 if (TypeSourceInfo *TI = Typedef->getTypeSourceInfo())
3914 StartLoc = TI->getTypeLoc().getSourceRange().getBegin();
3915 }
3916
3917 if (StartLoc.isValid() && R.getBegin().isValid() &&
3918 SrcMgr.isBeforeInTranslationUnit(StartLoc, R.getBegin()))
3919 R.setBegin(StartLoc);
3920
3921 // FIXME: Multiple variables declared in a single declaration
3922 // currently lack the information needed to correctly determine their
3923 // ranges when accounting for the type-specifier. We use context
3924 // stored in the CXCursor to determine if the VarDecl is in a DeclGroup,
3925 // and if so, whether it is the first decl.
3926 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3927 if (!cxcursor::isFirstInDeclGroup(C))
3928 R.setBegin(VD->getLocation());
Douglas Gregor66537982010-11-17 17:14:07 +00003929 }
3930
3931 return R;
3932 }
3933
3934 return getRawCursorExtent(C);
3935}
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003936
3937extern "C" {
3938
3939CXSourceRange clang_getCursorExtent(CXCursor C) {
3940 SourceRange R = getRawCursorExtent(C);
3941 if (R.isInvalid())
Douglas Gregor5352ac02010-01-28 00:27:43 +00003942 return clang_getNullRange();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003943
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003944 return cxloc::translateSourceRange(getCursorContext(C), R);
Douglas Gregora7bde202010-01-19 00:34:46 +00003945}
Douglas Gregorc5d1e932010-01-19 01:20:04 +00003946
3947CXCursor clang_getCursorReferenced(CXCursor C) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00003948 if (clang_isInvalid(C.kind))
3949 return clang_getNullCursor();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003950
Ted Kremeneka60ed472010-11-16 08:15:36 +00003951 CXTranslationUnit tu = getCursorTU(C);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003952 if (clang_isDeclaration(C.kind)) {
3953 Decl *D = getCursorDecl(C);
Argyrios Kyrtzidis16ed0e62011-12-10 02:36:25 +00003954 if (!D)
3955 return clang_getNullCursor();
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003956 if (UsingDecl *Using = dyn_cast<UsingDecl>(D))
Ted Kremeneka60ed472010-11-16 08:15:36 +00003957 return MakeCursorOverloadedDeclRef(Using, D->getLocation(), tu);
Chris Lattner5f9e2722011-07-23 10:55:15 +00003958 if (ObjCPropertyImplDecl *PropImpl =dyn_cast<ObjCPropertyImplDecl>(D))
Douglas Gregore3c60a72010-11-17 00:13:31 +00003959 if (ObjCPropertyDecl *Property = PropImpl->getPropertyDecl())
3960 return MakeCXCursor(Property, tu);
3961
Douglas Gregorc5d1e932010-01-19 01:20:04 +00003962 return C;
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003963 }
3964
Douglas Gregor97b98722010-01-19 23:20:36 +00003965 if (clang_isExpression(C.kind)) {
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003966 Expr *E = getCursorExpr(C);
3967 Decl *D = getDeclFromExpr(E);
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00003968 if (D) {
3969 CXCursor declCursor = MakeCXCursor(D, tu);
3970 declCursor = getSelectorIdentifierCursor(getSelectorIdentifierIndex(C),
3971 declCursor);
3972 return declCursor;
3973 }
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003974
3975 if (OverloadExpr *Ovl = dyn_cast_or_null<OverloadExpr>(E))
Ted Kremeneka60ed472010-11-16 08:15:36 +00003976 return MakeCursorOverloadedDeclRef(Ovl, tu);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003977
Douglas Gregor97b98722010-01-19 23:20:36 +00003978 return clang_getNullCursor();
3979 }
3980
Douglas Gregor36897b02010-09-10 00:22:18 +00003981 if (clang_isStatement(C.kind)) {
3982 Stmt *S = getCursorStmt(C);
3983 if (GotoStmt *Goto = dyn_cast_or_null<GotoStmt>(S))
Ted Kremenek37c2e962011-03-15 23:47:49 +00003984 if (LabelDecl *label = Goto->getLabel())
3985 if (LabelStmt *labelS = label->getStmt())
3986 return MakeCXCursor(labelS, getCursorDecl(C), tu);
Douglas Gregor36897b02010-09-10 00:22:18 +00003987
3988 return clang_getNullCursor();
3989 }
3990
Chandler Carruth9b2a0ac2011-07-14 08:41:15 +00003991 if (C.kind == CXCursor_MacroExpansion) {
Chandler Carruth9e5bb852011-07-14 08:20:46 +00003992 if (MacroDefinition *Def = getCursorMacroExpansion(C)->getDefinition())
Ted Kremeneka60ed472010-11-16 08:15:36 +00003993 return MakeMacroDefinitionCursor(Def, tu);
Douglas Gregorbf7efa22010-03-18 18:23:03 +00003994 }
3995
Douglas Gregorc5d1e932010-01-19 01:20:04 +00003996 if (!clang_isReference(C.kind))
3997 return clang_getNullCursor();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003998
Douglas Gregorc5d1e932010-01-19 01:20:04 +00003999 switch (C.kind) {
4000 case CXCursor_ObjCSuperClassRef:
Ted Kremeneka60ed472010-11-16 08:15:36 +00004001 return MakeCXCursor(getCursorObjCSuperClassRef(C).first, tu);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004002
4003 case CXCursor_ObjCProtocolRef: {
Argyrios Kyrtzidis98c16b82012-01-24 19:40:15 +00004004 ObjCProtocolDecl *Prot = getCursorObjCProtocolRef(C).first;
4005 if (ObjCProtocolDecl *Def = Prot->getDefinition())
4006 return MakeCXCursor(Def, tu);
4007
Argyrios Kyrtzidisc15707d2012-01-24 21:39:26 +00004008 return MakeCXCursor(Prot, tu);
Argyrios Kyrtzidis98c16b82012-01-24 19:40:15 +00004009 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004010
Douglas Gregor7723fec2011-12-15 20:29:51 +00004011 case CXCursor_ObjCClassRef: {
4012 ObjCInterfaceDecl *Class = getCursorObjCClassRef(C).first;
4013 if (ObjCInterfaceDecl *Def = Class->getDefinition())
4014 return MakeCXCursor(Def, tu);
4015
Argyrios Kyrtzidisc15707d2012-01-24 21:39:26 +00004016 return MakeCXCursor(Class, tu);
Douglas Gregor7723fec2011-12-15 20:29:51 +00004017 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00004018
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004019 case CXCursor_TypeRef:
Ted Kremeneka60ed472010-11-16 08:15:36 +00004020 return MakeCXCursor(getCursorTypeRef(C).first, tu );
Douglas Gregor0b36e612010-08-31 20:37:03 +00004021
4022 case CXCursor_TemplateRef:
Ted Kremeneka60ed472010-11-16 08:15:36 +00004023 return MakeCXCursor(getCursorTemplateRef(C).first, tu );
Douglas Gregor0b36e612010-08-31 20:37:03 +00004024
Douglas Gregor69319002010-08-31 23:48:11 +00004025 case CXCursor_NamespaceRef:
Ted Kremeneka60ed472010-11-16 08:15:36 +00004026 return MakeCXCursor(getCursorNamespaceRef(C).first, tu );
Douglas Gregor69319002010-08-31 23:48:11 +00004027
Douglas Gregora67e03f2010-09-09 21:42:20 +00004028 case CXCursor_MemberRef:
Ted Kremeneka60ed472010-11-16 08:15:36 +00004029 return MakeCXCursor(getCursorMemberRef(C).first, tu );
Douglas Gregora67e03f2010-09-09 21:42:20 +00004030
Ted Kremenek3064ef92010-08-27 21:34:58 +00004031 case CXCursor_CXXBaseSpecifier: {
4032 CXXBaseSpecifier *B = cxcursor::getCursorCXXBaseSpecifier(C);
4033 return clang_getTypeDeclaration(cxtype::MakeCXType(B->getType(),
Ted Kremeneka60ed472010-11-16 08:15:36 +00004034 tu ));
Ted Kremenek3064ef92010-08-27 21:34:58 +00004035 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004036
Douglas Gregor36897b02010-09-10 00:22:18 +00004037 case CXCursor_LabelRef:
4038 // FIXME: We end up faking the "parent" declaration here because we
4039 // don't want to make CXCursor larger.
4040 return MakeCXCursor(getCursorLabelRef(C).first,
Ted Kremeneka60ed472010-11-16 08:15:36 +00004041 static_cast<ASTUnit*>(tu->TUData)->getASTContext()
4042 .getTranslationUnitDecl(),
4043 tu);
Douglas Gregor36897b02010-09-10 00:22:18 +00004044
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00004045 case CXCursor_OverloadedDeclRef:
4046 return C;
Douglas Gregor011d8b92012-02-15 00:54:55 +00004047
4048 case CXCursor_VariableRef:
4049 return MakeCXCursor(getCursorVariableRef(C).first, tu);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00004050
Douglas Gregorc5d1e932010-01-19 01:20:04 +00004051 default:
4052 // We would prefer to enumerate all non-reference cursor kinds here.
4053 llvm_unreachable("Unhandled reference cursor kind");
Douglas Gregorc5d1e932010-01-19 01:20:04 +00004054 }
Douglas Gregorc5d1e932010-01-19 01:20:04 +00004055}
4056
Douglas Gregorb6998662010-01-19 19:34:47 +00004057CXCursor clang_getCursorDefinition(CXCursor C) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00004058 if (clang_isInvalid(C.kind))
4059 return clang_getNullCursor();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004060
Ted Kremeneka60ed472010-11-16 08:15:36 +00004061 CXTranslationUnit TU = getCursorTU(C);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004062
Douglas Gregorb6998662010-01-19 19:34:47 +00004063 bool WasReference = false;
Douglas Gregor97b98722010-01-19 23:20:36 +00004064 if (clang_isReference(C.kind) || clang_isExpression(C.kind)) {
Douglas Gregorb6998662010-01-19 19:34:47 +00004065 C = clang_getCursorReferenced(C);
4066 WasReference = true;
4067 }
4068
Chandler Carruth9b2a0ac2011-07-14 08:41:15 +00004069 if (C.kind == CXCursor_MacroExpansion)
Douglas Gregorbf7efa22010-03-18 18:23:03 +00004070 return clang_getCursorReferenced(C);
4071
Douglas Gregorb6998662010-01-19 19:34:47 +00004072 if (!clang_isDeclaration(C.kind))
4073 return clang_getNullCursor();
4074
4075 Decl *D = getCursorDecl(C);
4076 if (!D)
4077 return clang_getNullCursor();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004078
Douglas Gregorb6998662010-01-19 19:34:47 +00004079 switch (D->getKind()) {
4080 // Declaration kinds that don't really separate the notions of
4081 // declaration and definition.
4082 case Decl::Namespace:
4083 case Decl::Typedef:
Richard Smith162e1c12011-04-15 14:24:37 +00004084 case Decl::TypeAlias:
Richard Smith3e4c6c42011-05-05 21:57:07 +00004085 case Decl::TypeAliasTemplate:
Douglas Gregorb6998662010-01-19 19:34:47 +00004086 case Decl::TemplateTypeParm:
4087 case Decl::EnumConstant:
4088 case Decl::Field:
Benjamin Kramerd9811462010-11-21 14:11:41 +00004089 case Decl::IndirectField:
Douglas Gregorb6998662010-01-19 19:34:47 +00004090 case Decl::ObjCIvar:
4091 case Decl::ObjCAtDefsField:
4092 case Decl::ImplicitParam:
4093 case Decl::ParmVar:
4094 case Decl::NonTypeTemplateParm:
4095 case Decl::TemplateTemplateParm:
4096 case Decl::ObjCCategoryImpl:
4097 case Decl::ObjCImplementation:
Abramo Bagnara6206d532010-06-05 05:09:32 +00004098 case Decl::AccessSpec:
Douglas Gregorb6998662010-01-19 19:34:47 +00004099 case Decl::LinkageSpec:
4100 case Decl::ObjCPropertyImpl:
4101 case Decl::FileScopeAsm:
4102 case Decl::StaticAssert:
4103 case Decl::Block:
Chris Lattnerad8dcf42011-02-17 07:39:24 +00004104 case Decl::Label: // FIXME: Is this right??
Francois Pichetaf0f4d02011-08-14 03:52:19 +00004105 case Decl::ClassScopeFunctionSpecialization:
Douglas Gregor15de72c2011-12-02 23:23:56 +00004106 case Decl::Import:
Douglas Gregorb6998662010-01-19 19:34:47 +00004107 return C;
4108
4109 // Declaration kinds that don't make any sense here, but are
4110 // nonetheless harmless.
4111 case Decl::TranslationUnit:
Douglas Gregorb6998662010-01-19 19:34:47 +00004112 break;
4113
4114 // Declaration kinds for which the definition is not resolvable.
4115 case Decl::UnresolvedUsingTypename:
4116 case Decl::UnresolvedUsingValue:
4117 break;
4118
4119 case Decl::UsingDirective:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00004120 return MakeCXCursor(cast<UsingDirectiveDecl>(D)->getNominatedNamespace(),
Ted Kremeneka60ed472010-11-16 08:15:36 +00004121 TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00004122
4123 case Decl::NamespaceAlias:
Ted Kremeneka60ed472010-11-16 08:15:36 +00004124 return MakeCXCursor(cast<NamespaceAliasDecl>(D)->getNamespace(), TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00004125
4126 case Decl::Enum:
4127 case Decl::Record:
4128 case Decl::CXXRecord:
4129 case Decl::ClassTemplateSpecialization:
4130 case Decl::ClassTemplatePartialSpecialization:
Douglas Gregor952b0172010-02-11 01:04:33 +00004131 if (TagDecl *Def = cast<TagDecl>(D)->getDefinition())
Ted Kremeneka60ed472010-11-16 08:15:36 +00004132 return MakeCXCursor(Def, TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00004133 return clang_getNullCursor();
4134
4135 case Decl::Function:
4136 case Decl::CXXMethod:
4137 case Decl::CXXConstructor:
4138 case Decl::CXXDestructor:
4139 case Decl::CXXConversion: {
4140 const FunctionDecl *Def = 0;
4141 if (cast<FunctionDecl>(D)->getBody(Def))
Ted Kremeneka60ed472010-11-16 08:15:36 +00004142 return MakeCXCursor(const_cast<FunctionDecl *>(Def), TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00004143 return clang_getNullCursor();
4144 }
4145
4146 case Decl::Var: {
Sebastian Redl31310a22010-02-01 20:16:42 +00004147 // Ask the variable if it has a definition.
4148 if (VarDecl *Def = cast<VarDecl>(D)->getDefinition())
Ted Kremeneka60ed472010-11-16 08:15:36 +00004149 return MakeCXCursor(Def, TU);
Sebastian Redl31310a22010-02-01 20:16:42 +00004150 return clang_getNullCursor();
Douglas Gregorb6998662010-01-19 19:34:47 +00004151 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004152
Douglas Gregorb6998662010-01-19 19:34:47 +00004153 case Decl::FunctionTemplate: {
4154 const FunctionDecl *Def = 0;
4155 if (cast<FunctionTemplateDecl>(D)->getTemplatedDecl()->getBody(Def))
Ted Kremeneka60ed472010-11-16 08:15:36 +00004156 return MakeCXCursor(Def->getDescribedFunctionTemplate(), TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00004157 return clang_getNullCursor();
4158 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004159
Douglas Gregorb6998662010-01-19 19:34:47 +00004160 case Decl::ClassTemplate: {
4161 if (RecordDecl *Def = cast<ClassTemplateDecl>(D)->getTemplatedDecl()
Douglas Gregor952b0172010-02-11 01:04:33 +00004162 ->getDefinition())
Douglas Gregor0b36e612010-08-31 20:37:03 +00004163 return MakeCXCursor(cast<CXXRecordDecl>(Def)->getDescribedClassTemplate(),
Ted Kremeneka60ed472010-11-16 08:15:36 +00004164 TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00004165 return clang_getNullCursor();
4166 }
4167
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00004168 case Decl::Using:
4169 return MakeCursorOverloadedDeclRef(cast<UsingDecl>(D),
Ted Kremeneka60ed472010-11-16 08:15:36 +00004170 D->getLocation(), TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00004171
4172 case Decl::UsingShadow:
4173 return clang_getCursorDefinition(
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004174 MakeCXCursor(cast<UsingShadowDecl>(D)->getTargetDecl(),
Ted Kremeneka60ed472010-11-16 08:15:36 +00004175 TU));
Douglas Gregorb6998662010-01-19 19:34:47 +00004176
4177 case Decl::ObjCMethod: {
4178 ObjCMethodDecl *Method = cast<ObjCMethodDecl>(D);
4179 if (Method->isThisDeclarationADefinition())
4180 return C;
4181
4182 // Dig out the method definition in the associated
4183 // @implementation, if we have it.
4184 // FIXME: The ASTs should make finding the definition easier.
4185 if (ObjCInterfaceDecl *Class
4186 = dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext()))
4187 if (ObjCImplementationDecl *ClassImpl = Class->getImplementation())
4188 if (ObjCMethodDecl *Def = ClassImpl->getMethod(Method->getSelector(),
4189 Method->isInstanceMethod()))
4190 if (Def->isThisDeclarationADefinition())
Ted Kremeneka60ed472010-11-16 08:15:36 +00004191 return MakeCXCursor(Def, TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00004192
4193 return clang_getNullCursor();
4194 }
4195
4196 case Decl::ObjCCategory:
4197 if (ObjCCategoryImplDecl *Impl
4198 = cast<ObjCCategoryDecl>(D)->getImplementation())
Ted Kremeneka60ed472010-11-16 08:15:36 +00004199 return MakeCXCursor(Impl, TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00004200 return clang_getNullCursor();
4201
4202 case Decl::ObjCProtocol:
Douglas Gregor5e2a1ff2012-01-01 19:29:29 +00004203 if (ObjCProtocolDecl *Def = cast<ObjCProtocolDecl>(D)->getDefinition())
4204 return MakeCXCursor(Def, TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00004205 return clang_getNullCursor();
4206
Douglas Gregor375bb142011-12-27 22:43:10 +00004207 case Decl::ObjCInterface: {
Douglas Gregorb6998662010-01-19 19:34:47 +00004208 // There are two notions of a "definition" for an Objective-C
4209 // class: the interface and its implementation. When we resolved a
4210 // reference to an Objective-C class, produce the @interface as
4211 // the definition; when we were provided with the interface,
4212 // produce the @implementation as the definition.
Douglas Gregor375bb142011-12-27 22:43:10 +00004213 ObjCInterfaceDecl *IFace = cast<ObjCInterfaceDecl>(D);
Douglas Gregorb6998662010-01-19 19:34:47 +00004214 if (WasReference) {
Douglas Gregor375bb142011-12-27 22:43:10 +00004215 if (ObjCInterfaceDecl *Def = IFace->getDefinition())
Douglas Gregor7723fec2011-12-15 20:29:51 +00004216 return MakeCXCursor(Def, TU);
Douglas Gregor375bb142011-12-27 22:43:10 +00004217 } else if (ObjCImplementationDecl *Impl = IFace->getImplementation())
Ted Kremeneka60ed472010-11-16 08:15:36 +00004218 return MakeCXCursor(Impl, TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00004219 return clang_getNullCursor();
Douglas Gregor375bb142011-12-27 22:43:10 +00004220 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004221
Douglas Gregorb6998662010-01-19 19:34:47 +00004222 case Decl::ObjCProperty:
4223 // FIXME: We don't really know where to find the
4224 // ObjCPropertyImplDecls that implement this property.
4225 return clang_getNullCursor();
4226
4227 case Decl::ObjCCompatibleAlias:
4228 if (ObjCInterfaceDecl *Class
4229 = cast<ObjCCompatibleAliasDecl>(D)->getClassInterface())
Douglas Gregor7723fec2011-12-15 20:29:51 +00004230 if (ObjCInterfaceDecl *Def = Class->getDefinition())
4231 return MakeCXCursor(Def, TU);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004232
Douglas Gregorb6998662010-01-19 19:34:47 +00004233 return clang_getNullCursor();
4234
Douglas Gregorb6998662010-01-19 19:34:47 +00004235 case Decl::Friend:
4236 if (NamedDecl *Friend = cast<FriendDecl>(D)->getFriendDecl())
Ted Kremeneka60ed472010-11-16 08:15:36 +00004237 return clang_getCursorDefinition(MakeCXCursor(Friend, TU));
Douglas Gregorb6998662010-01-19 19:34:47 +00004238 return clang_getNullCursor();
4239
4240 case Decl::FriendTemplate:
4241 if (NamedDecl *Friend = cast<FriendTemplateDecl>(D)->getFriendDecl())
Ted Kremeneka60ed472010-11-16 08:15:36 +00004242 return clang_getCursorDefinition(MakeCXCursor(Friend, TU));
Douglas Gregorb6998662010-01-19 19:34:47 +00004243 return clang_getNullCursor();
4244 }
4245
4246 return clang_getNullCursor();
4247}
4248
4249unsigned clang_isCursorDefinition(CXCursor C) {
4250 if (!clang_isDeclaration(C.kind))
4251 return 0;
4252
4253 return clang_getCursorDefinition(C) == C;
4254}
4255
Douglas Gregor1a9d0502010-11-19 23:44:15 +00004256CXCursor clang_getCanonicalCursor(CXCursor C) {
4257 if (!clang_isDeclaration(C.kind))
4258 return C;
4259
Argyrios Kyrtzidise2f854d2011-07-15 22:27:18 +00004260 if (Decl *D = getCursorDecl(C)) {
Argyrios Kyrtzidisdebb00f2011-07-15 22:37:58 +00004261 if (ObjCCategoryImplDecl *CatImplD = dyn_cast<ObjCCategoryImplDecl>(D))
4262 if (ObjCCategoryDecl *CatD = CatImplD->getCategoryDecl())
4263 return MakeCXCursor(CatD, getCursorTU(C));
4264
Argyrios Kyrtzidise2f854d2011-07-15 22:27:18 +00004265 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
4266 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface())
4267 return MakeCXCursor(IFD, getCursorTU(C));
4268
Douglas Gregor1a9d0502010-11-19 23:44:15 +00004269 return MakeCXCursor(D->getCanonicalDecl(), getCursorTU(C));
Argyrios Kyrtzidise2f854d2011-07-15 22:27:18 +00004270 }
Douglas Gregor1a9d0502010-11-19 23:44:15 +00004271
4272 return C;
4273}
4274
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00004275unsigned clang_getNumOverloadedDecls(CXCursor C) {
Douglas Gregor7c432dd2010-09-16 13:54:00 +00004276 if (C.kind != CXCursor_OverloadedDeclRef)
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00004277 return 0;
4278
4279 OverloadedDeclRefStorage Storage = getCursorOverloadedDeclRef(C).first;
4280 if (OverloadExpr *E = Storage.dyn_cast<OverloadExpr *>())
4281 return E->getNumDecls();
4282
4283 if (OverloadedTemplateStorage *S
4284 = Storage.dyn_cast<OverloadedTemplateStorage*>())
4285 return S->size();
4286
4287 Decl *D = Storage.get<Decl*>();
4288 if (UsingDecl *Using = dyn_cast<UsingDecl>(D))
Argyrios Kyrtzidis826faa22010-11-10 05:40:41 +00004289 return Using->shadow_size();
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00004290
4291 return 0;
4292}
4293
4294CXCursor clang_getOverloadedDecl(CXCursor cursor, unsigned index) {
Douglas Gregor7c432dd2010-09-16 13:54:00 +00004295 if (cursor.kind != CXCursor_OverloadedDeclRef)
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00004296 return clang_getNullCursor();
4297
4298 if (index >= clang_getNumOverloadedDecls(cursor))
4299 return clang_getNullCursor();
4300
Ted Kremeneka60ed472010-11-16 08:15:36 +00004301 CXTranslationUnit TU = getCursorTU(cursor);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00004302 OverloadedDeclRefStorage Storage = getCursorOverloadedDeclRef(cursor).first;
4303 if (OverloadExpr *E = Storage.dyn_cast<OverloadExpr *>())
Ted Kremeneka60ed472010-11-16 08:15:36 +00004304 return MakeCXCursor(E->decls_begin()[index], TU);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00004305
4306 if (OverloadedTemplateStorage *S
4307 = Storage.dyn_cast<OverloadedTemplateStorage*>())
Ted Kremeneka60ed472010-11-16 08:15:36 +00004308 return MakeCXCursor(S->begin()[index], TU);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00004309
4310 Decl *D = Storage.get<Decl*>();
4311 if (UsingDecl *Using = dyn_cast<UsingDecl>(D)) {
4312 // FIXME: This is, unfortunately, linear time.
4313 UsingDecl::shadow_iterator Pos = Using->shadow_begin();
4314 std::advance(Pos, index);
Ted Kremeneka60ed472010-11-16 08:15:36 +00004315 return MakeCXCursor(cast<UsingShadowDecl>(*Pos)->getTargetDecl(), TU);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00004316 }
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00004317
4318 return clang_getNullCursor();
4319}
4320
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00004321void clang_getDefinitionSpellingAndExtent(CXCursor C,
Steve Naroff4ade6d62009-09-23 17:52:52 +00004322 const char **startBuf,
4323 const char **endBuf,
4324 unsigned *startLine,
4325 unsigned *startColumn,
4326 unsigned *endLine,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00004327 unsigned *endColumn) {
Douglas Gregor283cae32010-01-15 21:56:13 +00004328 assert(getCursorDecl(C) && "CXCursor has null decl");
4329 NamedDecl *ND = static_cast<NamedDecl *>(getCursorDecl(C));
Steve Naroff4ade6d62009-09-23 17:52:52 +00004330 FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
4331 CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody());
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004332
Steve Naroff4ade6d62009-09-23 17:52:52 +00004333 SourceManager &SM = FD->getASTContext().getSourceManager();
4334 *startBuf = SM.getCharacterData(Body->getLBracLoc());
4335 *endBuf = SM.getCharacterData(Body->getRBracLoc());
4336 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
4337 *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc());
4338 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc());
4339 *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc());
4340}
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004341
Douglas Gregor430d7a12011-07-25 17:48:11 +00004342
4343CXSourceRange clang_getCursorReferenceNameRange(CXCursor C, unsigned NameFlags,
4344 unsigned PieceIndex) {
4345 RefNamePieces Pieces;
4346
4347 switch (C.kind) {
4348 case CXCursor_MemberRefExpr:
4349 if (MemberExpr *E = dyn_cast<MemberExpr>(getCursorExpr(C)))
4350 Pieces = buildPieces(NameFlags, true, E->getMemberNameInfo(),
4351 E->getQualifierLoc().getSourceRange());
4352 break;
4353
4354 case CXCursor_DeclRefExpr:
4355 if (DeclRefExpr *E = dyn_cast<DeclRefExpr>(getCursorExpr(C)))
4356 Pieces = buildPieces(NameFlags, false, E->getNameInfo(),
4357 E->getQualifierLoc().getSourceRange(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +00004358 E->getOptionalExplicitTemplateArgs());
Douglas Gregor430d7a12011-07-25 17:48:11 +00004359 break;
4360
4361 case CXCursor_CallExpr:
4362 if (CXXOperatorCallExpr *OCE =
4363 dyn_cast<CXXOperatorCallExpr>(getCursorExpr(C))) {
4364 Expr *Callee = OCE->getCallee();
4365 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Callee))
4366 Callee = ICE->getSubExpr();
4367
4368 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Callee))
4369 Pieces = buildPieces(NameFlags, false, DRE->getNameInfo(),
4370 DRE->getQualifierLoc().getSourceRange());
4371 }
4372 break;
4373
4374 default:
4375 break;
4376 }
4377
4378 if (Pieces.empty()) {
4379 if (PieceIndex == 0)
4380 return clang_getCursorExtent(C);
4381 } else if (PieceIndex < Pieces.size()) {
4382 SourceRange R = Pieces[PieceIndex];
4383 if (R.isValid())
4384 return cxloc::translateSourceRange(getCursorContext(C), R);
4385 }
4386
4387 return clang_getNullRange();
4388}
4389
Douglas Gregor0a812cf2010-02-18 23:07:20 +00004390void clang_enableStackTraces(void) {
4391 llvm::sys::PrintStackTraceOnErrorSignal();
4392}
4393
Daniel Dunbar995aaf92010-11-04 01:26:29 +00004394void clang_executeOnThread(void (*fn)(void*), void *user_data,
4395 unsigned stack_size) {
4396 llvm::llvm_execute_on_thread(fn, user_data, stack_size);
4397}
4398
Ted Kremenekfb480492010-01-13 21:46:36 +00004399} // end: extern "C"
Steve Naroff4ade6d62009-09-23 17:52:52 +00004400
Ted Kremenekfb480492010-01-13 21:46:36 +00004401//===----------------------------------------------------------------------===//
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004402// Token-based Operations.
4403//===----------------------------------------------------------------------===//
4404
4405/* CXToken layout:
4406 * int_data[0]: a CXTokenKind
4407 * int_data[1]: starting token location
4408 * int_data[2]: token length
4409 * int_data[3]: reserved
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004410 * ptr_data: for identifiers and keywords, an IdentifierInfo*.
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004411 * otherwise unused.
4412 */
4413extern "C" {
4414
4415CXTokenKind clang_getTokenKind(CXToken CXTok) {
4416 return static_cast<CXTokenKind>(CXTok.int_data[0]);
4417}
4418
4419CXString clang_getTokenSpelling(CXTranslationUnit TU, CXToken CXTok) {
4420 switch (clang_getTokenKind(CXTok)) {
4421 case CXToken_Identifier:
4422 case CXToken_Keyword:
4423 // We know we have an IdentifierInfo*, so use that.
Ted Kremenekee4db4f2010-02-17 00:41:08 +00004424 return createCXString(static_cast<IdentifierInfo *>(CXTok.ptr_data)
4425 ->getNameStart());
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004426
4427 case CXToken_Literal: {
4428 // We have stashed the starting pointer in the ptr_data field. Use it.
4429 const char *Text = static_cast<const char *>(CXTok.ptr_data);
Chris Lattner5f9e2722011-07-23 10:55:15 +00004430 return createCXString(StringRef(Text, CXTok.int_data[2]));
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004431 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004432
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004433 case CXToken_Punctuation:
4434 case CXToken_Comment:
4435 break;
4436 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004437
4438 // We have to find the starting buffer pointer the hard way, by
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004439 // deconstructing the source location.
Ted Kremeneka60ed472010-11-16 08:15:36 +00004440 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004441 if (!CXXUnit)
Ted Kremenekee4db4f2010-02-17 00:41:08 +00004442 return createCXString("");
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004443
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004444 SourceLocation Loc = SourceLocation::getFromRawEncoding(CXTok.int_data[1]);
4445 std::pair<FileID, unsigned> LocInfo
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00004446 = CXXUnit->getSourceManager().getDecomposedSpellingLoc(Loc);
Douglas Gregorf715ca12010-03-16 00:06:06 +00004447 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004448 StringRef Buffer
Douglas Gregorf715ca12010-03-16 00:06:06 +00004449 = CXXUnit->getSourceManager().getBufferData(LocInfo.first, &Invalid);
4450 if (Invalid)
Douglas Gregoraea67db2010-03-15 22:54:52 +00004451 return createCXString("");
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004452
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +00004453 return createCXString(Buffer.substr(LocInfo.second, CXTok.int_data[2]));
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004454}
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004455
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004456CXSourceLocation clang_getTokenLocation(CXTranslationUnit TU, CXToken CXTok) {
Ted Kremeneka60ed472010-11-16 08:15:36 +00004457 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004458 if (!CXXUnit)
4459 return clang_getNullLocation();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004460
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004461 return cxloc::translateSourceLocation(CXXUnit->getASTContext(),
4462 SourceLocation::getFromRawEncoding(CXTok.int_data[1]));
4463}
4464
4465CXSourceRange clang_getTokenExtent(CXTranslationUnit TU, CXToken CXTok) {
Ted Kremeneka60ed472010-11-16 08:15:36 +00004466 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
Douglas Gregor5352ac02010-01-28 00:27:43 +00004467 if (!CXXUnit)
4468 return clang_getNullRange();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004469
4470 return cxloc::translateSourceRange(CXXUnit->getASTContext(),
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004471 SourceLocation::getFromRawEncoding(CXTok.int_data[1]));
4472}
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004473
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00004474static void getTokens(ASTUnit *CXXUnit, SourceRange Range,
4475 SmallVectorImpl<CXToken> &CXTokens) {
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004476 SourceManager &SourceMgr = CXXUnit->getSourceManager();
4477 std::pair<FileID, unsigned> BeginLocInfo
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00004478 = SourceMgr.getDecomposedLoc(Range.getBegin());
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004479 std::pair<FileID, unsigned> EndLocInfo
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00004480 = SourceMgr.getDecomposedLoc(Range.getEnd());
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004481
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004482 // Cannot tokenize across files.
4483 if (BeginLocInfo.first != EndLocInfo.first)
4484 return;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004485
4486 // Create a lexer
Douglas Gregorf715ca12010-03-16 00:06:06 +00004487 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004488 StringRef Buffer
Douglas Gregorf715ca12010-03-16 00:06:06 +00004489 = SourceMgr.getBufferData(BeginLocInfo.first, &Invalid);
Douglas Gregor47a3fcd2010-03-16 20:26:15 +00004490 if (Invalid)
4491 return;
Douglas Gregoraea67db2010-03-15 22:54:52 +00004492
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004493 Lexer Lex(SourceMgr.getLocForStartOfFile(BeginLocInfo.first),
4494 CXXUnit->getASTContext().getLangOptions(),
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +00004495 Buffer.begin(), Buffer.data() + BeginLocInfo.second, Buffer.end());
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004496 Lex.SetCommentRetentionState(true);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004497
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004498 // Lex tokens until we hit the end of the range.
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +00004499 const char *EffectiveBufferEnd = Buffer.data() + EndLocInfo.second;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004500 Token Tok;
David Chisnall096428b2010-10-13 21:44:48 +00004501 bool previousWasAt = false;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004502 do {
4503 // Lex the next token
4504 Lex.LexFromRawLexer(Tok);
4505 if (Tok.is(tok::eof))
4506 break;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004507
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004508 // Initialize the CXToken.
4509 CXToken CXTok;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004510
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004511 // - Common fields
4512 CXTok.int_data[1] = Tok.getLocation().getRawEncoding();
4513 CXTok.int_data[2] = Tok.getLength();
4514 CXTok.int_data[3] = 0;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004515
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004516 // - Kind-specific fields
4517 if (Tok.isLiteral()) {
4518 CXTok.int_data[0] = CXToken_Literal;
4519 CXTok.ptr_data = (void *)Tok.getLiteralData();
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +00004520 } else if (Tok.is(tok::raw_identifier)) {
Douglas Gregoraea67db2010-03-15 22:54:52 +00004521 // Lookup the identifier to determine whether we have a keyword.
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004522 IdentifierInfo *II
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +00004523 = CXXUnit->getPreprocessor().LookUpIdentifierInfo(Tok);
Ted Kremenekaa8a66d2010-05-05 00:55:20 +00004524
David Chisnall096428b2010-10-13 21:44:48 +00004525 if ((II->getObjCKeywordID() != tok::objc_not_keyword) && previousWasAt) {
Ted Kremenekaa8a66d2010-05-05 00:55:20 +00004526 CXTok.int_data[0] = CXToken_Keyword;
4527 }
4528 else {
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +00004529 CXTok.int_data[0] = Tok.is(tok::identifier)
4530 ? CXToken_Identifier
4531 : CXToken_Keyword;
Ted Kremenekaa8a66d2010-05-05 00:55:20 +00004532 }
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004533 CXTok.ptr_data = II;
4534 } else if (Tok.is(tok::comment)) {
4535 CXTok.int_data[0] = CXToken_Comment;
4536 CXTok.ptr_data = 0;
4537 } else {
4538 CXTok.int_data[0] = CXToken_Punctuation;
4539 CXTok.ptr_data = 0;
4540 }
4541 CXTokens.push_back(CXTok);
David Chisnall096428b2010-10-13 21:44:48 +00004542 previousWasAt = Tok.is(tok::at);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004543 } while (Lex.getBufferLocation() <= EffectiveBufferEnd);
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00004544}
4545
4546void clang_tokenize(CXTranslationUnit TU, CXSourceRange Range,
4547 CXToken **Tokens, unsigned *NumTokens) {
4548 if (Tokens)
4549 *Tokens = 0;
4550 if (NumTokens)
4551 *NumTokens = 0;
4552
4553 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
4554 if (!CXXUnit || !Tokens || !NumTokens)
4555 return;
4556
4557 ASTUnit::ConcurrencyCheck Check(*CXXUnit);
4558
4559 SourceRange R = cxloc::translateCXSourceRange(Range);
4560 if (R.isInvalid())
4561 return;
4562
4563 SmallVector<CXToken, 32> CXTokens;
4564 getTokens(CXXUnit, R, CXTokens);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004565
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004566 if (CXTokens.empty())
4567 return;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004568
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004569 *Tokens = (CXToken *)malloc(sizeof(CXToken) * CXTokens.size());
4570 memmove(*Tokens, CXTokens.data(), sizeof(CXToken) * CXTokens.size());
4571 *NumTokens = CXTokens.size();
4572}
Douglas Gregor0045e9f2010-01-26 18:31:56 +00004573
Ted Kremenek6db61092010-05-05 00:55:15 +00004574void clang_disposeTokens(CXTranslationUnit TU,
4575 CXToken *Tokens, unsigned NumTokens) {
4576 free(Tokens);
4577}
4578
4579} // end: extern "C"
4580
4581//===----------------------------------------------------------------------===//
4582// Token annotation APIs.
4583//===----------------------------------------------------------------------===//
4584
Douglas Gregor0045e9f2010-01-26 18:31:56 +00004585typedef llvm::DenseMap<unsigned, CXCursor> AnnotateTokensData;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004586static enum CXChildVisitResult AnnotateTokensVisitor(CXCursor cursor,
4587 CXCursor parent,
4588 CXClientData client_data);
Ted Kremenek6db61092010-05-05 00:55:15 +00004589namespace {
4590class AnnotateTokensWorker {
4591 AnnotateTokensData &Annotated;
Ted Kremenek11949cb2010-05-05 00:55:17 +00004592 CXToken *Tokens;
4593 CXCursor *Cursors;
4594 unsigned NumTokens;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004595 unsigned TokIdx;
Douglas Gregor4419b672010-10-21 06:10:04 +00004596 unsigned PreprocessingTokIdx;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004597 CursorVisitor AnnotateVis;
4598 SourceManager &SrcMgr;
Douglas Gregorf5251602011-03-08 17:10:18 +00004599 bool HasContextSensitiveKeywords;
4600
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004601 bool MoreTokens() const { return TokIdx < NumTokens; }
4602 unsigned NextToken() const { return TokIdx; }
4603 void AdvanceToken() { ++TokIdx; }
4604 SourceLocation GetTokenLoc(unsigned tokI) {
4605 return SourceLocation::getFromRawEncoding(Tokens[tokI].int_data[1]);
4606 }
Argyrios Kyrtzidis5f616b72011-08-30 19:43:19 +00004607 bool isFunctionMacroToken(unsigned tokI) const {
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00004608 return Tokens[tokI].int_data[3] != 0;
4609 }
Argyrios Kyrtzidis5f616b72011-08-30 19:43:19 +00004610 SourceLocation getFunctionMacroTokenLoc(unsigned tokI) const {
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00004611 return SourceLocation::getFromRawEncoding(Tokens[tokI].int_data[3]);
4612 }
4613
4614 void annotateAndAdvanceTokens(CXCursor, RangeComparisonResult, SourceRange);
Argyrios Kyrtzidis5f616b72011-08-30 19:43:19 +00004615 void annotateAndAdvanceFunctionMacroTokens(CXCursor, RangeComparisonResult,
4616 SourceRange);
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004617
Ted Kremenek6db61092010-05-05 00:55:15 +00004618public:
Ted Kremenek11949cb2010-05-05 00:55:17 +00004619 AnnotateTokensWorker(AnnotateTokensData &annotated,
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004620 CXToken *tokens, CXCursor *cursors, unsigned numTokens,
Ted Kremeneka60ed472010-11-16 08:15:36 +00004621 CXTranslationUnit tu, SourceRange RegionOfInterest)
Ted Kremenek11949cb2010-05-05 00:55:17 +00004622 : Annotated(annotated), Tokens(tokens), Cursors(cursors),
Douglas Gregor4419b672010-10-21 06:10:04 +00004623 NumTokens(numTokens), TokIdx(0), PreprocessingTokIdx(0),
Ted Kremeneka60ed472010-11-16 08:15:36 +00004624 AnnotateVis(tu,
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00004625 AnnotateTokensVisitor, this,
4626 /*VisitPreprocessorLast=*/true,
Argyrios Kyrtzidise7098462011-10-31 07:19:54 +00004627 /*VisitIncludedEntities=*/false,
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00004628 RegionOfInterest),
Douglas Gregorf5251602011-03-08 17:10:18 +00004629 SrcMgr(static_cast<ASTUnit*>(tu->TUData)->getSourceManager()),
4630 HasContextSensitiveKeywords(false) { }
Ted Kremenek11949cb2010-05-05 00:55:17 +00004631
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004632 void VisitChildren(CXCursor C) { AnnotateVis.VisitChildren(C); }
Ted Kremenek6db61092010-05-05 00:55:15 +00004633 enum CXChildVisitResult Visit(CXCursor cursor, CXCursor parent);
Argyrios Kyrtzidis03ee2dd2011-11-16 08:58:57 +00004634 void AnnotateTokens();
Douglas Gregorf5251602011-03-08 17:10:18 +00004635
4636 /// \brief Determine whether the annotator saw any cursors that have
4637 /// context-sensitive keywords.
4638 bool hasContextSensitiveKeywords() const {
4639 return HasContextSensitiveKeywords;
4640 }
Ted Kremenek6db61092010-05-05 00:55:15 +00004641};
4642}
Douglas Gregor0045e9f2010-01-26 18:31:56 +00004643
Argyrios Kyrtzidis03ee2dd2011-11-16 08:58:57 +00004644void AnnotateTokensWorker::AnnotateTokens() {
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004645 // Walk the AST within the region of interest, annotating tokens
4646 // along the way.
Argyrios Kyrtzidis03ee2dd2011-11-16 08:58:57 +00004647 AnnotateVis.visitFileRegion();
Ted Kremenek11949cb2010-05-05 00:55:17 +00004648
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004649 for (unsigned I = 0 ; I < TokIdx ; ++I) {
4650 AnnotateTokensData::iterator Pos = Annotated.find(Tokens[I].int_data[1]);
Douglas Gregor4419b672010-10-21 06:10:04 +00004651 if (Pos != Annotated.end() &&
4652 (clang_isInvalid(Cursors[I].kind) ||
4653 Pos->second.kind != CXCursor_PreprocessingDirective))
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004654 Cursors[I] = Pos->second;
4655 }
4656
4657 // Finish up annotating any tokens left.
4658 if (!MoreTokens())
4659 return;
4660
4661 const CXCursor &C = clang_getNullCursor();
4662 for (unsigned I = TokIdx ; I < NumTokens ; ++I) {
Argyrios Kyrtzidis03ee2dd2011-11-16 08:58:57 +00004663 if (I < PreprocessingTokIdx && clang_isPreprocessing(Cursors[I].kind))
4664 continue;
4665
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004666 AnnotateTokensData::iterator Pos = Annotated.find(Tokens[I].int_data[1]);
4667 Cursors[I] = (Pos == Annotated.end()) ? C : Pos->second;
Ted Kremenek11949cb2010-05-05 00:55:17 +00004668 }
4669}
4670
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00004671/// \brief It annotates and advances tokens with a cursor until the comparison
4672//// between the cursor location and the source range is the same as
4673/// \arg compResult.
4674///
4675/// Pass RangeBefore to annotate tokens with a cursor until a range is reached.
4676/// Pass RangeOverlap to annotate tokens inside a range.
4677void AnnotateTokensWorker::annotateAndAdvanceTokens(CXCursor updateC,
4678 RangeComparisonResult compResult,
4679 SourceRange range) {
4680 while (MoreTokens()) {
4681 const unsigned I = NextToken();
Argyrios Kyrtzidis5f616b72011-08-30 19:43:19 +00004682 if (isFunctionMacroToken(I))
4683 return annotateAndAdvanceFunctionMacroTokens(updateC, compResult, range);
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00004684
4685 SourceLocation TokLoc = GetTokenLoc(I);
4686 if (LocationCompare(SrcMgr, TokLoc, range) == compResult) {
4687 Cursors[I] = updateC;
4688 AdvanceToken();
4689 continue;
4690 }
4691 break;
4692 }
4693}
4694
4695/// \brief Special annotation handling for macro argument tokens.
Argyrios Kyrtzidis5f616b72011-08-30 19:43:19 +00004696void AnnotateTokensWorker::annotateAndAdvanceFunctionMacroTokens(
4697 CXCursor updateC,
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00004698 RangeComparisonResult compResult,
4699 SourceRange range) {
Argyrios Kyrtzidis5f616b72011-08-30 19:43:19 +00004700 assert(MoreTokens());
4701 assert(isFunctionMacroToken(NextToken()) &&
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00004702 "Should be called only for macro arg tokens");
4703
4704 // This works differently than annotateAndAdvanceTokens; because expanded
4705 // macro arguments can have arbitrary translation-unit source order, we do not
4706 // advance the token index one by one until a token fails the range test.
4707 // We only advance once past all of the macro arg tokens if all of them
4708 // pass the range test. If one of them fails we keep the token index pointing
4709 // at the start of the macro arg tokens so that the failing token will be
4710 // annotated by a subsequent annotation try.
4711
4712 bool atLeastOneCompFail = false;
4713
4714 unsigned I = NextToken();
Argyrios Kyrtzidis5f616b72011-08-30 19:43:19 +00004715 for (; I < NumTokens && isFunctionMacroToken(I); ++I) {
4716 SourceLocation TokLoc = getFunctionMacroTokenLoc(I);
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00004717 if (TokLoc.isFileID())
4718 continue; // not macro arg token, it's parens or comma.
4719 if (LocationCompare(SrcMgr, TokLoc, range) == compResult) {
4720 if (clang_isInvalid(clang_getCursorKind(Cursors[I])))
4721 Cursors[I] = updateC;
4722 } else
4723 atLeastOneCompFail = true;
4724 }
4725
4726 if (!atLeastOneCompFail)
4727 TokIdx = I; // All of the tokens were handled, advance beyond all of them.
4728}
4729
Ted Kremenek6db61092010-05-05 00:55:15 +00004730enum CXChildVisitResult
Douglas Gregor4419b672010-10-21 06:10:04 +00004731AnnotateTokensWorker::Visit(CXCursor cursor, CXCursor parent) {
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004732 CXSourceLocation Loc = clang_getCursorLocation(cursor);
Douglas Gregor4419b672010-10-21 06:10:04 +00004733 SourceRange cursorRange = getRawCursorExtent(cursor);
Douglas Gregor81d3c042010-11-01 20:13:04 +00004734 if (cursorRange.isInvalid())
4735 return CXChildVisit_Recurse;
Douglas Gregorf5251602011-03-08 17:10:18 +00004736
4737 if (!HasContextSensitiveKeywords) {
4738 // Objective-C properties can have context-sensitive keywords.
4739 if (cursor.kind == CXCursor_ObjCPropertyDecl) {
4740 if (ObjCPropertyDecl *Property
4741 = dyn_cast_or_null<ObjCPropertyDecl>(getCursorDecl(cursor)))
4742 HasContextSensitiveKeywords = Property->getPropertyAttributesAsWritten() != 0;
4743 }
4744 // Objective-C methods can have context-sensitive keywords.
4745 else if (cursor.kind == CXCursor_ObjCInstanceMethodDecl ||
4746 cursor.kind == CXCursor_ObjCClassMethodDecl) {
4747 if (ObjCMethodDecl *Method
4748 = dyn_cast_or_null<ObjCMethodDecl>(getCursorDecl(cursor))) {
4749 if (Method->getObjCDeclQualifier())
4750 HasContextSensitiveKeywords = true;
4751 else {
4752 for (ObjCMethodDecl::param_iterator P = Method->param_begin(),
4753 PEnd = Method->param_end();
4754 P != PEnd; ++P) {
4755 if ((*P)->getObjCDeclQualifier()) {
4756 HasContextSensitiveKeywords = true;
4757 break;
4758 }
4759 }
4760 }
4761 }
4762 }
4763 // C++ methods can have context-sensitive keywords.
4764 else if (cursor.kind == CXCursor_CXXMethod) {
4765 if (CXXMethodDecl *Method
4766 = dyn_cast_or_null<CXXMethodDecl>(getCursorDecl(cursor))) {
4767 if (Method->hasAttr<FinalAttr>() || Method->hasAttr<OverrideAttr>())
4768 HasContextSensitiveKeywords = true;
4769 }
4770 }
4771 // C++ classes can have context-sensitive keywords.
4772 else if (cursor.kind == CXCursor_StructDecl ||
4773 cursor.kind == CXCursor_ClassDecl ||
4774 cursor.kind == CXCursor_ClassTemplate ||
4775 cursor.kind == CXCursor_ClassTemplatePartialSpecialization) {
4776 if (Decl *D = getCursorDecl(cursor))
4777 if (D->hasAttr<FinalAttr>())
4778 HasContextSensitiveKeywords = true;
4779 }
4780 }
4781
Douglas Gregor4419b672010-10-21 06:10:04 +00004782 if (clang_isPreprocessing(cursor.kind)) {
Chandler Carruthcea731a2011-07-14 16:07:57 +00004783 // For macro expansions, just note where the beginning of the macro
4784 // expansion occurs.
Chandler Carruth9b2a0ac2011-07-14 08:41:15 +00004785 if (cursor.kind == CXCursor_MacroExpansion) {
Douglas Gregor4419b672010-10-21 06:10:04 +00004786 Annotated[Loc.int_data] = cursor;
4787 return CXChildVisit_Recurse;
4788 }
4789
Douglas Gregor4419b672010-10-21 06:10:04 +00004790 // Items in the preprocessing record are kept separate from items in
4791 // declarations, so we keep a separate token index.
4792 unsigned SavedTokIdx = TokIdx;
4793 TokIdx = PreprocessingTokIdx;
4794
4795 // Skip tokens up until we catch up to the beginning of the preprocessing
4796 // entry.
4797 while (MoreTokens()) {
4798 const unsigned I = NextToken();
4799 SourceLocation TokLoc = GetTokenLoc(I);
4800 switch (LocationCompare(SrcMgr, TokLoc, cursorRange)) {
4801 case RangeBefore:
4802 AdvanceToken();
4803 continue;
4804 case RangeAfter:
4805 case RangeOverlap:
4806 break;
4807 }
4808 break;
4809 }
4810
4811 // Look at all of the tokens within this range.
4812 while (MoreTokens()) {
4813 const unsigned I = NextToken();
4814 SourceLocation TokLoc = GetTokenLoc(I);
4815 switch (LocationCompare(SrcMgr, TokLoc, cursorRange)) {
4816 case RangeBefore:
David Blaikieb219cfc2011-09-23 05:06:16 +00004817 llvm_unreachable("Infeasible");
Douglas Gregor4419b672010-10-21 06:10:04 +00004818 case RangeAfter:
4819 break;
4820 case RangeOverlap:
4821 Cursors[I] = cursor;
4822 AdvanceToken();
4823 continue;
4824 }
4825 break;
4826 }
4827
4828 // Save the preprocessing token index; restore the non-preprocessing
4829 // token index.
4830 PreprocessingTokIdx = TokIdx;
4831 TokIdx = SavedTokIdx;
Douglas Gregor0045e9f2010-01-26 18:31:56 +00004832 return CXChildVisit_Recurse;
4833 }
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004834
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004835 if (cursorRange.isInvalid())
4836 return CXChildVisit_Continue;
Ted Kremeneka333c662010-05-12 05:29:33 +00004837
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004838 SourceLocation L = SourceLocation::getFromRawEncoding(Loc.int_data);
4839
Ted Kremeneka333c662010-05-12 05:29:33 +00004840 // Adjust the annotated range based specific declarations.
4841 const enum CXCursorKind cursorK = clang_getCursorKind(cursor);
4842 if (cursorK >= CXCursor_FirstDecl && cursorK <= CXCursor_LastDecl) {
Ted Kremenek23173d72010-05-18 21:09:07 +00004843 Decl *D = cxcursor::getCursorDecl(cursor);
Douglas Gregor2494dd02011-03-01 01:34:45 +00004844
4845 SourceLocation StartLoc;
Argyrios Kyrtzidis16ed0e62011-12-10 02:36:25 +00004846 if (const DeclaratorDecl *DD = dyn_cast_or_null<DeclaratorDecl>(D)) {
Douglas Gregor2494dd02011-03-01 01:34:45 +00004847 if (TypeSourceInfo *TI = DD->getTypeSourceInfo())
4848 StartLoc = TI->getTypeLoc().getSourceRange().getBegin();
Argyrios Kyrtzidis16ed0e62011-12-10 02:36:25 +00004849 } else if (TypedefDecl *Typedef = dyn_cast_or_null<TypedefDecl>(D)) {
Douglas Gregor2494dd02011-03-01 01:34:45 +00004850 if (TypeSourceInfo *TI = Typedef->getTypeSourceInfo())
4851 StartLoc = TI->getTypeLoc().getSourceRange().getBegin();
Ted Kremeneka333c662010-05-12 05:29:33 +00004852 }
Douglas Gregor2494dd02011-03-01 01:34:45 +00004853
4854 if (StartLoc.isValid() && L.isValid() &&
4855 SrcMgr.isBeforeInTranslationUnit(StartLoc, L))
4856 cursorRange.setBegin(StartLoc);
Ted Kremeneka333c662010-05-12 05:29:33 +00004857 }
Douglas Gregor81d3c042010-11-01 20:13:04 +00004858
Ted Kremenek3f404602010-08-14 01:14:06 +00004859 // If the location of the cursor occurs within a macro instantiation, record
4860 // the spelling location of the cursor in our annotation map. We can then
4861 // paper over the token labelings during a post-processing step to try and
4862 // get cursor mappings for tokens that are the *arguments* of a macro
4863 // instantiation.
4864 if (L.isMacroID()) {
4865 unsigned rawEncoding = SrcMgr.getSpellingLoc(L).getRawEncoding();
4866 // Only invalidate the old annotation if it isn't part of a preprocessing
4867 // directive. Here we assume that the default construction of CXCursor
4868 // results in CXCursor.kind being an initialized value (i.e., 0). If
4869 // this isn't the case, we can fix by doing lookup + insertion.
Douglas Gregor4419b672010-10-21 06:10:04 +00004870
Ted Kremenek3f404602010-08-14 01:14:06 +00004871 CXCursor &oldC = Annotated[rawEncoding];
4872 if (!clang_isPreprocessing(oldC.kind))
4873 oldC = cursor;
4874 }
4875
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004876 const enum CXCursorKind K = clang_getCursorKind(parent);
4877 const CXCursor updateC =
Ted Kremenekd8b0a842010-08-25 22:16:02 +00004878 (clang_isInvalid(K) || K == CXCursor_TranslationUnit)
4879 ? clang_getNullCursor() : parent;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004880
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00004881 annotateAndAdvanceTokens(updateC, RangeBefore, cursorRange);
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004882
Argyrios Kyrtzidis5517b892011-06-27 19:42:20 +00004883 // Avoid having the cursor of an expression "overwrite" the annotation of the
4884 // variable declaration that it belongs to.
4885 // This can happen for C++ constructor expressions whose range generally
4886 // include the variable declaration, e.g.:
4887 // MyCXXClass foo; // Make sure we don't annotate 'foo' as a CallExpr cursor.
4888 if (clang_isExpression(cursorK)) {
4889 Expr *E = getCursorExpr(cursor);
Argyrios Kyrtzidis8ccac3d2011-06-29 22:20:07 +00004890 if (Decl *D = getCursorParentDecl(cursor)) {
Argyrios Kyrtzidis5517b892011-06-27 19:42:20 +00004891 const unsigned I = NextToken();
4892 if (E->getLocStart().isValid() && D->getLocation().isValid() &&
4893 E->getLocStart() == D->getLocation() &&
4894 E->getLocStart() == GetTokenLoc(I)) {
4895 Cursors[I] = updateC;
4896 AdvanceToken();
4897 }
4898 }
4899 }
4900
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004901 // Visit children to get their cursor information.
4902 const unsigned BeforeChildren = NextToken();
4903 VisitChildren(cursor);
4904 const unsigned AfterChildren = NextToken();
4905
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00004906 // Scan the tokens that are at the end of the cursor, but are not captured
4907 // but the child cursors.
4908 annotateAndAdvanceTokens(cursor, RangeOverlap, cursorRange);
Ted Kremenek6db61092010-05-05 00:55:15 +00004909
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004910 // Scan the tokens that are at the beginning of the cursor, but are not
4911 // capture by the child cursors.
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004912 for (unsigned I = BeforeChildren; I != AfterChildren; ++I) {
4913 if (!clang_isInvalid(clang_getCursorKind(Cursors[I])))
4914 break;
Douglas Gregor4419b672010-10-21 06:10:04 +00004915
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004916 Cursors[I] = cursor;
4917 }
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004918
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004919 return CXChildVisit_Continue;
Douglas Gregor0045e9f2010-01-26 18:31:56 +00004920}
4921
Ted Kremenek6db61092010-05-05 00:55:15 +00004922static enum CXChildVisitResult AnnotateTokensVisitor(CXCursor cursor,
4923 CXCursor parent,
4924 CXClientData client_data) {
4925 return static_cast<AnnotateTokensWorker*>(client_data)->Visit(cursor, parent);
4926}
4927
Ted Kremenek6628a612011-03-18 22:51:30 +00004928namespace {
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00004929
4930/// \brief Uses the macro expansions in the preprocessing record to find
4931/// and mark tokens that are macro arguments. This info is used by the
4932/// AnnotateTokensWorker.
4933class MarkMacroArgTokensVisitor {
4934 SourceManager &SM;
4935 CXToken *Tokens;
4936 unsigned NumTokens;
4937 unsigned CurIdx;
4938
4939public:
4940 MarkMacroArgTokensVisitor(SourceManager &SM,
4941 CXToken *tokens, unsigned numTokens)
4942 : SM(SM), Tokens(tokens), NumTokens(numTokens), CurIdx(0) { }
4943
4944 CXChildVisitResult visit(CXCursor cursor, CXCursor parent) {
4945 if (cursor.kind != CXCursor_MacroExpansion)
4946 return CXChildVisit_Continue;
4947
4948 SourceRange macroRange = getCursorMacroExpansion(cursor)->getSourceRange();
4949 if (macroRange.getBegin() == macroRange.getEnd())
4950 return CXChildVisit_Continue; // it's not a function macro.
4951
4952 for (; CurIdx < NumTokens; ++CurIdx) {
4953 if (!SM.isBeforeInTranslationUnit(getTokenLoc(CurIdx),
4954 macroRange.getBegin()))
4955 break;
4956 }
4957
4958 if (CurIdx == NumTokens)
4959 return CXChildVisit_Break;
4960
4961 for (; CurIdx < NumTokens; ++CurIdx) {
4962 SourceLocation tokLoc = getTokenLoc(CurIdx);
4963 if (!SM.isBeforeInTranslationUnit(tokLoc, macroRange.getEnd()))
4964 break;
4965
Argyrios Kyrtzidis5f616b72011-08-30 19:43:19 +00004966 setFunctionMacroTokenLoc(CurIdx, SM.getMacroArgExpandedLocation(tokLoc));
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00004967 }
4968
4969 if (CurIdx == NumTokens)
4970 return CXChildVisit_Break;
4971
4972 return CXChildVisit_Continue;
4973 }
4974
4975private:
4976 SourceLocation getTokenLoc(unsigned tokI) {
4977 return SourceLocation::getFromRawEncoding(Tokens[tokI].int_data[1]);
4978 }
4979
Argyrios Kyrtzidis5f616b72011-08-30 19:43:19 +00004980 void setFunctionMacroTokenLoc(unsigned tokI, SourceLocation loc) {
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00004981 // The third field is reserved and currently not used. Use it here
4982 // to mark macro arg expanded tokens with their expanded locations.
4983 Tokens[tokI].int_data[3] = loc.getRawEncoding();
4984 }
4985};
4986
4987} // end anonymous namespace
4988
4989static CXChildVisitResult
4990MarkMacroArgTokensVisitorDelegate(CXCursor cursor, CXCursor parent,
4991 CXClientData client_data) {
4992 return static_cast<MarkMacroArgTokensVisitor*>(client_data)->visit(cursor,
4993 parent);
4994}
4995
4996namespace {
Ted Kremenek6628a612011-03-18 22:51:30 +00004997 struct clang_annotateTokens_Data {
4998 CXTranslationUnit TU;
4999 ASTUnit *CXXUnit;
5000 CXToken *Tokens;
5001 unsigned NumTokens;
5002 CXCursor *Cursors;
5003 };
5004}
5005
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00005006static void annotatePreprocessorTokens(CXTranslationUnit TU,
5007 SourceRange RegionOfInterest,
5008 AnnotateTokensData &Annotated) {
5009 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
5010
5011 SourceManager &SourceMgr = CXXUnit->getSourceManager();
5012 std::pair<FileID, unsigned> BeginLocInfo
5013 = SourceMgr.getDecomposedLoc(RegionOfInterest.getBegin());
5014 std::pair<FileID, unsigned> EndLocInfo
5015 = SourceMgr.getDecomposedLoc(RegionOfInterest.getEnd());
5016
5017 if (BeginLocInfo.first != EndLocInfo.first)
5018 return;
5019
5020 StringRef Buffer;
5021 bool Invalid = false;
5022 Buffer = SourceMgr.getBufferData(BeginLocInfo.first, &Invalid);
5023 if (Buffer.empty() || Invalid)
5024 return;
5025
5026 Lexer Lex(SourceMgr.getLocForStartOfFile(BeginLocInfo.first),
5027 CXXUnit->getASTContext().getLangOptions(),
5028 Buffer.begin(), Buffer.data() + BeginLocInfo.second,
5029 Buffer.end());
5030 Lex.SetCommentRetentionState(true);
5031
5032 // Lex tokens in raw mode until we hit the end of the range, to avoid
5033 // entering #includes or expanding macros.
5034 while (true) {
5035 Token Tok;
5036 Lex.LexFromRawLexer(Tok);
5037
5038 reprocess:
5039 if (Tok.is(tok::hash) && Tok.isAtStartOfLine()) {
5040 // We have found a preprocessing directive. Gobble it up so that we
5041 // don't see it while preprocessing these tokens later, but keep track
5042 // of all of the token locations inside this preprocessing directive so
5043 // that we can annotate them appropriately.
5044 //
5045 // FIXME: Some simple tests here could identify macro definitions and
5046 // #undefs, to provide specific cursor kinds for those.
5047 SmallVector<SourceLocation, 32> Locations;
5048 do {
5049 Locations.push_back(Tok.getLocation());
5050 Lex.LexFromRawLexer(Tok);
5051 } while (!Tok.isAtStartOfLine() && !Tok.is(tok::eof));
5052
5053 using namespace cxcursor;
5054 CXCursor Cursor
5055 = MakePreprocessingDirectiveCursor(SourceRange(Locations.front(),
5056 Locations.back()),
5057 TU);
5058 for (unsigned I = 0, N = Locations.size(); I != N; ++I) {
5059 Annotated[Locations[I].getRawEncoding()] = Cursor;
5060 }
5061
5062 if (Tok.isAtStartOfLine())
5063 goto reprocess;
5064
5065 continue;
5066 }
5067
5068 if (Tok.is(tok::eof))
5069 break;
5070 }
5071}
5072
Ted Kremenekab979612010-11-11 08:05:23 +00005073// This gets run a separate thread to avoid stack blowout.
Ted Kremenek6628a612011-03-18 22:51:30 +00005074static void clang_annotateTokensImpl(void *UserData) {
5075 CXTranslationUnit TU = ((clang_annotateTokens_Data*)UserData)->TU;
5076 ASTUnit *CXXUnit = ((clang_annotateTokens_Data*)UserData)->CXXUnit;
5077 CXToken *Tokens = ((clang_annotateTokens_Data*)UserData)->Tokens;
5078 const unsigned NumTokens = ((clang_annotateTokens_Data*)UserData)->NumTokens;
5079 CXCursor *Cursors = ((clang_annotateTokens_Data*)UserData)->Cursors;
5080
5081 // Determine the region of interest, which contains all of the tokens.
5082 SourceRange RegionOfInterest;
5083 RegionOfInterest.setBegin(
5084 cxloc::translateSourceLocation(clang_getTokenLocation(TU, Tokens[0])));
5085 RegionOfInterest.setEnd(
5086 cxloc::translateSourceLocation(clang_getTokenLocation(TU,
5087 Tokens[NumTokens-1])));
5088
5089 // A mapping from the source locations found when re-lexing or traversing the
5090 // region of interest to the corresponding cursors.
5091 AnnotateTokensData Annotated;
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00005092
Ted Kremenek6628a612011-03-18 22:51:30 +00005093 // Relex the tokens within the source range to look for preprocessing
5094 // directives.
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00005095 annotatePreprocessorTokens(TU, RegionOfInterest, Annotated);
Ted Kremenek6628a612011-03-18 22:51:30 +00005096
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00005097 if (CXXUnit->getPreprocessor().getPreprocessingRecord()) {
5098 // Search and mark tokens that are macro argument expansions.
5099 MarkMacroArgTokensVisitor Visitor(CXXUnit->getSourceManager(),
5100 Tokens, NumTokens);
5101 CursorVisitor MacroArgMarker(TU,
5102 MarkMacroArgTokensVisitorDelegate, &Visitor,
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00005103 /*VisitPreprocessorLast=*/true,
Argyrios Kyrtzidise7098462011-10-31 07:19:54 +00005104 /*VisitIncludedEntities=*/false,
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00005105 RegionOfInterest);
Argyrios Kyrtzidisa6763792011-08-18 18:03:34 +00005106 MacroArgMarker.visitPreprocessedEntitiesInRegion();
5107 }
5108
Ted Kremenek6628a612011-03-18 22:51:30 +00005109 // Annotate all of the source locations in the region of interest that map to
5110 // a specific cursor.
5111 AnnotateTokensWorker W(Annotated, Tokens, Cursors, NumTokens,
5112 TU, RegionOfInterest);
5113
5114 // FIXME: We use a ridiculous stack size here because the data-recursion
5115 // algorithm uses a large stack frame than the non-data recursive version,
5116 // and AnnotationTokensWorker currently transforms the data-recursion
5117 // algorithm back into a traditional recursion by explicitly calling
5118 // VisitChildren(). We will need to remove this explicit recursive call.
5119 W.AnnotateTokens();
5120
5121 // If we ran into any entities that involve context-sensitive keywords,
5122 // take another pass through the tokens to mark them as such.
5123 if (W.hasContextSensitiveKeywords()) {
5124 for (unsigned I = 0; I != NumTokens; ++I) {
5125 if (clang_getTokenKind(Tokens[I]) != CXToken_Identifier)
5126 continue;
5127
5128 if (Cursors[I].kind == CXCursor_ObjCPropertyDecl) {
5129 IdentifierInfo *II = static_cast<IdentifierInfo *>(Tokens[I].ptr_data);
5130 if (ObjCPropertyDecl *Property
5131 = dyn_cast_or_null<ObjCPropertyDecl>(getCursorDecl(Cursors[I]))) {
5132 if (Property->getPropertyAttributesAsWritten() != 0 &&
5133 llvm::StringSwitch<bool>(II->getName())
5134 .Case("readonly", true)
5135 .Case("assign", true)
John McCallf85e1932011-06-15 23:02:42 +00005136 .Case("unsafe_unretained", true)
Ted Kremenek6628a612011-03-18 22:51:30 +00005137 .Case("readwrite", true)
5138 .Case("retain", true)
5139 .Case("copy", true)
5140 .Case("nonatomic", true)
5141 .Case("atomic", true)
5142 .Case("getter", true)
5143 .Case("setter", true)
John McCallf85e1932011-06-15 23:02:42 +00005144 .Case("strong", true)
5145 .Case("weak", true)
Ted Kremenek6628a612011-03-18 22:51:30 +00005146 .Default(false))
5147 Tokens[I].int_data[0] = CXToken_Keyword;
5148 }
5149 continue;
5150 }
5151
5152 if (Cursors[I].kind == CXCursor_ObjCInstanceMethodDecl ||
5153 Cursors[I].kind == CXCursor_ObjCClassMethodDecl) {
5154 IdentifierInfo *II = static_cast<IdentifierInfo *>(Tokens[I].ptr_data);
5155 if (llvm::StringSwitch<bool>(II->getName())
5156 .Case("in", true)
5157 .Case("out", true)
5158 .Case("inout", true)
5159 .Case("oneway", true)
5160 .Case("bycopy", true)
5161 .Case("byref", true)
5162 .Default(false))
5163 Tokens[I].int_data[0] = CXToken_Keyword;
5164 continue;
5165 }
Argyrios Kyrtzidis6639e922011-09-13 17:39:31 +00005166
5167 if (Cursors[I].kind == CXCursor_CXXFinalAttr ||
5168 Cursors[I].kind == CXCursor_CXXOverrideAttr) {
5169 Tokens[I].int_data[0] = CXToken_Keyword;
Ted Kremenek6628a612011-03-18 22:51:30 +00005170 continue;
5171 }
5172 }
5173 }
Ted Kremenekab979612010-11-11 08:05:23 +00005174}
5175
Ted Kremenek6db61092010-05-05 00:55:15 +00005176extern "C" {
5177
Douglas Gregorfc8ea232010-01-26 17:06:03 +00005178void clang_annotateTokens(CXTranslationUnit TU,
5179 CXToken *Tokens, unsigned NumTokens,
5180 CXCursor *Cursors) {
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00005181
5182 if (NumTokens == 0 || !Tokens || !Cursors)
Douglas Gregor0045e9f2010-01-26 18:31:56 +00005183 return;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00005184
Douglas Gregor4419b672010-10-21 06:10:04 +00005185 // Any token we don't specifically annotate will have a NULL cursor.
5186 CXCursor C = clang_getNullCursor();
5187 for (unsigned I = 0; I != NumTokens; ++I)
5188 Cursors[I] = C;
5189
Ted Kremeneka60ed472010-11-16 08:15:36 +00005190 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
Douglas Gregor4419b672010-10-21 06:10:04 +00005191 if (!CXXUnit)
Douglas Gregor0045e9f2010-01-26 18:31:56 +00005192 return;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00005193
Douglas Gregorbdf60622010-03-05 21:16:25 +00005194 ASTUnit::ConcurrencyCheck Check(*CXXUnit);
Ted Kremenek6628a612011-03-18 22:51:30 +00005195
5196 clang_annotateTokens_Data data = { TU, CXXUnit, Tokens, NumTokens, Cursors };
Ted Kremenekab979612010-11-11 08:05:23 +00005197 llvm::CrashRecoveryContext CRC;
Ted Kremenek6628a612011-03-18 22:51:30 +00005198 if (!RunSafely(CRC, clang_annotateTokensImpl, &data,
Ted Kremenek6c53fdd2010-11-14 17:47:35 +00005199 GetSafetyThreadStackSize() * 2)) {
Ted Kremenekab979612010-11-11 08:05:23 +00005200 fprintf(stderr, "libclang: crash detected while annotating tokens\n");
5201 }
Douglas Gregorfc8ea232010-01-26 17:06:03 +00005202}
Ted Kremenek6628a612011-03-18 22:51:30 +00005203
Douglas Gregorfc8ea232010-01-26 17:06:03 +00005204} // end: extern "C"
5205
5206//===----------------------------------------------------------------------===//
Ted Kremenek16b42592010-03-03 06:36:57 +00005207// Operations for querying linkage of a cursor.
5208//===----------------------------------------------------------------------===//
5209
5210extern "C" {
5211CXLinkageKind clang_getCursorLinkage(CXCursor cursor) {
Douglas Gregor0396f462010-03-19 05:22:59 +00005212 if (!clang_isDeclaration(cursor.kind))
5213 return CXLinkage_Invalid;
5214
Ted Kremenek16b42592010-03-03 06:36:57 +00005215 Decl *D = cxcursor::getCursorDecl(cursor);
5216 if (NamedDecl *ND = dyn_cast_or_null<NamedDecl>(D))
5217 switch (ND->getLinkage()) {
5218 case NoLinkage: return CXLinkage_NoLinkage;
5219 case InternalLinkage: return CXLinkage_Internal;
5220 case UniqueExternalLinkage: return CXLinkage_UniqueExternal;
5221 case ExternalLinkage: return CXLinkage_External;
5222 };
5223
5224 return CXLinkage_Invalid;
5225}
5226} // end: extern "C"
5227
5228//===----------------------------------------------------------------------===//
Ted Kremenek45e1dae2010-04-12 21:22:16 +00005229// Operations for querying language of a cursor.
5230//===----------------------------------------------------------------------===//
5231
5232static CXLanguageKind getDeclLanguage(const Decl *D) {
Argyrios Kyrtzidis16ed0e62011-12-10 02:36:25 +00005233 if (!D)
5234 return CXLanguage_C;
5235
Ted Kremenek45e1dae2010-04-12 21:22:16 +00005236 switch (D->getKind()) {
5237 default:
5238 break;
5239 case Decl::ImplicitParam:
5240 case Decl::ObjCAtDefsField:
5241 case Decl::ObjCCategory:
5242 case Decl::ObjCCategoryImpl:
Ted Kremenek45e1dae2010-04-12 21:22:16 +00005243 case Decl::ObjCCompatibleAlias:
Ted Kremenek45e1dae2010-04-12 21:22:16 +00005244 case Decl::ObjCImplementation:
5245 case Decl::ObjCInterface:
5246 case Decl::ObjCIvar:
5247 case Decl::ObjCMethod:
5248 case Decl::ObjCProperty:
5249 case Decl::ObjCPropertyImpl:
5250 case Decl::ObjCProtocol:
5251 return CXLanguage_ObjC;
5252 case Decl::CXXConstructor:
5253 case Decl::CXXConversion:
5254 case Decl::CXXDestructor:
5255 case Decl::CXXMethod:
5256 case Decl::CXXRecord:
5257 case Decl::ClassTemplate:
5258 case Decl::ClassTemplatePartialSpecialization:
5259 case Decl::ClassTemplateSpecialization:
5260 case Decl::Friend:
5261 case Decl::FriendTemplate:
5262 case Decl::FunctionTemplate:
5263 case Decl::LinkageSpec:
5264 case Decl::Namespace:
5265 case Decl::NamespaceAlias:
5266 case Decl::NonTypeTemplateParm:
5267 case Decl::StaticAssert:
Ted Kremenek45e1dae2010-04-12 21:22:16 +00005268 case Decl::TemplateTemplateParm:
5269 case Decl::TemplateTypeParm:
5270 case Decl::UnresolvedUsingTypename:
5271 case Decl::UnresolvedUsingValue:
5272 case Decl::Using:
5273 case Decl::UsingDirective:
5274 case Decl::UsingShadow:
5275 return CXLanguage_CPlusPlus;
5276 }
5277
5278 return CXLanguage_C;
5279}
5280
5281extern "C" {
Douglas Gregor58ddb602010-08-23 23:00:57 +00005282
5283enum CXAvailabilityKind clang_getCursorAvailability(CXCursor cursor) {
5284 if (clang_isDeclaration(cursor.kind))
5285 if (Decl *D = cxcursor::getCursorDecl(cursor)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005286 if (isa<FunctionDecl>(D) && cast<FunctionDecl>(D)->isDeleted())
Douglas Gregor58ddb602010-08-23 23:00:57 +00005287 return CXAvailability_Available;
5288
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005289 switch (D->getAvailability()) {
5290 case AR_Available:
5291 case AR_NotYetIntroduced:
5292 return CXAvailability_Available;
5293
5294 case AR_Deprecated:
Douglas Gregor58ddb602010-08-23 23:00:57 +00005295 return CXAvailability_Deprecated;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005296
5297 case AR_Unavailable:
5298 return CXAvailability_NotAvailable;
5299 }
Douglas Gregor58ddb602010-08-23 23:00:57 +00005300 }
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005301
Douglas Gregor58ddb602010-08-23 23:00:57 +00005302 return CXAvailability_Available;
5303}
5304
Ted Kremenek45e1dae2010-04-12 21:22:16 +00005305CXLanguageKind clang_getCursorLanguage(CXCursor cursor) {
5306 if (clang_isDeclaration(cursor.kind))
5307 return getDeclLanguage(cxcursor::getCursorDecl(cursor));
5308
5309 return CXLanguage_Invalid;
5310}
Douglas Gregor3910cfd2010-12-21 07:55:45 +00005311
5312 /// \brief If the given cursor is the "templated" declaration
5313 /// descibing a class or function template, return the class or
5314 /// function template.
5315static Decl *maybeGetTemplateCursor(Decl *D) {
5316 if (!D)
5317 return 0;
5318
5319 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
5320 if (FunctionTemplateDecl *FunTmpl = FD->getDescribedFunctionTemplate())
5321 return FunTmpl;
5322
5323 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D))
5324 if (ClassTemplateDecl *ClassTmpl = RD->getDescribedClassTemplate())
5325 return ClassTmpl;
5326
5327 return D;
5328}
5329
Douglas Gregor2be5bc92010-09-22 21:22:29 +00005330CXCursor clang_getCursorSemanticParent(CXCursor cursor) {
5331 if (clang_isDeclaration(cursor.kind)) {
5332 if (Decl *D = getCursorDecl(cursor)) {
5333 DeclContext *DC = D->getDeclContext();
Douglas Gregor3910cfd2010-12-21 07:55:45 +00005334 if (!DC)
5335 return clang_getNullCursor();
5336
5337 return MakeCXCursor(maybeGetTemplateCursor(cast<Decl>(DC)),
5338 getCursorTU(cursor));
Douglas Gregor2be5bc92010-09-22 21:22:29 +00005339 }
5340 }
5341
5342 if (clang_isStatement(cursor.kind) || clang_isExpression(cursor.kind)) {
5343 if (Decl *D = getCursorDecl(cursor))
Ted Kremeneka60ed472010-11-16 08:15:36 +00005344 return MakeCXCursor(D, getCursorTU(cursor));
Douglas Gregor2be5bc92010-09-22 21:22:29 +00005345 }
5346
5347 return clang_getNullCursor();
5348}
5349
5350CXCursor clang_getCursorLexicalParent(CXCursor cursor) {
5351 if (clang_isDeclaration(cursor.kind)) {
5352 if (Decl *D = getCursorDecl(cursor)) {
5353 DeclContext *DC = D->getLexicalDeclContext();
Douglas Gregor3910cfd2010-12-21 07:55:45 +00005354 if (!DC)
5355 return clang_getNullCursor();
5356
5357 return MakeCXCursor(maybeGetTemplateCursor(cast<Decl>(DC)),
5358 getCursorTU(cursor));
Douglas Gregor2be5bc92010-09-22 21:22:29 +00005359 }
5360 }
5361
5362 // FIXME: Note that we can't easily compute the lexical context of a
5363 // statement or expression, so we return nothing.
5364 return clang_getNullCursor();
5365}
5366
Douglas Gregor9f592342010-10-01 20:25:15 +00005367void clang_getOverriddenCursors(CXCursor cursor,
5368 CXCursor **overridden,
5369 unsigned *num_overridden) {
5370 if (overridden)
5371 *overridden = 0;
5372 if (num_overridden)
5373 *num_overridden = 0;
5374 if (!overridden || !num_overridden)
5375 return;
5376
Argyrios Kyrtzidisb11be042011-10-06 07:00:46 +00005377 SmallVector<CXCursor, 8> Overridden;
5378 cxcursor::getOverriddenCursors(cursor, Overridden);
Douglas Gregor9f592342010-10-01 20:25:15 +00005379
Ted Kremenek24077122011-11-14 23:51:37 +00005380 // Don't allocate memory if we have no overriden cursors.
5381 if (Overridden.size() == 0)
5382 return;
5383
Argyrios Kyrtzidisb11be042011-10-06 07:00:46 +00005384 *num_overridden = Overridden.size();
5385 *overridden = new CXCursor [Overridden.size()];
5386 std::copy(Overridden.begin(), Overridden.end(), *overridden);
Douglas Gregor9f592342010-10-01 20:25:15 +00005387}
5388
5389void clang_disposeOverriddenCursors(CXCursor *overridden) {
5390 delete [] overridden;
5391}
5392
Douglas Gregorecdcb882010-10-20 22:00:55 +00005393CXFile clang_getIncludedFile(CXCursor cursor) {
5394 if (cursor.kind != CXCursor_InclusionDirective)
5395 return 0;
5396
5397 InclusionDirective *ID = getCursorInclusionDirective(cursor);
5398 return (void *)ID->getFile();
5399}
5400
Ted Kremenek45e1dae2010-04-12 21:22:16 +00005401} // end: extern "C"
5402
Ted Kremenek9ada39a2010-05-17 20:06:56 +00005403
5404//===----------------------------------------------------------------------===//
5405// C++ AST instrospection.
5406//===----------------------------------------------------------------------===//
5407
5408extern "C" {
5409unsigned clang_CXXMethod_isStatic(CXCursor C) {
5410 if (!clang_isDeclaration(C.kind))
5411 return 0;
Douglas Gregor49f6f542010-08-31 22:12:17 +00005412
5413 CXXMethodDecl *Method = 0;
5414 Decl *D = cxcursor::getCursorDecl(C);
5415 if (FunctionTemplateDecl *FunTmpl = dyn_cast_or_null<FunctionTemplateDecl>(D))
5416 Method = dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl());
5417 else
5418 Method = dyn_cast_or_null<CXXMethodDecl>(D);
5419 return (Method && Method->isStatic()) ? 1 : 0;
Ted Kremenek40b492a2010-05-17 20:12:45 +00005420}
Ted Kremenekb12903e2010-05-18 22:32:15 +00005421
Douglas Gregor211924b2011-05-12 15:17:24 +00005422unsigned clang_CXXMethod_isVirtual(CXCursor C) {
5423 if (!clang_isDeclaration(C.kind))
5424 return 0;
5425
5426 CXXMethodDecl *Method = 0;
5427 Decl *D = cxcursor::getCursorDecl(C);
5428 if (FunctionTemplateDecl *FunTmpl = dyn_cast_or_null<FunctionTemplateDecl>(D))
5429 Method = dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl());
5430 else
5431 Method = dyn_cast_or_null<CXXMethodDecl>(D);
5432 return (Method && Method->isVirtual()) ? 1 : 0;
5433}
Ted Kremenek9ada39a2010-05-17 20:06:56 +00005434} // end: extern "C"
5435
Ted Kremenek45e1dae2010-04-12 21:22:16 +00005436//===----------------------------------------------------------------------===//
Ted Kremenek95f33552010-08-26 01:42:22 +00005437// Attribute introspection.
5438//===----------------------------------------------------------------------===//
5439
5440extern "C" {
5441CXType clang_getIBOutletCollectionType(CXCursor C) {
5442 if (C.kind != CXCursor_IBOutletCollectionAttr)
Ted Kremeneka60ed472010-11-16 08:15:36 +00005443 return cxtype::MakeCXType(QualType(), cxcursor::getCursorTU(C));
Ted Kremenek95f33552010-08-26 01:42:22 +00005444
5445 IBOutletCollectionAttr *A =
5446 cast<IBOutletCollectionAttr>(cxcursor::getCursorAttr(C));
5447
Argyrios Kyrtzidis18aa2ff2011-09-13 18:49:52 +00005448 return cxtype::MakeCXType(A->getInterface(), cxcursor::getCursorTU(C));
Ted Kremenek95f33552010-08-26 01:42:22 +00005449}
5450} // end: extern "C"
5451
5452//===----------------------------------------------------------------------===//
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005453// Inspecting memory usage.
5454//===----------------------------------------------------------------------===//
5455
Ted Kremenekf7870022011-04-20 16:41:07 +00005456typedef std::vector<CXTUResourceUsageEntry> MemUsageEntries;
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005457
Ted Kremenekf7870022011-04-20 16:41:07 +00005458static inline void createCXTUResourceUsageEntry(MemUsageEntries &entries,
5459 enum CXTUResourceUsageKind k,
Ted Kremenekba29bd22011-04-28 04:53:38 +00005460 unsigned long amount) {
Ted Kremenekf7870022011-04-20 16:41:07 +00005461 CXTUResourceUsageEntry entry = { k, amount };
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005462 entries.push_back(entry);
5463}
5464
5465extern "C" {
5466
Ted Kremenekf7870022011-04-20 16:41:07 +00005467const char *clang_getTUResourceUsageName(CXTUResourceUsageKind kind) {
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005468 const char *str = "";
5469 switch (kind) {
Ted Kremenekf7870022011-04-20 16:41:07 +00005470 case CXTUResourceUsage_AST:
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005471 str = "ASTContext: expressions, declarations, and types";
5472 break;
Ted Kremenekf7870022011-04-20 16:41:07 +00005473 case CXTUResourceUsage_Identifiers:
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005474 str = "ASTContext: identifiers";
5475 break;
Ted Kremenekf7870022011-04-20 16:41:07 +00005476 case CXTUResourceUsage_Selectors:
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005477 str = "ASTContext: selectors";
Ted Kremeneke294ab72011-04-19 04:36:17 +00005478 break;
Ted Kremenekf7870022011-04-20 16:41:07 +00005479 case CXTUResourceUsage_GlobalCompletionResults:
Ted Kremenek4e6a3f72011-04-18 23:42:53 +00005480 str = "Code completion: cached global results";
Ted Kremeneke294ab72011-04-19 04:36:17 +00005481 break;
Ted Kremenek457aaf02011-04-28 04:10:31 +00005482 case CXTUResourceUsage_SourceManagerContentCache:
5483 str = "SourceManager: content cache allocator";
5484 break;
Ted Kremenekba29bd22011-04-28 04:53:38 +00005485 case CXTUResourceUsage_AST_SideTables:
5486 str = "ASTContext: side tables";
5487 break;
Ted Kremenekf61b8312011-04-28 20:36:42 +00005488 case CXTUResourceUsage_SourceManager_Membuffer_Malloc:
5489 str = "SourceManager: malloc'ed memory buffers";
5490 break;
5491 case CXTUResourceUsage_SourceManager_Membuffer_MMap:
5492 str = "SourceManager: mmap'ed memory buffers";
5493 break;
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005494 case CXTUResourceUsage_ExternalASTSource_Membuffer_Malloc:
5495 str = "ExternalASTSource: malloc'ed memory buffers";
5496 break;
5497 case CXTUResourceUsage_ExternalASTSource_Membuffer_MMap:
5498 str = "ExternalASTSource: mmap'ed memory buffers";
5499 break;
Ted Kremenek5e1db6a2011-05-04 01:38:46 +00005500 case CXTUResourceUsage_Preprocessor:
5501 str = "Preprocessor: malloc'ed memory";
5502 break;
5503 case CXTUResourceUsage_PreprocessingRecord:
5504 str = "Preprocessor: PreprocessingRecord";
5505 break;
Ted Kremenekca7dc2b2011-07-26 23:46:06 +00005506 case CXTUResourceUsage_SourceManager_DataStructures:
5507 str = "SourceManager: data structures and tables";
5508 break;
Ted Kremenekd1194fb2011-07-26 23:46:11 +00005509 case CXTUResourceUsage_Preprocessor_HeaderSearch:
5510 str = "Preprocessor: header search tables";
5511 break;
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005512 }
5513 return str;
5514}
5515
Ted Kremenekf7870022011-04-20 16:41:07 +00005516CXTUResourceUsage clang_getCXTUResourceUsage(CXTranslationUnit TU) {
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005517 if (!TU) {
Ted Kremenekf7870022011-04-20 16:41:07 +00005518 CXTUResourceUsage usage = { (void*) 0, 0, 0 };
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005519 return usage;
5520 }
5521
5522 ASTUnit *astUnit = static_cast<ASTUnit*>(TU->TUData);
Dylan Noblesmith1e4c01b2012-02-13 12:32:21 +00005523 OwningPtr<MemUsageEntries> entries(new MemUsageEntries());
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005524 ASTContext &astContext = astUnit->getASTContext();
5525
5526 // How much memory is used by AST nodes and types?
Ted Kremenekf7870022011-04-20 16:41:07 +00005527 createCXTUResourceUsageEntry(*entries, CXTUResourceUsage_AST,
Ted Kremenekba29bd22011-04-28 04:53:38 +00005528 (unsigned long) astContext.getASTAllocatedMemory());
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005529
5530 // How much memory is used by identifiers?
Ted Kremenekf7870022011-04-20 16:41:07 +00005531 createCXTUResourceUsageEntry(*entries, CXTUResourceUsage_Identifiers,
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005532 (unsigned long) astContext.Idents.getAllocator().getTotalMemory());
5533
5534 // How much memory is used for selectors?
Ted Kremenekf7870022011-04-20 16:41:07 +00005535 createCXTUResourceUsageEntry(*entries, CXTUResourceUsage_Selectors,
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005536 (unsigned long) astContext.Selectors.getTotalMemory());
5537
Ted Kremenekba29bd22011-04-28 04:53:38 +00005538 // How much memory is used by ASTContext's side tables?
5539 createCXTUResourceUsageEntry(*entries, CXTUResourceUsage_AST_SideTables,
5540 (unsigned long) astContext.getSideTableAllocatedMemory());
5541
Ted Kremenek4e6a3f72011-04-18 23:42:53 +00005542 // How much memory is used for caching global code completion results?
5543 unsigned long completionBytes = 0;
5544 if (GlobalCodeCompletionAllocator *completionAllocator =
5545 astUnit->getCachedCompletionAllocator().getPtr()) {
Ted Kremenek5e1db6a2011-05-04 01:38:46 +00005546 completionBytes = completionAllocator->getTotalMemory();
Ted Kremenek4e6a3f72011-04-18 23:42:53 +00005547 }
Ted Kremenek457aaf02011-04-28 04:10:31 +00005548 createCXTUResourceUsageEntry(*entries,
5549 CXTUResourceUsage_GlobalCompletionResults,
5550 completionBytes);
5551
5552 // How much memory is being used by SourceManager's content cache?
5553 createCXTUResourceUsageEntry(*entries,
5554 CXTUResourceUsage_SourceManagerContentCache,
5555 (unsigned long) astContext.getSourceManager().getContentCacheSize());
Ted Kremenekf61b8312011-04-28 20:36:42 +00005556
5557 // How much memory is being used by the MemoryBuffer's in SourceManager?
5558 const SourceManager::MemoryBufferSizes &srcBufs =
5559 astUnit->getSourceManager().getMemoryBufferSizes();
5560
5561 createCXTUResourceUsageEntry(*entries,
5562 CXTUResourceUsage_SourceManager_Membuffer_Malloc,
5563 (unsigned long) srcBufs.malloc_bytes);
Ted Kremenekca7dc2b2011-07-26 23:46:06 +00005564 createCXTUResourceUsageEntry(*entries,
Ted Kremenekf61b8312011-04-28 20:36:42 +00005565 CXTUResourceUsage_SourceManager_Membuffer_MMap,
5566 (unsigned long) srcBufs.mmap_bytes);
Ted Kremenekca7dc2b2011-07-26 23:46:06 +00005567 createCXTUResourceUsageEntry(*entries,
5568 CXTUResourceUsage_SourceManager_DataStructures,
5569 (unsigned long) astContext.getSourceManager()
5570 .getDataStructureSizes());
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005571
5572 // How much memory is being used by the ExternalASTSource?
5573 if (ExternalASTSource *esrc = astContext.getExternalSource()) {
5574 const ExternalASTSource::MemoryBufferSizes &sizes =
5575 esrc->getMemoryBufferSizes();
5576
5577 createCXTUResourceUsageEntry(*entries,
5578 CXTUResourceUsage_ExternalASTSource_Membuffer_Malloc,
5579 (unsigned long) sizes.malloc_bytes);
5580 createCXTUResourceUsageEntry(*entries,
5581 CXTUResourceUsage_ExternalASTSource_Membuffer_MMap,
5582 (unsigned long) sizes.mmap_bytes);
5583 }
Ted Kremenek5e1db6a2011-05-04 01:38:46 +00005584
5585 // How much memory is being used by the Preprocessor?
5586 Preprocessor &pp = astUnit->getPreprocessor();
Ted Kremenek5e1db6a2011-05-04 01:38:46 +00005587 createCXTUResourceUsageEntry(*entries,
5588 CXTUResourceUsage_Preprocessor,
Argyrios Kyrtzidisc5c5e922011-06-29 22:20:04 +00005589 pp.getTotalMemory());
Ted Kremenek5e1db6a2011-05-04 01:38:46 +00005590
5591 if (PreprocessingRecord *pRec = pp.getPreprocessingRecord()) {
5592 createCXTUResourceUsageEntry(*entries,
5593 CXTUResourceUsage_PreprocessingRecord,
5594 pRec->getTotalMemory());
5595 }
5596
Ted Kremenekd1194fb2011-07-26 23:46:11 +00005597 createCXTUResourceUsageEntry(*entries,
5598 CXTUResourceUsage_Preprocessor_HeaderSearch,
5599 pp.getHeaderSearchInfo().getTotalMemory());
Ted Kremenek5e1db6a2011-05-04 01:38:46 +00005600
Ted Kremenekf7870022011-04-20 16:41:07 +00005601 CXTUResourceUsage usage = { (void*) entries.get(),
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005602 (unsigned) entries->size(),
5603 entries->size() ? &(*entries)[0] : 0 };
5604 entries.take();
5605 return usage;
5606}
5607
Ted Kremenekf7870022011-04-20 16:41:07 +00005608void clang_disposeCXTUResourceUsage(CXTUResourceUsage usage) {
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005609 if (usage.data)
5610 delete (MemUsageEntries*) usage.data;
5611}
5612
5613} // end extern "C"
5614
Douglas Gregor6df78732011-05-05 20:27:22 +00005615void clang::PrintLibclangResourceUsage(CXTranslationUnit TU) {
5616 CXTUResourceUsage Usage = clang_getCXTUResourceUsage(TU);
5617 for (unsigned I = 0; I != Usage.numEntries; ++I)
5618 fprintf(stderr, " %s: %lu\n",
5619 clang_getTUResourceUsageName(Usage.entries[I].kind),
5620 Usage.entries[I].amount);
5621
5622 clang_disposeCXTUResourceUsage(Usage);
5623}
5624
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005625//===----------------------------------------------------------------------===//
Ted Kremenek04bb7162010-01-22 22:44:15 +00005626// Misc. utility functions.
5627//===----------------------------------------------------------------------===//
Ted Kremenekf0e23e82010-02-17 00:41:40 +00005628
Daniel Dunbarabdce7a2010-11-05 17:21:46 +00005629/// Default to using an 8 MB stack size on "safety" threads.
5630static unsigned SafetyStackThreadSize = 8 << 20;
Daniel Dunbarbf44c3b2010-11-05 07:19:31 +00005631
5632namespace clang {
5633
5634bool RunSafely(llvm::CrashRecoveryContext &CRC,
Ted Kremenek6c53fdd2010-11-14 17:47:35 +00005635 void (*Fn)(void*), void *UserData,
5636 unsigned Size) {
5637 if (!Size)
5638 Size = GetSafetyThreadStackSize();
5639 if (Size)
Daniel Dunbarbf44c3b2010-11-05 07:19:31 +00005640 return CRC.RunSafelyOnThread(Fn, UserData, Size);
5641 return CRC.RunSafely(Fn, UserData);
5642}
5643
5644unsigned GetSafetyThreadStackSize() {
5645 return SafetyStackThreadSize;
5646}
5647
5648void SetSafetyThreadStackSize(unsigned Value) {
5649 SafetyStackThreadSize = Value;
5650}
5651
5652}
5653
Ted Kremenek04bb7162010-01-22 22:44:15 +00005654extern "C" {
5655
Ted Kremeneka2a9d6e2010-02-12 22:54:40 +00005656CXString clang_getClangVersion() {
Ted Kremenekee4db4f2010-02-17 00:41:08 +00005657 return createCXString(getClangFullVersion());
Ted Kremenek04bb7162010-01-22 22:44:15 +00005658}
5659
5660} // end: extern "C"
Ted Kremenek59fc1e52011-04-18 22:47:10 +00005661