blob: 7e3c3432d5660e191117e4941e408ca110d30c63 [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"
Ted Kremenekab188932010-01-05 19:32:54 +000022
Ted Kremenek04bb7162010-01-22 22:44:15 +000023#include "clang/Basic/Version.h"
Douglas Gregor936ea3b2010-01-28 00:56:43 +000024
Steve Naroff50398192009-08-28 15:28:48 +000025#include "clang/AST/DeclVisitor.h"
Steve Narofffb570422009-09-22 19:25:29 +000026#include "clang/AST/StmtVisitor.h"
Douglas Gregor7d0d40e2010-01-21 16:28:34 +000027#include "clang/AST/TypeLocVisitor.h"
Benjamin Kramerb846deb2010-04-12 19:45:50 +000028#include "clang/Basic/Diagnostic.h"
29#include "clang/Frontend/ASTUnit.h"
30#include "clang/Frontend/CompilerInstance.h"
Douglas Gregor936ea3b2010-01-28 00:56:43 +000031#include "clang/Frontend/FrontendDiagnostic.h"
Ted Kremenekd8210652010-01-06 23:43:31 +000032#include "clang/Lex/Lexer.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"
37#include "clang/Analysis/Support/SaveAndRestore.h"
Daniel Dunbarc7df4f32010-08-18 18:43:14 +000038#include "llvm/Support/CrashRecoveryContext.h"
Daniel Dunbar48615ff2010-10-08 19:30:33 +000039#include "llvm/Support/PrettyStackTrace.h"
Douglas Gregor02465752009-10-16 21:24:31 +000040#include "llvm/Support/MemoryBuffer.h"
Douglas Gregor358559d2010-10-02 22:49:11 +000041#include "llvm/Support/raw_ostream.h"
Douglas Gregor7a07fcb2010-08-09 21:00:09 +000042#include "llvm/Support/Timer.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000043#include "llvm/Support/Mutex.h"
44#include "llvm/Support/Program.h"
45#include "llvm/Support/Signals.h"
46#include "llvm/Support/Threading.h"
Ted Kremenek37f1ea02010-11-15 23:11:54 +000047#include "llvm/Support/Compiler.h"
Ted Kremenekfc062212009-10-19 21:44:57 +000048
Steve Naroff50398192009-08-28 15:28:48 +000049using namespace clang;
Ted Kremenek16c440a2010-01-15 20:35:54 +000050using namespace clang::cxcursor;
Ted Kremenekee4db4f2010-02-17 00:41:08 +000051using namespace clang::cxstring;
Steve Naroff50398192009-08-28 15:28:48 +000052
Ted Kremeneka60ed472010-11-16 08:15:36 +000053static CXTranslationUnit MakeCXTranslationUnit(ASTUnit *TU) {
54 if (!TU)
55 return 0;
56 CXTranslationUnit D = new CXTranslationUnitImpl();
57 D->TUData = TU;
58 D->StringPool = createCXStringPool();
59 return D;
60}
61
Douglas Gregor33e9abd2010-01-22 19:49:59 +000062/// \brief The result of comparing two source ranges.
63enum RangeComparisonResult {
64 /// \brief Either the ranges overlap or one of the ranges is invalid.
65 RangeOverlap,
Ted Kremenekf0e23e82010-02-17 00:41:40 +000066
Douglas Gregor33e9abd2010-01-22 19:49:59 +000067 /// \brief The first range ends before the second range starts.
68 RangeBefore,
Ted Kremenekf0e23e82010-02-17 00:41:40 +000069
Douglas Gregor33e9abd2010-01-22 19:49:59 +000070 /// \brief The first range starts after the second range ends.
71 RangeAfter
72};
73
Ted Kremenekf0e23e82010-02-17 00:41:40 +000074/// \brief Compare two source ranges to determine their relative position in
Douglas Gregor33e9abd2010-01-22 19:49:59 +000075/// the translation unit.
Ted Kremenekf0e23e82010-02-17 00:41:40 +000076static RangeComparisonResult RangeCompare(SourceManager &SM,
77 SourceRange R1,
Douglas Gregor33e9abd2010-01-22 19:49:59 +000078 SourceRange R2) {
79 assert(R1.isValid() && "First range is invalid?");
80 assert(R2.isValid() && "Second range is invalid?");
Douglas Gregora8e5c5b2010-07-22 20:22:31 +000081 if (R1.getEnd() != R2.getBegin() &&
Daniel Dunbard52864b2010-02-14 10:02:57 +000082 SM.isBeforeInTranslationUnit(R1.getEnd(), R2.getBegin()))
Douglas Gregor33e9abd2010-01-22 19:49:59 +000083 return RangeBefore;
Douglas Gregora8e5c5b2010-07-22 20:22:31 +000084 if (R2.getEnd() != R1.getBegin() &&
Daniel Dunbard52864b2010-02-14 10:02:57 +000085 SM.isBeforeInTranslationUnit(R2.getEnd(), R1.getBegin()))
Douglas Gregor33e9abd2010-01-22 19:49:59 +000086 return RangeAfter;
87 return RangeOverlap;
88}
89
Ted Kremenekfbd84ca2010-05-05 00:55:23 +000090/// \brief Determine if a source location falls within, before, or after a
91/// a given source range.
92static RangeComparisonResult LocationCompare(SourceManager &SM,
93 SourceLocation L, SourceRange R) {
94 assert(R.isValid() && "First range is invalid?");
95 assert(L.isValid() && "Second range is invalid?");
Douglas Gregora8e5c5b2010-07-22 20:22:31 +000096 if (L == R.getBegin() || L == R.getEnd())
Ted Kremenekfbd84ca2010-05-05 00:55:23 +000097 return RangeOverlap;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +000098 if (SM.isBeforeInTranslationUnit(L, R.getBegin()))
99 return RangeBefore;
100 if (SM.isBeforeInTranslationUnit(R.getEnd(), L))
101 return RangeAfter;
102 return RangeOverlap;
103}
104
Daniel Dunbar76dd3c22010-02-14 01:47:29 +0000105/// \brief Translate a Clang source range into a CIndex source range.
106///
107/// Clang internally represents ranges where the end location points to the
108/// start of the token at the end. However, for external clients it is more
109/// useful to have a CXSourceRange be a proper half-open interval. This routine
110/// does the appropriate translation.
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000111CXSourceRange cxloc::translateSourceRange(const SourceManager &SM,
Daniel Dunbar76dd3c22010-02-14 01:47:29 +0000112 const LangOptions &LangOpts,
Chris Lattner0a76aae2010-06-18 22:45:06 +0000113 const CharSourceRange &R) {
Daniel Dunbar76dd3c22010-02-14 01:47:29 +0000114 // We want the last character in this location, so we will adjust the
Douglas Gregor6a5a23f2010-03-19 21:51:54 +0000115 // location accordingly.
Daniel Dunbar76dd3c22010-02-14 01:47:29 +0000116 SourceLocation EndLoc = R.getEnd();
Douglas Gregora9b06d42010-11-09 06:24:54 +0000117 if (EndLoc.isValid() && EndLoc.isMacroID())
118 EndLoc = SM.getSpellingLoc(EndLoc);
Chris Lattner0a76aae2010-06-18 22:45:06 +0000119 if (R.isTokenRange() && !EndLoc.isInvalid() && EndLoc.isFileID()) {
Douglas Gregor6a5a23f2010-03-19 21:51:54 +0000120 unsigned Length = Lexer::MeasureTokenLength(EndLoc, SM, LangOpts);
Daniel Dunbar76dd3c22010-02-14 01:47:29 +0000121 EndLoc = EndLoc.getFileLocWithOffset(Length);
122 }
123
124 CXSourceRange Result = { { (void *)&SM, (void *)&LangOpts },
125 R.getBegin().getRawEncoding(),
126 EndLoc.getRawEncoding() };
127 return Result;
128}
Douglas Gregor1db19de2010-01-19 21:36:55 +0000129
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000130//===----------------------------------------------------------------------===//
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000131// Cursor visitor.
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000132//===----------------------------------------------------------------------===//
133
Steve Naroff89922f82009-08-31 00:59:03 +0000134namespace {
Ted Kremenekc0e1d922010-11-11 08:05:18 +0000135
136class VisitorJob {
137public:
Ted Kremenekcdb4caf2010-11-12 21:34:12 +0000138 enum Kind { DeclVisitKind, StmtVisitKind, MemberExprPartsKind,
Ted Kremeneke4979cc2010-11-13 00:58:18 +0000139 TypeLocVisitKind, OverloadExprPartsKind,
Ted Kremenek60608ec2010-11-17 00:50:47 +0000140 DeclRefExprPartsKind, LabelRefVisitKind,
Ted Kremenekf64d8032010-11-18 00:02:32 +0000141 ExplicitTemplateArgsVisitKind,
142 NestedNameSpecifierVisitKind,
Ted Kremenekcdba6592010-11-18 00:42:18 +0000143 DeclarationNameInfoVisitKind,
144 MemberRefVisitKind };
Ted Kremenekc0e1d922010-11-11 08:05:18 +0000145protected:
Ted Kremenekf64d8032010-11-18 00:02:32 +0000146 void *data[3];
Ted Kremenekc0e1d922010-11-11 08:05:18 +0000147 CXCursor parent;
148 Kind K;
Ted Kremenekf64d8032010-11-18 00:02:32 +0000149 VisitorJob(CXCursor C, Kind k, void *d1, void *d2 = 0, void *d3 = 0)
150 : parent(C), K(k) {
151 data[0] = d1;
152 data[1] = d2;
153 data[2] = d3;
154 }
Ted Kremenekc0e1d922010-11-11 08:05:18 +0000155public:
156 Kind getKind() const { return K; }
157 const CXCursor &getParent() const { return parent; }
158 static bool classof(VisitorJob *VJ) { return true; }
159};
160
161typedef llvm::SmallVector<VisitorJob, 10> VisitorWorkList;
162
Douglas Gregorb1373d02010-01-20 20:59:29 +0000163// Cursor visitor.
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000164class CursorVisitor : public DeclVisitor<CursorVisitor, bool>,
Ted Kremenekcdba6592010-11-18 00:42:18 +0000165 public TypeLocVisitor<CursorVisitor, bool>
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000166{
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000167 /// \brief The translation unit we are traversing.
Ted Kremeneka60ed472010-11-16 08:15:36 +0000168 CXTranslationUnit TU;
169 ASTUnit *AU;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000170
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000171 /// \brief The parent cursor whose children we are traversing.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000172 CXCursor Parent;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000173
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000174 /// \brief The declaration that serves at the parent of any statement or
175 /// expression nodes.
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000176 Decl *StmtParent;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000177
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000178 /// \brief The visitor function.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000179 CXCursorVisitor Visitor;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000180
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000181 /// \brief The opaque client data, to be passed along to the visitor.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000182 CXClientData ClientData;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000183
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000184 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
185 // to the visitor. Declarations with a PCH level greater than this value will
186 // be suppressed.
187 unsigned MaxPCHLevel;
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000188
189 /// \brief When valid, a source range to which the cursor should restrict
190 /// its search.
191 SourceRange RegionOfInterest;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000192
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000193 // FIXME: Eventually remove. This part of a hack to support proper
194 // iteration over all Decls contained lexically within an ObjC container.
195 DeclContext::decl_iterator *DI_current;
196 DeclContext::decl_iterator DE_current;
197
Ted Kremenekd1ded662010-11-15 23:31:32 +0000198 // Cache of pre-allocated worklists for data-recursion walk of Stmts.
199 llvm::SmallVector<VisitorWorkList*, 5> WorkListFreeList;
200 llvm::SmallVector<VisitorWorkList*, 5> WorkListCache;
201
Douglas Gregorb1373d02010-01-20 20:59:29 +0000202 using DeclVisitor<CursorVisitor, bool>::Visit;
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000203 using TypeLocVisitor<CursorVisitor, bool>::Visit;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000204
205 /// \brief Determine whether this particular source range comes before, comes
206 /// after, or overlaps the region of interest.
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000207 ///
Daniel Dunbard52864b2010-02-14 10:02:57 +0000208 /// \param R a half-open source range retrieved from the abstract syntax tree.
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000209 RangeComparisonResult CompareRegionOfInterest(SourceRange R);
210
Ted Kremenek0f91f6a2010-05-13 00:25:00 +0000211 class SetParentRAII {
212 CXCursor &Parent;
213 Decl *&StmtParent;
214 CXCursor OldParent;
215
216 public:
217 SetParentRAII(CXCursor &Parent, Decl *&StmtParent, CXCursor NewParent)
218 : Parent(Parent), StmtParent(StmtParent), OldParent(Parent)
219 {
220 Parent = NewParent;
221 if (clang_isDeclaration(Parent.kind))
222 StmtParent = getCursorDecl(Parent);
223 }
224
225 ~SetParentRAII() {
226 Parent = OldParent;
227 if (clang_isDeclaration(Parent.kind))
228 StmtParent = getCursorDecl(Parent);
229 }
230 };
231
Steve Naroff89922f82009-08-31 00:59:03 +0000232public:
Ted Kremeneka60ed472010-11-16 08:15:36 +0000233 CursorVisitor(CXTranslationUnit TU, CXCursorVisitor Visitor,
234 CXClientData ClientData,
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000235 unsigned MaxPCHLevel,
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000236 SourceRange RegionOfInterest = SourceRange())
Ted Kremeneka60ed472010-11-16 08:15:36 +0000237 : TU(TU), AU(static_cast<ASTUnit*>(TU->TUData)),
238 Visitor(Visitor), ClientData(ClientData),
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000239 MaxPCHLevel(MaxPCHLevel), RegionOfInterest(RegionOfInterest),
240 DI_current(0)
Douglas Gregorb1373d02010-01-20 20:59:29 +0000241 {
242 Parent.kind = CXCursor_NoDeclFound;
243 Parent.data[0] = 0;
244 Parent.data[1] = 0;
245 Parent.data[2] = 0;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000246 StmtParent = 0;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000247 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000248
Ted Kremenekd1ded662010-11-15 23:31:32 +0000249 ~CursorVisitor() {
250 // Free the pre-allocated worklists for data-recursion.
251 for (llvm::SmallVectorImpl<VisitorWorkList*>::iterator
252 I = WorkListCache.begin(), E = WorkListCache.end(); I != E; ++I) {
253 delete *I;
254 }
255 }
256
Ted Kremeneka60ed472010-11-16 08:15:36 +0000257 ASTUnit *getASTUnit() const { return static_cast<ASTUnit*>(TU->TUData); }
258 CXTranslationUnit getTU() const { return TU; }
Ted Kremenekab979612010-11-11 08:05:23 +0000259
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000260 bool Visit(CXCursor Cursor, bool CheckedRegionOfInterest = false);
Douglas Gregor788f5a12010-03-20 00:41:21 +0000261
262 std::pair<PreprocessingRecord::iterator, PreprocessingRecord::iterator>
263 getPreprocessedEntities();
264
Douglas Gregorb1373d02010-01-20 20:59:29 +0000265 bool VisitChildren(CXCursor Parent);
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000266
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000267 // Declaration visitors
Ted Kremenek09dfa372010-02-18 05:46:33 +0000268 bool VisitAttributes(Decl *D);
Ted Kremenek1ee6cad2010-04-11 21:47:37 +0000269 bool VisitBlockDecl(BlockDecl *B);
Ted Kremenek3064ef92010-08-27 21:34:58 +0000270 bool VisitCXXRecordDecl(CXXRecordDecl *D);
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000271 llvm::Optional<bool> shouldVisitCursor(CXCursor C);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000272 bool VisitDeclContext(DeclContext *DC);
Ted Kremenek4540c9c2010-02-18 18:47:08 +0000273 bool VisitTranslationUnitDecl(TranslationUnitDecl *D);
274 bool VisitTypedefDecl(TypedefDecl *D);
Ted Kremenek79758f62010-02-18 22:36:18 +0000275 bool VisitTagDecl(TagDecl *D);
Douglas Gregor0ab1e9f2010-09-01 17:32:36 +0000276 bool VisitClassTemplateSpecializationDecl(ClassTemplateSpecializationDecl *D);
Douglas Gregor74dbe642010-08-31 19:31:58 +0000277 bool VisitClassTemplatePartialSpecializationDecl(
278 ClassTemplatePartialSpecializationDecl *D);
Douglas Gregorfe72e9c2010-08-31 17:01:39 +0000279 bool VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
Ted Kremenek79758f62010-02-18 22:36:18 +0000280 bool VisitEnumConstantDecl(EnumConstantDecl *D);
281 bool VisitDeclaratorDecl(DeclaratorDecl *DD);
282 bool VisitFunctionDecl(FunctionDecl *ND);
283 bool VisitFieldDecl(FieldDecl *D);
Ted Kremenek4540c9c2010-02-18 18:47:08 +0000284 bool VisitVarDecl(VarDecl *);
Douglas Gregor84b51d72010-09-01 20:16:53 +0000285 bool VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
Douglas Gregorfe72e9c2010-08-31 17:01:39 +0000286 bool VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
Douglas Gregor39d6f072010-08-31 19:02:00 +0000287 bool VisitClassTemplateDecl(ClassTemplateDecl *D);
Douglas Gregor84b51d72010-09-01 20:16:53 +0000288 bool VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
Ted Kremenek79758f62010-02-18 22:36:18 +0000289 bool VisitObjCMethodDecl(ObjCMethodDecl *ND);
290 bool VisitObjCContainerDecl(ObjCContainerDecl *D);
291 bool VisitObjCCategoryDecl(ObjCCategoryDecl *ND);
292 bool VisitObjCProtocolDecl(ObjCProtocolDecl *PID);
Ted Kremenek23173d72010-05-18 21:09:07 +0000293 bool VisitObjCPropertyDecl(ObjCPropertyDecl *PD);
Ted Kremenek79758f62010-02-18 22:36:18 +0000294 bool VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
295 bool VisitObjCImplDecl(ObjCImplDecl *D);
296 bool VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
297 bool VisitObjCImplementationDecl(ObjCImplementationDecl *D);
Ted Kremenek79758f62010-02-18 22:36:18 +0000298 // FIXME: ObjCCompatibleAliasDecl requires aliased-class locations.
299 bool VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D);
300 bool VisitObjCClassDecl(ObjCClassDecl *D);
Douglas Gregora4ffd852010-11-17 01:03:52 +0000301 bool VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PD);
Ted Kremeneka0536d82010-05-07 01:04:29 +0000302 bool VisitLinkageSpecDecl(LinkageSpecDecl *D);
Ted Kremenek8f06e0e2010-05-06 23:38:21 +0000303 bool VisitNamespaceDecl(NamespaceDecl *D);
Douglas Gregor69319002010-08-31 23:48:11 +0000304 bool VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
Douglas Gregor0a35bce2010-09-01 03:07:18 +0000305 bool VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
Douglas Gregor7e242562010-09-01 19:52:22 +0000306 bool VisitUsingDecl(UsingDecl *D);
307 bool VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
308 bool VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
Douglas Gregor0a35bce2010-09-01 03:07:18 +0000309
Douglas Gregor01829d32010-08-31 14:41:23 +0000310 // Name visitor
311 bool VisitDeclarationNameInfo(DeclarationNameInfo Name);
Douglas Gregorc5ade2e2010-09-02 17:35:32 +0000312 bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS, SourceRange Range);
Douglas Gregor01829d32010-08-31 14:41:23 +0000313
Douglas Gregorfe72e9c2010-08-31 17:01:39 +0000314 // Template visitors
315 bool VisitTemplateParameters(const TemplateParameterList *Params);
Douglas Gregor0b36e612010-08-31 20:37:03 +0000316 bool VisitTemplateName(TemplateName Name, SourceLocation Loc);
Douglas Gregorfe72e9c2010-08-31 17:01:39 +0000317 bool VisitTemplateArgumentLoc(const TemplateArgumentLoc &TAL);
318
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000319 // Type visitors
Douglas Gregor01829d32010-08-31 14:41:23 +0000320 bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL);
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000321 bool VisitBuiltinTypeLoc(BuiltinTypeLoc TL);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000322 bool VisitTypedefTypeLoc(TypedefTypeLoc TL);
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000323 bool VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL);
324 bool VisitTagTypeLoc(TagTypeLoc TL);
Douglas Gregorfe72e9c2010-08-31 17:01:39 +0000325 bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL);
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000326 bool VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL);
John McCallc12c5bb2010-05-15 11:32:37 +0000327 bool VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL);
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000328 bool VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL);
Abramo Bagnara075f8f12010-12-10 16:29:40 +0000329 bool VisitParenTypeLoc(ParenTypeLoc TL);
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000330 bool VisitPointerTypeLoc(PointerTypeLoc TL);
331 bool VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL);
332 bool VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL);
333 bool VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL);
334 bool VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL);
Douglas Gregor01829d32010-08-31 14:41:23 +0000335 bool VisitFunctionTypeLoc(FunctionTypeLoc TL, bool SkipResultType = false);
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000336 bool VisitArrayTypeLoc(ArrayTypeLoc TL);
Douglas Gregorfe72e9c2010-08-31 17:01:39 +0000337 bool VisitTemplateSpecializationTypeLoc(TemplateSpecializationTypeLoc TL);
Douglas Gregor2332c112010-01-21 20:48:56 +0000338 // FIXME: Implement visitors here when the unimplemented TypeLocs get
339 // implemented
340 bool VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL);
Douglas Gregor7536dd52010-12-20 02:24:11 +0000341 bool VisitPackExpansionTypeLoc(PackExpansionTypeLoc TL);
Douglas Gregor2332c112010-01-21 20:48:56 +0000342 bool VisitTypeOfTypeLoc(TypeOfTypeLoc TL);
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000343
Ted Kremenekc0e1d922010-11-11 08:05:18 +0000344 // Data-recursive visitor functions.
345 bool IsInRegionOfInterest(CXCursor C);
346 bool RunVisitorWorkList(VisitorWorkList &WL);
347 void EnqueueWorkList(VisitorWorkList &WL, Stmt *S);
Ted Kremenekcdba6592010-11-18 00:42:18 +0000348 LLVM_ATTRIBUTE_NOINLINE bool Visit(Stmt *S);
Steve Naroff89922f82009-08-31 00:59:03 +0000349};
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000350
Ted Kremenekab188932010-01-05 19:32:54 +0000351} // end anonymous namespace
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000352
Douglas Gregora8e5c5b2010-07-22 20:22:31 +0000353static SourceRange getRawCursorExtent(CXCursor C);
Douglas Gregor66537982010-11-17 17:14:07 +0000354static SourceRange getFullCursorExtent(CXCursor C, SourceManager &SrcMgr);
355
Douglas Gregora8e5c5b2010-07-22 20:22:31 +0000356
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000357RangeComparisonResult CursorVisitor::CompareRegionOfInterest(SourceRange R) {
Ted Kremeneka60ed472010-11-16 08:15:36 +0000358 return RangeCompare(AU->getSourceManager(), R, RegionOfInterest);
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000359}
360
Douglas Gregorb1373d02010-01-20 20:59:29 +0000361/// \brief Visit the given cursor and, if requested by the visitor,
362/// its children.
363///
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000364/// \param Cursor the cursor to visit.
365///
366/// \param CheckRegionOfInterest if true, then the caller already checked that
367/// this cursor is within the region of interest.
368///
Douglas Gregorb1373d02010-01-20 20:59:29 +0000369/// \returns true if the visitation should be aborted, false if it
370/// should continue.
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000371bool CursorVisitor::Visit(CXCursor Cursor, bool CheckedRegionOfInterest) {
Douglas Gregorb1373d02010-01-20 20:59:29 +0000372 if (clang_isInvalid(Cursor.kind))
373 return false;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000374
Douglas Gregorb1373d02010-01-20 20:59:29 +0000375 if (clang_isDeclaration(Cursor.kind)) {
376 Decl *D = getCursorDecl(Cursor);
377 assert(D && "Invalid declaration cursor");
378 if (D->getPCHLevel() > MaxPCHLevel)
379 return false;
380
381 if (D->isImplicit())
382 return false;
383 }
384
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000385 // If we have a range of interest, and this cursor doesn't intersect with it,
386 // we're done.
387 if (RegionOfInterest.isValid() && !CheckedRegionOfInterest) {
Douglas Gregora8e5c5b2010-07-22 20:22:31 +0000388 SourceRange Range = getRawCursorExtent(Cursor);
Daniel Dunbarf408f322010-02-14 08:32:05 +0000389 if (Range.isInvalid() || CompareRegionOfInterest(Range))
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000390 return false;
391 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000392
Douglas Gregorb1373d02010-01-20 20:59:29 +0000393 switch (Visitor(Cursor, Parent, ClientData)) {
394 case CXChildVisit_Break:
395 return true;
396
397 case CXChildVisit_Continue:
398 return false;
399
400 case CXChildVisit_Recurse:
401 return VisitChildren(Cursor);
402 }
403
Douglas Gregorfd643772010-01-25 16:45:46 +0000404 return false;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000405}
406
Douglas Gregor788f5a12010-03-20 00:41:21 +0000407std::pair<PreprocessingRecord::iterator, PreprocessingRecord::iterator>
408CursorVisitor::getPreprocessedEntities() {
409 PreprocessingRecord &PPRec
Ted Kremeneka60ed472010-11-16 08:15:36 +0000410 = *AU->getPreprocessor().getPreprocessingRecord();
Douglas Gregor788f5a12010-03-20 00:41:21 +0000411
412 bool OnlyLocalDecls
Douglas Gregor32038bb2010-12-21 19:07:48 +0000413 = !AU->isMainFileAST() && AU->getOnlyLocalDecls();
414
415 if (OnlyLocalDecls && RegionOfInterest.isValid()) {
416 // If we would only look at local declarations but we have a region of
417 // interest, check whether that region of interest is in the main file.
418 // If not, we should traverse all declarations.
419 // FIXME: My kingdom for a proper binary search approach to finding
420 // cursors!
421 std::pair<FileID, unsigned> Location
422 = AU->getSourceManager().getDecomposedInstantiationLoc(
423 RegionOfInterest.getBegin());
424 if (Location.first != AU->getSourceManager().getMainFileID())
425 OnlyLocalDecls = false;
426 }
Douglas Gregor788f5a12010-03-20 00:41:21 +0000427
Douglas Gregor89d99802010-11-30 06:16:57 +0000428 PreprocessingRecord::iterator StartEntity, EndEntity;
429 if (OnlyLocalDecls) {
430 StartEntity = AU->pp_entity_begin();
431 EndEntity = AU->pp_entity_end();
432 } else {
433 StartEntity = PPRec.begin();
434 EndEntity = PPRec.end();
435 }
436
Douglas Gregor788f5a12010-03-20 00:41:21 +0000437 // There is no region of interest; we have to walk everything.
438 if (RegionOfInterest.isInvalid())
Douglas Gregor89d99802010-11-30 06:16:57 +0000439 return std::make_pair(StartEntity, EndEntity);
Douglas Gregor788f5a12010-03-20 00:41:21 +0000440
441 // Find the file in which the region of interest lands.
Ted Kremeneka60ed472010-11-16 08:15:36 +0000442 SourceManager &SM = AU->getSourceManager();
Douglas Gregor788f5a12010-03-20 00:41:21 +0000443 std::pair<FileID, unsigned> Begin
444 = SM.getDecomposedInstantiationLoc(RegionOfInterest.getBegin());
445 std::pair<FileID, unsigned> End
446 = SM.getDecomposedInstantiationLoc(RegionOfInterest.getEnd());
447
448 // The region of interest spans files; we have to walk everything.
449 if (Begin.first != End.first)
Douglas Gregor89d99802010-11-30 06:16:57 +0000450 return std::make_pair(StartEntity, EndEntity);
Douglas Gregor788f5a12010-03-20 00:41:21 +0000451
452 ASTUnit::PreprocessedEntitiesByFileMap &ByFileMap
Ted Kremeneka60ed472010-11-16 08:15:36 +0000453 = AU->getPreprocessedEntitiesByFile();
Douglas Gregor788f5a12010-03-20 00:41:21 +0000454 if (ByFileMap.empty()) {
455 // Build the mapping from files to sets of preprocessed entities.
Douglas Gregor89d99802010-11-30 06:16:57 +0000456 for (PreprocessingRecord::iterator E = StartEntity; E != EndEntity; ++E) {
Douglas Gregor788f5a12010-03-20 00:41:21 +0000457 std::pair<FileID, unsigned> P
458 = SM.getDecomposedInstantiationLoc((*E)->getSourceRange().getBegin());
Douglas Gregor89d99802010-11-30 06:16:57 +0000459
Douglas Gregor788f5a12010-03-20 00:41:21 +0000460 ByFileMap[P.first].push_back(*E);
461 }
462 }
463
464 return std::make_pair(ByFileMap[Begin.first].begin(),
465 ByFileMap[Begin.first].end());
466}
467
Douglas Gregorb1373d02010-01-20 20:59:29 +0000468/// \brief Visit the children of the given cursor.
Ted Kremeneka60ed472010-11-16 08:15:36 +0000469///
Douglas Gregorb1373d02010-01-20 20:59:29 +0000470/// \returns true if the visitation should be aborted, false if it
471/// should continue.
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000472bool CursorVisitor::VisitChildren(CXCursor Cursor) {
Douglas Gregora59e3902010-01-21 23:27:09 +0000473 if (clang_isReference(Cursor.kind)) {
474 // By definition, references have no children.
475 return false;
476 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000477
478 // Set the Parent field to Cursor, then back to its old value once we're
Douglas Gregorb1373d02010-01-20 20:59:29 +0000479 // done.
Ted Kremenek0f91f6a2010-05-13 00:25:00 +0000480 SetParentRAII SetParent(Parent, StmtParent, Cursor);
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000481
Douglas Gregorb1373d02010-01-20 20:59:29 +0000482 if (clang_isDeclaration(Cursor.kind)) {
483 Decl *D = getCursorDecl(Cursor);
484 assert(D && "Invalid declaration cursor");
Ted Kremenek539311e2010-02-18 18:47:01 +0000485 return VisitAttributes(D) || Visit(D);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000486 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000487
Douglas Gregora59e3902010-01-21 23:27:09 +0000488 if (clang_isStatement(Cursor.kind))
489 return Visit(getCursorStmt(Cursor));
490 if (clang_isExpression(Cursor.kind))
491 return Visit(getCursorExpr(Cursor));
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000492
Douglas Gregorb1373d02010-01-20 20:59:29 +0000493 if (clang_isTranslationUnit(Cursor.kind)) {
Ted Kremeneka60ed472010-11-16 08:15:36 +0000494 CXTranslationUnit tu = getCursorTU(Cursor);
495 ASTUnit *CXXUnit = static_cast<ASTUnit*>(tu->TUData);
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000496 if (!CXXUnit->isMainFileAST() && CXXUnit->getOnlyLocalDecls() &&
497 RegionOfInterest.isInvalid()) {
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000498 for (ASTUnit::top_level_iterator TL = CXXUnit->top_level_begin(),
499 TLEnd = CXXUnit->top_level_end();
500 TL != TLEnd; ++TL) {
Ted Kremeneka60ed472010-11-16 08:15:36 +0000501 if (Visit(MakeCXCursor(*TL, tu), true))
Douglas Gregor7b691f332010-01-20 21:13:59 +0000502 return true;
503 }
Douglas Gregor0396f462010-03-19 05:22:59 +0000504 } else if (VisitDeclContext(
505 CXXUnit->getASTContext().getTranslationUnitDecl()))
506 return true;
Bob Wilson3178cb62010-03-19 03:57:57 +0000507
Douglas Gregor0396f462010-03-19 05:22:59 +0000508 // Walk the preprocessing record.
Daniel Dunbar8de30ff2010-03-20 01:11:56 +0000509 if (CXXUnit->getPreprocessor().getPreprocessingRecord()) {
Douglas Gregor0396f462010-03-19 05:22:59 +0000510 // FIXME: Once we have the ability to deserialize a preprocessing record,
511 // do so.
Douglas Gregor788f5a12010-03-20 00:41:21 +0000512 PreprocessingRecord::iterator E, EEnd;
513 for (llvm::tie(E, EEnd) = getPreprocessedEntities(); E != EEnd; ++E) {
Douglas Gregor0396f462010-03-19 05:22:59 +0000514 if (MacroInstantiation *MI = dyn_cast<MacroInstantiation>(*E)) {
Ted Kremeneka60ed472010-11-16 08:15:36 +0000515 if (Visit(MakeMacroInstantiationCursor(MI, tu)))
Douglas Gregor0396f462010-03-19 05:22:59 +0000516 return true;
Douglas Gregor788f5a12010-03-20 00:41:21 +0000517
Douglas Gregor0396f462010-03-19 05:22:59 +0000518 continue;
519 }
520
521 if (MacroDefinition *MD = dyn_cast<MacroDefinition>(*E)) {
Ted Kremeneka60ed472010-11-16 08:15:36 +0000522 if (Visit(MakeMacroDefinitionCursor(MD, tu)))
Douglas Gregor0396f462010-03-19 05:22:59 +0000523 return true;
524
525 continue;
526 }
Douglas Gregorecdcb882010-10-20 22:00:55 +0000527
528 if (InclusionDirective *ID = dyn_cast<InclusionDirective>(*E)) {
Ted Kremeneka60ed472010-11-16 08:15:36 +0000529 if (Visit(MakeInclusionDirectiveCursor(ID, tu)))
Douglas Gregorecdcb882010-10-20 22:00:55 +0000530 return true;
531
532 continue;
533 }
Douglas Gregor0396f462010-03-19 05:22:59 +0000534 }
535 }
Douglas Gregor7b691f332010-01-20 21:13:59 +0000536 return false;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000537 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000538
Douglas Gregorb1373d02010-01-20 20:59:29 +0000539 // Nothing to visit at the moment.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000540 return false;
541}
542
Ted Kremenek1ee6cad2010-04-11 21:47:37 +0000543bool CursorVisitor::VisitBlockDecl(BlockDecl *B) {
John McCallfc929202010-06-04 22:33:30 +0000544 if (Visit(B->getSignatureAsWritten()->getTypeLoc()))
545 return true;
Ted Kremenek1ee6cad2010-04-11 21:47:37 +0000546
Ted Kremenek664cffd2010-07-22 11:30:19 +0000547 if (Stmt *Body = B->getBody())
548 return Visit(MakeCXCursor(Body, StmtParent, TU));
549
550 return false;
Ted Kremenek1ee6cad2010-04-11 21:47:37 +0000551}
552
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000553llvm::Optional<bool> CursorVisitor::shouldVisitCursor(CXCursor Cursor) {
554 if (RegionOfInterest.isValid()) {
Douglas Gregor66537982010-11-17 17:14:07 +0000555 SourceRange Range = getFullCursorExtent(Cursor, AU->getSourceManager());
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000556 if (Range.isInvalid())
557 return llvm::Optional<bool>();
Douglas Gregor66537982010-11-17 17:14:07 +0000558
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000559 switch (CompareRegionOfInterest(Range)) {
560 case RangeBefore:
561 // This declaration comes before the region of interest; skip it.
562 return llvm::Optional<bool>();
563
564 case RangeAfter:
565 // This declaration comes after the region of interest; we're done.
566 return false;
567
568 case RangeOverlap:
569 // This declaration overlaps the region of interest; visit it.
570 break;
571 }
572 }
573 return true;
574}
575
576bool CursorVisitor::VisitDeclContext(DeclContext *DC) {
577 DeclContext::decl_iterator I = DC->decls_begin(), E = DC->decls_end();
578
579 // FIXME: Eventually remove. This part of a hack to support proper
580 // iteration over all Decls contained lexically within an ObjC container.
581 SaveAndRestore<DeclContext::decl_iterator*> DI_saved(DI_current, &I);
582 SaveAndRestore<DeclContext::decl_iterator> DE_saved(DE_current, E);
583
584 for ( ; I != E; ++I) {
Ted Kremenek23173d72010-05-18 21:09:07 +0000585 Decl *D = *I;
586 if (D->getLexicalDeclContext() != DC)
587 continue;
Ted Kremenek23173d72010-05-18 21:09:07 +0000588 CXCursor Cursor = MakeCXCursor(D, TU);
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000589 const llvm::Optional<bool> &V = shouldVisitCursor(Cursor);
590 if (!V.hasValue())
591 continue;
592 if (!V.getValue())
593 return false;
Daniel Dunbard52864b2010-02-14 10:02:57 +0000594 if (Visit(Cursor, true))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000595 return true;
596 }
Douglas Gregorb1373d02010-01-20 20:59:29 +0000597 return false;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000598}
599
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000600bool CursorVisitor::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
601 llvm_unreachable("Translation units are visited directly by Visit()");
602 return false;
603}
604
605bool CursorVisitor::VisitTypedefDecl(TypedefDecl *D) {
606 if (TypeSourceInfo *TSInfo = D->getTypeSourceInfo())
607 return Visit(TSInfo->getTypeLoc());
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000608
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000609 return false;
610}
611
612bool CursorVisitor::VisitTagDecl(TagDecl *D) {
613 return VisitDeclContext(D);
614}
615
Douglas Gregor0ab1e9f2010-09-01 17:32:36 +0000616bool CursorVisitor::VisitClassTemplateSpecializationDecl(
617 ClassTemplateSpecializationDecl *D) {
618 bool ShouldVisitBody = false;
619 switch (D->getSpecializationKind()) {
620 case TSK_Undeclared:
621 case TSK_ImplicitInstantiation:
622 // Nothing to visit
623 return false;
624
625 case TSK_ExplicitInstantiationDeclaration:
626 case TSK_ExplicitInstantiationDefinition:
627 break;
628
629 case TSK_ExplicitSpecialization:
630 ShouldVisitBody = true;
631 break;
632 }
633
634 // Visit the template arguments used in the specialization.
635 if (TypeSourceInfo *SpecType = D->getTypeAsWritten()) {
636 TypeLoc TL = SpecType->getTypeLoc();
637 if (TemplateSpecializationTypeLoc *TSTLoc
638 = dyn_cast<TemplateSpecializationTypeLoc>(&TL)) {
639 for (unsigned I = 0, N = TSTLoc->getNumArgs(); I != N; ++I)
640 if (VisitTemplateArgumentLoc(TSTLoc->getArgLoc(I)))
641 return true;
642 }
643 }
644
645 if (ShouldVisitBody && VisitCXXRecordDecl(D))
646 return true;
647
648 return false;
649}
650
Douglas Gregor74dbe642010-08-31 19:31:58 +0000651bool CursorVisitor::VisitClassTemplatePartialSpecializationDecl(
652 ClassTemplatePartialSpecializationDecl *D) {
653 // FIXME: Visit the "outer" template parameter lists on the TagDecl
654 // before visiting these template parameters.
655 if (VisitTemplateParameters(D->getTemplateParameters()))
656 return true;
657
658 // Visit the partial specialization arguments.
659 const TemplateArgumentLoc *TemplateArgs = D->getTemplateArgsAsWritten();
660 for (unsigned I = 0, N = D->getNumTemplateArgsAsWritten(); I != N; ++I)
661 if (VisitTemplateArgumentLoc(TemplateArgs[I]))
662 return true;
663
664 return VisitCXXRecordDecl(D);
665}
666
Douglas Gregorfe72e9c2010-08-31 17:01:39 +0000667bool CursorVisitor::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) {
Douglas Gregor84b51d72010-09-01 20:16:53 +0000668 // Visit the default argument.
669 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited())
670 if (TypeSourceInfo *DefArg = D->getDefaultArgumentInfo())
671 if (Visit(DefArg->getTypeLoc()))
672 return true;
673
Douglas Gregorfe72e9c2010-08-31 17:01:39 +0000674 return false;
675}
676
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000677bool CursorVisitor::VisitEnumConstantDecl(EnumConstantDecl *D) {
678 if (Expr *Init = D->getInitExpr())
679 return Visit(MakeCXCursor(Init, StmtParent, TU));
680 return false;
681}
682
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000683bool CursorVisitor::VisitDeclaratorDecl(DeclaratorDecl *DD) {
684 if (TypeSourceInfo *TSInfo = DD->getTypeSourceInfo())
685 if (Visit(TSInfo->getTypeLoc()))
686 return true;
687
688 return false;
689}
690
Douglas Gregora67e03f2010-09-09 21:42:20 +0000691/// \brief Compare two base or member initializers based on their source order.
692static int CompareCXXBaseOrMemberInitializers(const void* Xp, const void *Yp) {
693 CXXBaseOrMemberInitializer const * const *X
694 = static_cast<CXXBaseOrMemberInitializer const * const *>(Xp);
695 CXXBaseOrMemberInitializer const * const *Y
696 = static_cast<CXXBaseOrMemberInitializer const * const *>(Yp);
697
698 if ((*X)->getSourceOrder() < (*Y)->getSourceOrder())
699 return -1;
700 else if ((*X)->getSourceOrder() > (*Y)->getSourceOrder())
701 return 1;
702 else
703 return 0;
704}
705
Douglas Gregorb1373d02010-01-20 20:59:29 +0000706bool CursorVisitor::VisitFunctionDecl(FunctionDecl *ND) {
Douglas Gregor01829d32010-08-31 14:41:23 +0000707 if (TypeSourceInfo *TSInfo = ND->getTypeSourceInfo()) {
708 // Visit the function declaration's syntactic components in the order
709 // written. This requires a bit of work.
Abramo Bagnara723df242010-12-14 22:11:44 +0000710 TypeLoc TL = TSInfo->getTypeLoc().IgnoreParens();
Douglas Gregor01829d32010-08-31 14:41:23 +0000711 FunctionTypeLoc *FTL = dyn_cast<FunctionTypeLoc>(&TL);
712
713 // If we have a function declared directly (without the use of a typedef),
714 // visit just the return type. Otherwise, just visit the function's type
715 // now.
716 if ((FTL && !isa<CXXConversionDecl>(ND) && Visit(FTL->getResultLoc())) ||
717 (!FTL && Visit(TL)))
718 return true;
719
Douglas Gregorc5ade2e2010-09-02 17:35:32 +0000720 // Visit the nested-name-specifier, if present.
721 if (NestedNameSpecifier *Qualifier = ND->getQualifier())
722 if (VisitNestedNameSpecifier(Qualifier, ND->getQualifierRange()))
723 return true;
Douglas Gregor01829d32010-08-31 14:41:23 +0000724
725 // Visit the declaration name.
726 if (VisitDeclarationNameInfo(ND->getNameInfo()))
727 return true;
728
729 // FIXME: Visit explicitly-specified template arguments!
730
731 // Visit the function parameters, if we have a function type.
732 if (FTL && VisitFunctionTypeLoc(*FTL, true))
733 return true;
734
735 // FIXME: Attributes?
736 }
737
Douglas Gregora67e03f2010-09-09 21:42:20 +0000738 if (ND->isThisDeclarationADefinition()) {
739 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(ND)) {
740 // Find the initializers that were written in the source.
741 llvm::SmallVector<CXXBaseOrMemberInitializer *, 4> WrittenInits;
742 for (CXXConstructorDecl::init_iterator I = Constructor->init_begin(),
743 IEnd = Constructor->init_end();
744 I != IEnd; ++I) {
745 if (!(*I)->isWritten())
746 continue;
747
748 WrittenInits.push_back(*I);
749 }
750
751 // Sort the initializers in source order
752 llvm::array_pod_sort(WrittenInits.begin(), WrittenInits.end(),
753 &CompareCXXBaseOrMemberInitializers);
754
755 // Visit the initializers in source order
756 for (unsigned I = 0, N = WrittenInits.size(); I != N; ++I) {
757 CXXBaseOrMemberInitializer *Init = WrittenInits[I];
Francois Pichet00eb3f92010-12-04 09:14:42 +0000758 if (Init->isAnyMemberInitializer()) {
759 if (Visit(MakeCursorMemberRef(Init->getAnyMember(),
Douglas Gregora67e03f2010-09-09 21:42:20 +0000760 Init->getMemberLocation(), TU)))
761 return true;
762 } else if (TypeSourceInfo *BaseInfo = Init->getBaseClassInfo()) {
763 if (Visit(BaseInfo->getTypeLoc()))
764 return true;
765 }
766
767 // Visit the initializer value.
768 if (Expr *Initializer = Init->getInit())
769 if (Visit(MakeCXCursor(Initializer, ND, TU)))
770 return true;
771 }
772 }
773
774 if (Visit(MakeCXCursor(ND->getBody(), StmtParent, TU)))
775 return true;
776 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000777
Douglas Gregorb1373d02010-01-20 20:59:29 +0000778 return false;
779}
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000780
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000781bool CursorVisitor::VisitFieldDecl(FieldDecl *D) {
782 if (VisitDeclaratorDecl(D))
783 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000784
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000785 if (Expr *BitWidth = D->getBitWidth())
786 return Visit(MakeCXCursor(BitWidth, StmtParent, TU));
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000787
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000788 return false;
789}
790
791bool CursorVisitor::VisitVarDecl(VarDecl *D) {
792 if (VisitDeclaratorDecl(D))
793 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000794
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000795 if (Expr *Init = D->getInit())
796 return Visit(MakeCXCursor(Init, StmtParent, TU));
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000797
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000798 return false;
799}
800
Douglas Gregor84b51d72010-09-01 20:16:53 +0000801bool CursorVisitor::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) {
802 if (VisitDeclaratorDecl(D))
803 return true;
804
805 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited())
806 if (Expr *DefArg = D->getDefaultArgument())
807 return Visit(MakeCXCursor(DefArg, StmtParent, TU));
808
809 return false;
810}
811
Douglas Gregorfe72e9c2010-08-31 17:01:39 +0000812bool CursorVisitor::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
813 // FIXME: Visit the "outer" template parameter lists on the FunctionDecl
814 // before visiting these template parameters.
815 if (VisitTemplateParameters(D->getTemplateParameters()))
816 return true;
817
818 return VisitFunctionDecl(D->getTemplatedDecl());
819}
820
Douglas Gregor39d6f072010-08-31 19:02:00 +0000821bool CursorVisitor::VisitClassTemplateDecl(ClassTemplateDecl *D) {
822 // FIXME: Visit the "outer" template parameter lists on the TagDecl
823 // before visiting these template parameters.
824 if (VisitTemplateParameters(D->getTemplateParameters()))
825 return true;
826
827 return VisitCXXRecordDecl(D->getTemplatedDecl());
828}
829
Douglas Gregor84b51d72010-09-01 20:16:53 +0000830bool CursorVisitor::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) {
831 if (VisitTemplateParameters(D->getTemplateParameters()))
832 return true;
833
834 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited() &&
835 VisitTemplateArgumentLoc(D->getDefaultArgument()))
836 return true;
837
838 return false;
839}
840
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000841bool CursorVisitor::VisitObjCMethodDecl(ObjCMethodDecl *ND) {
Douglas Gregor4bc1cb62010-03-08 14:59:44 +0000842 if (TypeSourceInfo *TSInfo = ND->getResultTypeSourceInfo())
843 if (Visit(TSInfo->getTypeLoc()))
844 return true;
845
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000846 for (ObjCMethodDecl::param_iterator P = ND->param_begin(),
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000847 PEnd = ND->param_end();
848 P != PEnd; ++P) {
849 if (Visit(MakeCXCursor(*P, TU)))
850 return true;
851 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000852
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000853 if (ND->isThisDeclarationADefinition() &&
854 Visit(MakeCXCursor(ND->getBody(), StmtParent, TU)))
855 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000856
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000857 return false;
858}
859
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000860namespace {
861 struct ContainerDeclsSort {
862 SourceManager &SM;
863 ContainerDeclsSort(SourceManager &sm) : SM(sm) {}
864 bool operator()(Decl *A, Decl *B) {
865 SourceLocation L_A = A->getLocStart();
866 SourceLocation L_B = B->getLocStart();
867 assert(L_A.isValid() && L_B.isValid());
868 return SM.isBeforeInTranslationUnit(L_A, L_B);
869 }
870 };
871}
872
Douglas Gregora59e3902010-01-21 23:27:09 +0000873bool CursorVisitor::VisitObjCContainerDecl(ObjCContainerDecl *D) {
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000874 // FIXME: Eventually convert back to just 'VisitDeclContext()'. Essentially
875 // an @implementation can lexically contain Decls that are not properly
876 // nested in the AST. When we identify such cases, we need to retrofit
877 // this nesting here.
878 if (!DI_current)
879 return VisitDeclContext(D);
880
881 // Scan the Decls that immediately come after the container
882 // in the current DeclContext. If any fall within the
883 // container's lexical region, stash them into a vector
884 // for later processing.
885 llvm::SmallVector<Decl *, 24> DeclsInContainer;
886 SourceLocation EndLoc = D->getSourceRange().getEnd();
Ted Kremeneka60ed472010-11-16 08:15:36 +0000887 SourceManager &SM = AU->getSourceManager();
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000888 if (EndLoc.isValid()) {
889 DeclContext::decl_iterator next = *DI_current;
890 while (++next != DE_current) {
891 Decl *D_next = *next;
892 if (!D_next)
893 break;
894 SourceLocation L = D_next->getLocStart();
895 if (!L.isValid())
896 break;
897 if (SM.isBeforeInTranslationUnit(L, EndLoc)) {
898 *DI_current = next;
899 DeclsInContainer.push_back(D_next);
900 continue;
901 }
902 break;
903 }
904 }
905
906 // The common case.
907 if (DeclsInContainer.empty())
908 return VisitDeclContext(D);
909
910 // Get all the Decls in the DeclContext, and sort them with the
911 // additional ones we've collected. Then visit them.
912 for (DeclContext::decl_iterator I = D->decls_begin(), E = D->decls_end();
913 I!=E; ++I) {
914 Decl *subDecl = *I;
Ted Kremenek0582c892010-11-02 23:17:51 +0000915 if (!subDecl || subDecl->getLexicalDeclContext() != D ||
916 subDecl->getLocStart().isInvalid())
Ted Kremenekd8c370c2010-11-02 23:10:24 +0000917 continue;
918 DeclsInContainer.push_back(subDecl);
919 }
920
921 // Now sort the Decls so that they appear in lexical order.
922 std::sort(DeclsInContainer.begin(), DeclsInContainer.end(),
923 ContainerDeclsSort(SM));
924
925 // Now visit the decls.
926 for (llvm::SmallVectorImpl<Decl*>::iterator I = DeclsInContainer.begin(),
927 E = DeclsInContainer.end(); I != E; ++I) {
928 CXCursor Cursor = MakeCXCursor(*I, TU);
929 const llvm::Optional<bool> &V = shouldVisitCursor(Cursor);
930 if (!V.hasValue())
931 continue;
932 if (!V.getValue())
933 return false;
934 if (Visit(Cursor, true))
935 return true;
936 }
937 return false;
Douglas Gregora59e3902010-01-21 23:27:09 +0000938}
939
Douglas Gregorb1373d02010-01-20 20:59:29 +0000940bool CursorVisitor::VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000941 if (Visit(MakeCursorObjCClassRef(ND->getClassInterface(), ND->getLocation(),
942 TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000943 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000944
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000945 ObjCCategoryDecl::protocol_loc_iterator PL = ND->protocol_loc_begin();
946 for (ObjCCategoryDecl::protocol_iterator I = ND->protocol_begin(),
947 E = ND->protocol_end(); I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000948 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000949 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000950
Douglas Gregora59e3902010-01-21 23:27:09 +0000951 return VisitObjCContainerDecl(ND);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000952}
953
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000954bool CursorVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
955 ObjCProtocolDecl::protocol_loc_iterator PL = PID->protocol_loc_begin();
956 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
957 E = PID->protocol_end(); I != E; ++I, ++PL)
958 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
959 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +0000960
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000961 return VisitObjCContainerDecl(PID);
962}
963
Ted Kremenek23173d72010-05-18 21:09:07 +0000964bool CursorVisitor::VisitObjCPropertyDecl(ObjCPropertyDecl *PD) {
Douglas Gregor83cb9422010-09-09 17:09:21 +0000965 if (PD->getTypeSourceInfo() && Visit(PD->getTypeSourceInfo()->getTypeLoc()))
John McCallfc929202010-06-04 22:33:30 +0000966 return true;
967
Ted Kremenek23173d72010-05-18 21:09:07 +0000968 // FIXME: This implements a workaround with @property declarations also being
969 // installed in the DeclContext for the @interface. Eventually this code
970 // should be removed.
971 ObjCCategoryDecl *CDecl = dyn_cast<ObjCCategoryDecl>(PD->getDeclContext());
972 if (!CDecl || !CDecl->IsClassExtension())
973 return false;
974
975 ObjCInterfaceDecl *ID = CDecl->getClassInterface();
976 if (!ID)
977 return false;
978
979 IdentifierInfo *PropertyId = PD->getIdentifier();
980 ObjCPropertyDecl *prevDecl =
981 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(ID), PropertyId);
982
983 if (!prevDecl)
984 return false;
985
986 // Visit synthesized methods since they will be skipped when visiting
987 // the @interface.
988 if (ObjCMethodDecl *MD = prevDecl->getGetterMethodDecl())
Ted Kremeneka054fb42010-09-21 20:52:59 +0000989 if (MD->isSynthesized() && MD->getLexicalDeclContext() == CDecl)
Ted Kremenek23173d72010-05-18 21:09:07 +0000990 if (Visit(MakeCXCursor(MD, TU)))
991 return true;
992
993 if (ObjCMethodDecl *MD = prevDecl->getSetterMethodDecl())
Ted Kremeneka054fb42010-09-21 20:52:59 +0000994 if (MD->isSynthesized() && MD->getLexicalDeclContext() == CDecl)
Ted Kremenek23173d72010-05-18 21:09:07 +0000995 if (Visit(MakeCXCursor(MD, TU)))
996 return true;
997
998 return false;
999}
1000
Douglas Gregorb1373d02010-01-20 20:59:29 +00001001bool CursorVisitor::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
Ted Kremenekdd6bcc52010-01-13 00:22:49 +00001002 // Issue callbacks for super class.
Douglas Gregorb1373d02010-01-20 20:59:29 +00001003 if (D->getSuperClass() &&
1004 Visit(MakeCursorObjCSuperClassRef(D->getSuperClass(),
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001005 D->getSuperClassLoc(),
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001006 TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +00001007 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001008
Douglas Gregor78db0cd2010-01-16 15:44:18 +00001009 ObjCInterfaceDecl::protocol_loc_iterator PL = D->protocol_loc_begin();
1010 for (ObjCInterfaceDecl::protocol_iterator I = D->protocol_begin(),
1011 E = D->protocol_end(); I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001012 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +00001013 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001014
Douglas Gregora59e3902010-01-21 23:27:09 +00001015 return VisitObjCContainerDecl(D);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +00001016}
1017
Douglas Gregor1ef2fc12010-01-22 00:50:27 +00001018bool CursorVisitor::VisitObjCImplDecl(ObjCImplDecl *D) {
1019 return VisitObjCContainerDecl(D);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +00001020}
1021
Douglas Gregor1ef2fc12010-01-22 00:50:27 +00001022bool CursorVisitor::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
Ted Kremenekebfa3392010-03-19 20:39:03 +00001023 // 'ID' could be null when dealing with invalid code.
1024 if (ObjCInterfaceDecl *ID = D->getClassInterface())
1025 if (Visit(MakeCursorObjCClassRef(ID, D->getLocation(), TU)))
1026 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001027
Douglas Gregor1ef2fc12010-01-22 00:50:27 +00001028 return VisitObjCImplDecl(D);
1029}
1030
1031bool CursorVisitor::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
1032#if 0
1033 // Issue callbacks for super class.
1034 // FIXME: No source location information!
1035 if (D->getSuperClass() &&
1036 Visit(MakeCursorObjCSuperClassRef(D->getSuperClass(),
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001037 D->getSuperClassLoc(),
Douglas Gregor1ef2fc12010-01-22 00:50:27 +00001038 TU)))
1039 return true;
1040#endif
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001041
Douglas Gregor1ef2fc12010-01-22 00:50:27 +00001042 return VisitObjCImplDecl(D);
1043}
1044
1045bool CursorVisitor::VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D) {
1046 ObjCForwardProtocolDecl::protocol_loc_iterator PL = D->protocol_loc_begin();
1047 for (ObjCForwardProtocolDecl::protocol_iterator I = D->protocol_begin(),
1048 E = D->protocol_end();
1049 I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001050 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +00001051 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001052
1053 return false;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +00001054}
1055
Douglas Gregor1ef2fc12010-01-22 00:50:27 +00001056bool CursorVisitor::VisitObjCClassDecl(ObjCClassDecl *D) {
1057 for (ObjCClassDecl::iterator C = D->begin(), CEnd = D->end(); C != CEnd; ++C)
1058 if (Visit(MakeCursorObjCClassRef(C->getInterface(), C->getLocation(), TU)))
1059 return true;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001060
Douglas Gregor1ef2fc12010-01-22 00:50:27 +00001061 return false;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +00001062}
1063
Douglas Gregora4ffd852010-11-17 01:03:52 +00001064bool CursorVisitor::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PD) {
1065 if (ObjCIvarDecl *Ivar = PD->getPropertyIvarDecl())
1066 return Visit(MakeCursorMemberRef(Ivar, PD->getPropertyIvarDeclLoc(), TU));
1067
1068 return false;
1069}
1070
Ted Kremenek8f06e0e2010-05-06 23:38:21 +00001071bool CursorVisitor::VisitNamespaceDecl(NamespaceDecl *D) {
1072 return VisitDeclContext(D);
1073}
1074
Douglas Gregor69319002010-08-31 23:48:11 +00001075bool CursorVisitor::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001076 // Visit nested-name-specifier.
1077 if (NestedNameSpecifier *Qualifier = D->getQualifier())
1078 if (VisitNestedNameSpecifier(Qualifier, D->getQualifierRange()))
1079 return true;
Douglas Gregor69319002010-08-31 23:48:11 +00001080
1081 return Visit(MakeCursorNamespaceRef(D->getAliasedNamespace(),
1082 D->getTargetNameLoc(), TU));
1083}
1084
Douglas Gregor7e242562010-09-01 19:52:22 +00001085bool CursorVisitor::VisitUsingDecl(UsingDecl *D) {
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001086 // Visit nested-name-specifier.
1087 if (NestedNameSpecifier *Qualifier = D->getTargetNestedNameDecl())
1088 if (VisitNestedNameSpecifier(Qualifier, D->getNestedNameRange()))
1089 return true;
Douglas Gregor7e242562010-09-01 19:52:22 +00001090
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00001091 if (Visit(MakeCursorOverloadedDeclRef(D, D->getLocation(), TU)))
1092 return true;
1093
Douglas Gregor7e242562010-09-01 19:52:22 +00001094 return VisitDeclarationNameInfo(D->getNameInfo());
1095}
1096
Douglas Gregor0a35bce2010-09-01 03:07:18 +00001097bool CursorVisitor::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001098 // Visit nested-name-specifier.
1099 if (NestedNameSpecifier *Qualifier = D->getQualifier())
1100 if (VisitNestedNameSpecifier(Qualifier, D->getQualifierRange()))
1101 return true;
Douglas Gregor0a35bce2010-09-01 03:07:18 +00001102
1103 return Visit(MakeCursorNamespaceRef(D->getNominatedNamespaceAsWritten(),
1104 D->getIdentLocation(), TU));
1105}
1106
Douglas Gregor7e242562010-09-01 19:52:22 +00001107bool CursorVisitor::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001108 // Visit nested-name-specifier.
1109 if (NestedNameSpecifier *Qualifier = D->getTargetNestedNameSpecifier())
1110 if (VisitNestedNameSpecifier(Qualifier, D->getTargetNestedNameRange()))
1111 return true;
1112
Douglas Gregor7e242562010-09-01 19:52:22 +00001113 return VisitDeclarationNameInfo(D->getNameInfo());
1114}
1115
1116bool CursorVisitor::VisitUnresolvedUsingTypenameDecl(
1117 UnresolvedUsingTypenameDecl *D) {
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001118 // Visit nested-name-specifier.
1119 if (NestedNameSpecifier *Qualifier = D->getTargetNestedNameSpecifier())
1120 if (VisitNestedNameSpecifier(Qualifier, D->getTargetNestedNameRange()))
1121 return true;
1122
Douglas Gregor7e242562010-09-01 19:52:22 +00001123 return false;
1124}
1125
Douglas Gregor01829d32010-08-31 14:41:23 +00001126bool CursorVisitor::VisitDeclarationNameInfo(DeclarationNameInfo Name) {
1127 switch (Name.getName().getNameKind()) {
1128 case clang::DeclarationName::Identifier:
1129 case clang::DeclarationName::CXXLiteralOperatorName:
1130 case clang::DeclarationName::CXXOperatorName:
1131 case clang::DeclarationName::CXXUsingDirective:
1132 return false;
1133
1134 case clang::DeclarationName::CXXConstructorName:
1135 case clang::DeclarationName::CXXDestructorName:
1136 case clang::DeclarationName::CXXConversionFunctionName:
1137 if (TypeSourceInfo *TSInfo = Name.getNamedTypeInfo())
1138 return Visit(TSInfo->getTypeLoc());
1139 return false;
1140
1141 case clang::DeclarationName::ObjCZeroArgSelector:
1142 case clang::DeclarationName::ObjCOneArgSelector:
1143 case clang::DeclarationName::ObjCMultiArgSelector:
1144 // FIXME: Per-identifier location info?
1145 return false;
1146 }
1147
1148 return false;
1149}
1150
Douglas Gregorc5ade2e2010-09-02 17:35:32 +00001151bool CursorVisitor::VisitNestedNameSpecifier(NestedNameSpecifier *NNS,
1152 SourceRange Range) {
1153 // FIXME: This whole routine is a hack to work around the lack of proper
1154 // source information in nested-name-specifiers (PR5791). Since we do have
1155 // a beginning source location, we can visit the first component of the
1156 // nested-name-specifier, if it's a single-token component.
1157 if (!NNS)
1158 return false;
1159
1160 // Get the first component in the nested-name-specifier.
1161 while (NestedNameSpecifier *Prefix = NNS->getPrefix())
1162 NNS = Prefix;
1163
1164 switch (NNS->getKind()) {
1165 case NestedNameSpecifier::Namespace:
1166 // FIXME: The token at this source location might actually have been a
1167 // namespace alias, but we don't model that. Lame!
1168 return Visit(MakeCursorNamespaceRef(NNS->getAsNamespace(), Range.getBegin(),
1169 TU));
1170
1171 case NestedNameSpecifier::TypeSpec: {
1172 // If the type has a form where we know that the beginning of the source
1173 // range matches up with a reference cursor. Visit the appropriate reference
1174 // cursor.
1175 Type *T = NNS->getAsType();
1176 if (const TypedefType *Typedef = dyn_cast<TypedefType>(T))
1177 return Visit(MakeCursorTypeRef(Typedef->getDecl(), Range.getBegin(), TU));
1178 if (const TagType *Tag = dyn_cast<TagType>(T))
1179 return Visit(MakeCursorTypeRef(Tag->getDecl(), Range.getBegin(), TU));
1180 if (const TemplateSpecializationType *TST
1181 = dyn_cast<TemplateSpecializationType>(T))
1182 return VisitTemplateName(TST->getTemplateName(), Range.getBegin());
1183 break;
1184 }
1185
1186 case NestedNameSpecifier::TypeSpecWithTemplate:
1187 case NestedNameSpecifier::Global:
1188 case NestedNameSpecifier::Identifier:
1189 break;
1190 }
1191
1192 return false;
1193}
1194
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001195bool CursorVisitor::VisitTemplateParameters(
1196 const TemplateParameterList *Params) {
1197 if (!Params)
1198 return false;
1199
1200 for (TemplateParameterList::const_iterator P = Params->begin(),
1201 PEnd = Params->end();
1202 P != PEnd; ++P) {
1203 if (Visit(MakeCXCursor(*P, TU)))
1204 return true;
1205 }
1206
1207 return false;
1208}
1209
Douglas Gregor0b36e612010-08-31 20:37:03 +00001210bool CursorVisitor::VisitTemplateName(TemplateName Name, SourceLocation Loc) {
1211 switch (Name.getKind()) {
1212 case TemplateName::Template:
1213 return Visit(MakeCursorTemplateRef(Name.getAsTemplateDecl(), Loc, TU));
1214
1215 case TemplateName::OverloadedTemplate:
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00001216 // Visit the overloaded template set.
1217 if (Visit(MakeCursorOverloadedDeclRef(Name, Loc, TU)))
1218 return true;
1219
Douglas Gregor0b36e612010-08-31 20:37:03 +00001220 return false;
1221
1222 case TemplateName::DependentTemplate:
1223 // FIXME: Visit nested-name-specifier.
1224 return false;
1225
1226 case TemplateName::QualifiedTemplate:
1227 // FIXME: Visit nested-name-specifier.
1228 return Visit(MakeCursorTemplateRef(
1229 Name.getAsQualifiedTemplateName()->getDecl(),
1230 Loc, TU));
1231 }
1232
1233 return false;
1234}
1235
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001236bool CursorVisitor::VisitTemplateArgumentLoc(const TemplateArgumentLoc &TAL) {
1237 switch (TAL.getArgument().getKind()) {
1238 case TemplateArgument::Null:
1239 case TemplateArgument::Integral:
Douglas Gregor87dd6972010-12-20 16:52:59 +00001240 case TemplateArgument::Pack:
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001241 return false;
1242
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001243 case TemplateArgument::Type:
1244 if (TypeSourceInfo *TSInfo = TAL.getTypeSourceInfo())
1245 return Visit(TSInfo->getTypeLoc());
1246 return false;
1247
1248 case TemplateArgument::Declaration:
1249 if (Expr *E = TAL.getSourceDeclExpression())
1250 return Visit(MakeCXCursor(E, StmtParent, TU));
1251 return false;
1252
1253 case TemplateArgument::Expression:
1254 if (Expr *E = TAL.getSourceExpression())
1255 return Visit(MakeCXCursor(E, StmtParent, TU));
1256 return false;
1257
1258 case TemplateArgument::Template:
Douglas Gregor0b36e612010-08-31 20:37:03 +00001259 return VisitTemplateName(TAL.getArgument().getAsTemplate(),
1260 TAL.getTemplateNameLoc());
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001261 }
1262
1263 return false;
1264}
1265
Ted Kremeneka0536d82010-05-07 01:04:29 +00001266bool CursorVisitor::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
1267 return VisitDeclContext(D);
1268}
1269
Douglas Gregor01829d32010-08-31 14:41:23 +00001270bool CursorVisitor::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
1271 return Visit(TL.getUnqualifiedLoc());
1272}
1273
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001274bool CursorVisitor::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Ted Kremeneka60ed472010-11-16 08:15:36 +00001275 ASTContext &Context = AU->getASTContext();
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001276
1277 // Some builtin types (such as Objective-C's "id", "sel", and
1278 // "Class") have associated declarations. Create cursors for those.
1279 QualType VisitType;
1280 switch (TL.getType()->getAs<BuiltinType>()->getKind()) {
Ted Kremenek6b3b5142010-02-18 22:32:43 +00001281 case BuiltinType::Void:
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001282 case BuiltinType::Bool:
Ted Kremenek6b3b5142010-02-18 22:32:43 +00001283 case BuiltinType::Char_U:
1284 case BuiltinType::UChar:
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001285 case BuiltinType::Char16:
1286 case BuiltinType::Char32:
Ted Kremenek6b3b5142010-02-18 22:32:43 +00001287 case BuiltinType::UShort:
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001288 case BuiltinType::UInt:
1289 case BuiltinType::ULong:
1290 case BuiltinType::ULongLong:
Ted Kremenek6b3b5142010-02-18 22:32:43 +00001291 case BuiltinType::UInt128:
1292 case BuiltinType::Char_S:
1293 case BuiltinType::SChar:
Chris Lattner3f59c972010-12-25 23:25:43 +00001294 case BuiltinType::WChar_U:
1295 case BuiltinType::WChar_S:
Ted Kremenek6b3b5142010-02-18 22:32:43 +00001296 case BuiltinType::Short:
1297 case BuiltinType::Int:
1298 case BuiltinType::Long:
1299 case BuiltinType::LongLong:
1300 case BuiltinType::Int128:
1301 case BuiltinType::Float:
1302 case BuiltinType::Double:
1303 case BuiltinType::LongDouble:
1304 case BuiltinType::NullPtr:
1305 case BuiltinType::Overload:
1306 case BuiltinType::Dependent:
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001307 break;
Ted Kremenek6b3b5142010-02-18 22:32:43 +00001308
1309 case BuiltinType::UndeducedAuto: // FIXME: Deserves a cursor?
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001310 break;
Ted Kremenek6b3b5142010-02-18 22:32:43 +00001311
Ted Kremenekc4174cc2010-02-18 18:52:18 +00001312 case BuiltinType::ObjCId:
1313 VisitType = Context.getObjCIdType();
1314 break;
Ted Kremenek6b3b5142010-02-18 22:32:43 +00001315
1316 case BuiltinType::ObjCClass:
1317 VisitType = Context.getObjCClassType();
1318 break;
1319
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001320 case BuiltinType::ObjCSel:
1321 VisitType = Context.getObjCSelType();
1322 break;
1323 }
1324
1325 if (!VisitType.isNull()) {
1326 if (const TypedefType *Typedef = VisitType->getAs<TypedefType>())
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001327 return Visit(MakeCursorTypeRef(Typedef->getDecl(), TL.getBuiltinLoc(),
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001328 TU));
1329 }
1330
1331 return false;
1332}
1333
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001334bool CursorVisitor::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
1335 return Visit(MakeCursorTypeRef(TL.getTypedefDecl(), TL.getNameLoc(), TU));
1336}
1337
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001338bool CursorVisitor::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
1339 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
1340}
1341
1342bool CursorVisitor::VisitTagTypeLoc(TagTypeLoc TL) {
1343 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
1344}
1345
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001346bool CursorVisitor::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00001347 // FIXME: We can't visit the template type parameter, because there's
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001348 // no context information with which we can match up the depth/index in the
1349 // type to the appropriate
1350 return false;
1351}
1352
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001353bool CursorVisitor::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
1354 if (Visit(MakeCursorObjCClassRef(TL.getIFaceDecl(), TL.getNameLoc(), TU)))
1355 return true;
1356
John McCallc12c5bb2010-05-15 11:32:37 +00001357 return false;
1358}
1359
1360bool CursorVisitor::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
1361 if (TL.hasBaseTypeAsWritten() && Visit(TL.getBaseLoc()))
1362 return true;
1363
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001364 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {
1365 if (Visit(MakeCursorObjCProtocolRef(TL.getProtocol(I), TL.getProtocolLoc(I),
1366 TU)))
1367 return true;
1368 }
1369
1370 return false;
1371}
1372
1373bool CursorVisitor::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
John McCallc12c5bb2010-05-15 11:32:37 +00001374 return Visit(TL.getPointeeLoc());
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001375}
1376
Abramo Bagnara075f8f12010-12-10 16:29:40 +00001377bool CursorVisitor::VisitParenTypeLoc(ParenTypeLoc TL) {
1378 return Visit(TL.getInnerLoc());
1379}
1380
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001381bool CursorVisitor::VisitPointerTypeLoc(PointerTypeLoc TL) {
1382 return Visit(TL.getPointeeLoc());
1383}
1384
1385bool CursorVisitor::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
1386 return Visit(TL.getPointeeLoc());
1387}
1388
1389bool CursorVisitor::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
1390 return Visit(TL.getPointeeLoc());
1391}
1392
1393bool CursorVisitor::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001394 return Visit(TL.getPointeeLoc());
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001395}
1396
1397bool CursorVisitor::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
Ted Kremenekf0e23e82010-02-17 00:41:40 +00001398 return Visit(TL.getPointeeLoc());
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001399}
1400
Douglas Gregor01829d32010-08-31 14:41:23 +00001401bool CursorVisitor::VisitFunctionTypeLoc(FunctionTypeLoc TL,
1402 bool SkipResultType) {
1403 if (!SkipResultType && Visit(TL.getResultLoc()))
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001404 return true;
1405
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001406 for (unsigned I = 0, N = TL.getNumArgs(); I != N; ++I)
Ted Kremenek5dbacb42010-04-07 00:27:13 +00001407 if (Decl *D = TL.getArg(I))
1408 if (Visit(MakeCXCursor(D, TU)))
1409 return true;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +00001410
1411 return false;
1412}
1413
1414bool CursorVisitor::VisitArrayTypeLoc(ArrayTypeLoc TL) {
1415 if (Visit(TL.getElementLoc()))
1416 return true;
1417
1418 if (Expr *Size = TL.getSizeExpr())
1419 return Visit(MakeCXCursor(Size, StmtParent, TU));
1420
1421 return false;
1422}
1423
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001424bool CursorVisitor::VisitTemplateSpecializationTypeLoc(
1425 TemplateSpecializationTypeLoc TL) {
Douglas Gregor0b36e612010-08-31 20:37:03 +00001426 // Visit the template name.
1427 if (VisitTemplateName(TL.getTypePtr()->getTemplateName(),
1428 TL.getTemplateNameLoc()))
1429 return true;
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001430
1431 // Visit the template arguments.
1432 for (unsigned I = 0, N = TL.getNumArgs(); I != N; ++I)
1433 if (VisitTemplateArgumentLoc(TL.getArgLoc(I)))
1434 return true;
1435
1436 return false;
1437}
1438
Douglas Gregor2332c112010-01-21 20:48:56 +00001439bool CursorVisitor::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
1440 return Visit(MakeCXCursor(TL.getUnderlyingExpr(), StmtParent, TU));
1441}
1442
1443bool CursorVisitor::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
1444 if (TypeSourceInfo *TSInfo = TL.getUnderlyingTInfo())
1445 return Visit(TSInfo->getTypeLoc());
1446
1447 return false;
1448}
1449
Douglas Gregor7536dd52010-12-20 02:24:11 +00001450bool CursorVisitor::VisitPackExpansionTypeLoc(PackExpansionTypeLoc TL) {
1451 return Visit(TL.getPatternLoc());
1452}
1453
Ted Kremenek3064ef92010-08-27 21:34:58 +00001454bool CursorVisitor::VisitCXXRecordDecl(CXXRecordDecl *D) {
1455 if (D->isDefinition()) {
1456 for (CXXRecordDecl::base_class_iterator I = D->bases_begin(),
1457 E = D->bases_end(); I != E; ++I) {
1458 if (Visit(cxcursor::MakeCursorCXXBaseSpecifier(I, TU)))
1459 return true;
1460 }
1461 }
1462
1463 return VisitTagDecl(D);
1464}
1465
Ted Kremenek09dfa372010-02-18 05:46:33 +00001466bool CursorVisitor::VisitAttributes(Decl *D) {
Sean Huntcf807c42010-08-18 23:23:40 +00001467 for (AttrVec::const_iterator i = D->attr_begin(), e = D->attr_end();
1468 i != e; ++i)
1469 if (Visit(MakeCXCursor(*i, D, TU)))
Ted Kremenek09dfa372010-02-18 05:46:33 +00001470 return true;
1471
1472 return false;
1473}
1474
Ted Kremenekc0e1d922010-11-11 08:05:18 +00001475//===----------------------------------------------------------------------===//
1476// Data-recursive visitor methods.
1477//===----------------------------------------------------------------------===//
1478
Ted Kremenek28a71942010-11-13 00:36:47 +00001479namespace {
Ted Kremenek035dc412010-11-13 00:36:50 +00001480#define DEF_JOB(NAME, DATA, KIND)\
1481class NAME : public VisitorJob {\
1482public:\
1483 NAME(DATA *d, CXCursor parent) : VisitorJob(parent, VisitorJob::KIND, d) {} \
1484 static bool classof(const VisitorJob *VJ) { return VJ->getKind() == KIND; }\
Ted Kremenekf64d8032010-11-18 00:02:32 +00001485 DATA *get() const { return static_cast<DATA*>(data[0]); }\
Ted Kremenek035dc412010-11-13 00:36:50 +00001486};
1487
1488DEF_JOB(StmtVisit, Stmt, StmtVisitKind)
1489DEF_JOB(MemberExprParts, MemberExpr, MemberExprPartsKind)
Ted Kremeneke4979cc2010-11-13 00:58:18 +00001490DEF_JOB(DeclRefExprParts, DeclRefExpr, DeclRefExprPartsKind)
Ted Kremenek035dc412010-11-13 00:36:50 +00001491DEF_JOB(OverloadExprParts, OverloadExpr, OverloadExprPartsKind)
Ted Kremenek60608ec2010-11-17 00:50:47 +00001492DEF_JOB(ExplicitTemplateArgsVisit, ExplicitTemplateArgumentList,
1493 ExplicitTemplateArgsVisitKind)
Ted Kremenek035dc412010-11-13 00:36:50 +00001494#undef DEF_JOB
1495
1496class DeclVisit : public VisitorJob {
1497public:
1498 DeclVisit(Decl *d, CXCursor parent, bool isFirst) :
1499 VisitorJob(parent, VisitorJob::DeclVisitKind,
1500 d, isFirst ? (void*) 1 : (void*) 0) {}
1501 static bool classof(const VisitorJob *VJ) {
Ted Kremenek82f3c502010-11-15 22:23:26 +00001502 return VJ->getKind() == DeclVisitKind;
Ted Kremenek035dc412010-11-13 00:36:50 +00001503 }
Ted Kremenekf64d8032010-11-18 00:02:32 +00001504 Decl *get() const { return static_cast<Decl*>(data[0]); }
1505 bool isFirst() const { return data[1] ? true : false; }
Ted Kremenek035dc412010-11-13 00:36:50 +00001506};
Ted Kremenek035dc412010-11-13 00:36:50 +00001507class TypeLocVisit : public VisitorJob {
1508public:
1509 TypeLocVisit(TypeLoc tl, CXCursor parent) :
1510 VisitorJob(parent, VisitorJob::TypeLocVisitKind,
1511 tl.getType().getAsOpaquePtr(), tl.getOpaqueData()) {}
1512
1513 static bool classof(const VisitorJob *VJ) {
1514 return VJ->getKind() == TypeLocVisitKind;
1515 }
1516
Ted Kremenek82f3c502010-11-15 22:23:26 +00001517 TypeLoc get() const {
Ted Kremenekf64d8032010-11-18 00:02:32 +00001518 QualType T = QualType::getFromOpaquePtr(data[0]);
1519 return TypeLoc(T, data[1]);
Ted Kremenek035dc412010-11-13 00:36:50 +00001520 }
1521};
1522
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001523class LabelRefVisit : public VisitorJob {
1524public:
1525 LabelRefVisit(LabelStmt *LS, SourceLocation labelLoc, CXCursor parent)
1526 : VisitorJob(parent, VisitorJob::LabelRefVisitKind, LS,
1527 (void*) labelLoc.getRawEncoding()) {}
1528
1529 static bool classof(const VisitorJob *VJ) {
1530 return VJ->getKind() == VisitorJob::LabelRefVisitKind;
1531 }
Ted Kremenekf64d8032010-11-18 00:02:32 +00001532 LabelStmt *get() const { return static_cast<LabelStmt*>(data[0]); }
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001533 SourceLocation getLoc() const {
Ted Kremenekf64d8032010-11-18 00:02:32 +00001534 return SourceLocation::getFromRawEncoding((unsigned)(uintptr_t) data[1]); }
1535};
1536class NestedNameSpecifierVisit : public VisitorJob {
1537public:
1538 NestedNameSpecifierVisit(NestedNameSpecifier *NS, SourceRange R,
1539 CXCursor parent)
1540 : VisitorJob(parent, VisitorJob::NestedNameSpecifierVisitKind,
1541 NS, (void*) R.getBegin().getRawEncoding(),
1542 (void*) R.getEnd().getRawEncoding()) {}
1543 static bool classof(const VisitorJob *VJ) {
1544 return VJ->getKind() == VisitorJob::NestedNameSpecifierVisitKind;
1545 }
1546 NestedNameSpecifier *get() const {
1547 return static_cast<NestedNameSpecifier*>(data[0]);
1548 }
1549 SourceRange getSourceRange() const {
1550 SourceLocation A =
1551 SourceLocation::getFromRawEncoding((unsigned)(uintptr_t) data[1]);
1552 SourceLocation B =
1553 SourceLocation::getFromRawEncoding((unsigned)(uintptr_t) data[2]);
1554 return SourceRange(A, B);
1555 }
1556};
1557class DeclarationNameInfoVisit : public VisitorJob {
1558public:
1559 DeclarationNameInfoVisit(Stmt *S, CXCursor parent)
1560 : VisitorJob(parent, VisitorJob::DeclarationNameInfoVisitKind, S) {}
1561 static bool classof(const VisitorJob *VJ) {
1562 return VJ->getKind() == VisitorJob::DeclarationNameInfoVisitKind;
1563 }
1564 DeclarationNameInfo get() const {
1565 Stmt *S = static_cast<Stmt*>(data[0]);
1566 switch (S->getStmtClass()) {
1567 default:
1568 llvm_unreachable("Unhandled Stmt");
1569 case Stmt::CXXDependentScopeMemberExprClass:
1570 return cast<CXXDependentScopeMemberExpr>(S)->getMemberNameInfo();
1571 case Stmt::DependentScopeDeclRefExprClass:
1572 return cast<DependentScopeDeclRefExpr>(S)->getNameInfo();
1573 }
1574 }
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001575};
Ted Kremenekcdba6592010-11-18 00:42:18 +00001576class MemberRefVisit : public VisitorJob {
1577public:
1578 MemberRefVisit(FieldDecl *D, SourceLocation L, CXCursor parent)
1579 : VisitorJob(parent, VisitorJob::MemberRefVisitKind, D,
1580 (void*) L.getRawEncoding()) {}
1581 static bool classof(const VisitorJob *VJ) {
1582 return VJ->getKind() == VisitorJob::MemberRefVisitKind;
1583 }
1584 FieldDecl *get() const {
1585 return static_cast<FieldDecl*>(data[0]);
1586 }
1587 SourceLocation getLoc() const {
1588 return SourceLocation::getFromRawEncoding((unsigned)(uintptr_t) data[1]);
1589 }
1590};
Ted Kremenek28a71942010-11-13 00:36:47 +00001591class EnqueueVisitor : public StmtVisitor<EnqueueVisitor, void> {
1592 VisitorWorkList &WL;
1593 CXCursor Parent;
1594public:
1595 EnqueueVisitor(VisitorWorkList &wl, CXCursor parent)
1596 : WL(wl), Parent(parent) {}
1597
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001598 void VisitAddrLabelExpr(AddrLabelExpr *E);
Ted Kremenek73d15c42010-11-13 01:09:29 +00001599 void VisitBlockExpr(BlockExpr *B);
Ted Kremenek28a71942010-11-13 00:36:47 +00001600 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Ted Kremenek083c7e22010-11-13 05:38:03 +00001601 void VisitCompoundStmt(CompoundStmt *S);
Ted Kremenek11b8e3e2010-11-13 05:55:53 +00001602 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) { /* Do nothing. */ }
Ted Kremenekf64d8032010-11-18 00:02:32 +00001603 void VisitCXXDependentScopeMemberExpr(CXXDependentScopeMemberExpr *E);
Ted Kremenek11b8e3e2010-11-13 05:55:53 +00001604 void VisitCXXNewExpr(CXXNewExpr *E);
Ted Kremenek6d0a00d2010-11-17 02:18:35 +00001605 void VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Ted Kremenek28a71942010-11-13 00:36:47 +00001606 void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E);
Ted Kremenekcdba6592010-11-18 00:42:18 +00001607 void VisitCXXPseudoDestructorExpr(CXXPseudoDestructorExpr *E);
Ted Kremenek73d15c42010-11-13 01:09:29 +00001608 void VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *E);
Ted Kremenekb8dd1ca2010-11-17 00:50:41 +00001609 void VisitCXXTypeidExpr(CXXTypeidExpr *E);
Ted Kremenek55b933a2010-11-17 00:50:36 +00001610 void VisitCXXUnresolvedConstructExpr(CXXUnresolvedConstructExpr *E);
Ted Kremenek1e7e8772010-11-17 00:50:52 +00001611 void VisitCXXUuidofExpr(CXXUuidofExpr *E);
Ted Kremeneke4979cc2010-11-13 00:58:18 +00001612 void VisitDeclRefExpr(DeclRefExpr *D);
Ted Kremenek035dc412010-11-13 00:36:50 +00001613 void VisitDeclStmt(DeclStmt *S);
Ted Kremenekf64d8032010-11-18 00:02:32 +00001614 void VisitDependentScopeDeclRefExpr(DependentScopeDeclRefExpr *E);
Ted Kremenekcdba6592010-11-18 00:42:18 +00001615 void VisitDesignatedInitExpr(DesignatedInitExpr *E);
Ted Kremenek28a71942010-11-13 00:36:47 +00001616 void VisitExplicitCastExpr(ExplicitCastExpr *E);
1617 void VisitForStmt(ForStmt *FS);
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001618 void VisitGotoStmt(GotoStmt *GS);
Ted Kremenek28a71942010-11-13 00:36:47 +00001619 void VisitIfStmt(IfStmt *If);
1620 void VisitInitListExpr(InitListExpr *IE);
1621 void VisitMemberExpr(MemberExpr *M);
Ted Kremenekcdba6592010-11-18 00:42:18 +00001622 void VisitOffsetOfExpr(OffsetOfExpr *E);
Ted Kremenek73d15c42010-11-13 01:09:29 +00001623 void VisitObjCEncodeExpr(ObjCEncodeExpr *E);
Ted Kremenek28a71942010-11-13 00:36:47 +00001624 void VisitObjCMessageExpr(ObjCMessageExpr *M);
1625 void VisitOverloadExpr(OverloadExpr *E);
Ted Kremenek6d0a00d2010-11-17 02:18:35 +00001626 void VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E);
Ted Kremenek28a71942010-11-13 00:36:47 +00001627 void VisitStmt(Stmt *S);
1628 void VisitSwitchStmt(SwitchStmt *S);
1629 void VisitWhileStmt(WhileStmt *W);
Ted Kremenek2939b6f2010-11-17 00:50:50 +00001630 void VisitUnaryTypeTraitExpr(UnaryTypeTraitExpr *E);
Francois Pichet6ad6f282010-12-07 00:08:36 +00001631 void VisitBinaryTypeTraitExpr(BinaryTypeTraitExpr *E);
Ted Kremenek28a71942010-11-13 00:36:47 +00001632 void VisitUnresolvedMemberExpr(UnresolvedMemberExpr *U);
Ted Kremenek9d3bf792010-11-17 00:50:43 +00001633 void VisitVAArgExpr(VAArgExpr *E);
Ted Kremenek28a71942010-11-13 00:36:47 +00001634
1635private:
Ted Kremenekf64d8032010-11-18 00:02:32 +00001636 void AddDeclarationNameInfo(Stmt *S);
1637 void AddNestedNameSpecifier(NestedNameSpecifier *NS, SourceRange R);
Ted Kremenek60608ec2010-11-17 00:50:47 +00001638 void AddExplicitTemplateArgs(const ExplicitTemplateArgumentList *A);
Ted Kremenekcdba6592010-11-18 00:42:18 +00001639 void AddMemberRef(FieldDecl *D, SourceLocation L);
Ted Kremenek28a71942010-11-13 00:36:47 +00001640 void AddStmt(Stmt *S);
Ted Kremenek035dc412010-11-13 00:36:50 +00001641 void AddDecl(Decl *D, bool isFirst = true);
Ted Kremenek28a71942010-11-13 00:36:47 +00001642 void AddTypeLoc(TypeSourceInfo *TI);
1643 void EnqueueChildren(Stmt *S);
1644};
1645} // end anonyous namespace
1646
Ted Kremenekf64d8032010-11-18 00:02:32 +00001647void EnqueueVisitor::AddDeclarationNameInfo(Stmt *S) {
1648 // 'S' should always be non-null, since it comes from the
1649 // statement we are visiting.
1650 WL.push_back(DeclarationNameInfoVisit(S, Parent));
1651}
1652void EnqueueVisitor::AddNestedNameSpecifier(NestedNameSpecifier *N,
1653 SourceRange R) {
1654 if (N)
1655 WL.push_back(NestedNameSpecifierVisit(N, R, Parent));
1656}
Ted Kremenek28a71942010-11-13 00:36:47 +00001657void EnqueueVisitor::AddStmt(Stmt *S) {
1658 if (S)
1659 WL.push_back(StmtVisit(S, Parent));
1660}
Ted Kremenek035dc412010-11-13 00:36:50 +00001661void EnqueueVisitor::AddDecl(Decl *D, bool isFirst) {
Ted Kremenek28a71942010-11-13 00:36:47 +00001662 if (D)
Ted Kremenek035dc412010-11-13 00:36:50 +00001663 WL.push_back(DeclVisit(D, Parent, isFirst));
Ted Kremenek28a71942010-11-13 00:36:47 +00001664}
Ted Kremenek60608ec2010-11-17 00:50:47 +00001665void EnqueueVisitor::
1666 AddExplicitTemplateArgs(const ExplicitTemplateArgumentList *A) {
1667 if (A)
1668 WL.push_back(ExplicitTemplateArgsVisit(
1669 const_cast<ExplicitTemplateArgumentList*>(A), Parent));
1670}
Ted Kremenekcdba6592010-11-18 00:42:18 +00001671void EnqueueVisitor::AddMemberRef(FieldDecl *D, SourceLocation L) {
1672 if (D)
1673 WL.push_back(MemberRefVisit(D, L, Parent));
1674}
Ted Kremenek28a71942010-11-13 00:36:47 +00001675void EnqueueVisitor::AddTypeLoc(TypeSourceInfo *TI) {
1676 if (TI)
1677 WL.push_back(TypeLocVisit(TI->getTypeLoc(), Parent));
1678 }
1679void EnqueueVisitor::EnqueueChildren(Stmt *S) {
Ted Kremeneka6b70432010-11-12 21:34:09 +00001680 unsigned size = WL.size();
1681 for (Stmt::child_iterator Child = S->child_begin(), ChildEnd = S->child_end();
1682 Child != ChildEnd; ++Child) {
Ted Kremenek28a71942010-11-13 00:36:47 +00001683 AddStmt(*Child);
Ted Kremeneka6b70432010-11-12 21:34:09 +00001684 }
1685 if (size == WL.size())
1686 return;
1687 // Now reverse the entries we just added. This will match the DFS
1688 // ordering performed by the worklist.
1689 VisitorWorkList::iterator I = WL.begin() + size, E = WL.end();
1690 std::reverse(I, E);
1691}
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001692void EnqueueVisitor::VisitAddrLabelExpr(AddrLabelExpr *E) {
1693 WL.push_back(LabelRefVisit(E->getLabel(), E->getLabelLoc(), Parent));
1694}
Ted Kremenek73d15c42010-11-13 01:09:29 +00001695void EnqueueVisitor::VisitBlockExpr(BlockExpr *B) {
1696 AddDecl(B->getBlockDecl());
1697}
Ted Kremenek28a71942010-11-13 00:36:47 +00001698void EnqueueVisitor::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
1699 EnqueueChildren(E);
1700 AddTypeLoc(E->getTypeSourceInfo());
1701}
Ted Kremenek083c7e22010-11-13 05:38:03 +00001702void EnqueueVisitor::VisitCompoundStmt(CompoundStmt *S) {
1703 for (CompoundStmt::reverse_body_iterator I = S->body_rbegin(),
1704 E = S->body_rend(); I != E; ++I) {
1705 AddStmt(*I);
1706 }
Ted Kremenek11b8e3e2010-11-13 05:55:53 +00001707}
Ted Kremenekf64d8032010-11-18 00:02:32 +00001708void EnqueueVisitor::
1709VisitCXXDependentScopeMemberExpr(CXXDependentScopeMemberExpr *E) {
1710 AddExplicitTemplateArgs(E->getOptionalExplicitTemplateArgs());
1711 AddDeclarationNameInfo(E);
1712 if (NestedNameSpecifier *Qualifier = E->getQualifier())
1713 AddNestedNameSpecifier(Qualifier, E->getQualifierRange());
1714 if (!E->isImplicitAccess())
1715 AddStmt(E->getBase());
1716}
Ted Kremenek11b8e3e2010-11-13 05:55:53 +00001717void EnqueueVisitor::VisitCXXNewExpr(CXXNewExpr *E) {
1718 // Enqueue the initializer or constructor arguments.
1719 for (unsigned I = E->getNumConstructorArgs(); I > 0; --I)
1720 AddStmt(E->getConstructorArg(I-1));
1721 // Enqueue the array size, if any.
1722 AddStmt(E->getArraySize());
1723 // Enqueue the allocated type.
1724 AddTypeLoc(E->getAllocatedTypeSourceInfo());
1725 // Enqueue the placement arguments.
1726 for (unsigned I = E->getNumPlacementArgs(); I > 0; --I)
1727 AddStmt(E->getPlacementArg(I-1));
1728}
Ted Kremenek28a71942010-11-13 00:36:47 +00001729void EnqueueVisitor::VisitCXXOperatorCallExpr(CXXOperatorCallExpr *CE) {
Ted Kremenek8b8d8c92010-11-13 05:55:56 +00001730 for (unsigned I = CE->getNumArgs(); I > 1 /* Yes, this is 1 */; --I)
1731 AddStmt(CE->getArg(I-1));
Ted Kremenek28a71942010-11-13 00:36:47 +00001732 AddStmt(CE->getCallee());
1733 AddStmt(CE->getArg(0));
1734}
Ted Kremenekcdba6592010-11-18 00:42:18 +00001735void EnqueueVisitor::VisitCXXPseudoDestructorExpr(CXXPseudoDestructorExpr *E) {
1736 // Visit the name of the type being destroyed.
1737 AddTypeLoc(E->getDestroyedTypeInfo());
1738 // Visit the scope type that looks disturbingly like the nested-name-specifier
1739 // but isn't.
1740 AddTypeLoc(E->getScopeTypeInfo());
1741 // Visit the nested-name-specifier.
1742 if (NestedNameSpecifier *Qualifier = E->getQualifier())
1743 AddNestedNameSpecifier(Qualifier, E->getQualifierRange());
1744 // Visit base expression.
1745 AddStmt(E->getBase());
1746}
Ted Kremenek6d0a00d2010-11-17 02:18:35 +00001747void EnqueueVisitor::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
1748 AddTypeLoc(E->getTypeSourceInfo());
1749}
Ted Kremenek73d15c42010-11-13 01:09:29 +00001750void EnqueueVisitor::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *E) {
1751 EnqueueChildren(E);
1752 AddTypeLoc(E->getTypeSourceInfo());
1753}
Ted Kremenekb8dd1ca2010-11-17 00:50:41 +00001754void EnqueueVisitor::VisitCXXTypeidExpr(CXXTypeidExpr *E) {
1755 EnqueueChildren(E);
1756 if (E->isTypeOperand())
1757 AddTypeLoc(E->getTypeOperandSourceInfo());
1758}
Ted Kremenek55b933a2010-11-17 00:50:36 +00001759
1760void EnqueueVisitor::VisitCXXUnresolvedConstructExpr(CXXUnresolvedConstructExpr
1761 *E) {
1762 EnqueueChildren(E);
1763 AddTypeLoc(E->getTypeSourceInfo());
1764}
Ted Kremenek1e7e8772010-11-17 00:50:52 +00001765void EnqueueVisitor::VisitCXXUuidofExpr(CXXUuidofExpr *E) {
1766 EnqueueChildren(E);
1767 if (E->isTypeOperand())
1768 AddTypeLoc(E->getTypeOperandSourceInfo());
1769}
Ted Kremeneke4979cc2010-11-13 00:58:18 +00001770void EnqueueVisitor::VisitDeclRefExpr(DeclRefExpr *DR) {
Ted Kremenek60608ec2010-11-17 00:50:47 +00001771 if (DR->hasExplicitTemplateArgs()) {
1772 AddExplicitTemplateArgs(&DR->getExplicitTemplateArgs());
1773 }
Ted Kremeneke4979cc2010-11-13 00:58:18 +00001774 WL.push_back(DeclRefExprParts(DR, Parent));
1775}
Ted Kremenekf64d8032010-11-18 00:02:32 +00001776void EnqueueVisitor::VisitDependentScopeDeclRefExpr(DependentScopeDeclRefExpr *E) {
1777 AddExplicitTemplateArgs(E->getOptionalExplicitTemplateArgs());
1778 AddDeclarationNameInfo(E);
1779 if (NestedNameSpecifier *Qualifier = E->getQualifier())
1780 AddNestedNameSpecifier(Qualifier, E->getQualifierRange());
1781}
Ted Kremenek035dc412010-11-13 00:36:50 +00001782void EnqueueVisitor::VisitDeclStmt(DeclStmt *S) {
1783 unsigned size = WL.size();
1784 bool isFirst = true;
1785 for (DeclStmt::decl_iterator D = S->decl_begin(), DEnd = S->decl_end();
1786 D != DEnd; ++D) {
1787 AddDecl(*D, isFirst);
1788 isFirst = false;
1789 }
1790 if (size == WL.size())
1791 return;
1792 // Now reverse the entries we just added. This will match the DFS
1793 // ordering performed by the worklist.
1794 VisitorWorkList::iterator I = WL.begin() + size, E = WL.end();
1795 std::reverse(I, E);
1796}
Ted Kremenekcdba6592010-11-18 00:42:18 +00001797void EnqueueVisitor::VisitDesignatedInitExpr(DesignatedInitExpr *E) {
1798 AddStmt(E->getInit());
1799 typedef DesignatedInitExpr::Designator Designator;
1800 for (DesignatedInitExpr::reverse_designators_iterator
1801 D = E->designators_rbegin(), DEnd = E->designators_rend();
1802 D != DEnd; ++D) {
1803 if (D->isFieldDesignator()) {
1804 if (FieldDecl *Field = D->getField())
1805 AddMemberRef(Field, D->getFieldLoc());
1806 continue;
1807 }
1808 if (D->isArrayDesignator()) {
1809 AddStmt(E->getArrayIndex(*D));
1810 continue;
1811 }
1812 assert(D->isArrayRangeDesignator() && "Unknown designator kind");
1813 AddStmt(E->getArrayRangeEnd(*D));
1814 AddStmt(E->getArrayRangeStart(*D));
1815 }
1816}
Ted Kremenek28a71942010-11-13 00:36:47 +00001817void EnqueueVisitor::VisitExplicitCastExpr(ExplicitCastExpr *E) {
1818 EnqueueChildren(E);
1819 AddTypeLoc(E->getTypeInfoAsWritten());
1820}
1821void EnqueueVisitor::VisitForStmt(ForStmt *FS) {
1822 AddStmt(FS->getBody());
1823 AddStmt(FS->getInc());
1824 AddStmt(FS->getCond());
1825 AddDecl(FS->getConditionVariable());
1826 AddStmt(FS->getInit());
1827}
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001828void EnqueueVisitor::VisitGotoStmt(GotoStmt *GS) {
1829 WL.push_back(LabelRefVisit(GS->getLabel(), GS->getLabelLoc(), Parent));
1830}
Ted Kremenek28a71942010-11-13 00:36:47 +00001831void EnqueueVisitor::VisitIfStmt(IfStmt *If) {
1832 AddStmt(If->getElse());
1833 AddStmt(If->getThen());
1834 AddStmt(If->getCond());
1835 AddDecl(If->getConditionVariable());
1836}
1837void EnqueueVisitor::VisitInitListExpr(InitListExpr *IE) {
1838 // We care about the syntactic form of the initializer list, only.
1839 if (InitListExpr *Syntactic = IE->getSyntacticForm())
1840 IE = Syntactic;
1841 EnqueueChildren(IE);
1842}
1843void EnqueueVisitor::VisitMemberExpr(MemberExpr *M) {
Douglas Gregor89629a72010-11-17 17:15:08 +00001844 WL.push_back(MemberExprParts(M, Parent));
1845
1846 // If the base of the member access expression is an implicit 'this', don't
1847 // visit it.
1848 // FIXME: If we ever want to show these implicit accesses, this will be
1849 // unfortunate. However, clang_getCursor() relies on this behavior.
1850 if (CXXThisExpr *This
1851 = llvm::dyn_cast<CXXThisExpr>(M->getBase()->IgnoreParenImpCasts()))
1852 if (This->isImplicit())
1853 return;
1854
Ted Kremenek28a71942010-11-13 00:36:47 +00001855 AddStmt(M->getBase());
1856}
Ted Kremenek73d15c42010-11-13 01:09:29 +00001857void EnqueueVisitor::VisitObjCEncodeExpr(ObjCEncodeExpr *E) {
1858 AddTypeLoc(E->getEncodedTypeSourceInfo());
1859}
Ted Kremenek28a71942010-11-13 00:36:47 +00001860void EnqueueVisitor::VisitObjCMessageExpr(ObjCMessageExpr *M) {
1861 EnqueueChildren(M);
1862 AddTypeLoc(M->getClassReceiverTypeInfo());
1863}
Ted Kremenekcdba6592010-11-18 00:42:18 +00001864void EnqueueVisitor::VisitOffsetOfExpr(OffsetOfExpr *E) {
1865 // Visit the components of the offsetof expression.
1866 for (unsigned N = E->getNumComponents(), I = N; I > 0; --I) {
1867 typedef OffsetOfExpr::OffsetOfNode OffsetOfNode;
1868 const OffsetOfNode &Node = E->getComponent(I-1);
1869 switch (Node.getKind()) {
1870 case OffsetOfNode::Array:
1871 AddStmt(E->getIndexExpr(Node.getArrayExprIndex()));
1872 break;
1873 case OffsetOfNode::Field:
1874 AddMemberRef(Node.getField(), Node.getRange().getEnd());
1875 break;
1876 case OffsetOfNode::Identifier:
1877 case OffsetOfNode::Base:
1878 continue;
1879 }
1880 }
1881 // Visit the type into which we're computing the offset.
1882 AddTypeLoc(E->getTypeSourceInfo());
1883}
Ted Kremenek28a71942010-11-13 00:36:47 +00001884void EnqueueVisitor::VisitOverloadExpr(OverloadExpr *E) {
Ted Kremenek60608ec2010-11-17 00:50:47 +00001885 AddExplicitTemplateArgs(E->getOptionalExplicitTemplateArgs());
Ted Kremenek60458782010-11-12 21:34:16 +00001886 WL.push_back(OverloadExprParts(E, Parent));
1887}
Ted Kremenek6d0a00d2010-11-17 02:18:35 +00001888void EnqueueVisitor::VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E) {
1889 EnqueueChildren(E);
1890 if (E->isArgumentType())
1891 AddTypeLoc(E->getArgumentTypeInfo());
1892}
Ted Kremenek28a71942010-11-13 00:36:47 +00001893void EnqueueVisitor::VisitStmt(Stmt *S) {
1894 EnqueueChildren(S);
1895}
1896void EnqueueVisitor::VisitSwitchStmt(SwitchStmt *S) {
1897 AddStmt(S->getBody());
1898 AddStmt(S->getCond());
1899 AddDecl(S->getConditionVariable());
1900}
Ted Kremenekfafa75a2010-11-17 00:50:39 +00001901
Ted Kremenek28a71942010-11-13 00:36:47 +00001902void EnqueueVisitor::VisitWhileStmt(WhileStmt *W) {
1903 AddStmt(W->getBody());
1904 AddStmt(W->getCond());
1905 AddDecl(W->getConditionVariable());
1906}
Ted Kremenek2939b6f2010-11-17 00:50:50 +00001907void EnqueueVisitor::VisitUnaryTypeTraitExpr(UnaryTypeTraitExpr *E) {
1908 AddTypeLoc(E->getQueriedTypeSourceInfo());
1909}
Francois Pichet6ad6f282010-12-07 00:08:36 +00001910
1911void EnqueueVisitor::VisitBinaryTypeTraitExpr(BinaryTypeTraitExpr *E) {
Francois Pichet6ad6f282010-12-07 00:08:36 +00001912 AddTypeLoc(E->getRhsTypeSourceInfo());
Francois Pichet0a03a3f2010-12-08 09:11:05 +00001913 AddTypeLoc(E->getLhsTypeSourceInfo());
Francois Pichet6ad6f282010-12-07 00:08:36 +00001914}
1915
Ted Kremenek28a71942010-11-13 00:36:47 +00001916void EnqueueVisitor::VisitUnresolvedMemberExpr(UnresolvedMemberExpr *U) {
1917 VisitOverloadExpr(U);
1918 if (!U->isImplicitAccess())
1919 AddStmt(U->getBase());
1920}
Ted Kremenek9d3bf792010-11-17 00:50:43 +00001921void EnqueueVisitor::VisitVAArgExpr(VAArgExpr *E) {
1922 AddStmt(E->getSubExpr());
1923 AddTypeLoc(E->getWrittenTypeInfo());
1924}
Ted Kremenek60458782010-11-12 21:34:16 +00001925
Ted Kremenekc0e1d922010-11-11 08:05:18 +00001926void CursorVisitor::EnqueueWorkList(VisitorWorkList &WL, Stmt *S) {
Ted Kremenek28a71942010-11-13 00:36:47 +00001927 EnqueueVisitor(WL, MakeCXCursor(S, StmtParent, TU)).Visit(S);
Ted Kremenekc0e1d922010-11-11 08:05:18 +00001928}
1929
1930bool CursorVisitor::IsInRegionOfInterest(CXCursor C) {
1931 if (RegionOfInterest.isValid()) {
1932 SourceRange Range = getRawCursorExtent(C);
1933 if (Range.isInvalid() || CompareRegionOfInterest(Range))
1934 return false;
1935 }
1936 return true;
1937}
1938
1939bool CursorVisitor::RunVisitorWorkList(VisitorWorkList &WL) {
1940 while (!WL.empty()) {
1941 // Dequeue the worklist item.
Ted Kremenek82f3c502010-11-15 22:23:26 +00001942 VisitorJob LI = WL.back();
1943 WL.pop_back();
1944
Ted Kremenekc0e1d922010-11-11 08:05:18 +00001945 // Set the Parent field, then back to its old value once we're done.
1946 SetParentRAII SetParent(Parent, StmtParent, LI.getParent());
1947
1948 switch (LI.getKind()) {
Ted Kremenekf1107452010-11-12 18:26:56 +00001949 case VisitorJob::DeclVisitKind: {
Ted Kremenek82f3c502010-11-15 22:23:26 +00001950 Decl *D = cast<DeclVisit>(&LI)->get();
Ted Kremenekf1107452010-11-12 18:26:56 +00001951 if (!D)
1952 continue;
1953
1954 // For now, perform default visitation for Decls.
Ted Kremenek82f3c502010-11-15 22:23:26 +00001955 if (Visit(MakeCXCursor(D, TU, cast<DeclVisit>(&LI)->isFirst())))
Ted Kremenekf1107452010-11-12 18:26:56 +00001956 return true;
1957
1958 continue;
1959 }
Ted Kremenek60608ec2010-11-17 00:50:47 +00001960 case VisitorJob::ExplicitTemplateArgsVisitKind: {
1961 const ExplicitTemplateArgumentList *ArgList =
1962 cast<ExplicitTemplateArgsVisit>(&LI)->get();
1963 for (const TemplateArgumentLoc *Arg = ArgList->getTemplateArgs(),
1964 *ArgEnd = Arg + ArgList->NumTemplateArgs;
1965 Arg != ArgEnd; ++Arg) {
1966 if (VisitTemplateArgumentLoc(*Arg))
1967 return true;
1968 }
1969 continue;
1970 }
Ted Kremenekcdb4caf2010-11-12 21:34:12 +00001971 case VisitorJob::TypeLocVisitKind: {
1972 // Perform default visitation for TypeLocs.
Ted Kremenek82f3c502010-11-15 22:23:26 +00001973 if (Visit(cast<TypeLocVisit>(&LI)->get()))
Ted Kremenekcdb4caf2010-11-12 21:34:12 +00001974 return true;
1975 continue;
1976 }
Ted Kremenekae1fd6f2010-11-17 00:50:45 +00001977 case VisitorJob::LabelRefVisitKind: {
1978 LabelStmt *LS = cast<LabelRefVisit>(&LI)->get();
1979 if (Visit(MakeCursorLabelRef(LS,
1980 cast<LabelRefVisit>(&LI)->getLoc(),
1981 TU)))
1982 return true;
1983 continue;
1984 }
Ted Kremenekf64d8032010-11-18 00:02:32 +00001985 case VisitorJob::NestedNameSpecifierVisitKind: {
1986 NestedNameSpecifierVisit *V = cast<NestedNameSpecifierVisit>(&LI);
1987 if (VisitNestedNameSpecifier(V->get(), V->getSourceRange()))
1988 return true;
1989 continue;
1990 }
1991 case VisitorJob::DeclarationNameInfoVisitKind: {
1992 if (VisitDeclarationNameInfo(cast<DeclarationNameInfoVisit>(&LI)
1993 ->get()))
1994 return true;
1995 continue;
1996 }
Ted Kremenekcdba6592010-11-18 00:42:18 +00001997 case VisitorJob::MemberRefVisitKind: {
1998 MemberRefVisit *V = cast<MemberRefVisit>(&LI);
1999 if (Visit(MakeCursorMemberRef(V->get(), V->getLoc(), TU)))
2000 return true;
2001 continue;
2002 }
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002003 case VisitorJob::StmtVisitKind: {
Ted Kremenek82f3c502010-11-15 22:23:26 +00002004 Stmt *S = cast<StmtVisit>(&LI)->get();
Ted Kremenek8c269ac2010-11-11 23:11:43 +00002005 if (!S)
2006 continue;
2007
Ted Kremenekf1107452010-11-12 18:26:56 +00002008 // Update the current cursor.
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002009 CXCursor Cursor = MakeCXCursor(S, StmtParent, TU);
Ted Kremenekcdba6592010-11-18 00:42:18 +00002010 if (!IsInRegionOfInterest(Cursor))
2011 continue;
2012 switch (Visitor(Cursor, Parent, ClientData)) {
2013 case CXChildVisit_Break: return true;
2014 case CXChildVisit_Continue: break;
2015 case CXChildVisit_Recurse:
2016 EnqueueWorkList(WL, S);
Ted Kremenek82f3c502010-11-15 22:23:26 +00002017 break;
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002018 }
Ted Kremenek82f3c502010-11-15 22:23:26 +00002019 continue;
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002020 }
2021 case VisitorJob::MemberExprPartsKind: {
2022 // Handle the other pieces in the MemberExpr besides the base.
Ted Kremenek82f3c502010-11-15 22:23:26 +00002023 MemberExpr *M = cast<MemberExprParts>(&LI)->get();
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002024
2025 // Visit the nested-name-specifier
2026 if (NestedNameSpecifier *Qualifier = M->getQualifier())
2027 if (VisitNestedNameSpecifier(Qualifier, M->getQualifierRange()))
2028 return true;
2029
2030 // Visit the declaration name.
2031 if (VisitDeclarationNameInfo(M->getMemberNameInfo()))
2032 return true;
2033
2034 // Visit the explicitly-specified template arguments, if any.
2035 if (M->hasExplicitTemplateArgs()) {
2036 for (const TemplateArgumentLoc *Arg = M->getTemplateArgs(),
2037 *ArgEnd = Arg + M->getNumTemplateArgs();
2038 Arg != ArgEnd; ++Arg) {
2039 if (VisitTemplateArgumentLoc(*Arg))
2040 return true;
2041 }
2042 }
2043 continue;
2044 }
Ted Kremeneke4979cc2010-11-13 00:58:18 +00002045 case VisitorJob::DeclRefExprPartsKind: {
Ted Kremenek82f3c502010-11-15 22:23:26 +00002046 DeclRefExpr *DR = cast<DeclRefExprParts>(&LI)->get();
Ted Kremeneke4979cc2010-11-13 00:58:18 +00002047 // Visit nested-name-specifier, if present.
2048 if (NestedNameSpecifier *Qualifier = DR->getQualifier())
2049 if (VisitNestedNameSpecifier(Qualifier, DR->getQualifierRange()))
2050 return true;
2051 // Visit declaration name.
2052 if (VisitDeclarationNameInfo(DR->getNameInfo()))
2053 return true;
Ted Kremeneke4979cc2010-11-13 00:58:18 +00002054 continue;
2055 }
Ted Kremenek60458782010-11-12 21:34:16 +00002056 case VisitorJob::OverloadExprPartsKind: {
Ted Kremenek82f3c502010-11-15 22:23:26 +00002057 OverloadExpr *O = cast<OverloadExprParts>(&LI)->get();
Ted Kremenek60458782010-11-12 21:34:16 +00002058 // Visit the nested-name-specifier.
2059 if (NestedNameSpecifier *Qualifier = O->getQualifier())
2060 if (VisitNestedNameSpecifier(Qualifier, O->getQualifierRange()))
2061 return true;
2062 // Visit the declaration name.
2063 if (VisitDeclarationNameInfo(O->getNameInfo()))
2064 return true;
2065 // Visit the overloaded declaration reference.
2066 if (Visit(MakeCursorOverloadedDeclRef(O, TU)))
2067 return true;
Ted Kremenek60458782010-11-12 21:34:16 +00002068 continue;
2069 }
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002070 }
2071 }
2072 return false;
2073}
2074
Ted Kremenekcdba6592010-11-18 00:42:18 +00002075bool CursorVisitor::Visit(Stmt *S) {
Ted Kremenekd1ded662010-11-15 23:31:32 +00002076 VisitorWorkList *WL = 0;
2077 if (!WorkListFreeList.empty()) {
2078 WL = WorkListFreeList.back();
2079 WL->clear();
2080 WorkListFreeList.pop_back();
2081 }
2082 else {
2083 WL = new VisitorWorkList();
2084 WorkListCache.push_back(WL);
2085 }
2086 EnqueueWorkList(*WL, S);
2087 bool result = RunVisitorWorkList(*WL);
2088 WorkListFreeList.push_back(WL);
2089 return result;
Ted Kremenekc0e1d922010-11-11 08:05:18 +00002090}
2091
2092//===----------------------------------------------------------------------===//
2093// Misc. API hooks.
2094//===----------------------------------------------------------------------===//
2095
Douglas Gregor8c8d5412010-09-24 21:18:36 +00002096static llvm::sys::Mutex EnableMultithreadingMutex;
2097static bool EnabledMultithreading;
2098
Benjamin Kramer5e4bc592009-10-18 16:11:04 +00002099extern "C" {
Douglas Gregor0a812cf2010-02-18 23:07:20 +00002100CXIndex clang_createIndex(int excludeDeclarationsFromPCH,
2101 int displayDiagnostics) {
Daniel Dunbar48615ff2010-10-08 19:30:33 +00002102 // Disable pretty stack trace functionality, which will otherwise be a very
2103 // poor citizen of the world and set up all sorts of signal handlers.
2104 llvm::DisablePrettyStackTrace = true;
2105
Daniel Dunbarc7df4f32010-08-18 18:43:14 +00002106 // We use crash recovery to make some of our APIs more reliable, implicitly
2107 // enable it.
2108 llvm::CrashRecoveryContext::Enable();
2109
Douglas Gregor8c8d5412010-09-24 21:18:36 +00002110 // Enable support for multithreading in LLVM.
2111 {
2112 llvm::sys::ScopedLock L(EnableMultithreadingMutex);
2113 if (!EnabledMultithreading) {
2114 llvm::llvm_start_multithreaded();
2115 EnabledMultithreading = true;
2116 }
2117 }
2118
Douglas Gregora030b7c2010-01-22 20:35:53 +00002119 CIndexer *CIdxr = new CIndexer();
Steve Naroffe56b4ba2009-10-20 14:46:24 +00002120 if (excludeDeclarationsFromPCH)
2121 CIdxr->setOnlyLocalDecls();
Douglas Gregor0a812cf2010-02-18 23:07:20 +00002122 if (displayDiagnostics)
2123 CIdxr->setDisplayDiagnostics();
Steve Naroffe56b4ba2009-10-20 14:46:24 +00002124 return CIdxr;
Steve Naroff600866c2009-08-27 19:51:58 +00002125}
2126
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00002127void clang_disposeIndex(CXIndex CIdx) {
Douglas Gregor2b37c9e2010-01-29 00:47:48 +00002128 if (CIdx)
2129 delete static_cast<CIndexer *>(CIdx);
Steve Naroff2bd6b9f2009-09-17 18:33:27 +00002130}
2131
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00002132CXTranslationUnit clang_createTranslationUnit(CXIndex CIdx,
Douglas Gregora88084b2010-02-18 18:08:43 +00002133 const char *ast_filename) {
Douglas Gregor2b37c9e2010-01-29 00:47:48 +00002134 if (!CIdx)
2135 return 0;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002136
Douglas Gregor7d1d49d2009-10-16 20:01:17 +00002137 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +00002138 FileSystemOptions FileSystemOpts;
2139 FileSystemOpts.WorkingDir = CXXIdx->getWorkingDirectory();
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00002140
Douglas Gregor28019772010-04-05 23:52:57 +00002141 llvm::IntrusiveRefCntPtr<Diagnostic> Diags;
Ted Kremeneka60ed472010-11-16 08:15:36 +00002142 ASTUnit *TU = ASTUnit::LoadFromASTFile(ast_filename, Diags, FileSystemOpts,
Douglas Gregora88084b2010-02-18 18:08:43 +00002143 CXXIdx->getOnlyLocalDecls(),
2144 0, 0, true);
Ted Kremeneka60ed472010-11-16 08:15:36 +00002145 return MakeCXTranslationUnit(TU);
Steve Naroff600866c2009-08-27 19:51:58 +00002146}
2147
Douglas Gregorb1c031b2010-08-09 22:28:58 +00002148unsigned clang_defaultEditingTranslationUnitOptions() {
Douglas Gregor2a2c50b2010-09-27 05:49:58 +00002149 return CXTranslationUnit_PrecompiledPreamble |
Douglas Gregor99ba2022010-10-27 17:24:53 +00002150 CXTranslationUnit_CacheCompletionResults |
2151 CXTranslationUnit_CXXPrecompiledPreamble;
Douglas Gregorb1c031b2010-08-09 22:28:58 +00002152}
2153
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00002154CXTranslationUnit
2155clang_createTranslationUnitFromSourceFile(CXIndex CIdx,
2156 const char *source_filename,
2157 int num_command_line_args,
Douglas Gregor2ef69442010-09-01 16:43:19 +00002158 const char * const *command_line_args,
Douglas Gregor4db64a42010-01-23 00:14:00 +00002159 unsigned num_unsaved_files,
Douglas Gregora88084b2010-02-18 18:08:43 +00002160 struct CXUnsavedFile *unsaved_files) {
Douglas Gregor5a430212010-07-21 18:52:53 +00002161 return clang_parseTranslationUnit(CIdx, source_filename,
2162 command_line_args, num_command_line_args,
2163 unsaved_files, num_unsaved_files,
2164 CXTranslationUnit_DetailedPreprocessingRecord);
2165}
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002166
2167struct ParseTranslationUnitInfo {
2168 CXIndex CIdx;
2169 const char *source_filename;
Douglas Gregor2ef69442010-09-01 16:43:19 +00002170 const char *const *command_line_args;
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002171 int num_command_line_args;
2172 struct CXUnsavedFile *unsaved_files;
2173 unsigned num_unsaved_files;
2174 unsigned options;
2175 CXTranslationUnit result;
2176};
Daniel Dunbarb1fd3452010-08-19 23:44:10 +00002177static void clang_parseTranslationUnit_Impl(void *UserData) {
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002178 ParseTranslationUnitInfo *PTUI =
2179 static_cast<ParseTranslationUnitInfo*>(UserData);
2180 CXIndex CIdx = PTUI->CIdx;
2181 const char *source_filename = PTUI->source_filename;
Douglas Gregor2ef69442010-09-01 16:43:19 +00002182 const char * const *command_line_args = PTUI->command_line_args;
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002183 int num_command_line_args = PTUI->num_command_line_args;
2184 struct CXUnsavedFile *unsaved_files = PTUI->unsaved_files;
2185 unsigned num_unsaved_files = PTUI->num_unsaved_files;
2186 unsigned options = PTUI->options;
2187 PTUI->result = 0;
Douglas Gregor5a430212010-07-21 18:52:53 +00002188
Douglas Gregor2b37c9e2010-01-29 00:47:48 +00002189 if (!CIdx)
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002190 return;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002191
Steve Naroffe56b4ba2009-10-20 14:46:24 +00002192 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
2193
Douglas Gregor44c181a2010-07-23 00:33:23 +00002194 bool PrecompilePreamble = options & CXTranslationUnit_PrecompiledPreamble;
Douglas Gregordf95a132010-08-09 20:45:32 +00002195 bool CompleteTranslationUnit
2196 = ((options & CXTranslationUnit_Incomplete) == 0);
Douglas Gregor87c08a52010-08-13 22:48:40 +00002197 bool CacheCodeCompetionResults
2198 = options & CXTranslationUnit_CacheCompletionResults;
Douglas Gregor99ba2022010-10-27 17:24:53 +00002199 bool CXXPrecompilePreamble
2200 = options & CXTranslationUnit_CXXPrecompiledPreamble;
2201 bool CXXChainedPCH
2202 = options & CXTranslationUnit_CXXChainedPCH;
Douglas Gregor87c08a52010-08-13 22:48:40 +00002203
Douglas Gregor5352ac02010-01-28 00:27:43 +00002204 // Configure the diagnostics.
2205 DiagnosticOptions DiagOpts;
Douglas Gregor28019772010-04-05 23:52:57 +00002206 llvm::IntrusiveRefCntPtr<Diagnostic> Diags;
2207 Diags = CompilerInstance::createDiagnostics(DiagOpts, 0, 0);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002208
Douglas Gregor4db64a42010-01-23 00:14:00 +00002209 llvm::SmallVector<ASTUnit::RemappedFile, 4> RemappedFiles;
2210 for (unsigned I = 0; I != num_unsaved_files; ++I) {
Chris Lattnera0a270c2010-04-05 22:42:27 +00002211 llvm::StringRef Data(unsaved_files[I].Contents, unsaved_files[I].Length);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002212 const llvm::MemoryBuffer *Buffer
Chris Lattnera0a270c2010-04-05 22:42:27 +00002213 = llvm::MemoryBuffer::getMemBufferCopy(Data, unsaved_files[I].Filename);
Douglas Gregor4db64a42010-01-23 00:14:00 +00002214 RemappedFiles.push_back(std::make_pair(unsaved_files[I].Filename,
2215 Buffer));
2216 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002217
Douglas Gregorb10daed2010-10-11 16:52:23 +00002218 llvm::SmallVector<const char *, 16> Args;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00002219
Ted Kremenek139ba862009-10-22 00:03:57 +00002220 // The 'source_filename' argument is optional. If the caller does not
2221 // specify it then it is assumed that the source file is specified
2222 // in the actual argument list.
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00002223 if (source_filename)
Douglas Gregorb10daed2010-10-11 16:52:23 +00002224 Args.push_back(source_filename);
Douglas Gregor52ddc5d2010-07-09 18:39:07 +00002225
2226 // Since the Clang C library is primarily used by batch tools dealing with
2227 // (often very broken) source code, where spell-checking can have a
2228 // significant negative impact on performance (particularly when
2229 // precompiled headers are involved), we disable it by default.
Douglas Gregorb10daed2010-10-11 16:52:23 +00002230 // Only do this if we haven't found a spell-checking-related argument.
2231 bool FoundSpellCheckingArgument = false;
2232 for (int I = 0; I != num_command_line_args; ++I) {
2233 if (strcmp(command_line_args[I], "-fno-spell-checking") == 0 ||
2234 strcmp(command_line_args[I], "-fspell-checking") == 0) {
2235 FoundSpellCheckingArgument = true;
2236 break;
Steve Naroffe56b4ba2009-10-20 14:46:24 +00002237 }
Douglas Gregorb10daed2010-10-11 16:52:23 +00002238 }
2239 if (!FoundSpellCheckingArgument)
2240 Args.push_back("-fno-spell-checking");
2241
2242 Args.insert(Args.end(), command_line_args,
2243 command_line_args + num_command_line_args);
Douglas Gregord93256e2010-01-28 06:00:51 +00002244
Douglas Gregor44c181a2010-07-23 00:33:23 +00002245 // Do we need the detailed preprocessing record?
2246 if (options & CXTranslationUnit_DetailedPreprocessingRecord) {
Douglas Gregorb10daed2010-10-11 16:52:23 +00002247 Args.push_back("-Xclang");
2248 Args.push_back("-detailed-preprocessing-record");
Douglas Gregor44c181a2010-07-23 00:33:23 +00002249 }
2250
Argyrios Kyrtzidis026f6912010-11-18 21:47:04 +00002251 unsigned NumErrors = Diags->getClient()->getNumErrors();
Douglas Gregorb10daed2010-10-11 16:52:23 +00002252 llvm::OwningPtr<ASTUnit> Unit(
2253 ASTUnit::LoadFromCommandLine(Args.data(), Args.data() + Args.size(),
2254 Diags,
2255 CXXIdx->getClangResourcesPath(),
2256 CXXIdx->getOnlyLocalDecls(),
Douglas Gregore47be3e2010-11-11 00:39:14 +00002257 /*CaptureDiagnostics=*/true,
Douglas Gregorb10daed2010-10-11 16:52:23 +00002258 RemappedFiles.data(),
2259 RemappedFiles.size(),
Douglas Gregorb10daed2010-10-11 16:52:23 +00002260 PrecompilePreamble,
2261 CompleteTranslationUnit,
Douglas Gregor99ba2022010-10-27 17:24:53 +00002262 CacheCodeCompetionResults,
2263 CXXPrecompilePreamble,
2264 CXXChainedPCH));
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002265
Argyrios Kyrtzidis026f6912010-11-18 21:47:04 +00002266 if (NumErrors != Diags->getClient()->getNumErrors()) {
Douglas Gregorb10daed2010-10-11 16:52:23 +00002267 // Make sure to check that 'Unit' is non-NULL.
2268 if (CXXIdx->getDisplayDiagnostics() && Unit.get()) {
2269 for (ASTUnit::stored_diag_iterator D = Unit->stored_diag_begin(),
2270 DEnd = Unit->stored_diag_end();
2271 D != DEnd; ++D) {
2272 CXStoredDiagnostic Diag(*D, Unit->getASTContext().getLangOptions());
2273 CXString Msg = clang_formatDiagnostic(&Diag,
2274 clang_defaultDiagnosticDisplayOptions());
2275 fprintf(stderr, "%s\n", clang_getCString(Msg));
2276 clang_disposeString(Msg);
2277 }
Douglas Gregor274f1902010-02-22 23:17:23 +00002278#ifdef LLVM_ON_WIN32
Douglas Gregorb10daed2010-10-11 16:52:23 +00002279 // On Windows, force a flush, since there may be multiple copies of
2280 // stderr and stdout in the file system, all with different buffers
2281 // but writing to the same device.
2282 fflush(stderr);
2283#endif
2284 }
Douglas Gregora88084b2010-02-18 18:08:43 +00002285 }
Douglas Gregord93256e2010-01-28 06:00:51 +00002286
Ted Kremeneka60ed472010-11-16 08:15:36 +00002287 PTUI->result = MakeCXTranslationUnit(Unit.take());
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002288}
2289CXTranslationUnit clang_parseTranslationUnit(CXIndex CIdx,
2290 const char *source_filename,
Douglas Gregor2ef69442010-09-01 16:43:19 +00002291 const char * const *command_line_args,
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002292 int num_command_line_args,
Daniel Dunbar9e1ebdd2010-11-05 07:19:21 +00002293 struct CXUnsavedFile *unsaved_files,
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002294 unsigned num_unsaved_files,
2295 unsigned options) {
2296 ParseTranslationUnitInfo PTUI = { CIdx, source_filename, command_line_args,
Daniel Dunbar9e1ebdd2010-11-05 07:19:21 +00002297 num_command_line_args, unsaved_files,
2298 num_unsaved_files, options, 0 };
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002299 llvm::CrashRecoveryContext CRC;
2300
Daniel Dunbarbf44c3b2010-11-05 07:19:31 +00002301 if (!RunSafely(CRC, clang_parseTranslationUnit_Impl, &PTUI)) {
Daniel Dunbar60a45432010-08-23 22:35:34 +00002302 fprintf(stderr, "libclang: crash detected during parsing: {\n");
2303 fprintf(stderr, " 'source_filename' : '%s'\n", source_filename);
2304 fprintf(stderr, " 'command_line_args' : [");
2305 for (int i = 0; i != num_command_line_args; ++i) {
2306 if (i)
2307 fprintf(stderr, ", ");
2308 fprintf(stderr, "'%s'", command_line_args[i]);
2309 }
2310 fprintf(stderr, "],\n");
2311 fprintf(stderr, " 'unsaved_files' : [");
2312 for (unsigned i = 0; i != num_unsaved_files; ++i) {
2313 if (i)
2314 fprintf(stderr, ", ");
2315 fprintf(stderr, "('%s', '...', %ld)", unsaved_files[i].Filename,
2316 unsaved_files[i].Length);
2317 }
2318 fprintf(stderr, "],\n");
2319 fprintf(stderr, " 'options' : %d,\n", options);
2320 fprintf(stderr, "}\n");
2321
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002322 return 0;
2323 }
2324
2325 return PTUI.result;
Steve Naroff5b7d8e22009-10-15 20:04:39 +00002326}
2327
Douglas Gregor19998442010-08-13 15:35:05 +00002328unsigned clang_defaultSaveOptions(CXTranslationUnit TU) {
2329 return CXSaveTranslationUnit_None;
2330}
2331
2332int clang_saveTranslationUnit(CXTranslationUnit TU, const char *FileName,
2333 unsigned options) {
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002334 if (!TU)
2335 return 1;
2336
Ted Kremeneka60ed472010-11-16 08:15:36 +00002337 return static_cast<ASTUnit *>(TU->TUData)->Save(FileName);
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002338}
Daniel Dunbar19ffd492010-08-18 18:43:17 +00002339
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00002340void clang_disposeTranslationUnit(CXTranslationUnit CTUnit) {
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002341 if (CTUnit) {
2342 // If the translation unit has been marked as unsafe to free, just discard
2343 // it.
Ted Kremeneka60ed472010-11-16 08:15:36 +00002344 if (static_cast<ASTUnit *>(CTUnit->TUData)->isUnsafeToFree())
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002345 return;
2346
Ted Kremeneka60ed472010-11-16 08:15:36 +00002347 delete static_cast<ASTUnit *>(CTUnit->TUData);
2348 disposeCXStringPool(CTUnit->StringPool);
2349 delete CTUnit;
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002350 }
Steve Naroff2bd6b9f2009-09-17 18:33:27 +00002351}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00002352
Douglas Gregore1e13bf2010-08-11 15:58:42 +00002353unsigned clang_defaultReparseOptions(CXTranslationUnit TU) {
2354 return CXReparse_None;
2355}
2356
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002357struct ReparseTranslationUnitInfo {
2358 CXTranslationUnit TU;
2359 unsigned num_unsaved_files;
2360 struct CXUnsavedFile *unsaved_files;
2361 unsigned options;
2362 int result;
2363};
Douglas Gregor593b0c12010-09-23 18:47:53 +00002364
Daniel Dunbarb1fd3452010-08-19 23:44:10 +00002365static void clang_reparseTranslationUnit_Impl(void *UserData) {
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002366 ReparseTranslationUnitInfo *RTUI =
2367 static_cast<ReparseTranslationUnitInfo*>(UserData);
2368 CXTranslationUnit TU = RTUI->TU;
2369 unsigned num_unsaved_files = RTUI->num_unsaved_files;
2370 struct CXUnsavedFile *unsaved_files = RTUI->unsaved_files;
2371 unsigned options = RTUI->options;
2372 (void) options;
2373 RTUI->result = 1;
2374
Douglas Gregorabc563f2010-07-19 21:46:24 +00002375 if (!TU)
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002376 return;
Douglas Gregor593b0c12010-09-23 18:47:53 +00002377
Ted Kremeneka60ed472010-11-16 08:15:36 +00002378 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
Douglas Gregor593b0c12010-09-23 18:47:53 +00002379 ASTUnit::ConcurrencyCheck Check(*CXXUnit);
Douglas Gregorabc563f2010-07-19 21:46:24 +00002380
2381 llvm::SmallVector<ASTUnit::RemappedFile, 4> RemappedFiles;
2382 for (unsigned I = 0; I != num_unsaved_files; ++I) {
2383 llvm::StringRef Data(unsaved_files[I].Contents, unsaved_files[I].Length);
2384 const llvm::MemoryBuffer *Buffer
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002385 = llvm::MemoryBuffer::getMemBufferCopy(Data, unsaved_files[I].Filename);
Douglas Gregorabc563f2010-07-19 21:46:24 +00002386 RemappedFiles.push_back(std::make_pair(unsaved_files[I].Filename,
2387 Buffer));
2388 }
2389
Douglas Gregor593b0c12010-09-23 18:47:53 +00002390 if (!CXXUnit->Reparse(RemappedFiles.data(), RemappedFiles.size()))
2391 RTUI->result = 0;
Douglas Gregorabc563f2010-07-19 21:46:24 +00002392}
Douglas Gregor593b0c12010-09-23 18:47:53 +00002393
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002394int clang_reparseTranslationUnit(CXTranslationUnit TU,
2395 unsigned num_unsaved_files,
2396 struct CXUnsavedFile *unsaved_files,
2397 unsigned options) {
2398 ReparseTranslationUnitInfo RTUI = { TU, num_unsaved_files, unsaved_files,
2399 options, 0 };
2400 llvm::CrashRecoveryContext CRC;
2401
Daniel Dunbarbf44c3b2010-11-05 07:19:31 +00002402 if (!RunSafely(CRC, clang_reparseTranslationUnit_Impl, &RTUI)) {
Daniel Dunbarb1fd3452010-08-19 23:44:10 +00002403 fprintf(stderr, "libclang: crash detected during reparsing\n");
Ted Kremeneka60ed472010-11-16 08:15:36 +00002404 static_cast<ASTUnit *>(TU->TUData)->setUnsafeToFree(true);
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002405 return 1;
2406 }
2407
Ted Kremenek1dfb26a2010-10-29 01:06:50 +00002408
Daniel Dunbarea94bbc2010-08-18 23:09:31 +00002409 return RTUI.result;
2410}
2411
Douglas Gregordf95a132010-08-09 20:45:32 +00002412
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00002413CXString clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit) {
Douglas Gregor2b37c9e2010-01-29 00:47:48 +00002414 if (!CTUnit)
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002415 return createCXString("");
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002416
Ted Kremeneka60ed472010-11-16 08:15:36 +00002417 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit->TUData);
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002418 return createCXString(CXXUnit->getOriginalSourceFileName(), true);
Steve Naroffaf08ddc2009-09-03 15:49:00 +00002419}
Daniel Dunbar1eb79b52009-08-28 16:30:07 +00002420
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00002421CXCursor clang_getTranslationUnitCursor(CXTranslationUnit TU) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00002422 CXCursor Result = { CXCursor_TranslationUnit, { 0, 0, TU } };
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00002423 return Result;
2424}
2425
Ted Kremenekfb480492010-01-13 21:46:36 +00002426} // end: extern "C"
Steve Naroff600866c2009-08-27 19:51:58 +00002427
Ted Kremenekfb480492010-01-13 21:46:36 +00002428//===----------------------------------------------------------------------===//
Douglas Gregor1db19de2010-01-19 21:36:55 +00002429// CXSourceLocation and CXSourceRange Operations.
2430//===----------------------------------------------------------------------===//
2431
Douglas Gregorb9790342010-01-22 21:44:22 +00002432extern "C" {
2433CXSourceLocation clang_getNullLocation() {
Douglas Gregor5352ac02010-01-28 00:27:43 +00002434 CXSourceLocation Result = { { 0, 0 }, 0 };
Douglas Gregorb9790342010-01-22 21:44:22 +00002435 return Result;
2436}
2437
2438unsigned clang_equalLocations(CXSourceLocation loc1, CXSourceLocation loc2) {
Daniel Dunbar90a6b9e2010-01-30 23:58:27 +00002439 return (loc1.ptr_data[0] == loc2.ptr_data[0] &&
2440 loc1.ptr_data[1] == loc2.ptr_data[1] &&
2441 loc1.int_data == loc2.int_data);
Douglas Gregorb9790342010-01-22 21:44:22 +00002442}
2443
2444CXSourceLocation clang_getLocation(CXTranslationUnit tu,
2445 CXFile file,
2446 unsigned line,
2447 unsigned column) {
Douglas Gregor42748ec2010-04-30 19:45:53 +00002448 if (!tu || !file)
Douglas Gregorb9790342010-01-22 21:44:22 +00002449 return clang_getNullLocation();
Douglas Gregor42748ec2010-04-30 19:45:53 +00002450
Ted Kremeneka60ed472010-11-16 08:15:36 +00002451 ASTUnit *CXXUnit = static_cast<ASTUnit *>(tu->TUData);
Douglas Gregorb9790342010-01-22 21:44:22 +00002452 SourceLocation SLoc
2453 = CXXUnit->getSourceManager().getLocation(
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002454 static_cast<const FileEntry *>(file),
Douglas Gregorb9790342010-01-22 21:44:22 +00002455 line, column);
David Chisnall83889a72010-10-15 17:07:39 +00002456 if (SLoc.isInvalid()) return clang_getNullLocation();
2457
2458 return cxloc::translateSourceLocation(CXXUnit->getASTContext(), SLoc);
2459}
2460
2461CXSourceLocation clang_getLocationForOffset(CXTranslationUnit tu,
2462 CXFile file,
2463 unsigned offset) {
2464 if (!tu || !file)
2465 return clang_getNullLocation();
2466
Ted Kremeneka60ed472010-11-16 08:15:36 +00002467 ASTUnit *CXXUnit = static_cast<ASTUnit *>(tu->TUData);
David Chisnall83889a72010-10-15 17:07:39 +00002468 SourceLocation Start
2469 = CXXUnit->getSourceManager().getLocation(
2470 static_cast<const FileEntry *>(file),
2471 1, 1);
2472 if (Start.isInvalid()) return clang_getNullLocation();
2473
2474 SourceLocation SLoc = Start.getFileLocWithOffset(offset);
2475
2476 if (SLoc.isInvalid()) return clang_getNullLocation();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002477
Ted Kremenek1a9a0bc2010-06-28 23:54:17 +00002478 return cxloc::translateSourceLocation(CXXUnit->getASTContext(), SLoc);
Douglas Gregorb9790342010-01-22 21:44:22 +00002479}
2480
Douglas Gregor5352ac02010-01-28 00:27:43 +00002481CXSourceRange clang_getNullRange() {
2482 CXSourceRange Result = { { 0, 0 }, 0, 0 };
2483 return Result;
2484}
Daniel Dunbard52864b2010-02-14 10:02:57 +00002485
Douglas Gregor5352ac02010-01-28 00:27:43 +00002486CXSourceRange clang_getRange(CXSourceLocation begin, CXSourceLocation end) {
2487 if (begin.ptr_data[0] != end.ptr_data[0] ||
2488 begin.ptr_data[1] != end.ptr_data[1])
2489 return clang_getNullRange();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002490
2491 CXSourceRange Result = { { begin.ptr_data[0], begin.ptr_data[1] },
Douglas Gregor5352ac02010-01-28 00:27:43 +00002492 begin.int_data, end.int_data };
Douglas Gregorb9790342010-01-22 21:44:22 +00002493 return Result;
2494}
2495
Douglas Gregor46766dc2010-01-26 19:19:08 +00002496void clang_getInstantiationLocation(CXSourceLocation location,
2497 CXFile *file,
2498 unsigned *line,
2499 unsigned *column,
2500 unsigned *offset) {
Douglas Gregor1db19de2010-01-19 21:36:55 +00002501 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data);
2502
Daniel Dunbarbb4a61a2010-02-14 01:47:36 +00002503 if (!location.ptr_data[0] || Loc.isInvalid()) {
Douglas Gregor46766dc2010-01-26 19:19:08 +00002504 if (file)
2505 *file = 0;
2506 if (line)
2507 *line = 0;
2508 if (column)
2509 *column = 0;
2510 if (offset)
2511 *offset = 0;
2512 return;
2513 }
2514
Daniel Dunbarbb4a61a2010-02-14 01:47:36 +00002515 const SourceManager &SM =
2516 *static_cast<const SourceManager*>(location.ptr_data[0]);
Douglas Gregor1db19de2010-01-19 21:36:55 +00002517 SourceLocation InstLoc = SM.getInstantiationLoc(Loc);
Douglas Gregor1db19de2010-01-19 21:36:55 +00002518
2519 if (file)
2520 *file = (void *)SM.getFileEntryForID(SM.getFileID(InstLoc));
2521 if (line)
2522 *line = SM.getInstantiationLineNumber(InstLoc);
2523 if (column)
2524 *column = SM.getInstantiationColumnNumber(InstLoc);
Douglas Gregore69517c2010-01-26 03:07:15 +00002525 if (offset)
Douglas Gregor46766dc2010-01-26 19:19:08 +00002526 *offset = SM.getDecomposedLoc(InstLoc).second;
Douglas Gregore69517c2010-01-26 03:07:15 +00002527}
2528
Douglas Gregora9b06d42010-11-09 06:24:54 +00002529void clang_getSpellingLocation(CXSourceLocation location,
2530 CXFile *file,
2531 unsigned *line,
2532 unsigned *column,
2533 unsigned *offset) {
2534 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data);
2535
2536 if (!location.ptr_data[0] || Loc.isInvalid()) {
2537 if (file)
2538 *file = 0;
2539 if (line)
2540 *line = 0;
2541 if (column)
2542 *column = 0;
2543 if (offset)
2544 *offset = 0;
2545 return;
2546 }
2547
2548 const SourceManager &SM =
2549 *static_cast<const SourceManager*>(location.ptr_data[0]);
2550 SourceLocation SpellLoc = Loc;
2551 if (SpellLoc.isMacroID()) {
2552 SourceLocation SimpleSpellingLoc = SM.getImmediateSpellingLoc(SpellLoc);
2553 if (SimpleSpellingLoc.isFileID() &&
2554 SM.getFileEntryForID(SM.getDecomposedLoc(SimpleSpellingLoc).first))
2555 SpellLoc = SimpleSpellingLoc;
2556 else
2557 SpellLoc = SM.getInstantiationLoc(SpellLoc);
2558 }
2559
2560 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(SpellLoc);
2561 FileID FID = LocInfo.first;
2562 unsigned FileOffset = LocInfo.second;
2563
2564 if (file)
2565 *file = (void *)SM.getFileEntryForID(FID);
2566 if (line)
2567 *line = SM.getLineNumber(FID, FileOffset);
2568 if (column)
2569 *column = SM.getColumnNumber(FID, FileOffset);
2570 if (offset)
2571 *offset = FileOffset;
2572}
2573
Douglas Gregor1db19de2010-01-19 21:36:55 +00002574CXSourceLocation clang_getRangeStart(CXSourceRange range) {
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002575 CXSourceLocation Result = { { range.ptr_data[0], range.ptr_data[1] },
Douglas Gregor5352ac02010-01-28 00:27:43 +00002576 range.begin_int_data };
Douglas Gregor1db19de2010-01-19 21:36:55 +00002577 return Result;
2578}
2579
2580CXSourceLocation clang_getRangeEnd(CXSourceRange range) {
Daniel Dunbarbb4a61a2010-02-14 01:47:36 +00002581 CXSourceLocation Result = { { range.ptr_data[0], range.ptr_data[1] },
Douglas Gregor5352ac02010-01-28 00:27:43 +00002582 range.end_int_data };
Douglas Gregor1db19de2010-01-19 21:36:55 +00002583 return Result;
2584}
2585
Douglas Gregorb9790342010-01-22 21:44:22 +00002586} // end: extern "C"
2587
Douglas Gregor1db19de2010-01-19 21:36:55 +00002588//===----------------------------------------------------------------------===//
Ted Kremenekfb480492010-01-13 21:46:36 +00002589// CXFile Operations.
2590//===----------------------------------------------------------------------===//
2591
2592extern "C" {
Ted Kremenek74844072010-02-17 00:41:20 +00002593CXString clang_getFileName(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +00002594 if (!SFile)
Ted Kremeneka60ed472010-11-16 08:15:36 +00002595 return createCXString((const char*)NULL);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002596
Steve Naroff88145032009-10-27 14:35:18 +00002597 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
Ted Kremenek74844072010-02-17 00:41:20 +00002598 return createCXString(FEnt->getName());
Steve Naroff88145032009-10-27 14:35:18 +00002599}
2600
2601time_t clang_getFileTime(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +00002602 if (!SFile)
2603 return 0;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002604
Steve Naroff88145032009-10-27 14:35:18 +00002605 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
2606 return FEnt->getModificationTime();
Steve Naroffee9405e2009-09-25 21:45:39 +00002607}
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002608
Douglas Gregorb9790342010-01-22 21:44:22 +00002609CXFile clang_getFile(CXTranslationUnit tu, const char *file_name) {
2610 if (!tu)
2611 return 0;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002612
Ted Kremeneka60ed472010-11-16 08:15:36 +00002613 ASTUnit *CXXUnit = static_cast<ASTUnit *>(tu->TUData);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002614
Douglas Gregorb9790342010-01-22 21:44:22 +00002615 FileManager &FMgr = CXXUnit->getFileManager();
Chris Lattner39b49bc2010-11-23 08:35:12 +00002616 return const_cast<FileEntry *>(FMgr.getFile(file_name));
Douglas Gregorb9790342010-01-22 21:44:22 +00002617}
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002618
Ted Kremenekfb480492010-01-13 21:46:36 +00002619} // end: extern "C"
Steve Naroffee9405e2009-09-25 21:45:39 +00002620
Ted Kremenekfb480492010-01-13 21:46:36 +00002621//===----------------------------------------------------------------------===//
2622// CXCursor Operations.
2623//===----------------------------------------------------------------------===//
2624
Ted Kremenekfb480492010-01-13 21:46:36 +00002625static Decl *getDeclFromExpr(Stmt *E) {
Douglas Gregordb1314e2010-10-01 21:11:22 +00002626 if (CastExpr *CE = dyn_cast<CastExpr>(E))
2627 return getDeclFromExpr(CE->getSubExpr());
2628
Ted Kremenekfb480492010-01-13 21:46:36 +00002629 if (DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E))
2630 return RefExpr->getDecl();
Douglas Gregor38f28c12010-10-22 22:24:08 +00002631 if (BlockDeclRefExpr *RefExpr = dyn_cast<BlockDeclRefExpr>(E))
2632 return RefExpr->getDecl();
Ted Kremenekfb480492010-01-13 21:46:36 +00002633 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
2634 return ME->getMemberDecl();
2635 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E))
2636 return RE->getDecl();
Douglas Gregordb1314e2010-10-01 21:11:22 +00002637 if (ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(E))
John McCall12f78a62010-12-02 01:19:52 +00002638 return PRE->isExplicitProperty() ? PRE->getExplicitProperty() : 0;
Douglas Gregordb1314e2010-10-01 21:11:22 +00002639
Ted Kremenekfb480492010-01-13 21:46:36 +00002640 if (CallExpr *CE = dyn_cast<CallExpr>(E))
2641 return getDeclFromExpr(CE->getCallee());
Douglas Gregor93798e22010-11-05 21:11:19 +00002642 if (CXXConstructExpr *CE = llvm::dyn_cast<CXXConstructExpr>(E))
2643 if (!CE->isElidable())
2644 return CE->getConstructor();
Ted Kremenekfb480492010-01-13 21:46:36 +00002645 if (ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E))
2646 return OME->getMethodDecl();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002647
Douglas Gregordb1314e2010-10-01 21:11:22 +00002648 if (ObjCProtocolExpr *PE = dyn_cast<ObjCProtocolExpr>(E))
2649 return PE->getProtocol();
2650
Ted Kremenekfb480492010-01-13 21:46:36 +00002651 return 0;
2652}
2653
Daniel Dunbarc29f4c32010-02-02 05:00:22 +00002654static SourceLocation getLocationFromExpr(Expr *E) {
2655 if (ObjCMessageExpr *Msg = dyn_cast<ObjCMessageExpr>(E))
2656 return /*FIXME:*/Msg->getLeftLoc();
2657 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
2658 return DRE->getLocation();
Douglas Gregor38f28c12010-10-22 22:24:08 +00002659 if (BlockDeclRefExpr *RefExpr = dyn_cast<BlockDeclRefExpr>(E))
2660 return RefExpr->getLocation();
Daniel Dunbarc29f4c32010-02-02 05:00:22 +00002661 if (MemberExpr *Member = dyn_cast<MemberExpr>(E))
2662 return Member->getMemberLoc();
2663 if (ObjCIvarRefExpr *Ivar = dyn_cast<ObjCIvarRefExpr>(E))
2664 return Ivar->getLocation();
2665 return E->getLocStart();
2666}
2667
Ted Kremenekfb480492010-01-13 21:46:36 +00002668extern "C" {
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002669
2670unsigned clang_visitChildren(CXCursor parent,
Douglas Gregorb1373d02010-01-20 20:59:29 +00002671 CXCursorVisitor visitor,
2672 CXClientData client_data) {
Ted Kremeneka60ed472010-11-16 08:15:36 +00002673 CursorVisitor CursorVis(getCursorTU(parent), visitor, client_data,
2674 getCursorASTUnit(parent)->getMaxPCHLevel());
Douglas Gregorb1373d02010-01-20 20:59:29 +00002675 return CursorVis.VisitChildren(parent);
2676}
2677
David Chisnall3387c652010-11-03 14:12:26 +00002678#ifndef __has_feature
2679#define __has_feature(x) 0
2680#endif
2681#if __has_feature(blocks)
2682typedef enum CXChildVisitResult
2683 (^CXCursorVisitorBlock)(CXCursor cursor, CXCursor parent);
2684
2685static enum CXChildVisitResult visitWithBlock(CXCursor cursor, CXCursor parent,
2686 CXClientData client_data) {
2687 CXCursorVisitorBlock block = (CXCursorVisitorBlock)client_data;
2688 return block(cursor, parent);
2689}
2690#else
2691// If we are compiled with a compiler that doesn't have native blocks support,
2692// define and call the block manually, so the
2693typedef struct _CXChildVisitResult
2694{
2695 void *isa;
2696 int flags;
2697 int reserved;
Daniel Dunbar9e1ebdd2010-11-05 07:19:21 +00002698 enum CXChildVisitResult(*invoke)(struct _CXChildVisitResult*, CXCursor,
2699 CXCursor);
David Chisnall3387c652010-11-03 14:12:26 +00002700} *CXCursorVisitorBlock;
2701
2702static enum CXChildVisitResult visitWithBlock(CXCursor cursor, CXCursor parent,
2703 CXClientData client_data) {
2704 CXCursorVisitorBlock block = (CXCursorVisitorBlock)client_data;
2705 return block->invoke(block, cursor, parent);
2706}
2707#endif
2708
2709
Daniel Dunbar9e1ebdd2010-11-05 07:19:21 +00002710unsigned clang_visitChildrenWithBlock(CXCursor parent,
2711 CXCursorVisitorBlock block) {
David Chisnall3387c652010-11-03 14:12:26 +00002712 return clang_visitChildren(parent, visitWithBlock, block);
2713}
2714
Douglas Gregor78205d42010-01-20 21:45:58 +00002715static CXString getDeclSpelling(Decl *D) {
2716 NamedDecl *ND = dyn_cast_or_null<NamedDecl>(D);
Douglas Gregore3c60a72010-11-17 00:13:31 +00002717 if (!ND) {
2718 if (ObjCPropertyImplDecl *PropImpl =llvm::dyn_cast<ObjCPropertyImplDecl>(D))
2719 if (ObjCPropertyDecl *Property = PropImpl->getPropertyDecl())
2720 return createCXString(Property->getIdentifier()->getName());
2721
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002722 return createCXString("");
Douglas Gregore3c60a72010-11-17 00:13:31 +00002723 }
2724
Douglas Gregor78205d42010-01-20 21:45:58 +00002725 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002726 return createCXString(OMD->getSelector().getAsString());
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002727
Douglas Gregor78205d42010-01-20 21:45:58 +00002728 if (ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND))
2729 // No, this isn't the same as the code below. getIdentifier() is non-virtual
2730 // and returns different names. NamedDecl returns the class name and
2731 // ObjCCategoryImplDecl returns the category name.
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002732 return createCXString(CIMP->getIdentifier()->getNameStart());
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002733
Douglas Gregor0a35bce2010-09-01 03:07:18 +00002734 if (isa<UsingDirectiveDecl>(D))
2735 return createCXString("");
2736
Ted Kremenek50aa6ac2010-05-19 21:51:10 +00002737 llvm::SmallString<1024> S;
2738 llvm::raw_svector_ostream os(S);
2739 ND->printName(os);
2740
2741 return createCXString(os.str());
Douglas Gregor78205d42010-01-20 21:45:58 +00002742}
Ted Kremenekf0e23e82010-02-17 00:41:40 +00002743
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00002744CXString clang_getCursorSpelling(CXCursor C) {
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00002745 if (clang_isTranslationUnit(C.kind))
Ted Kremeneka60ed472010-11-16 08:15:36 +00002746 return clang_getTranslationUnitSpelling(
2747 static_cast<CXTranslationUnit>(C.data[2]));
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00002748
Steve Narofff334b4e2009-09-02 18:26:48 +00002749 if (clang_isReference(C.kind)) {
2750 switch (C.kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +00002751 case CXCursor_ObjCSuperClassRef: {
Douglas Gregor2e331b92010-01-16 14:00:32 +00002752 ObjCInterfaceDecl *Super = getCursorObjCSuperClassRef(C).first;
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002753 return createCXString(Super->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00002754 }
2755 case CXCursor_ObjCClassRef: {
Douglas Gregor1adb0822010-01-16 17:14:40 +00002756 ObjCInterfaceDecl *Class = getCursorObjCClassRef(C).first;
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002757 return createCXString(Class->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00002758 }
2759 case CXCursor_ObjCProtocolRef: {
Douglas Gregor78db0cd2010-01-16 15:44:18 +00002760 ObjCProtocolDecl *OID = getCursorObjCProtocolRef(C).first;
Douglas Gregorf46034a2010-01-18 23:41:10 +00002761 assert(OID && "getCursorSpelling(): Missing protocol decl");
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002762 return createCXString(OID->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00002763 }
Ted Kremenek3064ef92010-08-27 21:34:58 +00002764 case CXCursor_CXXBaseSpecifier: {
2765 CXXBaseSpecifier *B = getCursorCXXBaseSpecifier(C);
2766 return createCXString(B->getType().getAsString());
2767 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00002768 case CXCursor_TypeRef: {
2769 TypeDecl *Type = getCursorTypeRef(C).first;
2770 assert(Type && "Missing type decl");
2771
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002772 return createCXString(getCursorContext(C).getTypeDeclType(Type).
2773 getAsString());
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00002774 }
Douglas Gregor0b36e612010-08-31 20:37:03 +00002775 case CXCursor_TemplateRef: {
2776 TemplateDecl *Template = getCursorTemplateRef(C).first;
Douglas Gregor69319002010-08-31 23:48:11 +00002777 assert(Template && "Missing template decl");
Douglas Gregor0b36e612010-08-31 20:37:03 +00002778
2779 return createCXString(Template->getNameAsString());
2780 }
Douglas Gregor69319002010-08-31 23:48:11 +00002781
2782 case CXCursor_NamespaceRef: {
2783 NamedDecl *NS = getCursorNamespaceRef(C).first;
2784 assert(NS && "Missing namespace decl");
2785
2786 return createCXString(NS->getNameAsString());
2787 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00002788
Douglas Gregora67e03f2010-09-09 21:42:20 +00002789 case CXCursor_MemberRef: {
2790 FieldDecl *Field = getCursorMemberRef(C).first;
2791 assert(Field && "Missing member decl");
2792
2793 return createCXString(Field->getNameAsString());
2794 }
2795
Douglas Gregor36897b02010-09-10 00:22:18 +00002796 case CXCursor_LabelRef: {
2797 LabelStmt *Label = getCursorLabelRef(C).first;
2798 assert(Label && "Missing label");
2799
2800 return createCXString(Label->getID()->getName());
2801 }
2802
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00002803 case CXCursor_OverloadedDeclRef: {
2804 OverloadedDeclRefStorage Storage = getCursorOverloadedDeclRef(C).first;
2805 if (Decl *D = Storage.dyn_cast<Decl *>()) {
2806 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
2807 return createCXString(ND->getNameAsString());
2808 return createCXString("");
2809 }
2810 if (OverloadExpr *E = Storage.dyn_cast<OverloadExpr *>())
2811 return createCXString(E->getName().getAsString());
2812 OverloadedTemplateStorage *Ovl
2813 = Storage.get<OverloadedTemplateStorage*>();
2814 if (Ovl->size() == 0)
2815 return createCXString("");
2816 return createCXString((*Ovl->begin())->getNameAsString());
2817 }
2818
Daniel Dunbaracca7252009-11-30 20:42:49 +00002819 default:
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002820 return createCXString("<not implemented>");
Steve Narofff334b4e2009-09-02 18:26:48 +00002821 }
2822 }
Douglas Gregor97b98722010-01-19 23:20:36 +00002823
2824 if (clang_isExpression(C.kind)) {
2825 Decl *D = getDeclFromExpr(getCursorExpr(C));
2826 if (D)
Douglas Gregor78205d42010-01-20 21:45:58 +00002827 return getDeclSpelling(D);
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002828 return createCXString("");
Douglas Gregor97b98722010-01-19 23:20:36 +00002829 }
2830
Douglas Gregor36897b02010-09-10 00:22:18 +00002831 if (clang_isStatement(C.kind)) {
2832 Stmt *S = getCursorStmt(C);
2833 if (LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S))
2834 return createCXString(Label->getID()->getName());
2835
2836 return createCXString("");
2837 }
2838
Douglas Gregor4ae8f292010-03-18 17:52:52 +00002839 if (C.kind == CXCursor_MacroInstantiation)
2840 return createCXString(getCursorMacroInstantiation(C)->getName()
2841 ->getNameStart());
2842
Douglas Gregor572feb22010-03-18 18:04:21 +00002843 if (C.kind == CXCursor_MacroDefinition)
2844 return createCXString(getCursorMacroDefinition(C)->getName()
2845 ->getNameStart());
2846
Douglas Gregorecdcb882010-10-20 22:00:55 +00002847 if (C.kind == CXCursor_InclusionDirective)
2848 return createCXString(getCursorInclusionDirective(C)->getFileName());
2849
Douglas Gregor60cbfac2010-01-25 16:56:17 +00002850 if (clang_isDeclaration(C.kind))
2851 return getDeclSpelling(getCursorDecl(C));
Ted Kremeneke68fff62010-02-17 00:41:32 +00002852
Ted Kremenekee4db4f2010-02-17 00:41:08 +00002853 return createCXString("");
Steve Narofff334b4e2009-09-02 18:26:48 +00002854}
2855
Douglas Gregor358559d2010-10-02 22:49:11 +00002856CXString clang_getCursorDisplayName(CXCursor C) {
2857 if (!clang_isDeclaration(C.kind))
2858 return clang_getCursorSpelling(C);
2859
2860 Decl *D = getCursorDecl(C);
2861 if (!D)
2862 return createCXString("");
2863
2864 PrintingPolicy &Policy = getCursorContext(C).PrintingPolicy;
2865 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D))
2866 D = FunTmpl->getTemplatedDecl();
2867
2868 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
2869 llvm::SmallString<64> Str;
2870 llvm::raw_svector_ostream OS(Str);
2871 OS << Function->getNameAsString();
2872 if (Function->getPrimaryTemplate())
2873 OS << "<>";
2874 OS << "(";
2875 for (unsigned I = 0, N = Function->getNumParams(); I != N; ++I) {
2876 if (I)
2877 OS << ", ";
2878 OS << Function->getParamDecl(I)->getType().getAsString(Policy);
2879 }
2880
2881 if (Function->isVariadic()) {
2882 if (Function->getNumParams())
2883 OS << ", ";
2884 OS << "...";
2885 }
2886 OS << ")";
2887 return createCXString(OS.str());
2888 }
2889
2890 if (ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(D)) {
2891 llvm::SmallString<64> Str;
2892 llvm::raw_svector_ostream OS(Str);
2893 OS << ClassTemplate->getNameAsString();
2894 OS << "<";
2895 TemplateParameterList *Params = ClassTemplate->getTemplateParameters();
2896 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
2897 if (I)
2898 OS << ", ";
2899
2900 NamedDecl *Param = Params->getParam(I);
2901 if (Param->getIdentifier()) {
2902 OS << Param->getIdentifier()->getName();
2903 continue;
2904 }
2905
2906 // There is no parameter name, which makes this tricky. Try to come up
2907 // with something useful that isn't too long.
2908 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
2909 OS << (TTP->wasDeclaredWithTypename()? "typename" : "class");
2910 else if (NonTypeTemplateParmDecl *NTTP
2911 = dyn_cast<NonTypeTemplateParmDecl>(Param))
2912 OS << NTTP->getType().getAsString(Policy);
2913 else
2914 OS << "template<...> class";
2915 }
2916
2917 OS << ">";
2918 return createCXString(OS.str());
2919 }
2920
2921 if (ClassTemplateSpecializationDecl *ClassSpec
2922 = dyn_cast<ClassTemplateSpecializationDecl>(D)) {
2923 // If the type was explicitly written, use that.
2924 if (TypeSourceInfo *TSInfo = ClassSpec->getTypeAsWritten())
2925 return createCXString(TSInfo->getType().getAsString(Policy));
2926
2927 llvm::SmallString<64> Str;
2928 llvm::raw_svector_ostream OS(Str);
2929 OS << ClassSpec->getNameAsString();
2930 OS << TemplateSpecializationType::PrintTemplateArgumentList(
Douglas Gregor910f8002010-11-07 23:05:16 +00002931 ClassSpec->getTemplateArgs().data(),
2932 ClassSpec->getTemplateArgs().size(),
Douglas Gregor358559d2010-10-02 22:49:11 +00002933 Policy);
2934 return createCXString(OS.str());
2935 }
2936
2937 return clang_getCursorSpelling(C);
2938}
2939
Ted Kremeneke68fff62010-02-17 00:41:32 +00002940CXString clang_getCursorKindSpelling(enum CXCursorKind Kind) {
Steve Naroff89922f82009-08-31 00:59:03 +00002941 switch (Kind) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00002942 case CXCursor_FunctionDecl:
2943 return createCXString("FunctionDecl");
2944 case CXCursor_TypedefDecl:
2945 return createCXString("TypedefDecl");
2946 case CXCursor_EnumDecl:
2947 return createCXString("EnumDecl");
2948 case CXCursor_EnumConstantDecl:
2949 return createCXString("EnumConstantDecl");
2950 case CXCursor_StructDecl:
2951 return createCXString("StructDecl");
2952 case CXCursor_UnionDecl:
2953 return createCXString("UnionDecl");
2954 case CXCursor_ClassDecl:
2955 return createCXString("ClassDecl");
2956 case CXCursor_FieldDecl:
2957 return createCXString("FieldDecl");
2958 case CXCursor_VarDecl:
2959 return createCXString("VarDecl");
2960 case CXCursor_ParmDecl:
2961 return createCXString("ParmDecl");
2962 case CXCursor_ObjCInterfaceDecl:
2963 return createCXString("ObjCInterfaceDecl");
2964 case CXCursor_ObjCCategoryDecl:
2965 return createCXString("ObjCCategoryDecl");
2966 case CXCursor_ObjCProtocolDecl:
2967 return createCXString("ObjCProtocolDecl");
2968 case CXCursor_ObjCPropertyDecl:
2969 return createCXString("ObjCPropertyDecl");
2970 case CXCursor_ObjCIvarDecl:
2971 return createCXString("ObjCIvarDecl");
2972 case CXCursor_ObjCInstanceMethodDecl:
2973 return createCXString("ObjCInstanceMethodDecl");
2974 case CXCursor_ObjCClassMethodDecl:
2975 return createCXString("ObjCClassMethodDecl");
2976 case CXCursor_ObjCImplementationDecl:
2977 return createCXString("ObjCImplementationDecl");
2978 case CXCursor_ObjCCategoryImplDecl:
2979 return createCXString("ObjCCategoryImplDecl");
Ted Kremenek8bd5a692010-04-13 23:39:06 +00002980 case CXCursor_CXXMethod:
2981 return createCXString("CXXMethod");
Ted Kremeneke68fff62010-02-17 00:41:32 +00002982 case CXCursor_UnexposedDecl:
2983 return createCXString("UnexposedDecl");
2984 case CXCursor_ObjCSuperClassRef:
2985 return createCXString("ObjCSuperClassRef");
2986 case CXCursor_ObjCProtocolRef:
2987 return createCXString("ObjCProtocolRef");
2988 case CXCursor_ObjCClassRef:
2989 return createCXString("ObjCClassRef");
2990 case CXCursor_TypeRef:
2991 return createCXString("TypeRef");
Douglas Gregor0b36e612010-08-31 20:37:03 +00002992 case CXCursor_TemplateRef:
2993 return createCXString("TemplateRef");
Douglas Gregor69319002010-08-31 23:48:11 +00002994 case CXCursor_NamespaceRef:
2995 return createCXString("NamespaceRef");
Douglas Gregora67e03f2010-09-09 21:42:20 +00002996 case CXCursor_MemberRef:
2997 return createCXString("MemberRef");
Douglas Gregor36897b02010-09-10 00:22:18 +00002998 case CXCursor_LabelRef:
2999 return createCXString("LabelRef");
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003000 case CXCursor_OverloadedDeclRef:
3001 return createCXString("OverloadedDeclRef");
Ted Kremeneke68fff62010-02-17 00:41:32 +00003002 case CXCursor_UnexposedExpr:
3003 return createCXString("UnexposedExpr");
Ted Kremenek1ee6cad2010-04-11 21:47:37 +00003004 case CXCursor_BlockExpr:
3005 return createCXString("BlockExpr");
Ted Kremeneke68fff62010-02-17 00:41:32 +00003006 case CXCursor_DeclRefExpr:
3007 return createCXString("DeclRefExpr");
3008 case CXCursor_MemberRefExpr:
3009 return createCXString("MemberRefExpr");
3010 case CXCursor_CallExpr:
3011 return createCXString("CallExpr");
3012 case CXCursor_ObjCMessageExpr:
3013 return createCXString("ObjCMessageExpr");
3014 case CXCursor_UnexposedStmt:
3015 return createCXString("UnexposedStmt");
Douglas Gregor36897b02010-09-10 00:22:18 +00003016 case CXCursor_LabelStmt:
3017 return createCXString("LabelStmt");
Ted Kremeneke68fff62010-02-17 00:41:32 +00003018 case CXCursor_InvalidFile:
3019 return createCXString("InvalidFile");
Ted Kremenek292db642010-03-19 20:39:05 +00003020 case CXCursor_InvalidCode:
3021 return createCXString("InvalidCode");
Ted Kremeneke68fff62010-02-17 00:41:32 +00003022 case CXCursor_NoDeclFound:
3023 return createCXString("NoDeclFound");
3024 case CXCursor_NotImplemented:
3025 return createCXString("NotImplemented");
3026 case CXCursor_TranslationUnit:
3027 return createCXString("TranslationUnit");
Ted Kremeneke77f4432010-02-18 03:09:07 +00003028 case CXCursor_UnexposedAttr:
3029 return createCXString("UnexposedAttr");
3030 case CXCursor_IBActionAttr:
3031 return createCXString("attribute(ibaction)");
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00003032 case CXCursor_IBOutletAttr:
3033 return createCXString("attribute(iboutlet)");
Ted Kremenek857e9182010-05-19 17:38:06 +00003034 case CXCursor_IBOutletCollectionAttr:
3035 return createCXString("attribute(iboutletcollection)");
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00003036 case CXCursor_PreprocessingDirective:
3037 return createCXString("preprocessing directive");
Douglas Gregor572feb22010-03-18 18:04:21 +00003038 case CXCursor_MacroDefinition:
3039 return createCXString("macro definition");
Douglas Gregor48072312010-03-18 15:23:44 +00003040 case CXCursor_MacroInstantiation:
3041 return createCXString("macro instantiation");
Douglas Gregorecdcb882010-10-20 22:00:55 +00003042 case CXCursor_InclusionDirective:
3043 return createCXString("inclusion directive");
Ted Kremenek8f06e0e2010-05-06 23:38:21 +00003044 case CXCursor_Namespace:
3045 return createCXString("Namespace");
Ted Kremeneka0536d82010-05-07 01:04:29 +00003046 case CXCursor_LinkageSpec:
3047 return createCXString("LinkageSpec");
Ted Kremenek3064ef92010-08-27 21:34:58 +00003048 case CXCursor_CXXBaseSpecifier:
3049 return createCXString("C++ base class specifier");
Douglas Gregor01829d32010-08-31 14:41:23 +00003050 case CXCursor_Constructor:
3051 return createCXString("CXXConstructor");
3052 case CXCursor_Destructor:
3053 return createCXString("CXXDestructor");
3054 case CXCursor_ConversionFunction:
3055 return createCXString("CXXConversion");
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00003056 case CXCursor_TemplateTypeParameter:
3057 return createCXString("TemplateTypeParameter");
3058 case CXCursor_NonTypeTemplateParameter:
3059 return createCXString("NonTypeTemplateParameter");
3060 case CXCursor_TemplateTemplateParameter:
3061 return createCXString("TemplateTemplateParameter");
3062 case CXCursor_FunctionTemplate:
3063 return createCXString("FunctionTemplate");
Douglas Gregor39d6f072010-08-31 19:02:00 +00003064 case CXCursor_ClassTemplate:
3065 return createCXString("ClassTemplate");
Douglas Gregor74dbe642010-08-31 19:31:58 +00003066 case CXCursor_ClassTemplatePartialSpecialization:
3067 return createCXString("ClassTemplatePartialSpecialization");
Douglas Gregor69319002010-08-31 23:48:11 +00003068 case CXCursor_NamespaceAlias:
3069 return createCXString("NamespaceAlias");
Douglas Gregor0a35bce2010-09-01 03:07:18 +00003070 case CXCursor_UsingDirective:
3071 return createCXString("UsingDirective");
Douglas Gregor7e242562010-09-01 19:52:22 +00003072 case CXCursor_UsingDeclaration:
3073 return createCXString("UsingDeclaration");
Steve Naroff89922f82009-08-31 00:59:03 +00003074 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00003075
Ted Kremenekdeb06bd2010-01-16 02:02:09 +00003076 llvm_unreachable("Unhandled CXCursorKind");
Ted Kremeneka60ed472010-11-16 08:15:36 +00003077 return createCXString((const char*) 0);
Steve Naroff600866c2009-08-27 19:51:58 +00003078}
Steve Naroff89922f82009-08-31 00:59:03 +00003079
Ted Kremeneke68fff62010-02-17 00:41:32 +00003080enum CXChildVisitResult GetCursorVisitor(CXCursor cursor,
3081 CXCursor parent,
Douglas Gregor33e9abd2010-01-22 19:49:59 +00003082 CXClientData client_data) {
3083 CXCursor *BestCursor = static_cast<CXCursor *>(client_data);
Douglas Gregor93798e22010-11-05 21:11:19 +00003084
3085 // If our current best cursor is the construction of a temporary object,
3086 // don't replace that cursor with a type reference, because we want
3087 // clang_getCursor() to point at the constructor.
3088 if (clang_isExpression(BestCursor->kind) &&
3089 isa<CXXTemporaryObjectExpr>(getCursorExpr(*BestCursor)) &&
3090 cursor.kind == CXCursor_TypeRef)
3091 return CXChildVisit_Recurse;
3092
Douglas Gregor85fe1562010-12-10 07:23:11 +00003093 // Don't override a preprocessing cursor with another preprocessing
3094 // cursor; we want the outermost preprocessing cursor.
3095 if (clang_isPreprocessing(cursor.kind) &&
3096 clang_isPreprocessing(BestCursor->kind))
3097 return CXChildVisit_Recurse;
3098
Douglas Gregor33e9abd2010-01-22 19:49:59 +00003099 *BestCursor = cursor;
3100 return CXChildVisit_Recurse;
3101}
Ted Kremeneke68fff62010-02-17 00:41:32 +00003102
Douglas Gregorb9790342010-01-22 21:44:22 +00003103CXCursor clang_getCursor(CXTranslationUnit TU, CXSourceLocation Loc) {
3104 if (!TU)
Ted Kremenekf4629892010-01-14 01:51:23 +00003105 return clang_getNullCursor();
Ted Kremeneke68fff62010-02-17 00:41:32 +00003106
Ted Kremeneka60ed472010-11-16 08:15:36 +00003107 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
Douglas Gregorbdf60622010-03-05 21:16:25 +00003108 ASTUnit::ConcurrencyCheck Check(*CXXUnit);
3109
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003110 // Translate the given source location to make it point at the beginning of
3111 // the token under the cursor.
Ted Kremeneka297de22010-01-25 22:34:44 +00003112 SourceLocation SLoc = cxloc::translateSourceLocation(Loc);
Ted Kremeneka629ea42010-07-29 00:52:07 +00003113
3114 // Guard against an invalid SourceLocation, or we may assert in one
3115 // of the following calls.
3116 if (SLoc.isInvalid())
3117 return clang_getNullCursor();
3118
Douglas Gregor40749ee2010-11-03 00:35:38 +00003119 bool Logging = getenv("LIBCLANG_LOGGING");
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003120 SLoc = Lexer::GetBeginningOfToken(SLoc, CXXUnit->getSourceManager(),
3121 CXXUnit->getASTContext().getLangOptions());
3122
Douglas Gregor33e9abd2010-01-22 19:49:59 +00003123 CXCursor Result = MakeCXCursorInvalid(CXCursor_NoDeclFound);
3124 if (SLoc.isValid()) {
Douglas Gregor33e9abd2010-01-22 19:49:59 +00003125 // FIXME: Would be great to have a "hint" cursor, then walk from that
3126 // hint cursor upward until we find a cursor whose source range encloses
3127 // the region of interest, rather than starting from the translation unit.
Ted Kremeneka60ed472010-11-16 08:15:36 +00003128 CXCursor Parent = clang_getTranslationUnitCursor(TU);
3129 CursorVisitor CursorVis(TU, GetCursorVisitor, &Result,
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003130 Decl::MaxPCHLevel, SourceLocation(SLoc));
Douglas Gregor33e9abd2010-01-22 19:49:59 +00003131 CursorVis.VisitChildren(Parent);
Steve Naroff77128dd2009-09-15 20:25:34 +00003132 }
Douglas Gregor40749ee2010-11-03 00:35:38 +00003133
3134 if (Logging) {
3135 CXFile SearchFile;
3136 unsigned SearchLine, SearchColumn;
3137 CXFile ResultFile;
3138 unsigned ResultLine, ResultColumn;
Douglas Gregor66537982010-11-17 17:14:07 +00003139 CXString SearchFileName, ResultFileName, KindSpelling, USR;
3140 const char *IsDef = clang_isCursorDefinition(Result)? " (Definition)" : "";
Douglas Gregor40749ee2010-11-03 00:35:38 +00003141 CXSourceLocation ResultLoc = clang_getCursorLocation(Result);
3142
3143 clang_getInstantiationLocation(Loc, &SearchFile, &SearchLine, &SearchColumn,
3144 0);
3145 clang_getInstantiationLocation(ResultLoc, &ResultFile, &ResultLine,
3146 &ResultColumn, 0);
3147 SearchFileName = clang_getFileName(SearchFile);
3148 ResultFileName = clang_getFileName(ResultFile);
3149 KindSpelling = clang_getCursorKindSpelling(Result.kind);
Douglas Gregor66537982010-11-17 17:14:07 +00003150 USR = clang_getCursorUSR(Result);
3151 fprintf(stderr, "clang_getCursor(%s:%d:%d) = %s(%s:%d:%d):%s%s\n",
Douglas Gregor40749ee2010-11-03 00:35:38 +00003152 clang_getCString(SearchFileName), SearchLine, SearchColumn,
3153 clang_getCString(KindSpelling),
Douglas Gregor66537982010-11-17 17:14:07 +00003154 clang_getCString(ResultFileName), ResultLine, ResultColumn,
3155 clang_getCString(USR), IsDef);
Douglas Gregor40749ee2010-11-03 00:35:38 +00003156 clang_disposeString(SearchFileName);
3157 clang_disposeString(ResultFileName);
3158 clang_disposeString(KindSpelling);
Douglas Gregor66537982010-11-17 17:14:07 +00003159 clang_disposeString(USR);
Douglas Gregor0aefbd82010-12-10 01:45:00 +00003160
3161 CXCursor Definition = clang_getCursorDefinition(Result);
3162 if (!clang_equalCursors(Definition, clang_getNullCursor())) {
3163 CXSourceLocation DefinitionLoc = clang_getCursorLocation(Definition);
3164 CXString DefinitionKindSpelling
3165 = clang_getCursorKindSpelling(Definition.kind);
3166 CXFile DefinitionFile;
3167 unsigned DefinitionLine, DefinitionColumn;
3168 clang_getInstantiationLocation(DefinitionLoc, &DefinitionFile,
3169 &DefinitionLine, &DefinitionColumn, 0);
3170 CXString DefinitionFileName = clang_getFileName(DefinitionFile);
3171 fprintf(stderr, " -> %s(%s:%d:%d)\n",
3172 clang_getCString(DefinitionKindSpelling),
3173 clang_getCString(DefinitionFileName),
3174 DefinitionLine, DefinitionColumn);
3175 clang_disposeString(DefinitionFileName);
3176 clang_disposeString(DefinitionKindSpelling);
3177 }
Douglas Gregor40749ee2010-11-03 00:35:38 +00003178 }
3179
Ted Kremeneke68fff62010-02-17 00:41:32 +00003180 return Result;
Steve Naroff600866c2009-08-27 19:51:58 +00003181}
3182
Ted Kremenek73885552009-11-17 19:28:59 +00003183CXCursor clang_getNullCursor(void) {
Douglas Gregor5bfb8c12010-01-20 23:34:41 +00003184 return MakeCXCursorInvalid(CXCursor_InvalidFile);
Ted Kremenek73885552009-11-17 19:28:59 +00003185}
3186
3187unsigned clang_equalCursors(CXCursor X, CXCursor Y) {
Douglas Gregor283cae32010-01-15 21:56:13 +00003188 return X == Y;
Ted Kremenek73885552009-11-17 19:28:59 +00003189}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00003190
Douglas Gregor9ce55842010-11-20 00:09:34 +00003191unsigned clang_hashCursor(CXCursor C) {
3192 unsigned Index = 0;
3193 if (clang_isExpression(C.kind) || clang_isStatement(C.kind))
3194 Index = 1;
3195
3196 return llvm::DenseMapInfo<std::pair<unsigned, void*> >::getHashValue(
3197 std::make_pair(C.kind, C.data[Index]));
3198}
3199
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00003200unsigned clang_isInvalid(enum CXCursorKind K) {
Steve Naroff77128dd2009-09-15 20:25:34 +00003201 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
3202}
3203
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00003204unsigned clang_isDeclaration(enum CXCursorKind K) {
Steve Naroff89922f82009-08-31 00:59:03 +00003205 return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl;
3206}
Steve Naroff2d4d6292009-08-31 14:26:51 +00003207
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00003208unsigned clang_isReference(enum CXCursorKind K) {
Steve Narofff334b4e2009-09-02 18:26:48 +00003209 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
3210}
3211
Douglas Gregor97b98722010-01-19 23:20:36 +00003212unsigned clang_isExpression(enum CXCursorKind K) {
3213 return K >= CXCursor_FirstExpr && K <= CXCursor_LastExpr;
3214}
3215
3216unsigned clang_isStatement(enum CXCursorKind K) {
3217 return K >= CXCursor_FirstStmt && K <= CXCursor_LastStmt;
3218}
3219
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00003220unsigned clang_isTranslationUnit(enum CXCursorKind K) {
3221 return K == CXCursor_TranslationUnit;
3222}
3223
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00003224unsigned clang_isPreprocessing(enum CXCursorKind K) {
3225 return K >= CXCursor_FirstPreprocessing && K <= CXCursor_LastPreprocessing;
3226}
3227
Ted Kremenekad6eff62010-03-08 21:17:29 +00003228unsigned clang_isUnexposed(enum CXCursorKind K) {
3229 switch (K) {
3230 case CXCursor_UnexposedDecl:
3231 case CXCursor_UnexposedExpr:
3232 case CXCursor_UnexposedStmt:
3233 case CXCursor_UnexposedAttr:
3234 return true;
3235 default:
3236 return false;
3237 }
3238}
3239
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00003240CXCursorKind clang_getCursorKind(CXCursor C) {
Steve Naroff9efa7672009-09-04 15:44:05 +00003241 return C.kind;
3242}
3243
Douglas Gregor98258af2010-01-18 22:46:11 +00003244CXSourceLocation clang_getCursorLocation(CXCursor C) {
3245 if (clang_isReference(C.kind)) {
Douglas Gregorf46034a2010-01-18 23:41:10 +00003246 switch (C.kind) {
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003247 case CXCursor_ObjCSuperClassRef: {
Douglas Gregorf46034a2010-01-18 23:41:10 +00003248 std::pair<ObjCInterfaceDecl *, SourceLocation> P
3249 = getCursorObjCSuperClassRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00003250 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00003251 }
3252
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003253 case CXCursor_ObjCProtocolRef: {
Douglas Gregorf46034a2010-01-18 23:41:10 +00003254 std::pair<ObjCProtocolDecl *, SourceLocation> P
3255 = getCursorObjCProtocolRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00003256 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00003257 }
3258
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003259 case CXCursor_ObjCClassRef: {
Douglas Gregorf46034a2010-01-18 23:41:10 +00003260 std::pair<ObjCInterfaceDecl *, SourceLocation> P
3261 = getCursorObjCClassRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00003262 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00003263 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00003264
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003265 case CXCursor_TypeRef: {
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00003266 std::pair<TypeDecl *, SourceLocation> P = getCursorTypeRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00003267 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00003268 }
Douglas Gregor0b36e612010-08-31 20:37:03 +00003269
3270 case CXCursor_TemplateRef: {
3271 std::pair<TemplateDecl *, SourceLocation> P = getCursorTemplateRef(C);
3272 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
3273 }
3274
Douglas Gregor69319002010-08-31 23:48:11 +00003275 case CXCursor_NamespaceRef: {
3276 std::pair<NamedDecl *, SourceLocation> P = getCursorNamespaceRef(C);
3277 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
3278 }
3279
Douglas Gregora67e03f2010-09-09 21:42:20 +00003280 case CXCursor_MemberRef: {
3281 std::pair<FieldDecl *, SourceLocation> P = getCursorMemberRef(C);
3282 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
3283 }
3284
Ted Kremenek3064ef92010-08-27 21:34:58 +00003285 case CXCursor_CXXBaseSpecifier: {
Douglas Gregor1b0f7af2010-10-02 19:51:13 +00003286 CXXBaseSpecifier *BaseSpec = getCursorCXXBaseSpecifier(C);
3287 if (!BaseSpec)
3288 return clang_getNullLocation();
3289
3290 if (TypeSourceInfo *TSInfo = BaseSpec->getTypeSourceInfo())
3291 return cxloc::translateSourceLocation(getCursorContext(C),
3292 TSInfo->getTypeLoc().getBeginLoc());
3293
3294 return cxloc::translateSourceLocation(getCursorContext(C),
3295 BaseSpec->getSourceRange().getBegin());
Ted Kremenek3064ef92010-08-27 21:34:58 +00003296 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003297
Douglas Gregor36897b02010-09-10 00:22:18 +00003298 case CXCursor_LabelRef: {
3299 std::pair<LabelStmt *, SourceLocation> P = getCursorLabelRef(C);
3300 return cxloc::translateSourceLocation(getCursorContext(C), P.second);
3301 }
3302
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003303 case CXCursor_OverloadedDeclRef:
3304 return cxloc::translateSourceLocation(getCursorContext(C),
3305 getCursorOverloadedDeclRef(C).second);
3306
Douglas Gregorf46034a2010-01-18 23:41:10 +00003307 default:
3308 // FIXME: Need a way to enumerate all non-reference cases.
3309 llvm_unreachable("Missed a reference kind");
3310 }
Douglas Gregor98258af2010-01-18 22:46:11 +00003311 }
Douglas Gregor97b98722010-01-19 23:20:36 +00003312
3313 if (clang_isExpression(C.kind))
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003314 return cxloc::translateSourceLocation(getCursorContext(C),
Douglas Gregor97b98722010-01-19 23:20:36 +00003315 getLocationFromExpr(getCursorExpr(C)));
3316
Douglas Gregor36897b02010-09-10 00:22:18 +00003317 if (clang_isStatement(C.kind))
3318 return cxloc::translateSourceLocation(getCursorContext(C),
3319 getCursorStmt(C)->getLocStart());
3320
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00003321 if (C.kind == CXCursor_PreprocessingDirective) {
3322 SourceLocation L = cxcursor::getCursorPreprocessingDirective(C).getBegin();
3323 return cxloc::translateSourceLocation(getCursorContext(C), L);
3324 }
Douglas Gregor48072312010-03-18 15:23:44 +00003325
3326 if (C.kind == CXCursor_MacroInstantiation) {
Douglas Gregor4ae8f292010-03-18 17:52:52 +00003327 SourceLocation L
3328 = cxcursor::getCursorMacroInstantiation(C)->getSourceRange().getBegin();
Douglas Gregor48072312010-03-18 15:23:44 +00003329 return cxloc::translateSourceLocation(getCursorContext(C), L);
3330 }
Douglas Gregor572feb22010-03-18 18:04:21 +00003331
3332 if (C.kind == CXCursor_MacroDefinition) {
3333 SourceLocation L = cxcursor::getCursorMacroDefinition(C)->getLocation();
3334 return cxloc::translateSourceLocation(getCursorContext(C), L);
3335 }
Douglas Gregorecdcb882010-10-20 22:00:55 +00003336
3337 if (C.kind == CXCursor_InclusionDirective) {
3338 SourceLocation L
3339 = cxcursor::getCursorInclusionDirective(C)->getSourceRange().getBegin();
3340 return cxloc::translateSourceLocation(getCursorContext(C), L);
3341 }
3342
Ted Kremenek9a700d22010-05-12 06:16:13 +00003343 if (C.kind < CXCursor_FirstDecl || C.kind > CXCursor_LastDecl)
Douglas Gregor5352ac02010-01-28 00:27:43 +00003344 return clang_getNullLocation();
Douglas Gregor98258af2010-01-18 22:46:11 +00003345
Douglas Gregorf46034a2010-01-18 23:41:10 +00003346 Decl *D = getCursorDecl(C);
Douglas Gregorf46034a2010-01-18 23:41:10 +00003347 SourceLocation Loc = D->getLocation();
3348 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(D))
3349 Loc = Class->getClassLoc();
Ted Kremenek007a7c92010-11-01 23:26:51 +00003350 // FIXME: Multiple variables declared in a single declaration
3351 // currently lack the information needed to correctly determine their
3352 // ranges when accounting for the type-specifier. We use context
3353 // stored in the CXCursor to determine if the VarDecl is in a DeclGroup,
3354 // and if so, whether it is the first decl.
3355 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3356 if (!cxcursor::isFirstInDeclGroup(C))
3357 Loc = VD->getLocation();
3358 }
3359
Douglas Gregor2ca54fe2010-03-22 15:53:50 +00003360 return cxloc::translateSourceLocation(getCursorContext(C), Loc);
Douglas Gregor98258af2010-01-18 22:46:11 +00003361}
Douglas Gregora7bde202010-01-19 00:34:46 +00003362
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003363} // end extern "C"
3364
3365static SourceRange getRawCursorExtent(CXCursor C) {
Douglas Gregora7bde202010-01-19 00:34:46 +00003366 if (clang_isReference(C.kind)) {
3367 switch (C.kind) {
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003368 case CXCursor_ObjCSuperClassRef:
3369 return getCursorObjCSuperClassRef(C).second;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003370
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003371 case CXCursor_ObjCProtocolRef:
3372 return getCursorObjCProtocolRef(C).second;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003373
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003374 case CXCursor_ObjCClassRef:
3375 return getCursorObjCClassRef(C).second;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003376
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003377 case CXCursor_TypeRef:
3378 return getCursorTypeRef(C).second;
Douglas Gregor0b36e612010-08-31 20:37:03 +00003379
3380 case CXCursor_TemplateRef:
3381 return getCursorTemplateRef(C).second;
3382
Douglas Gregor69319002010-08-31 23:48:11 +00003383 case CXCursor_NamespaceRef:
3384 return getCursorNamespaceRef(C).second;
Douglas Gregora67e03f2010-09-09 21:42:20 +00003385
3386 case CXCursor_MemberRef:
3387 return getCursorMemberRef(C).second;
3388
Ted Kremenek3064ef92010-08-27 21:34:58 +00003389 case CXCursor_CXXBaseSpecifier:
Douglas Gregor1b0f7af2010-10-02 19:51:13 +00003390 return getCursorCXXBaseSpecifier(C)->getSourceRange();
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00003391
Douglas Gregor36897b02010-09-10 00:22:18 +00003392 case CXCursor_LabelRef:
3393 return getCursorLabelRef(C).second;
3394
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003395 case CXCursor_OverloadedDeclRef:
3396 return getCursorOverloadedDeclRef(C).second;
3397
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003398 default:
3399 // FIXME: Need a way to enumerate all non-reference cases.
3400 llvm_unreachable("Missed a reference kind");
Douglas Gregora7bde202010-01-19 00:34:46 +00003401 }
3402 }
Douglas Gregor97b98722010-01-19 23:20:36 +00003403
3404 if (clang_isExpression(C.kind))
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003405 return getCursorExpr(C)->getSourceRange();
Douglas Gregor33e9abd2010-01-22 19:49:59 +00003406
3407 if (clang_isStatement(C.kind))
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003408 return getCursorStmt(C)->getSourceRange();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003409
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003410 if (C.kind == CXCursor_PreprocessingDirective)
3411 return cxcursor::getCursorPreprocessingDirective(C);
Douglas Gregor48072312010-03-18 15:23:44 +00003412
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003413 if (C.kind == CXCursor_MacroInstantiation)
3414 return cxcursor::getCursorMacroInstantiation(C)->getSourceRange();
Douglas Gregor572feb22010-03-18 18:04:21 +00003415
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003416 if (C.kind == CXCursor_MacroDefinition)
3417 return cxcursor::getCursorMacroDefinition(C)->getSourceRange();
Douglas Gregorecdcb882010-10-20 22:00:55 +00003418
3419 if (C.kind == CXCursor_InclusionDirective)
3420 return cxcursor::getCursorInclusionDirective(C)->getSourceRange();
3421
Ted Kremenek007a7c92010-11-01 23:26:51 +00003422 if (C.kind >= CXCursor_FirstDecl && C.kind <= CXCursor_LastDecl) {
3423 Decl *D = cxcursor::getCursorDecl(C);
3424 SourceRange R = D->getSourceRange();
3425 // FIXME: Multiple variables declared in a single declaration
3426 // currently lack the information needed to correctly determine their
3427 // ranges when accounting for the type-specifier. We use context
3428 // stored in the CXCursor to determine if the VarDecl is in a DeclGroup,
3429 // and if so, whether it is the first decl.
3430 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3431 if (!cxcursor::isFirstInDeclGroup(C))
3432 R.setBegin(VD->getLocation());
3433 }
3434 return R;
3435 }
Douglas Gregor66537982010-11-17 17:14:07 +00003436 return SourceRange();
3437}
3438
3439/// \brief Retrieves the "raw" cursor extent, which is then extended to include
3440/// the decl-specifier-seq for declarations.
3441static SourceRange getFullCursorExtent(CXCursor C, SourceManager &SrcMgr) {
3442 if (C.kind >= CXCursor_FirstDecl && C.kind <= CXCursor_LastDecl) {
3443 Decl *D = cxcursor::getCursorDecl(C);
3444 SourceRange R = D->getSourceRange();
3445
3446 if (const DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
3447 if (TypeSourceInfo *TI = DD->getTypeSourceInfo()) {
3448 TypeLoc TL = TI->getTypeLoc();
3449 SourceLocation TLoc = TL.getSourceRange().getBegin();
3450 if (TLoc.isValid() && R.getBegin().isValid() &&
3451 SrcMgr.isBeforeInTranslationUnit(TLoc, R.getBegin()))
3452 R.setBegin(TLoc);
3453 }
3454
3455 // FIXME: Multiple variables declared in a single declaration
3456 // currently lack the information needed to correctly determine their
3457 // ranges when accounting for the type-specifier. We use context
3458 // stored in the CXCursor to determine if the VarDecl is in a DeclGroup,
3459 // and if so, whether it is the first decl.
3460 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3461 if (!cxcursor::isFirstInDeclGroup(C))
3462 R.setBegin(VD->getLocation());
3463 }
3464 }
3465
3466 return R;
3467 }
3468
3469 return getRawCursorExtent(C);
3470}
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003471
3472extern "C" {
3473
3474CXSourceRange clang_getCursorExtent(CXCursor C) {
3475 SourceRange R = getRawCursorExtent(C);
3476 if (R.isInvalid())
Douglas Gregor5352ac02010-01-28 00:27:43 +00003477 return clang_getNullRange();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003478
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00003479 return cxloc::translateSourceRange(getCursorContext(C), R);
Douglas Gregora7bde202010-01-19 00:34:46 +00003480}
Douglas Gregorc5d1e932010-01-19 01:20:04 +00003481
3482CXCursor clang_getCursorReferenced(CXCursor C) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00003483 if (clang_isInvalid(C.kind))
3484 return clang_getNullCursor();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003485
Ted Kremeneka60ed472010-11-16 08:15:36 +00003486 CXTranslationUnit tu = getCursorTU(C);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003487 if (clang_isDeclaration(C.kind)) {
3488 Decl *D = getCursorDecl(C);
3489 if (UsingDecl *Using = dyn_cast<UsingDecl>(D))
Ted Kremeneka60ed472010-11-16 08:15:36 +00003490 return MakeCursorOverloadedDeclRef(Using, D->getLocation(), tu);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003491 if (ObjCClassDecl *Classes = dyn_cast<ObjCClassDecl>(D))
Ted Kremeneka60ed472010-11-16 08:15:36 +00003492 return MakeCursorOverloadedDeclRef(Classes, D->getLocation(), tu);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003493 if (ObjCForwardProtocolDecl *Protocols
3494 = dyn_cast<ObjCForwardProtocolDecl>(D))
Ted Kremeneka60ed472010-11-16 08:15:36 +00003495 return MakeCursorOverloadedDeclRef(Protocols, D->getLocation(), tu);
Douglas Gregore3c60a72010-11-17 00:13:31 +00003496 if (ObjCPropertyImplDecl *PropImpl =llvm::dyn_cast<ObjCPropertyImplDecl>(D))
3497 if (ObjCPropertyDecl *Property = PropImpl->getPropertyDecl())
3498 return MakeCXCursor(Property, tu);
3499
Douglas Gregorc5d1e932010-01-19 01:20:04 +00003500 return C;
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003501 }
3502
Douglas Gregor97b98722010-01-19 23:20:36 +00003503 if (clang_isExpression(C.kind)) {
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003504 Expr *E = getCursorExpr(C);
3505 Decl *D = getDeclFromExpr(E);
Douglas Gregor97b98722010-01-19 23:20:36 +00003506 if (D)
Ted Kremeneka60ed472010-11-16 08:15:36 +00003507 return MakeCXCursor(D, tu);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003508
3509 if (OverloadExpr *Ovl = dyn_cast_or_null<OverloadExpr>(E))
Ted Kremeneka60ed472010-11-16 08:15:36 +00003510 return MakeCursorOverloadedDeclRef(Ovl, tu);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003511
Douglas Gregor97b98722010-01-19 23:20:36 +00003512 return clang_getNullCursor();
3513 }
3514
Douglas Gregor36897b02010-09-10 00:22:18 +00003515 if (clang_isStatement(C.kind)) {
3516 Stmt *S = getCursorStmt(C);
3517 if (GotoStmt *Goto = dyn_cast_or_null<GotoStmt>(S))
Ted Kremeneka60ed472010-11-16 08:15:36 +00003518 return MakeCXCursor(Goto->getLabel(), getCursorDecl(C), tu);
Douglas Gregor36897b02010-09-10 00:22:18 +00003519
3520 return clang_getNullCursor();
3521 }
3522
Douglas Gregorbf7efa22010-03-18 18:23:03 +00003523 if (C.kind == CXCursor_MacroInstantiation) {
3524 if (MacroDefinition *Def = getCursorMacroInstantiation(C)->getDefinition())
Ted Kremeneka60ed472010-11-16 08:15:36 +00003525 return MakeMacroDefinitionCursor(Def, tu);
Douglas Gregorbf7efa22010-03-18 18:23:03 +00003526 }
3527
Douglas Gregorc5d1e932010-01-19 01:20:04 +00003528 if (!clang_isReference(C.kind))
3529 return clang_getNullCursor();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003530
Douglas Gregorc5d1e932010-01-19 01:20:04 +00003531 switch (C.kind) {
3532 case CXCursor_ObjCSuperClassRef:
Ted Kremeneka60ed472010-11-16 08:15:36 +00003533 return MakeCXCursor(getCursorObjCSuperClassRef(C).first, tu);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003534
3535 case CXCursor_ObjCProtocolRef: {
Ted Kremeneka60ed472010-11-16 08:15:36 +00003536 return MakeCXCursor(getCursorObjCProtocolRef(C).first, tu);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003537
3538 case CXCursor_ObjCClassRef:
Ted Kremeneka60ed472010-11-16 08:15:36 +00003539 return MakeCXCursor(getCursorObjCClassRef(C).first, tu );
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00003540
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003541 case CXCursor_TypeRef:
Ted Kremeneka60ed472010-11-16 08:15:36 +00003542 return MakeCXCursor(getCursorTypeRef(C).first, tu );
Douglas Gregor0b36e612010-08-31 20:37:03 +00003543
3544 case CXCursor_TemplateRef:
Ted Kremeneka60ed472010-11-16 08:15:36 +00003545 return MakeCXCursor(getCursorTemplateRef(C).first, tu );
Douglas Gregor0b36e612010-08-31 20:37:03 +00003546
Douglas Gregor69319002010-08-31 23:48:11 +00003547 case CXCursor_NamespaceRef:
Ted Kremeneka60ed472010-11-16 08:15:36 +00003548 return MakeCXCursor(getCursorNamespaceRef(C).first, tu );
Douglas Gregor69319002010-08-31 23:48:11 +00003549
Douglas Gregora67e03f2010-09-09 21:42:20 +00003550 case CXCursor_MemberRef:
Ted Kremeneka60ed472010-11-16 08:15:36 +00003551 return MakeCXCursor(getCursorMemberRef(C).first, tu );
Douglas Gregora67e03f2010-09-09 21:42:20 +00003552
Ted Kremenek3064ef92010-08-27 21:34:58 +00003553 case CXCursor_CXXBaseSpecifier: {
3554 CXXBaseSpecifier *B = cxcursor::getCursorCXXBaseSpecifier(C);
3555 return clang_getTypeDeclaration(cxtype::MakeCXType(B->getType(),
Ted Kremeneka60ed472010-11-16 08:15:36 +00003556 tu ));
Ted Kremenek3064ef92010-08-27 21:34:58 +00003557 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003558
Douglas Gregor36897b02010-09-10 00:22:18 +00003559 case CXCursor_LabelRef:
3560 // FIXME: We end up faking the "parent" declaration here because we
3561 // don't want to make CXCursor larger.
3562 return MakeCXCursor(getCursorLabelRef(C).first,
Ted Kremeneka60ed472010-11-16 08:15:36 +00003563 static_cast<ASTUnit*>(tu->TUData)->getASTContext()
3564 .getTranslationUnitDecl(),
3565 tu);
Douglas Gregor36897b02010-09-10 00:22:18 +00003566
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003567 case CXCursor_OverloadedDeclRef:
3568 return C;
3569
Douglas Gregorc5d1e932010-01-19 01:20:04 +00003570 default:
3571 // We would prefer to enumerate all non-reference cursor kinds here.
3572 llvm_unreachable("Unhandled reference cursor kind");
3573 break;
3574 }
3575 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003576
Douglas Gregorc5d1e932010-01-19 01:20:04 +00003577 return clang_getNullCursor();
3578}
3579
Douglas Gregorb6998662010-01-19 19:34:47 +00003580CXCursor clang_getCursorDefinition(CXCursor C) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00003581 if (clang_isInvalid(C.kind))
3582 return clang_getNullCursor();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003583
Ted Kremeneka60ed472010-11-16 08:15:36 +00003584 CXTranslationUnit TU = getCursorTU(C);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003585
Douglas Gregorb6998662010-01-19 19:34:47 +00003586 bool WasReference = false;
Douglas Gregor97b98722010-01-19 23:20:36 +00003587 if (clang_isReference(C.kind) || clang_isExpression(C.kind)) {
Douglas Gregorb6998662010-01-19 19:34:47 +00003588 C = clang_getCursorReferenced(C);
3589 WasReference = true;
3590 }
3591
Douglas Gregorbf7efa22010-03-18 18:23:03 +00003592 if (C.kind == CXCursor_MacroInstantiation)
3593 return clang_getCursorReferenced(C);
3594
Douglas Gregorb6998662010-01-19 19:34:47 +00003595 if (!clang_isDeclaration(C.kind))
3596 return clang_getNullCursor();
3597
3598 Decl *D = getCursorDecl(C);
3599 if (!D)
3600 return clang_getNullCursor();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003601
Douglas Gregorb6998662010-01-19 19:34:47 +00003602 switch (D->getKind()) {
3603 // Declaration kinds that don't really separate the notions of
3604 // declaration and definition.
3605 case Decl::Namespace:
3606 case Decl::Typedef:
3607 case Decl::TemplateTypeParm:
3608 case Decl::EnumConstant:
3609 case Decl::Field:
Benjamin Kramerd9811462010-11-21 14:11:41 +00003610 case Decl::IndirectField:
Douglas Gregorb6998662010-01-19 19:34:47 +00003611 case Decl::ObjCIvar:
3612 case Decl::ObjCAtDefsField:
3613 case Decl::ImplicitParam:
3614 case Decl::ParmVar:
3615 case Decl::NonTypeTemplateParm:
3616 case Decl::TemplateTemplateParm:
3617 case Decl::ObjCCategoryImpl:
3618 case Decl::ObjCImplementation:
Abramo Bagnara6206d532010-06-05 05:09:32 +00003619 case Decl::AccessSpec:
Douglas Gregorb6998662010-01-19 19:34:47 +00003620 case Decl::LinkageSpec:
3621 case Decl::ObjCPropertyImpl:
3622 case Decl::FileScopeAsm:
3623 case Decl::StaticAssert:
3624 case Decl::Block:
3625 return C;
3626
3627 // Declaration kinds that don't make any sense here, but are
3628 // nonetheless harmless.
3629 case Decl::TranslationUnit:
Douglas Gregorb6998662010-01-19 19:34:47 +00003630 break;
3631
3632 // Declaration kinds for which the definition is not resolvable.
3633 case Decl::UnresolvedUsingTypename:
3634 case Decl::UnresolvedUsingValue:
3635 break;
3636
3637 case Decl::UsingDirective:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00003638 return MakeCXCursor(cast<UsingDirectiveDecl>(D)->getNominatedNamespace(),
Ted Kremeneka60ed472010-11-16 08:15:36 +00003639 TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00003640
3641 case Decl::NamespaceAlias:
Ted Kremeneka60ed472010-11-16 08:15:36 +00003642 return MakeCXCursor(cast<NamespaceAliasDecl>(D)->getNamespace(), TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00003643
3644 case Decl::Enum:
3645 case Decl::Record:
3646 case Decl::CXXRecord:
3647 case Decl::ClassTemplateSpecialization:
3648 case Decl::ClassTemplatePartialSpecialization:
Douglas Gregor952b0172010-02-11 01:04:33 +00003649 if (TagDecl *Def = cast<TagDecl>(D)->getDefinition())
Ted Kremeneka60ed472010-11-16 08:15:36 +00003650 return MakeCXCursor(Def, TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00003651 return clang_getNullCursor();
3652
3653 case Decl::Function:
3654 case Decl::CXXMethod:
3655 case Decl::CXXConstructor:
3656 case Decl::CXXDestructor:
3657 case Decl::CXXConversion: {
3658 const FunctionDecl *Def = 0;
3659 if (cast<FunctionDecl>(D)->getBody(Def))
Ted Kremeneka60ed472010-11-16 08:15:36 +00003660 return MakeCXCursor(const_cast<FunctionDecl *>(Def), TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00003661 return clang_getNullCursor();
3662 }
3663
3664 case Decl::Var: {
Sebastian Redl31310a22010-02-01 20:16:42 +00003665 // Ask the variable if it has a definition.
3666 if (VarDecl *Def = cast<VarDecl>(D)->getDefinition())
Ted Kremeneka60ed472010-11-16 08:15:36 +00003667 return MakeCXCursor(Def, TU);
Sebastian Redl31310a22010-02-01 20:16:42 +00003668 return clang_getNullCursor();
Douglas Gregorb6998662010-01-19 19:34:47 +00003669 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003670
Douglas Gregorb6998662010-01-19 19:34:47 +00003671 case Decl::FunctionTemplate: {
3672 const FunctionDecl *Def = 0;
3673 if (cast<FunctionTemplateDecl>(D)->getTemplatedDecl()->getBody(Def))
Ted Kremeneka60ed472010-11-16 08:15:36 +00003674 return MakeCXCursor(Def->getDescribedFunctionTemplate(), TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00003675 return clang_getNullCursor();
3676 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003677
Douglas Gregorb6998662010-01-19 19:34:47 +00003678 case Decl::ClassTemplate: {
3679 if (RecordDecl *Def = cast<ClassTemplateDecl>(D)->getTemplatedDecl()
Douglas Gregor952b0172010-02-11 01:04:33 +00003680 ->getDefinition())
Douglas Gregor0b36e612010-08-31 20:37:03 +00003681 return MakeCXCursor(cast<CXXRecordDecl>(Def)->getDescribedClassTemplate(),
Ted Kremeneka60ed472010-11-16 08:15:36 +00003682 TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00003683 return clang_getNullCursor();
3684 }
3685
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003686 case Decl::Using:
3687 return MakeCursorOverloadedDeclRef(cast<UsingDecl>(D),
Ted Kremeneka60ed472010-11-16 08:15:36 +00003688 D->getLocation(), TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00003689
3690 case Decl::UsingShadow:
3691 return clang_getCursorDefinition(
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003692 MakeCXCursor(cast<UsingShadowDecl>(D)->getTargetDecl(),
Ted Kremeneka60ed472010-11-16 08:15:36 +00003693 TU));
Douglas Gregorb6998662010-01-19 19:34:47 +00003694
3695 case Decl::ObjCMethod: {
3696 ObjCMethodDecl *Method = cast<ObjCMethodDecl>(D);
3697 if (Method->isThisDeclarationADefinition())
3698 return C;
3699
3700 // Dig out the method definition in the associated
3701 // @implementation, if we have it.
3702 // FIXME: The ASTs should make finding the definition easier.
3703 if (ObjCInterfaceDecl *Class
3704 = dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext()))
3705 if (ObjCImplementationDecl *ClassImpl = Class->getImplementation())
3706 if (ObjCMethodDecl *Def = ClassImpl->getMethod(Method->getSelector(),
3707 Method->isInstanceMethod()))
3708 if (Def->isThisDeclarationADefinition())
Ted Kremeneka60ed472010-11-16 08:15:36 +00003709 return MakeCXCursor(Def, TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00003710
3711 return clang_getNullCursor();
3712 }
3713
3714 case Decl::ObjCCategory:
3715 if (ObjCCategoryImplDecl *Impl
3716 = cast<ObjCCategoryDecl>(D)->getImplementation())
Ted Kremeneka60ed472010-11-16 08:15:36 +00003717 return MakeCXCursor(Impl, TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00003718 return clang_getNullCursor();
3719
3720 case Decl::ObjCProtocol:
3721 if (!cast<ObjCProtocolDecl>(D)->isForwardDecl())
3722 return C;
3723 return clang_getNullCursor();
3724
3725 case Decl::ObjCInterface:
3726 // There are two notions of a "definition" for an Objective-C
3727 // class: the interface and its implementation. When we resolved a
3728 // reference to an Objective-C class, produce the @interface as
3729 // the definition; when we were provided with the interface,
3730 // produce the @implementation as the definition.
3731 if (WasReference) {
3732 if (!cast<ObjCInterfaceDecl>(D)->isForwardDecl())
3733 return C;
3734 } else if (ObjCImplementationDecl *Impl
3735 = cast<ObjCInterfaceDecl>(D)->getImplementation())
Ted Kremeneka60ed472010-11-16 08:15:36 +00003736 return MakeCXCursor(Impl, TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00003737 return clang_getNullCursor();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003738
Douglas Gregorb6998662010-01-19 19:34:47 +00003739 case Decl::ObjCProperty:
3740 // FIXME: We don't really know where to find the
3741 // ObjCPropertyImplDecls that implement this property.
3742 return clang_getNullCursor();
3743
3744 case Decl::ObjCCompatibleAlias:
3745 if (ObjCInterfaceDecl *Class
3746 = cast<ObjCCompatibleAliasDecl>(D)->getClassInterface())
3747 if (!Class->isForwardDecl())
Ted Kremeneka60ed472010-11-16 08:15:36 +00003748 return MakeCXCursor(Class, TU);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003749
Douglas Gregorb6998662010-01-19 19:34:47 +00003750 return clang_getNullCursor();
3751
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003752 case Decl::ObjCForwardProtocol:
3753 return MakeCursorOverloadedDeclRef(cast<ObjCForwardProtocolDecl>(D),
Ted Kremeneka60ed472010-11-16 08:15:36 +00003754 D->getLocation(), TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00003755
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003756 case Decl::ObjCClass:
Daniel Dunbar9e1ebdd2010-11-05 07:19:21 +00003757 return MakeCursorOverloadedDeclRef(cast<ObjCClassDecl>(D), D->getLocation(),
Ted Kremeneka60ed472010-11-16 08:15:36 +00003758 TU);
Douglas Gregorb6998662010-01-19 19:34:47 +00003759
3760 case Decl::Friend:
3761 if (NamedDecl *Friend = cast<FriendDecl>(D)->getFriendDecl())
Ted Kremeneka60ed472010-11-16 08:15:36 +00003762 return clang_getCursorDefinition(MakeCXCursor(Friend, TU));
Douglas Gregorb6998662010-01-19 19:34:47 +00003763 return clang_getNullCursor();
3764
3765 case Decl::FriendTemplate:
3766 if (NamedDecl *Friend = cast<FriendTemplateDecl>(D)->getFriendDecl())
Ted Kremeneka60ed472010-11-16 08:15:36 +00003767 return clang_getCursorDefinition(MakeCXCursor(Friend, TU));
Douglas Gregorb6998662010-01-19 19:34:47 +00003768 return clang_getNullCursor();
3769 }
3770
3771 return clang_getNullCursor();
3772}
3773
3774unsigned clang_isCursorDefinition(CXCursor C) {
3775 if (!clang_isDeclaration(C.kind))
3776 return 0;
3777
3778 return clang_getCursorDefinition(C) == C;
3779}
3780
Douglas Gregor1a9d0502010-11-19 23:44:15 +00003781CXCursor clang_getCanonicalCursor(CXCursor C) {
3782 if (!clang_isDeclaration(C.kind))
3783 return C;
3784
3785 if (Decl *D = getCursorDecl(C))
3786 return MakeCXCursor(D->getCanonicalDecl(), getCursorTU(C));
3787
3788 return C;
3789}
3790
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003791unsigned clang_getNumOverloadedDecls(CXCursor C) {
Douglas Gregor7c432dd2010-09-16 13:54:00 +00003792 if (C.kind != CXCursor_OverloadedDeclRef)
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003793 return 0;
3794
3795 OverloadedDeclRefStorage Storage = getCursorOverloadedDeclRef(C).first;
3796 if (OverloadExpr *E = Storage.dyn_cast<OverloadExpr *>())
3797 return E->getNumDecls();
3798
3799 if (OverloadedTemplateStorage *S
3800 = Storage.dyn_cast<OverloadedTemplateStorage*>())
3801 return S->size();
3802
3803 Decl *D = Storage.get<Decl*>();
3804 if (UsingDecl *Using = dyn_cast<UsingDecl>(D))
Argyrios Kyrtzidis826faa22010-11-10 05:40:41 +00003805 return Using->shadow_size();
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003806 if (ObjCClassDecl *Classes = dyn_cast<ObjCClassDecl>(D))
3807 return Classes->size();
3808 if (ObjCForwardProtocolDecl *Protocols =dyn_cast<ObjCForwardProtocolDecl>(D))
3809 return Protocols->protocol_size();
3810
3811 return 0;
3812}
3813
3814CXCursor clang_getOverloadedDecl(CXCursor cursor, unsigned index) {
Douglas Gregor7c432dd2010-09-16 13:54:00 +00003815 if (cursor.kind != CXCursor_OverloadedDeclRef)
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003816 return clang_getNullCursor();
3817
3818 if (index >= clang_getNumOverloadedDecls(cursor))
3819 return clang_getNullCursor();
3820
Ted Kremeneka60ed472010-11-16 08:15:36 +00003821 CXTranslationUnit TU = getCursorTU(cursor);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003822 OverloadedDeclRefStorage Storage = getCursorOverloadedDeclRef(cursor).first;
3823 if (OverloadExpr *E = Storage.dyn_cast<OverloadExpr *>())
Ted Kremeneka60ed472010-11-16 08:15:36 +00003824 return MakeCXCursor(E->decls_begin()[index], TU);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003825
3826 if (OverloadedTemplateStorage *S
3827 = Storage.dyn_cast<OverloadedTemplateStorage*>())
Ted Kremeneka60ed472010-11-16 08:15:36 +00003828 return MakeCXCursor(S->begin()[index], TU);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003829
3830 Decl *D = Storage.get<Decl*>();
3831 if (UsingDecl *Using = dyn_cast<UsingDecl>(D)) {
3832 // FIXME: This is, unfortunately, linear time.
3833 UsingDecl::shadow_iterator Pos = Using->shadow_begin();
3834 std::advance(Pos, index);
Ted Kremeneka60ed472010-11-16 08:15:36 +00003835 return MakeCXCursor(cast<UsingShadowDecl>(*Pos)->getTargetDecl(), TU);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003836 }
3837
3838 if (ObjCClassDecl *Classes = dyn_cast<ObjCClassDecl>(D))
Ted Kremeneka60ed472010-11-16 08:15:36 +00003839 return MakeCXCursor(Classes->begin()[index].getInterface(), TU);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003840
3841 if (ObjCForwardProtocolDecl *Protocols = dyn_cast<ObjCForwardProtocolDecl>(D))
Ted Kremeneka60ed472010-11-16 08:15:36 +00003842 return MakeCXCursor(Protocols->protocol_begin()[index], TU);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +00003843
3844 return clang_getNullCursor();
3845}
3846
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00003847void clang_getDefinitionSpellingAndExtent(CXCursor C,
Steve Naroff4ade6d62009-09-23 17:52:52 +00003848 const char **startBuf,
3849 const char **endBuf,
3850 unsigned *startLine,
3851 unsigned *startColumn,
3852 unsigned *endLine,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00003853 unsigned *endColumn) {
Douglas Gregor283cae32010-01-15 21:56:13 +00003854 assert(getCursorDecl(C) && "CXCursor has null decl");
3855 NamedDecl *ND = static_cast<NamedDecl *>(getCursorDecl(C));
Steve Naroff4ade6d62009-09-23 17:52:52 +00003856 FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
3857 CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody());
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003858
Steve Naroff4ade6d62009-09-23 17:52:52 +00003859 SourceManager &SM = FD->getASTContext().getSourceManager();
3860 *startBuf = SM.getCharacterData(Body->getLBracLoc());
3861 *endBuf = SM.getCharacterData(Body->getRBracLoc());
3862 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
3863 *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc());
3864 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc());
3865 *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc());
3866}
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003867
Douglas Gregor0a812cf2010-02-18 23:07:20 +00003868void clang_enableStackTraces(void) {
3869 llvm::sys::PrintStackTraceOnErrorSignal();
3870}
3871
Daniel Dunbar995aaf92010-11-04 01:26:29 +00003872void clang_executeOnThread(void (*fn)(void*), void *user_data,
3873 unsigned stack_size) {
3874 llvm::llvm_execute_on_thread(fn, user_data, stack_size);
3875}
3876
Ted Kremenekfb480492010-01-13 21:46:36 +00003877} // end: extern "C"
Steve Naroff4ade6d62009-09-23 17:52:52 +00003878
Ted Kremenekfb480492010-01-13 21:46:36 +00003879//===----------------------------------------------------------------------===//
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003880// Token-based Operations.
3881//===----------------------------------------------------------------------===//
3882
3883/* CXToken layout:
3884 * int_data[0]: a CXTokenKind
3885 * int_data[1]: starting token location
3886 * int_data[2]: token length
3887 * int_data[3]: reserved
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003888 * ptr_data: for identifiers and keywords, an IdentifierInfo*.
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003889 * otherwise unused.
3890 */
3891extern "C" {
3892
3893CXTokenKind clang_getTokenKind(CXToken CXTok) {
3894 return static_cast<CXTokenKind>(CXTok.int_data[0]);
3895}
3896
3897CXString clang_getTokenSpelling(CXTranslationUnit TU, CXToken CXTok) {
3898 switch (clang_getTokenKind(CXTok)) {
3899 case CXToken_Identifier:
3900 case CXToken_Keyword:
3901 // We know we have an IdentifierInfo*, so use that.
Ted Kremenekee4db4f2010-02-17 00:41:08 +00003902 return createCXString(static_cast<IdentifierInfo *>(CXTok.ptr_data)
3903 ->getNameStart());
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003904
3905 case CXToken_Literal: {
3906 // We have stashed the starting pointer in the ptr_data field. Use it.
3907 const char *Text = static_cast<const char *>(CXTok.ptr_data);
Ted Kremenekee4db4f2010-02-17 00:41:08 +00003908 return createCXString(llvm::StringRef(Text, CXTok.int_data[2]));
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003909 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003910
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003911 case CXToken_Punctuation:
3912 case CXToken_Comment:
3913 break;
3914 }
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003915
3916 // We have to find the starting buffer pointer the hard way, by
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003917 // deconstructing the source location.
Ted Kremeneka60ed472010-11-16 08:15:36 +00003918 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003919 if (!CXXUnit)
Ted Kremenekee4db4f2010-02-17 00:41:08 +00003920 return createCXString("");
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003921
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003922 SourceLocation Loc = SourceLocation::getFromRawEncoding(CXTok.int_data[1]);
3923 std::pair<FileID, unsigned> LocInfo
3924 = CXXUnit->getSourceManager().getDecomposedLoc(Loc);
Douglas Gregorf715ca12010-03-16 00:06:06 +00003925 bool Invalid = false;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +00003926 llvm::StringRef Buffer
Douglas Gregorf715ca12010-03-16 00:06:06 +00003927 = CXXUnit->getSourceManager().getBufferData(LocInfo.first, &Invalid);
3928 if (Invalid)
Douglas Gregoraea67db2010-03-15 22:54:52 +00003929 return createCXString("");
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003930
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +00003931 return createCXString(Buffer.substr(LocInfo.second, CXTok.int_data[2]));
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003932}
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003933
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003934CXSourceLocation clang_getTokenLocation(CXTranslationUnit TU, CXToken CXTok) {
Ted Kremeneka60ed472010-11-16 08:15:36 +00003935 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003936 if (!CXXUnit)
3937 return clang_getNullLocation();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003938
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003939 return cxloc::translateSourceLocation(CXXUnit->getASTContext(),
3940 SourceLocation::getFromRawEncoding(CXTok.int_data[1]));
3941}
3942
3943CXSourceRange clang_getTokenExtent(CXTranslationUnit TU, CXToken CXTok) {
Ted Kremeneka60ed472010-11-16 08:15:36 +00003944 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
Douglas Gregor5352ac02010-01-28 00:27:43 +00003945 if (!CXXUnit)
3946 return clang_getNullRange();
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003947
3948 return cxloc::translateSourceRange(CXXUnit->getASTContext(),
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003949 SourceLocation::getFromRawEncoding(CXTok.int_data[1]));
3950}
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003951
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003952void clang_tokenize(CXTranslationUnit TU, CXSourceRange Range,
3953 CXToken **Tokens, unsigned *NumTokens) {
3954 if (Tokens)
3955 *Tokens = 0;
3956 if (NumTokens)
3957 *NumTokens = 0;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003958
Ted Kremeneka60ed472010-11-16 08:15:36 +00003959 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003960 if (!CXXUnit || !Tokens || !NumTokens)
3961 return;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003962
Douglas Gregorbdf60622010-03-05 21:16:25 +00003963 ASTUnit::ConcurrencyCheck Check(*CXXUnit);
3964
Daniel Dunbar85b988f2010-02-14 08:31:57 +00003965 SourceRange R = cxloc::translateCXSourceRange(Range);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003966 if (R.isInvalid())
3967 return;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003968
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003969 SourceManager &SourceMgr = CXXUnit->getSourceManager();
3970 std::pair<FileID, unsigned> BeginLocInfo
3971 = SourceMgr.getDecomposedLoc(R.getBegin());
3972 std::pair<FileID, unsigned> EndLocInfo
3973 = SourceMgr.getDecomposedLoc(R.getEnd());
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003974
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003975 // Cannot tokenize across files.
3976 if (BeginLocInfo.first != EndLocInfo.first)
3977 return;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003978
3979 // Create a lexer
Douglas Gregorf715ca12010-03-16 00:06:06 +00003980 bool Invalid = false;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +00003981 llvm::StringRef Buffer
Douglas Gregorf715ca12010-03-16 00:06:06 +00003982 = SourceMgr.getBufferData(BeginLocInfo.first, &Invalid);
Douglas Gregor47a3fcd2010-03-16 20:26:15 +00003983 if (Invalid)
3984 return;
Douglas Gregoraea67db2010-03-15 22:54:52 +00003985
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003986 Lexer Lex(SourceMgr.getLocForStartOfFile(BeginLocInfo.first),
3987 CXXUnit->getASTContext().getLangOptions(),
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +00003988 Buffer.begin(), Buffer.data() + BeginLocInfo.second, Buffer.end());
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003989 Lex.SetCommentRetentionState(true);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00003990
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003991 // Lex tokens until we hit the end of the range.
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +00003992 const char *EffectiveBufferEnd = Buffer.data() + EndLocInfo.second;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003993 llvm::SmallVector<CXToken, 32> CXTokens;
3994 Token Tok;
David Chisnall096428b2010-10-13 21:44:48 +00003995 bool previousWasAt = false;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003996 do {
3997 // Lex the next token
3998 Lex.LexFromRawLexer(Tok);
3999 if (Tok.is(tok::eof))
4000 break;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004001
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004002 // Initialize the CXToken.
4003 CXToken CXTok;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004004
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004005 // - Common fields
4006 CXTok.int_data[1] = Tok.getLocation().getRawEncoding();
4007 CXTok.int_data[2] = Tok.getLength();
4008 CXTok.int_data[3] = 0;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004009
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004010 // - Kind-specific fields
4011 if (Tok.isLiteral()) {
4012 CXTok.int_data[0] = CXToken_Literal;
4013 CXTok.ptr_data = (void *)Tok.getLiteralData();
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +00004014 } else if (Tok.is(tok::raw_identifier)) {
Douglas Gregoraea67db2010-03-15 22:54:52 +00004015 // Lookup the identifier to determine whether we have a keyword.
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004016 IdentifierInfo *II
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +00004017 = CXXUnit->getPreprocessor().LookUpIdentifierInfo(Tok);
Ted Kremenekaa8a66d2010-05-05 00:55:20 +00004018
David Chisnall096428b2010-10-13 21:44:48 +00004019 if ((II->getObjCKeywordID() != tok::objc_not_keyword) && previousWasAt) {
Ted Kremenekaa8a66d2010-05-05 00:55:20 +00004020 CXTok.int_data[0] = CXToken_Keyword;
4021 }
4022 else {
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +00004023 CXTok.int_data[0] = Tok.is(tok::identifier)
4024 ? CXToken_Identifier
4025 : CXToken_Keyword;
Ted Kremenekaa8a66d2010-05-05 00:55:20 +00004026 }
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004027 CXTok.ptr_data = II;
4028 } else if (Tok.is(tok::comment)) {
4029 CXTok.int_data[0] = CXToken_Comment;
4030 CXTok.ptr_data = 0;
4031 } else {
4032 CXTok.int_data[0] = CXToken_Punctuation;
4033 CXTok.ptr_data = 0;
4034 }
4035 CXTokens.push_back(CXTok);
David Chisnall096428b2010-10-13 21:44:48 +00004036 previousWasAt = Tok.is(tok::at);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004037 } while (Lex.getBufferLocation() <= EffectiveBufferEnd);
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004038
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004039 if (CXTokens.empty())
4040 return;
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004041
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004042 *Tokens = (CXToken *)malloc(sizeof(CXToken) * CXTokens.size());
4043 memmove(*Tokens, CXTokens.data(), sizeof(CXToken) * CXTokens.size());
4044 *NumTokens = CXTokens.size();
4045}
Douglas Gregor0045e9f2010-01-26 18:31:56 +00004046
Ted Kremenek6db61092010-05-05 00:55:15 +00004047void clang_disposeTokens(CXTranslationUnit TU,
4048 CXToken *Tokens, unsigned NumTokens) {
4049 free(Tokens);
4050}
4051
4052} // end: extern "C"
4053
4054//===----------------------------------------------------------------------===//
4055// Token annotation APIs.
4056//===----------------------------------------------------------------------===//
4057
Douglas Gregor0045e9f2010-01-26 18:31:56 +00004058typedef llvm::DenseMap<unsigned, CXCursor> AnnotateTokensData;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004059static enum CXChildVisitResult AnnotateTokensVisitor(CXCursor cursor,
4060 CXCursor parent,
4061 CXClientData client_data);
Ted Kremenek6db61092010-05-05 00:55:15 +00004062namespace {
4063class AnnotateTokensWorker {
4064 AnnotateTokensData &Annotated;
Ted Kremenek11949cb2010-05-05 00:55:17 +00004065 CXToken *Tokens;
4066 CXCursor *Cursors;
4067 unsigned NumTokens;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004068 unsigned TokIdx;
Douglas Gregor4419b672010-10-21 06:10:04 +00004069 unsigned PreprocessingTokIdx;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004070 CursorVisitor AnnotateVis;
4071 SourceManager &SrcMgr;
4072
4073 bool MoreTokens() const { return TokIdx < NumTokens; }
4074 unsigned NextToken() const { return TokIdx; }
4075 void AdvanceToken() { ++TokIdx; }
4076 SourceLocation GetTokenLoc(unsigned tokI) {
4077 return SourceLocation::getFromRawEncoding(Tokens[tokI].int_data[1]);
4078 }
4079
Ted Kremenek6db61092010-05-05 00:55:15 +00004080public:
Ted Kremenek11949cb2010-05-05 00:55:17 +00004081 AnnotateTokensWorker(AnnotateTokensData &annotated,
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004082 CXToken *tokens, CXCursor *cursors, unsigned numTokens,
Ted Kremeneka60ed472010-11-16 08:15:36 +00004083 CXTranslationUnit tu, SourceRange RegionOfInterest)
Ted Kremenek11949cb2010-05-05 00:55:17 +00004084 : Annotated(annotated), Tokens(tokens), Cursors(cursors),
Douglas Gregor4419b672010-10-21 06:10:04 +00004085 NumTokens(numTokens), TokIdx(0), PreprocessingTokIdx(0),
Ted Kremeneka60ed472010-11-16 08:15:36 +00004086 AnnotateVis(tu,
4087 AnnotateTokensVisitor, this,
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004088 Decl::MaxPCHLevel, RegionOfInterest),
Ted Kremeneka60ed472010-11-16 08:15:36 +00004089 SrcMgr(static_cast<ASTUnit*>(tu->TUData)->getSourceManager()) {}
Ted Kremenek11949cb2010-05-05 00:55:17 +00004090
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004091 void VisitChildren(CXCursor C) { AnnotateVis.VisitChildren(C); }
Ted Kremenek6db61092010-05-05 00:55:15 +00004092 enum CXChildVisitResult Visit(CXCursor cursor, CXCursor parent);
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004093 void AnnotateTokens(CXCursor parent);
Ted Kremenekab979612010-11-11 08:05:23 +00004094 void AnnotateTokens() {
Ted Kremeneka60ed472010-11-16 08:15:36 +00004095 AnnotateTokens(clang_getTranslationUnitCursor(AnnotateVis.getTU()));
Ted Kremenekab979612010-11-11 08:05:23 +00004096 }
Ted Kremenek6db61092010-05-05 00:55:15 +00004097};
4098}
Douglas Gregor0045e9f2010-01-26 18:31:56 +00004099
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004100void AnnotateTokensWorker::AnnotateTokens(CXCursor parent) {
4101 // Walk the AST within the region of interest, annotating tokens
4102 // along the way.
4103 VisitChildren(parent);
Ted Kremenek11949cb2010-05-05 00:55:17 +00004104
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004105 for (unsigned I = 0 ; I < TokIdx ; ++I) {
4106 AnnotateTokensData::iterator Pos = Annotated.find(Tokens[I].int_data[1]);
Douglas Gregor4419b672010-10-21 06:10:04 +00004107 if (Pos != Annotated.end() &&
4108 (clang_isInvalid(Cursors[I].kind) ||
4109 Pos->second.kind != CXCursor_PreprocessingDirective))
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004110 Cursors[I] = Pos->second;
4111 }
4112
4113 // Finish up annotating any tokens left.
4114 if (!MoreTokens())
4115 return;
4116
4117 const CXCursor &C = clang_getNullCursor();
4118 for (unsigned I = TokIdx ; I < NumTokens ; ++I) {
4119 AnnotateTokensData::iterator Pos = Annotated.find(Tokens[I].int_data[1]);
4120 Cursors[I] = (Pos == Annotated.end()) ? C : Pos->second;
Ted Kremenek11949cb2010-05-05 00:55:17 +00004121 }
4122}
4123
Ted Kremenek6db61092010-05-05 00:55:15 +00004124enum CXChildVisitResult
Douglas Gregor4419b672010-10-21 06:10:04 +00004125AnnotateTokensWorker::Visit(CXCursor cursor, CXCursor parent) {
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004126 CXSourceLocation Loc = clang_getCursorLocation(cursor);
Douglas Gregor4419b672010-10-21 06:10:04 +00004127 SourceRange cursorRange = getRawCursorExtent(cursor);
Douglas Gregor81d3c042010-11-01 20:13:04 +00004128 if (cursorRange.isInvalid())
4129 return CXChildVisit_Recurse;
4130
Douglas Gregor4419b672010-10-21 06:10:04 +00004131 if (clang_isPreprocessing(cursor.kind)) {
4132 // For macro instantiations, just note where the beginning of the macro
4133 // instantiation occurs.
4134 if (cursor.kind == CXCursor_MacroInstantiation) {
4135 Annotated[Loc.int_data] = cursor;
4136 return CXChildVisit_Recurse;
4137 }
4138
Douglas Gregor4419b672010-10-21 06:10:04 +00004139 // Items in the preprocessing record are kept separate from items in
4140 // declarations, so we keep a separate token index.
4141 unsigned SavedTokIdx = TokIdx;
4142 TokIdx = PreprocessingTokIdx;
4143
4144 // Skip tokens up until we catch up to the beginning of the preprocessing
4145 // entry.
4146 while (MoreTokens()) {
4147 const unsigned I = NextToken();
4148 SourceLocation TokLoc = GetTokenLoc(I);
4149 switch (LocationCompare(SrcMgr, TokLoc, cursorRange)) {
4150 case RangeBefore:
4151 AdvanceToken();
4152 continue;
4153 case RangeAfter:
4154 case RangeOverlap:
4155 break;
4156 }
4157 break;
4158 }
4159
4160 // Look at all of the tokens within this range.
4161 while (MoreTokens()) {
4162 const unsigned I = NextToken();
4163 SourceLocation TokLoc = GetTokenLoc(I);
4164 switch (LocationCompare(SrcMgr, TokLoc, cursorRange)) {
4165 case RangeBefore:
4166 assert(0 && "Infeasible");
4167 case RangeAfter:
4168 break;
4169 case RangeOverlap:
4170 Cursors[I] = cursor;
4171 AdvanceToken();
4172 continue;
4173 }
4174 break;
4175 }
4176
4177 // Save the preprocessing token index; restore the non-preprocessing
4178 // token index.
4179 PreprocessingTokIdx = TokIdx;
4180 TokIdx = SavedTokIdx;
Douglas Gregor0045e9f2010-01-26 18:31:56 +00004181 return CXChildVisit_Recurse;
4182 }
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004183
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004184 if (cursorRange.isInvalid())
4185 return CXChildVisit_Continue;
Ted Kremeneka333c662010-05-12 05:29:33 +00004186
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004187 SourceLocation L = SourceLocation::getFromRawEncoding(Loc.int_data);
4188
Ted Kremeneka333c662010-05-12 05:29:33 +00004189 // Adjust the annotated range based specific declarations.
4190 const enum CXCursorKind cursorK = clang_getCursorKind(cursor);
4191 if (cursorK >= CXCursor_FirstDecl && cursorK <= CXCursor_LastDecl) {
Ted Kremenek23173d72010-05-18 21:09:07 +00004192 Decl *D = cxcursor::getCursorDecl(cursor);
4193 // Don't visit synthesized ObjC methods, since they have no syntatic
4194 // representation in the source.
4195 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
4196 if (MD->isSynthesized())
4197 return CXChildVisit_Continue;
4198 }
4199 if (const DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
Ted Kremeneka333c662010-05-12 05:29:33 +00004200 if (TypeSourceInfo *TI = DD->getTypeSourceInfo()) {
4201 TypeLoc TL = TI->getTypeLoc();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00004202 SourceLocation TLoc = TL.getSourceRange().getBegin();
Douglas Gregor81d3c042010-11-01 20:13:04 +00004203 if (TLoc.isValid() && L.isValid() &&
Ted Kremenek6bfd5332010-05-13 15:38:38 +00004204 SrcMgr.isBeforeInTranslationUnit(TLoc, L))
Ted Kremeneka333c662010-05-12 05:29:33 +00004205 cursorRange.setBegin(TLoc);
Ted Kremeneka333c662010-05-12 05:29:33 +00004206 }
4207 }
4208 }
Douglas Gregor81d3c042010-11-01 20:13:04 +00004209
Ted Kremenek3f404602010-08-14 01:14:06 +00004210 // If the location of the cursor occurs within a macro instantiation, record
4211 // the spelling location of the cursor in our annotation map. We can then
4212 // paper over the token labelings during a post-processing step to try and
4213 // get cursor mappings for tokens that are the *arguments* of a macro
4214 // instantiation.
4215 if (L.isMacroID()) {
4216 unsigned rawEncoding = SrcMgr.getSpellingLoc(L).getRawEncoding();
4217 // Only invalidate the old annotation if it isn't part of a preprocessing
4218 // directive. Here we assume that the default construction of CXCursor
4219 // results in CXCursor.kind being an initialized value (i.e., 0). If
4220 // this isn't the case, we can fix by doing lookup + insertion.
Douglas Gregor4419b672010-10-21 06:10:04 +00004221
Ted Kremenek3f404602010-08-14 01:14:06 +00004222 CXCursor &oldC = Annotated[rawEncoding];
4223 if (!clang_isPreprocessing(oldC.kind))
4224 oldC = cursor;
4225 }
4226
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004227 const enum CXCursorKind K = clang_getCursorKind(parent);
4228 const CXCursor updateC =
Ted Kremenekd8b0a842010-08-25 22:16:02 +00004229 (clang_isInvalid(K) || K == CXCursor_TranslationUnit)
4230 ? clang_getNullCursor() : parent;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004231
4232 while (MoreTokens()) {
4233 const unsigned I = NextToken();
4234 SourceLocation TokLoc = GetTokenLoc(I);
4235 switch (LocationCompare(SrcMgr, TokLoc, cursorRange)) {
4236 case RangeBefore:
4237 Cursors[I] = updateC;
4238 AdvanceToken();
4239 continue;
4240 case RangeAfter:
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004241 case RangeOverlap:
4242 break;
4243 }
4244 break;
4245 }
4246
4247 // Visit children to get their cursor information.
4248 const unsigned BeforeChildren = NextToken();
4249 VisitChildren(cursor);
4250 const unsigned AfterChildren = NextToken();
4251
4252 // Adjust 'Last' to the last token within the extent of the cursor.
4253 while (MoreTokens()) {
4254 const unsigned I = NextToken();
4255 SourceLocation TokLoc = GetTokenLoc(I);
4256 switch (LocationCompare(SrcMgr, TokLoc, cursorRange)) {
4257 case RangeBefore:
4258 assert(0 && "Infeasible");
4259 case RangeAfter:
4260 break;
4261 case RangeOverlap:
4262 Cursors[I] = updateC;
4263 AdvanceToken();
4264 continue;
4265 }
4266 break;
4267 }
4268 const unsigned Last = NextToken();
Ted Kremenek6db61092010-05-05 00:55:15 +00004269
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004270 // Scan the tokens that are at the beginning of the cursor, but are not
4271 // capture by the child cursors.
4272
4273 // For AST elements within macros, rely on a post-annotate pass to
4274 // to correctly annotate the tokens with cursors. Otherwise we can
4275 // get confusing results of having tokens that map to cursors that really
4276 // are expanded by an instantiation.
4277 if (L.isMacroID())
4278 cursor = clang_getNullCursor();
4279
4280 for (unsigned I = BeforeChildren; I != AfterChildren; ++I) {
4281 if (!clang_isInvalid(clang_getCursorKind(Cursors[I])))
4282 break;
Douglas Gregor4419b672010-10-21 06:10:04 +00004283
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004284 Cursors[I] = cursor;
4285 }
4286 // Scan the tokens that are at the end of the cursor, but are not captured
4287 // but the child cursors.
4288 for (unsigned I = AfterChildren; I != Last; ++I)
4289 Cursors[I] = cursor;
4290
4291 TokIdx = Last;
4292 return CXChildVisit_Continue;
Douglas Gregor0045e9f2010-01-26 18:31:56 +00004293}
4294
Ted Kremenek6db61092010-05-05 00:55:15 +00004295static enum CXChildVisitResult AnnotateTokensVisitor(CXCursor cursor,
4296 CXCursor parent,
4297 CXClientData client_data) {
4298 return static_cast<AnnotateTokensWorker*>(client_data)->Visit(cursor, parent);
4299}
4300
Ted Kremenekab979612010-11-11 08:05:23 +00004301// This gets run a separate thread to avoid stack blowout.
4302static void runAnnotateTokensWorker(void *UserData) {
4303 ((AnnotateTokensWorker*)UserData)->AnnotateTokens();
4304}
4305
Ted Kremenek6db61092010-05-05 00:55:15 +00004306extern "C" {
4307
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004308void clang_annotateTokens(CXTranslationUnit TU,
4309 CXToken *Tokens, unsigned NumTokens,
4310 CXCursor *Cursors) {
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004311
4312 if (NumTokens == 0 || !Tokens || !Cursors)
Douglas Gregor0045e9f2010-01-26 18:31:56 +00004313 return;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004314
Douglas Gregor4419b672010-10-21 06:10:04 +00004315 // Any token we don't specifically annotate will have a NULL cursor.
4316 CXCursor C = clang_getNullCursor();
4317 for (unsigned I = 0; I != NumTokens; ++I)
4318 Cursors[I] = C;
4319
Ted Kremeneka60ed472010-11-16 08:15:36 +00004320 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData);
Douglas Gregor4419b672010-10-21 06:10:04 +00004321 if (!CXXUnit)
Douglas Gregor0045e9f2010-01-26 18:31:56 +00004322 return;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004323
Douglas Gregorbdf60622010-03-05 21:16:25 +00004324 ASTUnit::ConcurrencyCheck Check(*CXXUnit);
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004325
Douglas Gregor0396f462010-03-19 05:22:59 +00004326 // Determine the region of interest, which contains all of the tokens.
Douglas Gregor0045e9f2010-01-26 18:31:56 +00004327 SourceRange RegionOfInterest;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004328 RegionOfInterest.setBegin(cxloc::translateSourceLocation(
4329 clang_getTokenLocation(TU, Tokens[0])));
Douglas Gregora8e5c5b2010-07-22 20:22:31 +00004330 RegionOfInterest.setEnd(cxloc::translateSourceLocation(
4331 clang_getTokenLocation(TU,
4332 Tokens[NumTokens - 1])));
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004333
Douglas Gregor0396f462010-03-19 05:22:59 +00004334 // A mapping from the source locations found when re-lexing or traversing the
4335 // region of interest to the corresponding cursors.
4336 AnnotateTokensData Annotated;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004337
4338 // Relex the tokens within the source range to look for preprocessing
Douglas Gregor0396f462010-03-19 05:22:59 +00004339 // directives.
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00004340 SourceManager &SourceMgr = CXXUnit->getSourceManager();
4341 std::pair<FileID, unsigned> BeginLocInfo
4342 = SourceMgr.getDecomposedLoc(RegionOfInterest.getBegin());
4343 std::pair<FileID, unsigned> EndLocInfo
4344 = SourceMgr.getDecomposedLoc(RegionOfInterest.getEnd());
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004345
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00004346 llvm::StringRef Buffer;
Douglas Gregor0396f462010-03-19 05:22:59 +00004347 bool Invalid = false;
4348 if (BeginLocInfo.first == EndLocInfo.first &&
4349 ((Buffer = SourceMgr.getBufferData(BeginLocInfo.first, &Invalid)),true) &&
4350 !Invalid) {
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00004351 Lexer Lex(SourceMgr.getLocForStartOfFile(BeginLocInfo.first),
4352 CXXUnit->getASTContext().getLangOptions(),
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004353 Buffer.begin(), Buffer.data() + BeginLocInfo.second,
Douglas Gregor4ae8f292010-03-18 17:52:52 +00004354 Buffer.end());
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00004355 Lex.SetCommentRetentionState(true);
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004356
4357 // Lex tokens in raw mode until we hit the end of the range, to avoid
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00004358 // entering #includes or expanding macros.
Douglas Gregor48072312010-03-18 15:23:44 +00004359 while (true) {
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00004360 Token Tok;
4361 Lex.LexFromRawLexer(Tok);
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004362
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00004363 reprocess:
4364 if (Tok.is(tok::hash) && Tok.isAtStartOfLine()) {
4365 // We have found a preprocessing directive. Gobble it up so that we
Daniel Dunbar9e1ebdd2010-11-05 07:19:21 +00004366 // don't see it while preprocessing these tokens later, but keep track
4367 // of all of the token locations inside this preprocessing directive so
4368 // that we can annotate them appropriately.
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00004369 //
4370 // FIXME: Some simple tests here could identify macro definitions and
4371 // #undefs, to provide specific cursor kinds for those.
4372 std::vector<SourceLocation> Locations;
4373 do {
4374 Locations.push_back(Tok.getLocation());
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004375 Lex.LexFromRawLexer(Tok);
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00004376 } while (!Tok.isAtStartOfLine() && !Tok.is(tok::eof));
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004377
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00004378 using namespace cxcursor;
4379 CXCursor Cursor
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004380 = MakePreprocessingDirectiveCursor(SourceRange(Locations.front(),
4381 Locations.back()),
Ted Kremeneka60ed472010-11-16 08:15:36 +00004382 TU);
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00004383 for (unsigned I = 0, N = Locations.size(); I != N; ++I) {
4384 Annotated[Locations[I].getRawEncoding()] = Cursor;
4385 }
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004386
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00004387 if (Tok.isAtStartOfLine())
4388 goto reprocess;
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004389
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00004390 continue;
4391 }
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004392
Douglas Gregor48072312010-03-18 15:23:44 +00004393 if (Tok.is(tok::eof))
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +00004394 break;
4395 }
Douglas Gregor4ae8f292010-03-18 17:52:52 +00004396 }
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004397
Douglas Gregor0396f462010-03-19 05:22:59 +00004398 // Annotate all of the source locations in the region of interest that map to
Ted Kremenekfbd84ca2010-05-05 00:55:23 +00004399 // a specific cursor.
4400 AnnotateTokensWorker W(Annotated, Tokens, Cursors, NumTokens,
Ted Kremeneka60ed472010-11-16 08:15:36 +00004401 TU, RegionOfInterest);
Ted Kremenekab979612010-11-11 08:05:23 +00004402
4403 // Run the worker within a CrashRecoveryContext.
Ted Kremenek6c53fdd2010-11-14 17:47:35 +00004404 // FIXME: We use a ridiculous stack size here because the data-recursion
4405 // algorithm uses a large stack frame than the non-data recursive version,
4406 // and AnnotationTokensWorker currently transforms the data-recursion
4407 // algorithm back into a traditional recursion by explicitly calling
4408 // VisitChildren(). We will need to remove this explicit recursive call.
Ted Kremenekab979612010-11-11 08:05:23 +00004409 llvm::CrashRecoveryContext CRC;
Ted Kremenek6c53fdd2010-11-14 17:47:35 +00004410 if (!RunSafely(CRC, runAnnotateTokensWorker, &W,
4411 GetSafetyThreadStackSize() * 2)) {
Ted Kremenekab979612010-11-11 08:05:23 +00004412 fprintf(stderr, "libclang: crash detected while annotating tokens\n");
4413 }
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004414}
Douglas Gregorfc8ea232010-01-26 17:06:03 +00004415} // end: extern "C"
4416
4417//===----------------------------------------------------------------------===//
Ted Kremenek16b42592010-03-03 06:36:57 +00004418// Operations for querying linkage of a cursor.
4419//===----------------------------------------------------------------------===//
4420
4421extern "C" {
4422CXLinkageKind clang_getCursorLinkage(CXCursor cursor) {
Douglas Gregor0396f462010-03-19 05:22:59 +00004423 if (!clang_isDeclaration(cursor.kind))
4424 return CXLinkage_Invalid;
4425
Ted Kremenek16b42592010-03-03 06:36:57 +00004426 Decl *D = cxcursor::getCursorDecl(cursor);
4427 if (NamedDecl *ND = dyn_cast_or_null<NamedDecl>(D))
4428 switch (ND->getLinkage()) {
4429 case NoLinkage: return CXLinkage_NoLinkage;
4430 case InternalLinkage: return CXLinkage_Internal;
4431 case UniqueExternalLinkage: return CXLinkage_UniqueExternal;
4432 case ExternalLinkage: return CXLinkage_External;
4433 };
4434
4435 return CXLinkage_Invalid;
4436}
4437} // end: extern "C"
4438
4439//===----------------------------------------------------------------------===//
Ted Kremenek45e1dae2010-04-12 21:22:16 +00004440// Operations for querying language of a cursor.
4441//===----------------------------------------------------------------------===//
4442
4443static CXLanguageKind getDeclLanguage(const Decl *D) {
4444 switch (D->getKind()) {
4445 default:
4446 break;
4447 case Decl::ImplicitParam:
4448 case Decl::ObjCAtDefsField:
4449 case Decl::ObjCCategory:
4450 case Decl::ObjCCategoryImpl:
4451 case Decl::ObjCClass:
4452 case Decl::ObjCCompatibleAlias:
Ted Kremenek45e1dae2010-04-12 21:22:16 +00004453 case Decl::ObjCForwardProtocol:
4454 case Decl::ObjCImplementation:
4455 case Decl::ObjCInterface:
4456 case Decl::ObjCIvar:
4457 case Decl::ObjCMethod:
4458 case Decl::ObjCProperty:
4459 case Decl::ObjCPropertyImpl:
4460 case Decl::ObjCProtocol:
4461 return CXLanguage_ObjC;
4462 case Decl::CXXConstructor:
4463 case Decl::CXXConversion:
4464 case Decl::CXXDestructor:
4465 case Decl::CXXMethod:
4466 case Decl::CXXRecord:
4467 case Decl::ClassTemplate:
4468 case Decl::ClassTemplatePartialSpecialization:
4469 case Decl::ClassTemplateSpecialization:
4470 case Decl::Friend:
4471 case Decl::FriendTemplate:
4472 case Decl::FunctionTemplate:
4473 case Decl::LinkageSpec:
4474 case Decl::Namespace:
4475 case Decl::NamespaceAlias:
4476 case Decl::NonTypeTemplateParm:
4477 case Decl::StaticAssert:
Ted Kremenek45e1dae2010-04-12 21:22:16 +00004478 case Decl::TemplateTemplateParm:
4479 case Decl::TemplateTypeParm:
4480 case Decl::UnresolvedUsingTypename:
4481 case Decl::UnresolvedUsingValue:
4482 case Decl::Using:
4483 case Decl::UsingDirective:
4484 case Decl::UsingShadow:
4485 return CXLanguage_CPlusPlus;
4486 }
4487
4488 return CXLanguage_C;
4489}
4490
4491extern "C" {
Douglas Gregor58ddb602010-08-23 23:00:57 +00004492
4493enum CXAvailabilityKind clang_getCursorAvailability(CXCursor cursor) {
4494 if (clang_isDeclaration(cursor.kind))
4495 if (Decl *D = cxcursor::getCursorDecl(cursor)) {
4496 if (D->hasAttr<UnavailableAttr>() ||
4497 (isa<FunctionDecl>(D) && cast<FunctionDecl>(D)->isDeleted()))
4498 return CXAvailability_Available;
4499
4500 if (D->hasAttr<DeprecatedAttr>())
4501 return CXAvailability_Deprecated;
4502 }
4503
4504 return CXAvailability_Available;
4505}
4506
Ted Kremenek45e1dae2010-04-12 21:22:16 +00004507CXLanguageKind clang_getCursorLanguage(CXCursor cursor) {
4508 if (clang_isDeclaration(cursor.kind))
4509 return getDeclLanguage(cxcursor::getCursorDecl(cursor));
4510
4511 return CXLanguage_Invalid;
4512}
Douglas Gregor3910cfd2010-12-21 07:55:45 +00004513
4514 /// \brief If the given cursor is the "templated" declaration
4515 /// descibing a class or function template, return the class or
4516 /// function template.
4517static Decl *maybeGetTemplateCursor(Decl *D) {
4518 if (!D)
4519 return 0;
4520
4521 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
4522 if (FunctionTemplateDecl *FunTmpl = FD->getDescribedFunctionTemplate())
4523 return FunTmpl;
4524
4525 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D))
4526 if (ClassTemplateDecl *ClassTmpl = RD->getDescribedClassTemplate())
4527 return ClassTmpl;
4528
4529 return D;
4530}
4531
Douglas Gregor2be5bc92010-09-22 21:22:29 +00004532CXCursor clang_getCursorSemanticParent(CXCursor cursor) {
4533 if (clang_isDeclaration(cursor.kind)) {
4534 if (Decl *D = getCursorDecl(cursor)) {
4535 DeclContext *DC = D->getDeclContext();
Douglas Gregor3910cfd2010-12-21 07:55:45 +00004536 if (!DC)
4537 return clang_getNullCursor();
4538
4539 return MakeCXCursor(maybeGetTemplateCursor(cast<Decl>(DC)),
4540 getCursorTU(cursor));
Douglas Gregor2be5bc92010-09-22 21:22:29 +00004541 }
4542 }
4543
4544 if (clang_isStatement(cursor.kind) || clang_isExpression(cursor.kind)) {
4545 if (Decl *D = getCursorDecl(cursor))
Ted Kremeneka60ed472010-11-16 08:15:36 +00004546 return MakeCXCursor(D, getCursorTU(cursor));
Douglas Gregor2be5bc92010-09-22 21:22:29 +00004547 }
4548
4549 return clang_getNullCursor();
4550}
4551
4552CXCursor clang_getCursorLexicalParent(CXCursor cursor) {
4553 if (clang_isDeclaration(cursor.kind)) {
4554 if (Decl *D = getCursorDecl(cursor)) {
4555 DeclContext *DC = D->getLexicalDeclContext();
Douglas Gregor3910cfd2010-12-21 07:55:45 +00004556 if (!DC)
4557 return clang_getNullCursor();
4558
4559 return MakeCXCursor(maybeGetTemplateCursor(cast<Decl>(DC)),
4560 getCursorTU(cursor));
Douglas Gregor2be5bc92010-09-22 21:22:29 +00004561 }
4562 }
4563
4564 // FIXME: Note that we can't easily compute the lexical context of a
4565 // statement or expression, so we return nothing.
4566 return clang_getNullCursor();
4567}
4568
Douglas Gregor9f592342010-10-01 20:25:15 +00004569static void CollectOverriddenMethods(DeclContext *Ctx,
4570 ObjCMethodDecl *Method,
4571 llvm::SmallVectorImpl<ObjCMethodDecl *> &Methods) {
4572 if (!Ctx)
4573 return;
4574
4575 // If we have a class or category implementation, jump straight to the
4576 // interface.
4577 if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(Ctx))
4578 return CollectOverriddenMethods(Impl->getClassInterface(), Method, Methods);
4579
4580 ObjCContainerDecl *Container = dyn_cast<ObjCContainerDecl>(Ctx);
4581 if (!Container)
4582 return;
4583
4584 // Check whether we have a matching method at this level.
4585 if (ObjCMethodDecl *Overridden = Container->getMethod(Method->getSelector(),
4586 Method->isInstanceMethod()))
4587 if (Method != Overridden) {
4588 // We found an override at this level; there is no need to look
4589 // into other protocols or categories.
4590 Methods.push_back(Overridden);
4591 return;
4592 }
4593
4594 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
4595 for (ObjCProtocolDecl::protocol_iterator P = Protocol->protocol_begin(),
4596 PEnd = Protocol->protocol_end();
4597 P != PEnd; ++P)
4598 CollectOverriddenMethods(*P, Method, Methods);
4599 }
4600
4601 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) {
4602 for (ObjCCategoryDecl::protocol_iterator P = Category->protocol_begin(),
4603 PEnd = Category->protocol_end();
4604 P != PEnd; ++P)
4605 CollectOverriddenMethods(*P, Method, Methods);
4606 }
4607
4608 if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
4609 for (ObjCInterfaceDecl::protocol_iterator P = Interface->protocol_begin(),
4610 PEnd = Interface->protocol_end();
4611 P != PEnd; ++P)
4612 CollectOverriddenMethods(*P, Method, Methods);
4613
4614 for (ObjCCategoryDecl *Category = Interface->getCategoryList();
4615 Category; Category = Category->getNextClassCategory())
4616 CollectOverriddenMethods(Category, Method, Methods);
4617
4618 // We only look into the superclass if we haven't found anything yet.
4619 if (Methods.empty())
4620 if (ObjCInterfaceDecl *Super = Interface->getSuperClass())
4621 return CollectOverriddenMethods(Super, Method, Methods);
4622 }
4623}
4624
4625void clang_getOverriddenCursors(CXCursor cursor,
4626 CXCursor **overridden,
4627 unsigned *num_overridden) {
4628 if (overridden)
4629 *overridden = 0;
4630 if (num_overridden)
4631 *num_overridden = 0;
4632 if (!overridden || !num_overridden)
4633 return;
4634
4635 if (!clang_isDeclaration(cursor.kind))
4636 return;
4637
4638 Decl *D = getCursorDecl(cursor);
4639 if (!D)
4640 return;
4641
4642 // Handle C++ member functions.
Ted Kremeneka60ed472010-11-16 08:15:36 +00004643 CXTranslationUnit TU = getCursorTU(cursor);
Douglas Gregor9f592342010-10-01 20:25:15 +00004644 if (CXXMethodDecl *CXXMethod = dyn_cast<CXXMethodDecl>(D)) {
4645 *num_overridden = CXXMethod->size_overridden_methods();
4646 if (!*num_overridden)
4647 return;
4648
4649 *overridden = new CXCursor [*num_overridden];
4650 unsigned I = 0;
4651 for (CXXMethodDecl::method_iterator
4652 M = CXXMethod->begin_overridden_methods(),
4653 MEnd = CXXMethod->end_overridden_methods();
4654 M != MEnd; (void)++M, ++I)
Ted Kremeneka60ed472010-11-16 08:15:36 +00004655 (*overridden)[I] = MakeCXCursor(const_cast<CXXMethodDecl*>(*M), TU);
Douglas Gregor9f592342010-10-01 20:25:15 +00004656 return;
4657 }
4658
4659 ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(D);
4660 if (!Method)
4661 return;
4662
4663 // Handle Objective-C methods.
4664 llvm::SmallVector<ObjCMethodDecl *, 4> Methods;
4665 CollectOverriddenMethods(Method->getDeclContext(), Method, Methods);
4666
4667 if (Methods.empty())
4668 return;
4669
4670 *num_overridden = Methods.size();
4671 *overridden = new CXCursor [Methods.size()];
4672 for (unsigned I = 0, N = Methods.size(); I != N; ++I)
Ted Kremeneka60ed472010-11-16 08:15:36 +00004673 (*overridden)[I] = MakeCXCursor(Methods[I], TU);
Douglas Gregor9f592342010-10-01 20:25:15 +00004674}
4675
4676void clang_disposeOverriddenCursors(CXCursor *overridden) {
4677 delete [] overridden;
4678}
4679
Douglas Gregorecdcb882010-10-20 22:00:55 +00004680CXFile clang_getIncludedFile(CXCursor cursor) {
4681 if (cursor.kind != CXCursor_InclusionDirective)
4682 return 0;
4683
4684 InclusionDirective *ID = getCursorInclusionDirective(cursor);
4685 return (void *)ID->getFile();
4686}
4687
Ted Kremenek45e1dae2010-04-12 21:22:16 +00004688} // end: extern "C"
4689
Ted Kremenek9ada39a2010-05-17 20:06:56 +00004690
4691//===----------------------------------------------------------------------===//
4692// C++ AST instrospection.
4693//===----------------------------------------------------------------------===//
4694
4695extern "C" {
4696unsigned clang_CXXMethod_isStatic(CXCursor C) {
4697 if (!clang_isDeclaration(C.kind))
4698 return 0;
Douglas Gregor49f6f542010-08-31 22:12:17 +00004699
4700 CXXMethodDecl *Method = 0;
4701 Decl *D = cxcursor::getCursorDecl(C);
4702 if (FunctionTemplateDecl *FunTmpl = dyn_cast_or_null<FunctionTemplateDecl>(D))
4703 Method = dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl());
4704 else
4705 Method = dyn_cast_or_null<CXXMethodDecl>(D);
4706 return (Method && Method->isStatic()) ? 1 : 0;
Ted Kremenek40b492a2010-05-17 20:12:45 +00004707}
Ted Kremenekb12903e2010-05-18 22:32:15 +00004708
Ted Kremenek9ada39a2010-05-17 20:06:56 +00004709} // end: extern "C"
4710
Ted Kremenek45e1dae2010-04-12 21:22:16 +00004711//===----------------------------------------------------------------------===//
Ted Kremenek95f33552010-08-26 01:42:22 +00004712// Attribute introspection.
4713//===----------------------------------------------------------------------===//
4714
4715extern "C" {
4716CXType clang_getIBOutletCollectionType(CXCursor C) {
4717 if (C.kind != CXCursor_IBOutletCollectionAttr)
Ted Kremeneka60ed472010-11-16 08:15:36 +00004718 return cxtype::MakeCXType(QualType(), cxcursor::getCursorTU(C));
Ted Kremenek95f33552010-08-26 01:42:22 +00004719
4720 IBOutletCollectionAttr *A =
4721 cast<IBOutletCollectionAttr>(cxcursor::getCursorAttr(C));
4722
Ted Kremeneka60ed472010-11-16 08:15:36 +00004723 return cxtype::MakeCXType(A->getInterface(), cxcursor::getCursorTU(C));
Ted Kremenek95f33552010-08-26 01:42:22 +00004724}
4725} // end: extern "C"
4726
4727//===----------------------------------------------------------------------===//
Ted Kremenek04bb7162010-01-22 22:44:15 +00004728// Misc. utility functions.
4729//===----------------------------------------------------------------------===//
Ted Kremenekf0e23e82010-02-17 00:41:40 +00004730
Daniel Dunbarabdce7a2010-11-05 17:21:46 +00004731/// Default to using an 8 MB stack size on "safety" threads.
4732static unsigned SafetyStackThreadSize = 8 << 20;
Daniel Dunbarbf44c3b2010-11-05 07:19:31 +00004733
4734namespace clang {
4735
4736bool RunSafely(llvm::CrashRecoveryContext &CRC,
Ted Kremenek6c53fdd2010-11-14 17:47:35 +00004737 void (*Fn)(void*), void *UserData,
4738 unsigned Size) {
4739 if (!Size)
4740 Size = GetSafetyThreadStackSize();
4741 if (Size)
Daniel Dunbarbf44c3b2010-11-05 07:19:31 +00004742 return CRC.RunSafelyOnThread(Fn, UserData, Size);
4743 return CRC.RunSafely(Fn, UserData);
4744}
4745
4746unsigned GetSafetyThreadStackSize() {
4747 return SafetyStackThreadSize;
4748}
4749
4750void SetSafetyThreadStackSize(unsigned Value) {
4751 SafetyStackThreadSize = Value;
4752}
4753
4754}
4755
Ted Kremenek04bb7162010-01-22 22:44:15 +00004756extern "C" {
4757
Ted Kremeneka2a9d6e2010-02-12 22:54:40 +00004758CXString clang_getClangVersion() {
Ted Kremenekee4db4f2010-02-17 00:41:08 +00004759 return createCXString(getClangFullVersion());
Ted Kremenek04bb7162010-01-22 22:44:15 +00004760}
4761
4762} // end: extern "C"