blob: fee5b74b49c7016596feff9d0e3c5374e7bcbd19 [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 Kremeneka297de22010-01-25 22:34:44 +000017#include "CXSourceLocation.h"
Ted Kremenekab188932010-01-05 19:32:54 +000018
Ted Kremenek04bb7162010-01-22 22:44:15 +000019#include "clang/Basic/Version.h"
Steve Naroff50398192009-08-28 15:28:48 +000020#include "clang/AST/DeclVisitor.h"
Steve Narofffb570422009-09-22 19:25:29 +000021#include "clang/AST/StmtVisitor.h"
Douglas Gregor7d0d40e2010-01-21 16:28:34 +000022#include "clang/AST/TypeLocVisitor.h"
Ted Kremenekd8210652010-01-06 23:43:31 +000023#include "clang/Lex/Lexer.h"
Douglas Gregor33e9abd2010-01-22 19:49:59 +000024#include "clang/Lex/Preprocessor.h"
Douglas Gregor02465752009-10-16 21:24:31 +000025#include "llvm/Support/MemoryBuffer.h"
Benjamin Kramer0829a832009-10-18 11:19:36 +000026#include "llvm/System/Program.h"
Ted Kremenekfc062212009-10-19 21:44:57 +000027
Ted Kremenekdb3d0da2010-01-05 20:55:39 +000028// Needed to define L_TMPNAM on some systems.
29#include <cstdio>
30
Steve Naroff50398192009-08-28 15:28:48 +000031using namespace clang;
Ted Kremenek16c440a2010-01-15 20:35:54 +000032using namespace clang::cxcursor;
Steve Naroff50398192009-08-28 15:28:48 +000033using namespace idx;
34
Ted Kremenek8a8da7d2010-01-06 03:42:32 +000035//===----------------------------------------------------------------------===//
36// Crash Reporting.
37//===----------------------------------------------------------------------===//
38
39#ifdef __APPLE__
Ted Kremenek29b72842010-01-07 22:49:05 +000040#ifndef NDEBUG
41#define USE_CRASHTRACER
Ted Kremenek8a8da7d2010-01-06 03:42:32 +000042#include "clang/Analysis/Support/SaveAndRestore.h"
43// Integrate with crash reporter.
44extern "C" const char *__crashreporter_info__;
Ted Kremenek29b72842010-01-07 22:49:05 +000045#define NUM_CRASH_STRINGS 16
46static unsigned crashtracer_counter = 0;
Ted Kremenek254ba7c2010-01-07 23:13:53 +000047static unsigned crashtracer_counter_id[NUM_CRASH_STRINGS] = { 0 };
Ted Kremenek29b72842010-01-07 22:49:05 +000048static const char *crashtracer_strings[NUM_CRASH_STRINGS] = { 0 };
49static const char *agg_crashtracer_strings[NUM_CRASH_STRINGS] = { 0 };
50
51static unsigned SetCrashTracerInfo(const char *str,
52 llvm::SmallString<1024> &AggStr) {
53
Ted Kremenek254ba7c2010-01-07 23:13:53 +000054 unsigned slot = 0;
Ted Kremenek29b72842010-01-07 22:49:05 +000055 while (crashtracer_strings[slot]) {
56 if (++slot == NUM_CRASH_STRINGS)
57 slot = 0;
58 }
59 crashtracer_strings[slot] = str;
Ted Kremenek254ba7c2010-01-07 23:13:53 +000060 crashtracer_counter_id[slot] = ++crashtracer_counter;
Ted Kremenek29b72842010-01-07 22:49:05 +000061
62 // We need to create an aggregate string because multiple threads
63 // may be in this method at one time. The crash reporter string
64 // will attempt to overapproximate the set of in-flight invocations
65 // of this function. Race conditions can still cause this goal
66 // to not be achieved.
67 {
68 llvm::raw_svector_ostream Out(AggStr);
69 for (unsigned i = 0; i < NUM_CRASH_STRINGS; ++i)
70 if (crashtracer_strings[i]) Out << crashtracer_strings[i] << '\n';
71 }
72 __crashreporter_info__ = agg_crashtracer_strings[slot] = AggStr.c_str();
73 return slot;
74}
75
76static void ResetCrashTracerInfo(unsigned slot) {
Ted Kremenek254ba7c2010-01-07 23:13:53 +000077 unsigned max_slot = 0;
78 unsigned max_value = 0;
79
80 crashtracer_strings[slot] = agg_crashtracer_strings[slot] = 0;
81
82 for (unsigned i = 0 ; i < NUM_CRASH_STRINGS; ++i)
83 if (agg_crashtracer_strings[i] &&
84 crashtracer_counter_id[i] > max_value) {
85 max_slot = i;
86 max_value = crashtracer_counter_id[i];
Ted Kremenek29b72842010-01-07 22:49:05 +000087 }
Ted Kremenek254ba7c2010-01-07 23:13:53 +000088
89 __crashreporter_info__ = agg_crashtracer_strings[max_slot];
Ted Kremenek29b72842010-01-07 22:49:05 +000090}
91
92namespace {
93class ArgsCrashTracerInfo {
94 llvm::SmallString<1024> CrashString;
95 llvm::SmallString<1024> AggregateString;
96 unsigned crashtracerSlot;
97public:
98 ArgsCrashTracerInfo(llvm::SmallVectorImpl<const char*> &Args)
99 : crashtracerSlot(0)
100 {
101 {
102 llvm::raw_svector_ostream Out(CrashString);
103 Out << "ClangCIndex [createTranslationUnitFromSourceFile]: clang";
104 for (llvm::SmallVectorImpl<const char*>::iterator I=Args.begin(),
105 E=Args.end(); I!=E; ++I)
106 Out << ' ' << *I;
107 }
108 crashtracerSlot = SetCrashTracerInfo(CrashString.c_str(),
109 AggregateString);
110 }
111
112 ~ArgsCrashTracerInfo() {
113 ResetCrashTracerInfo(crashtracerSlot);
114 }
115};
116}
117#endif
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000118#endif
119
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000120/// \brief The result of comparing two source ranges.
121enum RangeComparisonResult {
122 /// \brief Either the ranges overlap or one of the ranges is invalid.
123 RangeOverlap,
124
125 /// \brief The first range ends before the second range starts.
126 RangeBefore,
127
128 /// \brief The first range starts after the second range ends.
129 RangeAfter
130};
131
132/// \brief Compare two source ranges to determine their relative position in
133/// the translation unit.
134static RangeComparisonResult RangeCompare(SourceManager &SM,
135 SourceRange R1,
136 SourceRange R2) {
137 assert(R1.isValid() && "First range is invalid?");
138 assert(R2.isValid() && "Second range is invalid?");
139 if (SM.isBeforeInTranslationUnit(R1.getEnd(), R2.getBegin()))
140 return RangeBefore;
141 if (SM.isBeforeInTranslationUnit(R2.getEnd(), R1.getBegin()))
142 return RangeAfter;
143 return RangeOverlap;
144}
145
Douglas Gregor1db19de2010-01-19 21:36:55 +0000146
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000147//===----------------------------------------------------------------------===//
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000148// Cursor visitor.
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000149//===----------------------------------------------------------------------===//
150
Steve Naroff89922f82009-08-31 00:59:03 +0000151namespace {
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000152
Douglas Gregorb1373d02010-01-20 20:59:29 +0000153// Cursor visitor.
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000154class CursorVisitor : public DeclVisitor<CursorVisitor, bool>,
Douglas Gregora59e3902010-01-21 23:27:09 +0000155 public TypeLocVisitor<CursorVisitor, bool>,
156 public StmtVisitor<CursorVisitor, bool>
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000157{
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000158 /// \brief The translation unit we are traversing.
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000159 ASTUnit *TU;
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000160
161 /// \brief The parent cursor whose children we are traversing.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000162 CXCursor Parent;
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000163
164 /// \brief The declaration that serves at the parent of any statement or
165 /// expression nodes.
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000166 Decl *StmtParent;
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000167
168 /// \brief The visitor function.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000169 CXCursorVisitor Visitor;
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000170
171 /// \brief The opaque client data, to be passed along to the visitor.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000172 CXClientData ClientData;
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000173
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000174 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
175 // to the visitor. Declarations with a PCH level greater than this value will
176 // be suppressed.
177 unsigned MaxPCHLevel;
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000178
179 /// \brief When valid, a source range to which the cursor should restrict
180 /// its search.
181 SourceRange RegionOfInterest;
182
Douglas Gregorb1373d02010-01-20 20:59:29 +0000183 using DeclVisitor<CursorVisitor, bool>::Visit;
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000184 using TypeLocVisitor<CursorVisitor, bool>::Visit;
Douglas Gregora59e3902010-01-21 23:27:09 +0000185 using StmtVisitor<CursorVisitor, bool>::Visit;
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000186
187 /// \brief Determine whether this particular source range comes before, comes
188 /// after, or overlaps the region of interest.
189 ///
190 /// \param R a source range retrieved from the abstract syntax tree.
191 RangeComparisonResult CompareRegionOfInterest(SourceRange R);
192
193 /// \brief Determine whether this particular source range comes before, comes
194 /// after, or overlaps the region of interest.
195 ///
196 /// \param CXR a source range retrieved from a cursor.
197 RangeComparisonResult CompareRegionOfInterest(CXSourceRange CXR);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000198
Steve Naroff89922f82009-08-31 00:59:03 +0000199public:
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000200 CursorVisitor(ASTUnit *TU, CXCursorVisitor Visitor, CXClientData ClientData,
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000201 unsigned MaxPCHLevel,
202 SourceRange RegionOfInterest = SourceRange())
203 : TU(TU), Visitor(Visitor), ClientData(ClientData),
204 MaxPCHLevel(MaxPCHLevel), RegionOfInterest(RegionOfInterest)
Douglas Gregorb1373d02010-01-20 20:59:29 +0000205 {
206 Parent.kind = CXCursor_NoDeclFound;
207 Parent.data[0] = 0;
208 Parent.data[1] = 0;
209 Parent.data[2] = 0;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000210 StmtParent = 0;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000211 }
212
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000213 bool Visit(CXCursor Cursor, bool CheckedRegionOfInterest = false);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000214 bool VisitChildren(CXCursor Parent);
215
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000216 // Declaration visitors
Douglas Gregorb1373d02010-01-20 20:59:29 +0000217 bool VisitDeclContext(DeclContext *DC);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000218 bool VisitTranslationUnitDecl(TranslationUnitDecl *D);
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000219 bool VisitTypedefDecl(TypedefDecl *D);
220 bool VisitTagDecl(TagDecl *D);
221 bool VisitEnumConstantDecl(EnumConstantDecl *D);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000222 bool VisitDeclaratorDecl(DeclaratorDecl *DD);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000223 bool VisitFunctionDecl(FunctionDecl *ND);
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000224 bool VisitFieldDecl(FieldDecl *D);
225 bool VisitVarDecl(VarDecl *);
226 bool VisitObjCMethodDecl(ObjCMethodDecl *ND);
Douglas Gregora59e3902010-01-21 23:27:09 +0000227 bool VisitObjCContainerDecl(ObjCContainerDecl *D);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000228 bool VisitObjCCategoryDecl(ObjCCategoryDecl *ND);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000229 bool VisitObjCProtocolDecl(ObjCProtocolDecl *PID);
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000230 bool VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
231 bool VisitObjCImplDecl(ObjCImplDecl *D);
232 bool VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
233 bool VisitObjCImplementationDecl(ObjCImplementationDecl *D);
234 // FIXME: ObjCPropertyDecl requires TypeSourceInfo, getter/setter locations,
235 // etc.
236 // FIXME: ObjCCompatibleAliasDecl requires aliased-class locations.
237 bool VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D);
238 bool VisitObjCClassDecl(ObjCClassDecl *D);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000239
240 // Type visitors
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000241 // FIXME: QualifiedTypeLoc doesn't provide any location information
242 bool VisitBuiltinTypeLoc(BuiltinTypeLoc TL);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000243 bool VisitTypedefTypeLoc(TypedefTypeLoc TL);
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000244 bool VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL);
245 bool VisitTagTypeLoc(TagTypeLoc TL);
246 // FIXME: TemplateTypeParmTypeLoc doesn't provide any location information
247 bool VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL);
248 bool VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL);
249 bool VisitPointerTypeLoc(PointerTypeLoc TL);
250 bool VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL);
251 bool VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL);
252 bool VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL);
253 bool VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL);
254 bool VisitFunctionTypeLoc(FunctionTypeLoc TL);
255 bool VisitArrayTypeLoc(ArrayTypeLoc TL);
Douglas Gregor2332c112010-01-21 20:48:56 +0000256 // FIXME: Implement for TemplateSpecializationTypeLoc
257 // FIXME: Implement visitors here when the unimplemented TypeLocs get
258 // implemented
259 bool VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL);
260 bool VisitTypeOfTypeLoc(TypeOfTypeLoc TL);
Douglas Gregora59e3902010-01-21 23:27:09 +0000261
262 // Statement visitors
263 bool VisitStmt(Stmt *S);
264 bool VisitDeclStmt(DeclStmt *S);
Douglas Gregorf5bab412010-01-22 01:00:11 +0000265 // FIXME: LabelStmt label?
266 bool VisitIfStmt(IfStmt *S);
267 bool VisitSwitchStmt(SwitchStmt *S);
Douglas Gregor263b47b2010-01-25 16:12:32 +0000268 bool VisitWhileStmt(WhileStmt *S);
269 bool VisitForStmt(ForStmt *S);
Douglas Gregor336fd812010-01-23 00:40:08 +0000270
271 // Expression visitors
272 bool VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E);
273 bool VisitExplicitCastExpr(ExplicitCastExpr *E);
274 bool VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Steve Naroff89922f82009-08-31 00:59:03 +0000275};
Douglas Gregorb1373d02010-01-20 20:59:29 +0000276
Ted Kremenekab188932010-01-05 19:32:54 +0000277} // end anonymous namespace
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000278
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000279RangeComparisonResult CursorVisitor::CompareRegionOfInterest(SourceRange R) {
280 assert(RegionOfInterest.isValid() && "RangeCompare called with invalid range");
281 if (R.isInvalid())
282 return RangeOverlap;
283
284 // Move the end of the input range to the end of the last token in that
285 // range.
286 R.setEnd(TU->getPreprocessor().getLocForEndOfToken(R.getEnd(), 1));
287 return RangeCompare(TU->getSourceManager(), R, RegionOfInterest);
288}
289
290RangeComparisonResult CursorVisitor::CompareRegionOfInterest(CXSourceRange CXR) {
Ted Kremeneka297de22010-01-25 22:34:44 +0000291 return CompareRegionOfInterest(cxloc::translateSourceRange(CXR));
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000292}
293
Douglas Gregorb1373d02010-01-20 20:59:29 +0000294/// \brief Visit the given cursor and, if requested by the visitor,
295/// its children.
296///
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000297/// \param Cursor the cursor to visit.
298///
299/// \param CheckRegionOfInterest if true, then the caller already checked that
300/// this cursor is within the region of interest.
301///
Douglas Gregorb1373d02010-01-20 20:59:29 +0000302/// \returns true if the visitation should be aborted, false if it
303/// should continue.
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000304bool CursorVisitor::Visit(CXCursor Cursor, bool CheckedRegionOfInterest) {
Douglas Gregorb1373d02010-01-20 20:59:29 +0000305 if (clang_isInvalid(Cursor.kind))
306 return false;
307
308 if (clang_isDeclaration(Cursor.kind)) {
309 Decl *D = getCursorDecl(Cursor);
310 assert(D && "Invalid declaration cursor");
311 if (D->getPCHLevel() > MaxPCHLevel)
312 return false;
313
314 if (D->isImplicit())
315 return false;
316 }
317
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000318 // If we have a range of interest, and this cursor doesn't intersect with it,
319 // we're done.
320 if (RegionOfInterest.isValid() && !CheckedRegionOfInterest) {
321 CXSourceRange Range = clang_getCursorExtent(Cursor);
Ted Kremeneka297de22010-01-25 22:34:44 +0000322 if (cxloc::translateSourceRange(Range).isInvalid() ||
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000323 CompareRegionOfInterest(Range))
324 return false;
325 }
326
Douglas Gregorb1373d02010-01-20 20:59:29 +0000327 switch (Visitor(Cursor, Parent, ClientData)) {
328 case CXChildVisit_Break:
329 return true;
330
331 case CXChildVisit_Continue:
332 return false;
333
334 case CXChildVisit_Recurse:
335 return VisitChildren(Cursor);
336 }
337
Douglas Gregorfd643772010-01-25 16:45:46 +0000338 return false;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000339}
340
341/// \brief Visit the children of the given cursor.
342///
343/// \returns true if the visitation should be aborted, false if it
344/// should continue.
345bool CursorVisitor::VisitChildren(CXCursor Cursor) {
Douglas Gregora59e3902010-01-21 23:27:09 +0000346 if (clang_isReference(Cursor.kind)) {
347 // By definition, references have no children.
348 return false;
349 }
350
Douglas Gregorb1373d02010-01-20 20:59:29 +0000351 // Set the Parent field to Cursor, then back to its old value once we're
352 // done.
353 class SetParentRAII {
354 CXCursor &Parent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000355 Decl *&StmtParent;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000356 CXCursor OldParent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000357
Douglas Gregorb1373d02010-01-20 20:59:29 +0000358 public:
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000359 SetParentRAII(CXCursor &Parent, Decl *&StmtParent, CXCursor NewParent)
360 : Parent(Parent), StmtParent(StmtParent), OldParent(Parent)
Douglas Gregorb1373d02010-01-20 20:59:29 +0000361 {
362 Parent = NewParent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000363 if (clang_isDeclaration(Parent.kind))
364 StmtParent = getCursorDecl(Parent);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000365 }
366
367 ~SetParentRAII() {
368 Parent = OldParent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000369 if (clang_isDeclaration(Parent.kind))
370 StmtParent = getCursorDecl(Parent);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000371 }
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000372 } SetParent(Parent, StmtParent, Cursor);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000373
374 if (clang_isDeclaration(Cursor.kind)) {
375 Decl *D = getCursorDecl(Cursor);
376 assert(D && "Invalid declaration cursor");
377 return Visit(D);
378 }
379
Douglas Gregora59e3902010-01-21 23:27:09 +0000380 if (clang_isStatement(Cursor.kind))
381 return Visit(getCursorStmt(Cursor));
382 if (clang_isExpression(Cursor.kind))
383 return Visit(getCursorExpr(Cursor));
384
Douglas Gregorb1373d02010-01-20 20:59:29 +0000385 if (clang_isTranslationUnit(Cursor.kind)) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000386 ASTUnit *CXXUnit = getCursorASTUnit(Cursor);
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000387 if (!CXXUnit->isMainFileAST() && CXXUnit->getOnlyLocalDecls() &&
388 RegionOfInterest.isInvalid()) {
Douglas Gregor7b691f332010-01-20 21:13:59 +0000389 const std::vector<Decl*> &TLDs = CXXUnit->getTopLevelDecls();
390 for (std::vector<Decl*>::const_iterator it = TLDs.begin(),
391 ie = TLDs.end(); it != ie; ++it) {
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000392 if (Visit(MakeCXCursor(*it, CXXUnit), true))
Douglas Gregor7b691f332010-01-20 21:13:59 +0000393 return true;
394 }
395 } else {
396 return VisitDeclContext(
Douglas Gregorb1373d02010-01-20 20:59:29 +0000397 CXXUnit->getASTContext().getTranslationUnitDecl());
Douglas Gregor7b691f332010-01-20 21:13:59 +0000398 }
399
400 return false;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000401 }
Douglas Gregora59e3902010-01-21 23:27:09 +0000402
Douglas Gregorb1373d02010-01-20 20:59:29 +0000403 // Nothing to visit at the moment.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000404 return false;
405}
406
Douglas Gregorb1373d02010-01-20 20:59:29 +0000407bool CursorVisitor::VisitDeclContext(DeclContext *DC) {
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000408 for (DeclContext::decl_iterator
Douglas Gregorb1373d02010-01-20 20:59:29 +0000409 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I) {
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000410 if (RegionOfInterest.isValid()) {
411 SourceRange R = (*I)->getSourceRange();
412 if (R.isInvalid())
413 continue;
414
415 switch (CompareRegionOfInterest(R)) {
416 case RangeBefore:
417 // This declaration comes before the region of interest; skip it.
418 continue;
419
420 case RangeAfter:
421 // This declaration comes after the region of interest; we're done.
422 return false;
423
424 case RangeOverlap:
425 // This declaration overlaps the region of interest; visit it.
426 break;
427 }
428 }
429
430 if (Visit(MakeCXCursor(*I, TU), true))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000431 return true;
432 }
433
434 return false;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000435}
436
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000437bool CursorVisitor::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
438 llvm_unreachable("Translation units are visited directly by Visit()");
439 return false;
440}
441
442bool CursorVisitor::VisitTypedefDecl(TypedefDecl *D) {
443 if (TypeSourceInfo *TSInfo = D->getTypeSourceInfo())
444 return Visit(TSInfo->getTypeLoc());
445
446 return false;
447}
448
449bool CursorVisitor::VisitTagDecl(TagDecl *D) {
450 return VisitDeclContext(D);
451}
452
453bool CursorVisitor::VisitEnumConstantDecl(EnumConstantDecl *D) {
454 if (Expr *Init = D->getInitExpr())
455 return Visit(MakeCXCursor(Init, StmtParent, TU));
456 return false;
457}
458
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000459bool CursorVisitor::VisitDeclaratorDecl(DeclaratorDecl *DD) {
460 if (TypeSourceInfo *TSInfo = DD->getTypeSourceInfo())
461 if (Visit(TSInfo->getTypeLoc()))
462 return true;
463
464 return false;
465}
466
Douglas Gregorb1373d02010-01-20 20:59:29 +0000467bool CursorVisitor::VisitFunctionDecl(FunctionDecl *ND) {
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000468 if (VisitDeclaratorDecl(ND))
469 return true;
470
Douglas Gregora59e3902010-01-21 23:27:09 +0000471 if (ND->isThisDeclarationADefinition() &&
472 Visit(MakeCXCursor(ND->getBody(), StmtParent, TU)))
473 return true;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000474
475 return false;
476}
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000477
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000478bool CursorVisitor::VisitFieldDecl(FieldDecl *D) {
479 if (VisitDeclaratorDecl(D))
480 return true;
481
482 if (Expr *BitWidth = D->getBitWidth())
483 return Visit(MakeCXCursor(BitWidth, StmtParent, TU));
484
485 return false;
486}
487
488bool CursorVisitor::VisitVarDecl(VarDecl *D) {
489 if (VisitDeclaratorDecl(D))
490 return true;
491
492 if (Expr *Init = D->getInit())
493 return Visit(MakeCXCursor(Init, StmtParent, TU));
494
495 return false;
496}
497
498bool CursorVisitor::VisitObjCMethodDecl(ObjCMethodDecl *ND) {
499 // FIXME: We really need a TypeLoc covering Objective-C method declarations.
500 // At the moment, we don't have information about locations in the return
501 // type.
502 for (ObjCMethodDecl::param_iterator P = ND->param_begin(),
503 PEnd = ND->param_end();
504 P != PEnd; ++P) {
505 if (Visit(MakeCXCursor(*P, TU)))
506 return true;
507 }
508
509 if (ND->isThisDeclarationADefinition() &&
510 Visit(MakeCXCursor(ND->getBody(), StmtParent, TU)))
511 return true;
512
513 return false;
514}
515
Douglas Gregora59e3902010-01-21 23:27:09 +0000516bool CursorVisitor::VisitObjCContainerDecl(ObjCContainerDecl *D) {
517 return VisitDeclContext(D);
518}
519
Douglas Gregorb1373d02010-01-20 20:59:29 +0000520bool CursorVisitor::VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000521 if (Visit(MakeCursorObjCClassRef(ND->getClassInterface(), ND->getLocation(),
522 TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000523 return true;
524
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000525 ObjCCategoryDecl::protocol_loc_iterator PL = ND->protocol_loc_begin();
526 for (ObjCCategoryDecl::protocol_iterator I = ND->protocol_begin(),
527 E = ND->protocol_end(); I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000528 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000529 return true;
530
Douglas Gregora59e3902010-01-21 23:27:09 +0000531 return VisitObjCContainerDecl(ND);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000532}
533
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000534bool CursorVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
535 ObjCProtocolDecl::protocol_loc_iterator PL = PID->protocol_loc_begin();
536 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
537 E = PID->protocol_end(); I != E; ++I, ++PL)
538 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
539 return true;
540
541 return VisitObjCContainerDecl(PID);
542}
543
Douglas Gregorb1373d02010-01-20 20:59:29 +0000544bool CursorVisitor::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000545 // Issue callbacks for super class.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000546 if (D->getSuperClass() &&
547 Visit(MakeCursorObjCSuperClassRef(D->getSuperClass(),
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000548 D->getSuperClassLoc(),
549 TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000550 return true;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000551
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000552 ObjCInterfaceDecl::protocol_loc_iterator PL = D->protocol_loc_begin();
553 for (ObjCInterfaceDecl::protocol_iterator I = D->protocol_begin(),
554 E = D->protocol_end(); I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000555 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000556 return true;
557
Douglas Gregora59e3902010-01-21 23:27:09 +0000558 return VisitObjCContainerDecl(D);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000559}
560
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000561bool CursorVisitor::VisitObjCImplDecl(ObjCImplDecl *D) {
562 return VisitObjCContainerDecl(D);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000563}
564
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000565bool CursorVisitor::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
566 if (Visit(MakeCursorObjCClassRef(D->getCategoryDecl()->getClassInterface(),
567 D->getLocation(), TU)))
568 return true;
569
570 return VisitObjCImplDecl(D);
571}
572
573bool CursorVisitor::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
574#if 0
575 // Issue callbacks for super class.
576 // FIXME: No source location information!
577 if (D->getSuperClass() &&
578 Visit(MakeCursorObjCSuperClassRef(D->getSuperClass(),
579 D->getSuperClassLoc(),
580 TU)))
581 return true;
582#endif
583
584 return VisitObjCImplDecl(D);
585}
586
587bool CursorVisitor::VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D) {
588 ObjCForwardProtocolDecl::protocol_loc_iterator PL = D->protocol_loc_begin();
589 for (ObjCForwardProtocolDecl::protocol_iterator I = D->protocol_begin(),
590 E = D->protocol_end();
591 I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000592 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000593 return true;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000594
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000595 return false;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000596}
597
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000598bool CursorVisitor::VisitObjCClassDecl(ObjCClassDecl *D) {
599 for (ObjCClassDecl::iterator C = D->begin(), CEnd = D->end(); C != CEnd; ++C)
600 if (Visit(MakeCursorObjCClassRef(C->getInterface(), C->getLocation(), TU)))
601 return true;
602
603 return false;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000604}
605
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000606bool CursorVisitor::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
607 ASTContext &Context = TU->getASTContext();
608
609 // Some builtin types (such as Objective-C's "id", "sel", and
610 // "Class") have associated declarations. Create cursors for those.
611 QualType VisitType;
612 switch (TL.getType()->getAs<BuiltinType>()->getKind()) {
613 case BuiltinType::Void:
614 case BuiltinType::Bool:
615 case BuiltinType::Char_U:
616 case BuiltinType::UChar:
617 case BuiltinType::Char16:
618 case BuiltinType::Char32:
619 case BuiltinType::UShort:
620 case BuiltinType::UInt:
621 case BuiltinType::ULong:
622 case BuiltinType::ULongLong:
623 case BuiltinType::UInt128:
624 case BuiltinType::Char_S:
625 case BuiltinType::SChar:
626 case BuiltinType::WChar:
627 case BuiltinType::Short:
628 case BuiltinType::Int:
629 case BuiltinType::Long:
630 case BuiltinType::LongLong:
631 case BuiltinType::Int128:
632 case BuiltinType::Float:
633 case BuiltinType::Double:
634 case BuiltinType::LongDouble:
635 case BuiltinType::NullPtr:
636 case BuiltinType::Overload:
637 case BuiltinType::Dependent:
638 break;
639
640 case BuiltinType::UndeducedAuto: // FIXME: Deserves a cursor?
641 break;
642
643 case BuiltinType::ObjCId:
644 VisitType = Context.getObjCIdType();
645 break;
646
647 case BuiltinType::ObjCClass:
648 VisitType = Context.getObjCClassType();
649 break;
650
651 case BuiltinType::ObjCSel:
652 VisitType = Context.getObjCSelType();
653 break;
654 }
655
656 if (!VisitType.isNull()) {
657 if (const TypedefType *Typedef = VisitType->getAs<TypedefType>())
658 return Visit(MakeCursorTypeRef(Typedef->getDecl(), TL.getBuiltinLoc(),
659 TU));
660 }
661
662 return false;
663}
664
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000665bool CursorVisitor::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
666 return Visit(MakeCursorTypeRef(TL.getTypedefDecl(), TL.getNameLoc(), TU));
667}
668
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000669bool CursorVisitor::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
670 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
671}
672
673bool CursorVisitor::VisitTagTypeLoc(TagTypeLoc TL) {
674 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
675}
676
677bool CursorVisitor::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
678 if (Visit(MakeCursorObjCClassRef(TL.getIFaceDecl(), TL.getNameLoc(), TU)))
679 return true;
680
681 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {
682 if (Visit(MakeCursorObjCProtocolRef(TL.getProtocol(I), TL.getProtocolLoc(I),
683 TU)))
684 return true;
685 }
686
687 return false;
688}
689
690bool CursorVisitor::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
691 if (TL.hasBaseTypeAsWritten() && Visit(TL.getBaseTypeLoc()))
692 return true;
693
694 if (TL.hasProtocolsAsWritten()) {
695 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {
696 if (Visit(MakeCursorObjCProtocolRef(TL.getProtocol(I),
697 TL.getProtocolLoc(I),
698 TU)))
699 return true;
700 }
701 }
702
703 return false;
704}
705
706bool CursorVisitor::VisitPointerTypeLoc(PointerTypeLoc TL) {
707 return Visit(TL.getPointeeLoc());
708}
709
710bool CursorVisitor::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
711 return Visit(TL.getPointeeLoc());
712}
713
714bool CursorVisitor::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
715 return Visit(TL.getPointeeLoc());
716}
717
718bool CursorVisitor::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
719 return Visit(TL.getPointeeLoc());
720}
721
722bool CursorVisitor::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
723 return Visit(TL.getPointeeLoc());
724}
725
726bool CursorVisitor::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
727 if (Visit(TL.getResultLoc()))
728 return true;
729
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000730 for (unsigned I = 0, N = TL.getNumArgs(); I != N; ++I)
731 if (Visit(MakeCXCursor(TL.getArg(I), TU)))
732 return true;
733
734 return false;
735}
736
737bool CursorVisitor::VisitArrayTypeLoc(ArrayTypeLoc TL) {
738 if (Visit(TL.getElementLoc()))
739 return true;
740
741 if (Expr *Size = TL.getSizeExpr())
742 return Visit(MakeCXCursor(Size, StmtParent, TU));
743
744 return false;
745}
746
Douglas Gregor2332c112010-01-21 20:48:56 +0000747bool CursorVisitor::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
748 return Visit(MakeCXCursor(TL.getUnderlyingExpr(), StmtParent, TU));
749}
750
751bool CursorVisitor::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
752 if (TypeSourceInfo *TSInfo = TL.getUnderlyingTInfo())
753 return Visit(TSInfo->getTypeLoc());
754
755 return false;
756}
757
Douglas Gregora59e3902010-01-21 23:27:09 +0000758bool CursorVisitor::VisitStmt(Stmt *S) {
759 for (Stmt::child_iterator Child = S->child_begin(), ChildEnd = S->child_end();
760 Child != ChildEnd; ++Child) {
Daniel Dunbar54d67ca2010-01-25 00:40:30 +0000761 if (*Child && Visit(MakeCXCursor(*Child, StmtParent, TU)))
Douglas Gregora59e3902010-01-21 23:27:09 +0000762 return true;
763 }
764
765 return false;
766}
767
768bool CursorVisitor::VisitDeclStmt(DeclStmt *S) {
769 for (DeclStmt::decl_iterator D = S->decl_begin(), DEnd = S->decl_end();
770 D != DEnd; ++D) {
Douglas Gregor263b47b2010-01-25 16:12:32 +0000771 if (*D && Visit(MakeCXCursor(*D, TU)))
Douglas Gregora59e3902010-01-21 23:27:09 +0000772 return true;
773 }
774
775 return false;
776}
777
Douglas Gregorf5bab412010-01-22 01:00:11 +0000778bool CursorVisitor::VisitIfStmt(IfStmt *S) {
779 if (VarDecl *Var = S->getConditionVariable()) {
780 if (Visit(MakeCXCursor(Var, TU)))
781 return true;
Douglas Gregor263b47b2010-01-25 16:12:32 +0000782 }
Douglas Gregorf5bab412010-01-22 01:00:11 +0000783
Douglas Gregor263b47b2010-01-25 16:12:32 +0000784 if (S->getCond() && Visit(MakeCXCursor(S->getCond(), StmtParent, TU)))
785 return true;
Douglas Gregorf5bab412010-01-22 01:00:11 +0000786 if (S->getThen() && Visit(MakeCXCursor(S->getThen(), StmtParent, TU)))
787 return true;
Douglas Gregorf5bab412010-01-22 01:00:11 +0000788 if (S->getElse() && Visit(MakeCXCursor(S->getElse(), StmtParent, TU)))
789 return true;
790
791 return false;
792}
793
794bool CursorVisitor::VisitSwitchStmt(SwitchStmt *S) {
795 if (VarDecl *Var = S->getConditionVariable()) {
796 if (Visit(MakeCXCursor(Var, TU)))
797 return true;
Douglas Gregor263b47b2010-01-25 16:12:32 +0000798 }
799
800 if (S->getCond() && Visit(MakeCXCursor(S->getCond(), StmtParent, TU)))
801 return true;
802 if (S->getBody() && Visit(MakeCXCursor(S->getBody(), StmtParent, TU)))
803 return true;
804
805 return false;
806}
807
808bool CursorVisitor::VisitWhileStmt(WhileStmt *S) {
809 if (VarDecl *Var = S->getConditionVariable()) {
810 if (Visit(MakeCXCursor(Var, TU)))
811 return true;
812 }
813
814 if (S->getCond() && Visit(MakeCXCursor(S->getCond(), StmtParent, TU)))
815 return true;
816 if (S->getBody() && Visit(MakeCXCursor(S->getBody(), StmtParent, TU)))
Douglas Gregorf5bab412010-01-22 01:00:11 +0000817 return true;
818
Douglas Gregor263b47b2010-01-25 16:12:32 +0000819 return false;
820}
821
822bool CursorVisitor::VisitForStmt(ForStmt *S) {
823 if (S->getInit() && Visit(MakeCXCursor(S->getInit(), StmtParent, TU)))
824 return true;
825 if (VarDecl *Var = S->getConditionVariable()) {
826 if (Visit(MakeCXCursor(Var, TU)))
827 return true;
828 }
829
830 if (S->getCond() && Visit(MakeCXCursor(S->getCond(), StmtParent, TU)))
831 return true;
832 if (S->getInc() && Visit(MakeCXCursor(S->getInc(), StmtParent, TU)))
833 return true;
Douglas Gregorf5bab412010-01-22 01:00:11 +0000834 if (S->getBody() && Visit(MakeCXCursor(S->getBody(), StmtParent, TU)))
835 return true;
836
837 return false;
838}
839
Douglas Gregor336fd812010-01-23 00:40:08 +0000840bool CursorVisitor::VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E) {
841 if (E->isArgumentType()) {
842 if (TypeSourceInfo *TSInfo = E->getArgumentTypeInfo())
843 return Visit(TSInfo->getTypeLoc());
844
845 return false;
846 }
847
848 return VisitExpr(E);
849}
850
851bool CursorVisitor::VisitExplicitCastExpr(ExplicitCastExpr *E) {
852 if (TypeSourceInfo *TSInfo = E->getTypeInfoAsWritten())
853 if (Visit(TSInfo->getTypeLoc()))
854 return true;
855
856 return VisitCastExpr(E);
857}
858
859bool CursorVisitor::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
860 if (TypeSourceInfo *TSInfo = E->getTypeSourceInfo())
861 if (Visit(TSInfo->getTypeLoc()))
862 return true;
863
864 return VisitExpr(E);
865}
866
Daniel Dunbar140fce22010-01-12 02:34:07 +0000867CXString CIndexer::createCXString(const char *String, bool DupString){
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000868 CXString Str;
869 if (DupString) {
870 Str.Spelling = strdup(String);
871 Str.MustFreeString = 1;
872 } else {
873 Str.Spelling = String;
874 Str.MustFreeString = 0;
875 }
876 return Str;
877}
878
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000879extern "C" {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000880CXIndex clang_createIndex(int excludeDeclarationsFromPCH,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000881 int displayDiagnostics) {
Douglas Gregora030b7c2010-01-22 20:35:53 +0000882 CIndexer *CIdxr = new CIndexer();
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000883 if (excludeDeclarationsFromPCH)
884 CIdxr->setOnlyLocalDecls();
885 if (displayDiagnostics)
886 CIdxr->setDisplayDiagnostics();
887 return CIdxr;
Steve Naroff600866c2009-08-27 19:51:58 +0000888}
889
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000890void clang_disposeIndex(CXIndex CIdx) {
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000891 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000892 delete static_cast<CIndexer *>(CIdx);
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000893}
894
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000895void clang_setUseExternalASTGeneration(CXIndex CIdx, int value) {
896 assert(CIdx && "Passed null CXIndex");
897 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
898 CXXIdx->setUseExternalASTGeneration(value);
899}
900
Steve Naroff50398192009-08-28 15:28:48 +0000901// FIXME: need to pass back error info.
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000902CXTranslationUnit clang_createTranslationUnit(CXIndex CIdx,
903 const char *ast_filename) {
Steve Naroff50398192009-08-28 15:28:48 +0000904 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000905 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000906
Daniel Dunbar5262fda2009-12-03 01:45:44 +0000907 return ASTUnit::LoadFromPCHFile(ast_filename, CXXIdx->getDiags(),
908 CXXIdx->getOnlyLocalDecls(),
909 /* UseBumpAllocator = */ true);
Steve Naroff600866c2009-08-27 19:51:58 +0000910}
911
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000912CXTranslationUnit
913clang_createTranslationUnitFromSourceFile(CXIndex CIdx,
914 const char *source_filename,
915 int num_command_line_args,
Douglas Gregor4db64a42010-01-23 00:14:00 +0000916 const char **command_line_args,
917 unsigned num_unsaved_files,
918 struct CXUnsavedFile *unsaved_files) {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000919 assert(CIdx && "Passed null CXIndex");
920 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
921
Douglas Gregor4db64a42010-01-23 00:14:00 +0000922 llvm::SmallVector<ASTUnit::RemappedFile, 4> RemappedFiles;
923 for (unsigned I = 0; I != num_unsaved_files; ++I) {
924 const llvm::MemoryBuffer *Buffer
925 = llvm::MemoryBuffer::getMemBuffer(unsaved_files[I].Contents,
926 unsaved_files[I].Contents + unsaved_files[I].Length,
927 unsaved_files[I].Filename);
928 RemappedFiles.push_back(std::make_pair(unsaved_files[I].Filename,
929 Buffer));
930 }
931
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000932 if (!CXXIdx->getUseExternalASTGeneration()) {
933 llvm::SmallVector<const char *, 16> Args;
934
935 // The 'source_filename' argument is optional. If the caller does not
936 // specify it then it is assumed that the source file is specified
937 // in the actual argument list.
938 if (source_filename)
939 Args.push_back(source_filename);
940 Args.insert(Args.end(), command_line_args,
941 command_line_args + num_command_line_args);
942
Daniel Dunbar94220972009-12-05 02:17:18 +0000943 unsigned NumErrors = CXXIdx->getDiags().getNumErrors();
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000944
Ted Kremenek29b72842010-01-07 22:49:05 +0000945#ifdef USE_CRASHTRACER
946 ArgsCrashTracerInfo ACTI(Args);
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000947#endif
948
Daniel Dunbar94220972009-12-05 02:17:18 +0000949 llvm::OwningPtr<ASTUnit> Unit(
950 ASTUnit::LoadFromCommandLine(Args.data(), Args.data() + Args.size(),
Daniel Dunbar869824e2009-12-13 03:46:13 +0000951 CXXIdx->getDiags(),
952 CXXIdx->getClangResourcesPath(),
Daniel Dunbar94220972009-12-05 02:17:18 +0000953 CXXIdx->getOnlyLocalDecls(),
Douglas Gregor4db64a42010-01-23 00:14:00 +0000954 /* UseBumpAllocator = */ true,
955 RemappedFiles.data(),
956 RemappedFiles.size()));
Ted Kremenek29b72842010-01-07 22:49:05 +0000957
Daniel Dunbar94220972009-12-05 02:17:18 +0000958 // FIXME: Until we have broader testing, just drop the entire AST if we
959 // encountered an error.
960 if (NumErrors != CXXIdx->getDiags().getNumErrors())
961 return 0;
962
963 return Unit.take();
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000964 }
965
Ted Kremenek139ba862009-10-22 00:03:57 +0000966 // Build up the arguments for invoking 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000967 std::vector<const char *> argv;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000968
Ted Kremenek139ba862009-10-22 00:03:57 +0000969 // First add the complete path to the 'clang' executable.
970 llvm::sys::Path ClangPath = static_cast<CIndexer *>(CIdx)->getClangPath();
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000971 argv.push_back(ClangPath.c_str());
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000972
Ted Kremenek139ba862009-10-22 00:03:57 +0000973 // Add the '-emit-ast' option as our execution mode for 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000974 argv.push_back("-emit-ast");
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000975
Ted Kremenek139ba862009-10-22 00:03:57 +0000976 // The 'source_filename' argument is optional. If the caller does not
977 // specify it then it is assumed that the source file is specified
978 // in the actual argument list.
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000979 if (source_filename)
980 argv.push_back(source_filename);
Ted Kremenek139ba862009-10-22 00:03:57 +0000981
Steve Naroff37b5ac22009-10-15 20:50:09 +0000982 // Generate a temporary name for the AST file.
Ted Kremenek139ba862009-10-22 00:03:57 +0000983 argv.push_back("-o");
Steve Naroff37b5ac22009-10-15 20:50:09 +0000984 char astTmpFile[L_tmpnam];
Ted Kremenek74cd0692009-10-15 23:21:22 +0000985 argv.push_back(tmpnam(astTmpFile));
Ted Kremenek139ba862009-10-22 00:03:57 +0000986
Douglas Gregor4db64a42010-01-23 00:14:00 +0000987 // Remap any unsaved files to temporary files.
988 std::vector<llvm::sys::Path> TemporaryFiles;
989 std::vector<std::string> RemapArgs;
990 if (RemapFiles(num_unsaved_files, unsaved_files, RemapArgs, TemporaryFiles))
991 return 0;
992
993 // The pointers into the elements of RemapArgs are stable because we
994 // won't be adding anything to RemapArgs after this point.
995 for (unsigned i = 0, e = RemapArgs.size(); i != e; ++i)
996 argv.push_back(RemapArgs[i].c_str());
997
Ted Kremenek139ba862009-10-22 00:03:57 +0000998 // Process the compiler options, stripping off '-o', '-c', '-fsyntax-only'.
999 for (int i = 0; i < num_command_line_args; ++i)
1000 if (const char *arg = command_line_args[i]) {
1001 if (strcmp(arg, "-o") == 0) {
1002 ++i; // Also skip the matching argument.
1003 continue;
1004 }
1005 if (strcmp(arg, "-emit-ast") == 0 ||
1006 strcmp(arg, "-c") == 0 ||
1007 strcmp(arg, "-fsyntax-only") == 0) {
1008 continue;
1009 }
1010
1011 // Keep the argument.
1012 argv.push_back(arg);
Steve Naroffe56b4ba2009-10-20 14:46:24 +00001013 }
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001014
Ted Kremenek139ba862009-10-22 00:03:57 +00001015 // Add the null terminator.
Ted Kremenek74cd0692009-10-15 23:21:22 +00001016 argv.push_back(NULL);
1017
Ted Kremenekfeb15e32009-10-26 22:14:08 +00001018 // Invoke 'clang'.
1019 llvm::sys::Path DevNull; // leave empty, causes redirection to /dev/null
1020 // on Unix or NUL (Windows).
Ted Kremenek379afec2009-10-22 03:24:01 +00001021 std::string ErrMsg;
Ted Kremenekc46e4632009-10-19 22:27:32 +00001022 const llvm::sys::Path *Redirects[] = { &DevNull, &DevNull, &DevNull, NULL };
Ted Kremenek379afec2009-10-22 03:24:01 +00001023 llvm::sys::Program::ExecuteAndWait(ClangPath, &argv[0], /* env */ NULL,
1024 /* redirects */ !CXXIdx->getDisplayDiagnostics() ? &Redirects[0] : NULL,
1025 /* secondsToWait */ 0, /* memoryLimits */ 0, &ErrMsg);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001026
Ted Kremenek0854d702009-11-10 19:18:52 +00001027 if (CXXIdx->getDisplayDiagnostics() && !ErrMsg.empty()) {
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001028 llvm::errs() << "clang_createTranslationUnitFromSourceFile: " << ErrMsg
Daniel Dunbaracca7252009-11-30 20:42:49 +00001029 << '\n' << "Arguments: \n";
Ted Kremenek379afec2009-10-22 03:24:01 +00001030 for (std::vector<const char*>::iterator I = argv.begin(), E = argv.end();
Ted Kremenek779e5f42009-10-26 22:08:39 +00001031 I!=E; ++I) {
1032 if (*I)
1033 llvm::errs() << ' ' << *I << '\n';
1034 }
1035 llvm::errs() << '\n';
Ted Kremenek379afec2009-10-22 03:24:01 +00001036 }
Benjamin Kramer0829a832009-10-18 11:19:36 +00001037
Douglas Gregor4db64a42010-01-23 00:14:00 +00001038 ASTUnit *ATU = ASTUnit::LoadFromPCHFile(astTmpFile, CXXIdx->getDiags(),
1039 CXXIdx->getOnlyLocalDecls(),
1040 /* UseBumpAllocator = */ true,
1041 RemappedFiles.data(),
1042 RemappedFiles.size());
Steve Naroffe56b4ba2009-10-20 14:46:24 +00001043 if (ATU)
1044 ATU->unlinkTemporaryFile();
Douglas Gregor4db64a42010-01-23 00:14:00 +00001045
1046 for (unsigned i = 0, e = TemporaryFiles.size(); i != e; ++i)
1047 TemporaryFiles[i].eraseFromDisk();
1048
Steve Naroffe19944c2009-10-15 22:23:48 +00001049 return ATU;
Steve Naroff5b7d8e22009-10-15 20:04:39 +00001050}
1051
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001052void clang_disposeTranslationUnit(CXTranslationUnit CTUnit) {
Steve Naroff2bd6b9f2009-09-17 18:33:27 +00001053 assert(CTUnit && "Passed null CXTranslationUnit");
1054 delete static_cast<ASTUnit *>(CTUnit);
1055}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001056
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001057CXString clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +00001058 assert(CTUnit && "Passed null CXTranslationUnit");
Steve Naroff77accc12009-09-03 18:19:54 +00001059 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
Ted Kremenek4b333d22010-01-12 00:36:38 +00001060 return CIndexer::createCXString(CXXUnit->getOriginalSourceFileName().c_str(),
1061 true);
Steve Naroffaf08ddc2009-09-03 15:49:00 +00001062}
Daniel Dunbar1eb79b52009-08-28 16:30:07 +00001063
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001064CXCursor clang_getTranslationUnitCursor(CXTranslationUnit TU) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001065 CXCursor Result = { CXCursor_TranslationUnit, { 0, 0, TU } };
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001066 return Result;
1067}
1068
Ted Kremenekfb480492010-01-13 21:46:36 +00001069} // end: extern "C"
Steve Naroff600866c2009-08-27 19:51:58 +00001070
Ted Kremenekfb480492010-01-13 21:46:36 +00001071//===----------------------------------------------------------------------===//
Douglas Gregor1db19de2010-01-19 21:36:55 +00001072// CXSourceLocation and CXSourceRange Operations.
1073//===----------------------------------------------------------------------===//
1074
Douglas Gregorb9790342010-01-22 21:44:22 +00001075extern "C" {
1076CXSourceLocation clang_getNullLocation() {
1077 CXSourceLocation Result = { 0, 0 };
1078 return Result;
1079}
1080
1081unsigned clang_equalLocations(CXSourceLocation loc1, CXSourceLocation loc2) {
1082 return loc1.ptr_data == loc2.ptr_data && loc1.int_data == loc2.int_data;
1083}
1084
1085CXSourceLocation clang_getLocation(CXTranslationUnit tu,
1086 CXFile file,
1087 unsigned line,
1088 unsigned column) {
1089 if (!tu)
1090 return clang_getNullLocation();
1091
1092 ASTUnit *CXXUnit = static_cast<ASTUnit *>(tu);
1093 SourceLocation SLoc
1094 = CXXUnit->getSourceManager().getLocation(
1095 static_cast<const FileEntry *>(file),
1096 line, column);
1097
Ted Kremeneka297de22010-01-25 22:34:44 +00001098 return cxloc::translateSourceLocation(CXXUnit->getASTContext(), SLoc, false);
Douglas Gregorb9790342010-01-22 21:44:22 +00001099}
1100
1101CXSourceRange clang_getRange(CXSourceLocation begin, CXSourceLocation end) {
1102 if (begin.ptr_data != end.ptr_data) {
1103 CXSourceRange Result = { 0, 0, 0 };
1104 return Result;
1105 }
1106
1107 CXSourceRange Result = { begin.ptr_data, begin.int_data, end.int_data };
1108 return Result;
1109}
1110
Douglas Gregor1db19de2010-01-19 21:36:55 +00001111void clang_getInstantiationLocation(CXSourceLocation location,
1112 CXFile *file,
1113 unsigned *line,
1114 unsigned *column) {
Ted Kremeneka297de22010-01-25 22:34:44 +00001115 cxloc::CXSourceLocationPtr Ptr
1116 = cxloc::CXSourceLocationPtr::getFromOpaqueValue(location.ptr_data);
Douglas Gregor1db19de2010-01-19 21:36:55 +00001117 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data);
1118
1119 if (!Ptr.getPointer() || Loc.isInvalid()) {
1120 if (file)
1121 *file = 0;
1122 if (line)
1123 *line = 0;
1124 if (column)
1125 *column = 0;
1126 return;
1127 }
1128
1129 // FIXME: This is largely copy-paste from
1130 ///TextDiagnosticPrinter::HighlightRange. When it is clear that this is
1131 // what we want the two routines should be refactored.
1132 ASTContext &Context = *Ptr.getPointer();
1133 SourceManager &SM = Context.getSourceManager();
1134 SourceLocation InstLoc = SM.getInstantiationLoc(Loc);
1135
1136 if (Ptr.getInt()) {
1137 // We want the last character in this location, so we will adjust
1138 // the instantiation location accordingly.
1139
1140 // If the location is from a macro instantiation, get the end of
1141 // the instantiation range.
1142 if (Loc.isMacroID())
1143 InstLoc = SM.getInstantiationRange(Loc).second;
1144
1145 // Measure the length token we're pointing at, so we can adjust
1146 // the physical location in the file to point at the last
1147 // character.
1148 // FIXME: This won't cope with trigraphs or escaped newlines
1149 // well. For that, we actually need a preprocessor, which isn't
1150 // currently available here. Eventually, we'll switch the pointer
1151 // data of CXSourceLocation/CXSourceRange to a translation unit
1152 // (CXXUnit), so that the preprocessor will be available here. At
1153 // that point, we can use Preprocessor::getLocForEndOfToken().
1154 unsigned Length = Lexer::MeasureTokenLength(InstLoc, SM,
1155 Context.getLangOptions());
1156 if (Length > 0)
1157 InstLoc = InstLoc.getFileLocWithOffset(Length - 1);
1158 }
1159
1160 if (file)
1161 *file = (void *)SM.getFileEntryForID(SM.getFileID(InstLoc));
1162 if (line)
1163 *line = SM.getInstantiationLineNumber(InstLoc);
1164 if (column)
1165 *column = SM.getInstantiationColumnNumber(InstLoc);
1166}
1167
1168CXSourceLocation clang_getRangeStart(CXSourceRange range) {
1169 CXSourceLocation Result = { range.ptr_data, range.begin_int_data };
1170 return Result;
1171}
1172
1173CXSourceLocation clang_getRangeEnd(CXSourceRange range) {
1174 llvm::PointerIntPair<ASTContext *, 1, bool> Ptr;
1175 Ptr.setPointer(static_cast<ASTContext *>(range.ptr_data));
1176 Ptr.setInt(true);
1177 CXSourceLocation Result = { Ptr.getOpaqueValue(), range.end_int_data };
1178 return Result;
1179}
1180
Douglas Gregorb9790342010-01-22 21:44:22 +00001181} // end: extern "C"
1182
Douglas Gregor1db19de2010-01-19 21:36:55 +00001183//===----------------------------------------------------------------------===//
Ted Kremenekfb480492010-01-13 21:46:36 +00001184// CXFile Operations.
1185//===----------------------------------------------------------------------===//
1186
1187extern "C" {
Steve Naroff88145032009-10-27 14:35:18 +00001188const char *clang_getFileName(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +00001189 if (!SFile)
1190 return 0;
1191
Steve Naroff88145032009-10-27 14:35:18 +00001192 assert(SFile && "Passed null CXFile");
1193 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
1194 return FEnt->getName();
1195}
1196
1197time_t clang_getFileTime(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +00001198 if (!SFile)
1199 return 0;
1200
Steve Naroff88145032009-10-27 14:35:18 +00001201 assert(SFile && "Passed null CXFile");
1202 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
1203 return FEnt->getModificationTime();
Steve Naroffee9405e2009-09-25 21:45:39 +00001204}
Douglas Gregorb9790342010-01-22 21:44:22 +00001205
1206CXFile clang_getFile(CXTranslationUnit tu, const char *file_name) {
1207 if (!tu)
1208 return 0;
1209
1210 ASTUnit *CXXUnit = static_cast<ASTUnit *>(tu);
1211
1212 FileManager &FMgr = CXXUnit->getFileManager();
1213 const FileEntry *File = FMgr.getFile(file_name, file_name+strlen(file_name));
1214 return const_cast<FileEntry *>(File);
1215}
1216
Ted Kremenekfb480492010-01-13 21:46:36 +00001217} // end: extern "C"
Steve Naroffee9405e2009-09-25 21:45:39 +00001218
Ted Kremenekfb480492010-01-13 21:46:36 +00001219//===----------------------------------------------------------------------===//
1220// CXCursor Operations.
1221//===----------------------------------------------------------------------===//
1222
Ted Kremenekfb480492010-01-13 21:46:36 +00001223static Decl *getDeclFromExpr(Stmt *E) {
1224 if (DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E))
1225 return RefExpr->getDecl();
1226 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
1227 return ME->getMemberDecl();
1228 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E))
1229 return RE->getDecl();
1230
1231 if (CallExpr *CE = dyn_cast<CallExpr>(E))
1232 return getDeclFromExpr(CE->getCallee());
1233 if (CastExpr *CE = dyn_cast<CastExpr>(E))
1234 return getDeclFromExpr(CE->getSubExpr());
1235 if (ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E))
1236 return OME->getMethodDecl();
1237
1238 return 0;
1239}
1240
1241extern "C" {
Douglas Gregorb1373d02010-01-20 20:59:29 +00001242
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001243unsigned clang_visitChildren(CXCursor parent,
Douglas Gregorb1373d02010-01-20 20:59:29 +00001244 CXCursorVisitor visitor,
1245 CXClientData client_data) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001246 ASTUnit *CXXUnit = getCursorASTUnit(parent);
Douglas Gregorb1373d02010-01-20 20:59:29 +00001247
1248 unsigned PCHLevel = Decl::MaxPCHLevel;
1249
1250 // Set the PCHLevel to filter out unwanted decls if requested.
1251 if (CXXUnit->getOnlyLocalDecls()) {
1252 PCHLevel = 0;
1253
1254 // If the main input was an AST, bump the level.
1255 if (CXXUnit->isMainFileAST())
1256 ++PCHLevel;
1257 }
1258
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001259 CursorVisitor CursorVis(CXXUnit, visitor, client_data, PCHLevel);
Douglas Gregorb1373d02010-01-20 20:59:29 +00001260 return CursorVis.VisitChildren(parent);
1261}
1262
Douglas Gregor78205d42010-01-20 21:45:58 +00001263static CXString getDeclSpelling(Decl *D) {
1264 NamedDecl *ND = dyn_cast_or_null<NamedDecl>(D);
1265 if (!ND)
1266 return CIndexer::createCXString("");
1267
1268 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
1269 return CIndexer::createCXString(OMD->getSelector().getAsString().c_str(),
1270 true);
1271
1272 if (ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND))
1273 // No, this isn't the same as the code below. getIdentifier() is non-virtual
1274 // and returns different names. NamedDecl returns the class name and
1275 // ObjCCategoryImplDecl returns the category name.
1276 return CIndexer::createCXString(CIMP->getIdentifier()->getNameStart());
1277
1278 if (ND->getIdentifier())
1279 return CIndexer::createCXString(ND->getIdentifier()->getNameStart());
1280
1281 return CIndexer::createCXString("");
1282}
1283
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001284CXString clang_getCursorSpelling(CXCursor C) {
Daniel Dunbarc81d7182010-01-18 17:52:42 +00001285 assert(getCursorDecl(C) && "CXCursor has null decl");
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001286 if (clang_isTranslationUnit(C.kind))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001287 return clang_getTranslationUnitSpelling(C.data[2]);
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001288
Steve Narofff334b4e2009-09-02 18:26:48 +00001289 if (clang_isReference(C.kind)) {
1290 switch (C.kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +00001291 case CXCursor_ObjCSuperClassRef: {
Douglas Gregor2e331b92010-01-16 14:00:32 +00001292 ObjCInterfaceDecl *Super = getCursorObjCSuperClassRef(C).first;
1293 return CIndexer::createCXString(Super->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00001294 }
1295 case CXCursor_ObjCClassRef: {
Douglas Gregor1adb0822010-01-16 17:14:40 +00001296 ObjCInterfaceDecl *Class = getCursorObjCClassRef(C).first;
1297 return CIndexer::createCXString(Class->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00001298 }
1299 case CXCursor_ObjCProtocolRef: {
Douglas Gregor78db0cd2010-01-16 15:44:18 +00001300 ObjCProtocolDecl *OID = getCursorObjCProtocolRef(C).first;
Douglas Gregorf46034a2010-01-18 23:41:10 +00001301 assert(OID && "getCursorSpelling(): Missing protocol decl");
Ted Kremenek4b333d22010-01-12 00:36:38 +00001302 return CIndexer::createCXString(OID->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00001303 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001304 case CXCursor_TypeRef: {
1305 TypeDecl *Type = getCursorTypeRef(C).first;
1306 assert(Type && "Missing type decl");
1307
1308 return CIndexer::createCXString(
1309 getCursorContext(C).getTypeDeclType(Type).getAsString().c_str(),
1310 true);
1311 }
1312
Daniel Dunbaracca7252009-11-30 20:42:49 +00001313 default:
Ted Kremenek4b333d22010-01-12 00:36:38 +00001314 return CIndexer::createCXString("<not implemented>");
Steve Narofff334b4e2009-09-02 18:26:48 +00001315 }
1316 }
Douglas Gregor97b98722010-01-19 23:20:36 +00001317
1318 if (clang_isExpression(C.kind)) {
1319 Decl *D = getDeclFromExpr(getCursorExpr(C));
1320 if (D)
Douglas Gregor78205d42010-01-20 21:45:58 +00001321 return getDeclSpelling(D);
Douglas Gregor97b98722010-01-19 23:20:36 +00001322 return CIndexer::createCXString("");
1323 }
1324
Douglas Gregor60cbfac2010-01-25 16:56:17 +00001325 if (clang_isDeclaration(C.kind))
1326 return getDeclSpelling(getCursorDecl(C));
1327
1328 return CIndexer::createCXString("");
Steve Narofff334b4e2009-09-02 18:26:48 +00001329}
1330
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001331const char *clang_getCursorKindSpelling(enum CXCursorKind Kind) {
Steve Naroff89922f82009-08-31 00:59:03 +00001332 switch (Kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +00001333 case CXCursor_FunctionDecl: return "FunctionDecl";
1334 case CXCursor_TypedefDecl: return "TypedefDecl";
1335 case CXCursor_EnumDecl: return "EnumDecl";
1336 case CXCursor_EnumConstantDecl: return "EnumConstantDecl";
1337 case CXCursor_StructDecl: return "StructDecl";
1338 case CXCursor_UnionDecl: return "UnionDecl";
1339 case CXCursor_ClassDecl: return "ClassDecl";
1340 case CXCursor_FieldDecl: return "FieldDecl";
1341 case CXCursor_VarDecl: return "VarDecl";
1342 case CXCursor_ParmDecl: return "ParmDecl";
1343 case CXCursor_ObjCInterfaceDecl: return "ObjCInterfaceDecl";
1344 case CXCursor_ObjCCategoryDecl: return "ObjCCategoryDecl";
1345 case CXCursor_ObjCProtocolDecl: return "ObjCProtocolDecl";
1346 case CXCursor_ObjCPropertyDecl: return "ObjCPropertyDecl";
1347 case CXCursor_ObjCIvarDecl: return "ObjCIvarDecl";
1348 case CXCursor_ObjCInstanceMethodDecl: return "ObjCInstanceMethodDecl";
1349 case CXCursor_ObjCClassMethodDecl: return "ObjCClassMethodDecl";
Douglas Gregorb6998662010-01-19 19:34:47 +00001350 case CXCursor_ObjCImplementationDecl: return "ObjCImplementationDecl";
1351 case CXCursor_ObjCCategoryImplDecl: return "ObjCCategoryImplDecl";
Douglas Gregor30122132010-01-19 22:07:56 +00001352 case CXCursor_UnexposedDecl: return "UnexposedDecl";
Daniel Dunbaracca7252009-11-30 20:42:49 +00001353 case CXCursor_ObjCSuperClassRef: return "ObjCSuperClassRef";
1354 case CXCursor_ObjCProtocolRef: return "ObjCProtocolRef";
1355 case CXCursor_ObjCClassRef: return "ObjCClassRef";
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001356 case CXCursor_TypeRef: return "TypeRef";
Douglas Gregor97b98722010-01-19 23:20:36 +00001357 case CXCursor_UnexposedExpr: return "UnexposedExpr";
1358 case CXCursor_DeclRefExpr: return "DeclRefExpr";
1359 case CXCursor_MemberRefExpr: return "MemberRefExpr";
1360 case CXCursor_CallExpr: return "CallExpr";
1361 case CXCursor_ObjCMessageExpr: return "ObjCMessageExpr";
1362 case CXCursor_UnexposedStmt: return "UnexposedStmt";
Daniel Dunbaracca7252009-11-30 20:42:49 +00001363 case CXCursor_InvalidFile: return "InvalidFile";
1364 case CXCursor_NoDeclFound: return "NoDeclFound";
1365 case CXCursor_NotImplemented: return "NotImplemented";
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001366 case CXCursor_TranslationUnit: return "TranslationUnit";
Steve Naroff89922f82009-08-31 00:59:03 +00001367 }
Ted Kremenekdeb06bd2010-01-16 02:02:09 +00001368
1369 llvm_unreachable("Unhandled CXCursorKind");
1370 return NULL;
Steve Naroff600866c2009-08-27 19:51:58 +00001371}
Steve Naroff89922f82009-08-31 00:59:03 +00001372
Douglas Gregor33e9abd2010-01-22 19:49:59 +00001373enum CXChildVisitResult GetCursorVisitor(CXCursor cursor,
1374 CXCursor parent,
1375 CXClientData client_data) {
1376 CXCursor *BestCursor = static_cast<CXCursor *>(client_data);
1377 *BestCursor = cursor;
1378 return CXChildVisit_Recurse;
1379}
1380
Douglas Gregorb9790342010-01-22 21:44:22 +00001381CXCursor clang_getCursor(CXTranslationUnit TU, CXSourceLocation Loc) {
1382 if (!TU)
Ted Kremenekf4629892010-01-14 01:51:23 +00001383 return clang_getNullCursor();
Ted Kremenekf4629892010-01-14 01:51:23 +00001384
Douglas Gregorb9790342010-01-22 21:44:22 +00001385 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU);
1386
Ted Kremeneka297de22010-01-25 22:34:44 +00001387 SourceLocation SLoc = cxloc::translateSourceLocation(Loc);
Douglas Gregor33e9abd2010-01-22 19:49:59 +00001388 CXCursor Result = MakeCXCursorInvalid(CXCursor_NoDeclFound);
1389 if (SLoc.isValid()) {
1390 SourceRange RegionOfInterest(SLoc,
1391 CXXUnit->getPreprocessor().getLocForEndOfToken(SLoc, 1));
1392
1393 // FIXME: Would be great to have a "hint" cursor, then walk from that
1394 // hint cursor upward until we find a cursor whose source range encloses
1395 // the region of interest, rather than starting from the translation unit.
1396 CXCursor Parent = clang_getTranslationUnitCursor(CXXUnit);
1397 CursorVisitor CursorVis(CXXUnit, GetCursorVisitor, &Result,
1398 Decl::MaxPCHLevel, RegionOfInterest);
1399 CursorVis.VisitChildren(Parent);
Steve Naroff77128dd2009-09-15 20:25:34 +00001400 }
Douglas Gregor33e9abd2010-01-22 19:49:59 +00001401 return Result;
Steve Naroff600866c2009-08-27 19:51:58 +00001402}
1403
Ted Kremenek73885552009-11-17 19:28:59 +00001404CXCursor clang_getNullCursor(void) {
Douglas Gregor5bfb8c12010-01-20 23:34:41 +00001405 return MakeCXCursorInvalid(CXCursor_InvalidFile);
Ted Kremenek73885552009-11-17 19:28:59 +00001406}
1407
1408unsigned clang_equalCursors(CXCursor X, CXCursor Y) {
Douglas Gregor283cae32010-01-15 21:56:13 +00001409 return X == Y;
Ted Kremenek73885552009-11-17 19:28:59 +00001410}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001411
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001412unsigned clang_isInvalid(enum CXCursorKind K) {
Steve Naroff77128dd2009-09-15 20:25:34 +00001413 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
1414}
1415
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001416unsigned clang_isDeclaration(enum CXCursorKind K) {
Steve Naroff89922f82009-08-31 00:59:03 +00001417 return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl;
1418}
Steve Naroff2d4d6292009-08-31 14:26:51 +00001419
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001420unsigned clang_isReference(enum CXCursorKind K) {
Steve Narofff334b4e2009-09-02 18:26:48 +00001421 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
1422}
1423
Douglas Gregor97b98722010-01-19 23:20:36 +00001424unsigned clang_isExpression(enum CXCursorKind K) {
1425 return K >= CXCursor_FirstExpr && K <= CXCursor_LastExpr;
1426}
1427
1428unsigned clang_isStatement(enum CXCursorKind K) {
1429 return K >= CXCursor_FirstStmt && K <= CXCursor_LastStmt;
1430}
1431
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001432unsigned clang_isTranslationUnit(enum CXCursorKind K) {
1433 return K == CXCursor_TranslationUnit;
1434}
1435
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001436CXCursorKind clang_getCursorKind(CXCursor C) {
Steve Naroff9efa7672009-09-04 15:44:05 +00001437 return C.kind;
1438}
1439
Douglas Gregor97b98722010-01-19 23:20:36 +00001440static SourceLocation getLocationFromExpr(Expr *E) {
1441 if (ObjCMessageExpr *Msg = dyn_cast<ObjCMessageExpr>(E))
1442 return /*FIXME:*/Msg->getLeftLoc();
1443 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
1444 return DRE->getLocation();
1445 if (MemberExpr *Member = dyn_cast<MemberExpr>(E))
1446 return Member->getMemberLoc();
1447 if (ObjCIvarRefExpr *Ivar = dyn_cast<ObjCIvarRefExpr>(E))
1448 return Ivar->getLocation();
1449 return E->getLocStart();
1450}
1451
Douglas Gregor98258af2010-01-18 22:46:11 +00001452CXSourceLocation clang_getCursorLocation(CXCursor C) {
1453 if (clang_isReference(C.kind)) {
Douglas Gregorf46034a2010-01-18 23:41:10 +00001454 switch (C.kind) {
1455 case CXCursor_ObjCSuperClassRef: {
1456 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1457 = getCursorObjCSuperClassRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001458 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001459 }
1460
1461 case CXCursor_ObjCProtocolRef: {
1462 std::pair<ObjCProtocolDecl *, SourceLocation> P
1463 = getCursorObjCProtocolRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001464 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001465 }
1466
1467 case CXCursor_ObjCClassRef: {
1468 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1469 = getCursorObjCClassRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001470 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001471 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001472
1473 case CXCursor_TypeRef: {
1474 std::pair<TypeDecl *, SourceLocation> P = getCursorTypeRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001475 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001476 }
Douglas Gregorf46034a2010-01-18 23:41:10 +00001477
Douglas Gregorf46034a2010-01-18 23:41:10 +00001478 default:
1479 // FIXME: Need a way to enumerate all non-reference cases.
1480 llvm_unreachable("Missed a reference kind");
1481 }
Douglas Gregor98258af2010-01-18 22:46:11 +00001482 }
Douglas Gregor97b98722010-01-19 23:20:36 +00001483
1484 if (clang_isExpression(C.kind))
Ted Kremeneka297de22010-01-25 22:34:44 +00001485 return cxloc::translateSourceLocation(getCursorContext(C),
Douglas Gregor97b98722010-01-19 23:20:36 +00001486 getLocationFromExpr(getCursorExpr(C)));
1487
Douglas Gregor98258af2010-01-18 22:46:11 +00001488 if (!getCursorDecl(C)) {
Douglas Gregor1db19de2010-01-19 21:36:55 +00001489 CXSourceLocation empty = { 0, 0 };
Douglas Gregor98258af2010-01-18 22:46:11 +00001490 return empty;
1491 }
1492
Douglas Gregorf46034a2010-01-18 23:41:10 +00001493 Decl *D = getCursorDecl(C);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001494 SourceLocation Loc = D->getLocation();
1495 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(D))
1496 Loc = Class->getClassLoc();
Ted Kremeneka297de22010-01-25 22:34:44 +00001497 return cxloc::translateSourceLocation(D->getASTContext(), Loc);
Douglas Gregor98258af2010-01-18 22:46:11 +00001498}
Douglas Gregora7bde202010-01-19 00:34:46 +00001499
1500CXSourceRange clang_getCursorExtent(CXCursor C) {
1501 if (clang_isReference(C.kind)) {
1502 switch (C.kind) {
1503 case CXCursor_ObjCSuperClassRef: {
1504 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1505 = getCursorObjCSuperClassRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001506 return cxloc::translateSourceRange(P.first->getASTContext(), P.second);
Douglas Gregora7bde202010-01-19 00:34:46 +00001507 }
1508
1509 case CXCursor_ObjCProtocolRef: {
1510 std::pair<ObjCProtocolDecl *, SourceLocation> P
1511 = getCursorObjCProtocolRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001512 return cxloc::translateSourceRange(P.first->getASTContext(), P.second);
Douglas Gregora7bde202010-01-19 00:34:46 +00001513 }
1514
1515 case CXCursor_ObjCClassRef: {
1516 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1517 = getCursorObjCClassRef(C);
1518
Ted Kremeneka297de22010-01-25 22:34:44 +00001519 return cxloc::translateSourceRange(P.first->getASTContext(), P.second);
Douglas Gregora7bde202010-01-19 00:34:46 +00001520 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001521
1522 case CXCursor_TypeRef: {
1523 std::pair<TypeDecl *, SourceLocation> P = getCursorTypeRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001524 return cxloc::translateSourceRange(P.first->getASTContext(), P.second);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001525 }
Douglas Gregora7bde202010-01-19 00:34:46 +00001526
Douglas Gregora7bde202010-01-19 00:34:46 +00001527 default:
1528 // FIXME: Need a way to enumerate all non-reference cases.
1529 llvm_unreachable("Missed a reference kind");
1530 }
1531 }
Douglas Gregor97b98722010-01-19 23:20:36 +00001532
1533 if (clang_isExpression(C.kind))
Ted Kremeneka297de22010-01-25 22:34:44 +00001534 return cxloc::translateSourceRange(getCursorContext(C),
Douglas Gregor97b98722010-01-19 23:20:36 +00001535 getCursorExpr(C)->getSourceRange());
Douglas Gregor33e9abd2010-01-22 19:49:59 +00001536
1537 if (clang_isStatement(C.kind))
Ted Kremeneka297de22010-01-25 22:34:44 +00001538 return cxloc::translateSourceRange(getCursorContext(C),
Douglas Gregor33e9abd2010-01-22 19:49:59 +00001539 getCursorStmt(C)->getSourceRange());
Douglas Gregora7bde202010-01-19 00:34:46 +00001540
1541 if (!getCursorDecl(C)) {
Douglas Gregor1db19de2010-01-19 21:36:55 +00001542 CXSourceRange empty = { 0, 0, 0 };
Douglas Gregora7bde202010-01-19 00:34:46 +00001543 return empty;
1544 }
1545
1546 Decl *D = getCursorDecl(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001547 return cxloc::translateSourceRange(D->getASTContext(), D->getSourceRange());
Douglas Gregora7bde202010-01-19 00:34:46 +00001548}
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001549
1550CXCursor clang_getCursorReferenced(CXCursor C) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001551 if (clang_isInvalid(C.kind))
1552 return clang_getNullCursor();
1553
1554 ASTUnit *CXXUnit = getCursorASTUnit(C);
Douglas Gregorb6998662010-01-19 19:34:47 +00001555 if (clang_isDeclaration(C.kind))
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001556 return C;
Douglas Gregor98258af2010-01-18 22:46:11 +00001557
Douglas Gregor97b98722010-01-19 23:20:36 +00001558 if (clang_isExpression(C.kind)) {
1559 Decl *D = getDeclFromExpr(getCursorExpr(C));
1560 if (D)
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001561 return MakeCXCursor(D, CXXUnit);
Douglas Gregor97b98722010-01-19 23:20:36 +00001562 return clang_getNullCursor();
1563 }
1564
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001565 if (!clang_isReference(C.kind))
1566 return clang_getNullCursor();
1567
1568 switch (C.kind) {
1569 case CXCursor_ObjCSuperClassRef:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001570 return MakeCXCursor(getCursorObjCSuperClassRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001571
1572 case CXCursor_ObjCProtocolRef: {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001573 return MakeCXCursor(getCursorObjCProtocolRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001574
1575 case CXCursor_ObjCClassRef:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001576 return MakeCXCursor(getCursorObjCClassRef(C).first, CXXUnit);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001577
1578 case CXCursor_TypeRef:
1579 return MakeCXCursor(getCursorTypeRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001580
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001581 default:
1582 // We would prefer to enumerate all non-reference cursor kinds here.
1583 llvm_unreachable("Unhandled reference cursor kind");
1584 break;
1585 }
1586 }
1587
1588 return clang_getNullCursor();
1589}
1590
Douglas Gregorb6998662010-01-19 19:34:47 +00001591CXCursor clang_getCursorDefinition(CXCursor C) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001592 if (clang_isInvalid(C.kind))
1593 return clang_getNullCursor();
1594
1595 ASTUnit *CXXUnit = getCursorASTUnit(C);
1596
Douglas Gregorb6998662010-01-19 19:34:47 +00001597 bool WasReference = false;
Douglas Gregor97b98722010-01-19 23:20:36 +00001598 if (clang_isReference(C.kind) || clang_isExpression(C.kind)) {
Douglas Gregorb6998662010-01-19 19:34:47 +00001599 C = clang_getCursorReferenced(C);
1600 WasReference = true;
1601 }
1602
1603 if (!clang_isDeclaration(C.kind))
1604 return clang_getNullCursor();
1605
1606 Decl *D = getCursorDecl(C);
1607 if (!D)
1608 return clang_getNullCursor();
1609
1610 switch (D->getKind()) {
1611 // Declaration kinds that don't really separate the notions of
1612 // declaration and definition.
1613 case Decl::Namespace:
1614 case Decl::Typedef:
1615 case Decl::TemplateTypeParm:
1616 case Decl::EnumConstant:
1617 case Decl::Field:
1618 case Decl::ObjCIvar:
1619 case Decl::ObjCAtDefsField:
1620 case Decl::ImplicitParam:
1621 case Decl::ParmVar:
1622 case Decl::NonTypeTemplateParm:
1623 case Decl::TemplateTemplateParm:
1624 case Decl::ObjCCategoryImpl:
1625 case Decl::ObjCImplementation:
1626 case Decl::LinkageSpec:
1627 case Decl::ObjCPropertyImpl:
1628 case Decl::FileScopeAsm:
1629 case Decl::StaticAssert:
1630 case Decl::Block:
1631 return C;
1632
1633 // Declaration kinds that don't make any sense here, but are
1634 // nonetheless harmless.
1635 case Decl::TranslationUnit:
1636 case Decl::Template:
1637 case Decl::ObjCContainer:
1638 break;
1639
1640 // Declaration kinds for which the definition is not resolvable.
1641 case Decl::UnresolvedUsingTypename:
1642 case Decl::UnresolvedUsingValue:
1643 break;
1644
1645 case Decl::UsingDirective:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001646 return MakeCXCursor(cast<UsingDirectiveDecl>(D)->getNominatedNamespace(),
1647 CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001648
1649 case Decl::NamespaceAlias:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001650 return MakeCXCursor(cast<NamespaceAliasDecl>(D)->getNamespace(), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001651
1652 case Decl::Enum:
1653 case Decl::Record:
1654 case Decl::CXXRecord:
1655 case Decl::ClassTemplateSpecialization:
1656 case Decl::ClassTemplatePartialSpecialization:
1657 if (TagDecl *Def = cast<TagDecl>(D)->getDefinition(D->getASTContext()))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001658 return MakeCXCursor(Def, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001659 return clang_getNullCursor();
1660
1661 case Decl::Function:
1662 case Decl::CXXMethod:
1663 case Decl::CXXConstructor:
1664 case Decl::CXXDestructor:
1665 case Decl::CXXConversion: {
1666 const FunctionDecl *Def = 0;
1667 if (cast<FunctionDecl>(D)->getBody(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001668 return MakeCXCursor(const_cast<FunctionDecl *>(Def), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001669 return clang_getNullCursor();
1670 }
1671
1672 case Decl::Var: {
1673 VarDecl *Var = cast<VarDecl>(D);
1674
1675 // Variables with initializers have definitions.
1676 const VarDecl *Def = 0;
1677 if (Var->getDefinition(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001678 return MakeCXCursor(const_cast<VarDecl *>(Def), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001679
1680 // extern and private_extern variables are not definitions.
1681 if (Var->hasExternalStorage())
1682 return clang_getNullCursor();
1683
1684 // In-line static data members do not have definitions.
1685 if (Var->isStaticDataMember() && !Var->isOutOfLine())
1686 return clang_getNullCursor();
1687
1688 // All other variables are themselves definitions.
1689 return C;
1690 }
1691
1692 case Decl::FunctionTemplate: {
1693 const FunctionDecl *Def = 0;
1694 if (cast<FunctionTemplateDecl>(D)->getTemplatedDecl()->getBody(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001695 return MakeCXCursor(Def->getDescribedFunctionTemplate(), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001696 return clang_getNullCursor();
1697 }
1698
1699 case Decl::ClassTemplate: {
1700 if (RecordDecl *Def = cast<ClassTemplateDecl>(D)->getTemplatedDecl()
1701 ->getDefinition(D->getASTContext()))
1702 return MakeCXCursor(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001703 cast<CXXRecordDecl>(Def)->getDescribedClassTemplate(),
1704 CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001705 return clang_getNullCursor();
1706 }
1707
1708 case Decl::Using: {
1709 UsingDecl *Using = cast<UsingDecl>(D);
1710 CXCursor Def = clang_getNullCursor();
1711 for (UsingDecl::shadow_iterator S = Using->shadow_begin(),
1712 SEnd = Using->shadow_end();
1713 S != SEnd; ++S) {
1714 if (Def != clang_getNullCursor()) {
1715 // FIXME: We have no way to return multiple results.
1716 return clang_getNullCursor();
1717 }
1718
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001719 Def = clang_getCursorDefinition(MakeCXCursor((*S)->getTargetDecl(),
1720 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001721 }
1722
1723 return Def;
1724 }
1725
1726 case Decl::UsingShadow:
1727 return clang_getCursorDefinition(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001728 MakeCXCursor(cast<UsingShadowDecl>(D)->getTargetDecl(),
1729 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001730
1731 case Decl::ObjCMethod: {
1732 ObjCMethodDecl *Method = cast<ObjCMethodDecl>(D);
1733 if (Method->isThisDeclarationADefinition())
1734 return C;
1735
1736 // Dig out the method definition in the associated
1737 // @implementation, if we have it.
1738 // FIXME: The ASTs should make finding the definition easier.
1739 if (ObjCInterfaceDecl *Class
1740 = dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext()))
1741 if (ObjCImplementationDecl *ClassImpl = Class->getImplementation())
1742 if (ObjCMethodDecl *Def = ClassImpl->getMethod(Method->getSelector(),
1743 Method->isInstanceMethod()))
1744 if (Def->isThisDeclarationADefinition())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001745 return MakeCXCursor(Def, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001746
1747 return clang_getNullCursor();
1748 }
1749
1750 case Decl::ObjCCategory:
1751 if (ObjCCategoryImplDecl *Impl
1752 = cast<ObjCCategoryDecl>(D)->getImplementation())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001753 return MakeCXCursor(Impl, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001754 return clang_getNullCursor();
1755
1756 case Decl::ObjCProtocol:
1757 if (!cast<ObjCProtocolDecl>(D)->isForwardDecl())
1758 return C;
1759 return clang_getNullCursor();
1760
1761 case Decl::ObjCInterface:
1762 // There are two notions of a "definition" for an Objective-C
1763 // class: the interface and its implementation. When we resolved a
1764 // reference to an Objective-C class, produce the @interface as
1765 // the definition; when we were provided with the interface,
1766 // produce the @implementation as the definition.
1767 if (WasReference) {
1768 if (!cast<ObjCInterfaceDecl>(D)->isForwardDecl())
1769 return C;
1770 } else if (ObjCImplementationDecl *Impl
1771 = cast<ObjCInterfaceDecl>(D)->getImplementation())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001772 return MakeCXCursor(Impl, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001773 return clang_getNullCursor();
1774
1775 case Decl::ObjCProperty:
1776 // FIXME: We don't really know where to find the
1777 // ObjCPropertyImplDecls that implement this property.
1778 return clang_getNullCursor();
1779
1780 case Decl::ObjCCompatibleAlias:
1781 if (ObjCInterfaceDecl *Class
1782 = cast<ObjCCompatibleAliasDecl>(D)->getClassInterface())
1783 if (!Class->isForwardDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001784 return MakeCXCursor(Class, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001785
1786 return clang_getNullCursor();
1787
1788 case Decl::ObjCForwardProtocol: {
1789 ObjCForwardProtocolDecl *Forward = cast<ObjCForwardProtocolDecl>(D);
1790 if (Forward->protocol_size() == 1)
1791 return clang_getCursorDefinition(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001792 MakeCXCursor(*Forward->protocol_begin(),
1793 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001794
1795 // FIXME: Cannot return multiple definitions.
1796 return clang_getNullCursor();
1797 }
1798
1799 case Decl::ObjCClass: {
1800 ObjCClassDecl *Class = cast<ObjCClassDecl>(D);
1801 if (Class->size() == 1) {
1802 ObjCInterfaceDecl *IFace = Class->begin()->getInterface();
1803 if (!IFace->isForwardDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001804 return MakeCXCursor(IFace, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001805 return clang_getNullCursor();
1806 }
1807
1808 // FIXME: Cannot return multiple definitions.
1809 return clang_getNullCursor();
1810 }
1811
1812 case Decl::Friend:
1813 if (NamedDecl *Friend = cast<FriendDecl>(D)->getFriendDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001814 return clang_getCursorDefinition(MakeCXCursor(Friend, CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001815 return clang_getNullCursor();
1816
1817 case Decl::FriendTemplate:
1818 if (NamedDecl *Friend = cast<FriendTemplateDecl>(D)->getFriendDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001819 return clang_getCursorDefinition(MakeCXCursor(Friend, CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001820 return clang_getNullCursor();
1821 }
1822
1823 return clang_getNullCursor();
1824}
1825
1826unsigned clang_isCursorDefinition(CXCursor C) {
1827 if (!clang_isDeclaration(C.kind))
1828 return 0;
1829
1830 return clang_getCursorDefinition(C) == C;
1831}
1832
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001833void clang_getDefinitionSpellingAndExtent(CXCursor C,
Steve Naroff4ade6d62009-09-23 17:52:52 +00001834 const char **startBuf,
1835 const char **endBuf,
1836 unsigned *startLine,
1837 unsigned *startColumn,
1838 unsigned *endLine,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001839 unsigned *endColumn) {
Douglas Gregor283cae32010-01-15 21:56:13 +00001840 assert(getCursorDecl(C) && "CXCursor has null decl");
1841 NamedDecl *ND = static_cast<NamedDecl *>(getCursorDecl(C));
Steve Naroff4ade6d62009-09-23 17:52:52 +00001842 FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
1843 CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody());
Ted Kremenekfb480492010-01-13 21:46:36 +00001844
Steve Naroff4ade6d62009-09-23 17:52:52 +00001845 SourceManager &SM = FD->getASTContext().getSourceManager();
1846 *startBuf = SM.getCharacterData(Body->getLBracLoc());
1847 *endBuf = SM.getCharacterData(Body->getRBracLoc());
1848 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
1849 *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc());
1850 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc());
1851 *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc());
1852}
Ted Kremenekfb480492010-01-13 21:46:36 +00001853
1854} // end: extern "C"
Steve Naroff4ade6d62009-09-23 17:52:52 +00001855
Ted Kremenekfb480492010-01-13 21:46:36 +00001856//===----------------------------------------------------------------------===//
1857// CXString Operations.
1858//===----------------------------------------------------------------------===//
1859
1860extern "C" {
1861const char *clang_getCString(CXString string) {
1862 return string.Spelling;
1863}
1864
1865void clang_disposeString(CXString string) {
1866 if (string.MustFreeString && string.Spelling)
1867 free((void*)string.Spelling);
1868}
Ted Kremenek04bb7162010-01-22 22:44:15 +00001869
Ted Kremenekfb480492010-01-13 21:46:36 +00001870} // end: extern "C"
Ted Kremenek04bb7162010-01-22 22:44:15 +00001871
1872//===----------------------------------------------------------------------===//
1873// Misc. utility functions.
1874//===----------------------------------------------------------------------===//
1875
1876extern "C" {
1877
1878const char *clang_getClangVersion() {
Ted Kremeneka18f1b82010-01-23 02:11:34 +00001879 return getClangFullVersion();
Ted Kremenek04bb7162010-01-22 22:44:15 +00001880}
1881
1882} // end: extern "C"
1883