blob: 03519adc0a363f8cd0fbccefea952f46a12a9191 [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 Gregore69517c2010-01-26 03:07:15 +00001111static SourceLocation getAdjustedSourceLocation(CXSourceLocation location) {
Ted Kremeneka297de22010-01-25 22:34:44 +00001112 cxloc::CXSourceLocationPtr Ptr
1113 = cxloc::CXSourceLocationPtr::getFromOpaqueValue(location.ptr_data);
Douglas Gregor1db19de2010-01-19 21:36:55 +00001114 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data);
1115
Douglas Gregor1db19de2010-01-19 21:36:55 +00001116 // FIXME: This is largely copy-paste from
1117 ///TextDiagnosticPrinter::HighlightRange. When it is clear that this is
1118 // what we want the two routines should be refactored.
1119 ASTContext &Context = *Ptr.getPointer();
1120 SourceManager &SM = Context.getSourceManager();
1121 SourceLocation InstLoc = SM.getInstantiationLoc(Loc);
1122
1123 if (Ptr.getInt()) {
1124 // We want the last character in this location, so we will adjust
1125 // the instantiation location accordingly.
1126
1127 // If the location is from a macro instantiation, get the end of
1128 // the instantiation range.
1129 if (Loc.isMacroID())
1130 InstLoc = SM.getInstantiationRange(Loc).second;
1131
1132 // Measure the length token we're pointing at, so we can adjust
1133 // the physical location in the file to point at the last
1134 // character.
1135 // FIXME: This won't cope with trigraphs or escaped newlines
1136 // well. For that, we actually need a preprocessor, which isn't
1137 // currently available here. Eventually, we'll switch the pointer
1138 // data of CXSourceLocation/CXSourceRange to a translation unit
1139 // (CXXUnit), so that the preprocessor will be available here. At
1140 // that point, we can use Preprocessor::getLocForEndOfToken().
1141 unsigned Length = Lexer::MeasureTokenLength(InstLoc, SM,
1142 Context.getLangOptions());
1143 if (Length > 0)
1144 InstLoc = InstLoc.getFileLocWithOffset(Length - 1);
1145 }
1146
Douglas Gregore69517c2010-01-26 03:07:15 +00001147 return InstLoc;
1148}
1149
1150void clang_getInstantiationLocation(CXSourceLocation location,
1151 CXFile *file,
1152 unsigned *line,
1153 unsigned *column) {
1154 cxloc::CXSourceLocationPtr Ptr
1155 = cxloc::CXSourceLocationPtr::getFromOpaqueValue(location.ptr_data);
1156 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data);
1157
1158 if (!Ptr.getPointer() || Loc.isInvalid()) {
1159 if (file)
1160 *file = 0;
1161 if (line)
1162 *line = 0;
1163 if (column)
1164 *column = 0;
1165 return;
1166 }
1167
1168 SourceLocation InstLoc = getAdjustedSourceLocation(location);
1169 ASTContext &Context = *Ptr.getPointer();
1170 SourceManager &SM = Context.getSourceManager();
Douglas Gregor1db19de2010-01-19 21:36:55 +00001171 if (file)
1172 *file = (void *)SM.getFileEntryForID(SM.getFileID(InstLoc));
1173 if (line)
1174 *line = SM.getInstantiationLineNumber(InstLoc);
1175 if (column)
1176 *column = SM.getInstantiationColumnNumber(InstLoc);
1177}
1178
Douglas Gregore69517c2010-01-26 03:07:15 +00001179void clang_getInstantiationLocationOffset(CXSourceLocation location,
1180 CXFile *file,
1181 unsigned *offset) {
1182 cxloc::CXSourceLocationPtr Ptr
1183 = cxloc::CXSourceLocationPtr::getFromOpaqueValue(location.ptr_data);
1184 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data);
1185
1186 ASTContext &Context = *Ptr.getPointer();
1187 SourceManager &SM = Context.getSourceManager();
1188 SourceLocation InstLoc = getAdjustedSourceLocation(location);
1189 std::pair<FileID, unsigned> Decomposed = SM.getDecomposedLoc(InstLoc);
1190 if (file)
1191 *file = (void *)SM.getFileEntryForID(Decomposed.first);
1192 if (offset)
1193 *offset = Decomposed.second;
1194}
1195
Douglas Gregor1db19de2010-01-19 21:36:55 +00001196CXSourceLocation clang_getRangeStart(CXSourceRange range) {
1197 CXSourceLocation Result = { range.ptr_data, range.begin_int_data };
1198 return Result;
1199}
1200
1201CXSourceLocation clang_getRangeEnd(CXSourceRange range) {
1202 llvm::PointerIntPair<ASTContext *, 1, bool> Ptr;
1203 Ptr.setPointer(static_cast<ASTContext *>(range.ptr_data));
1204 Ptr.setInt(true);
1205 CXSourceLocation Result = { Ptr.getOpaqueValue(), range.end_int_data };
1206 return Result;
1207}
1208
Douglas Gregorb9790342010-01-22 21:44:22 +00001209} // end: extern "C"
1210
Douglas Gregor1db19de2010-01-19 21:36:55 +00001211//===----------------------------------------------------------------------===//
Ted Kremenekfb480492010-01-13 21:46:36 +00001212// CXFile Operations.
1213//===----------------------------------------------------------------------===//
1214
1215extern "C" {
Steve Naroff88145032009-10-27 14:35:18 +00001216const char *clang_getFileName(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +00001217 if (!SFile)
1218 return 0;
1219
Steve Naroff88145032009-10-27 14:35:18 +00001220 assert(SFile && "Passed null CXFile");
1221 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
1222 return FEnt->getName();
1223}
1224
1225time_t clang_getFileTime(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +00001226 if (!SFile)
1227 return 0;
1228
Steve Naroff88145032009-10-27 14:35:18 +00001229 assert(SFile && "Passed null CXFile");
1230 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
1231 return FEnt->getModificationTime();
Steve Naroffee9405e2009-09-25 21:45:39 +00001232}
Douglas Gregorb9790342010-01-22 21:44:22 +00001233
1234CXFile clang_getFile(CXTranslationUnit tu, const char *file_name) {
1235 if (!tu)
1236 return 0;
1237
1238 ASTUnit *CXXUnit = static_cast<ASTUnit *>(tu);
1239
1240 FileManager &FMgr = CXXUnit->getFileManager();
1241 const FileEntry *File = FMgr.getFile(file_name, file_name+strlen(file_name));
1242 return const_cast<FileEntry *>(File);
1243}
1244
Ted Kremenekfb480492010-01-13 21:46:36 +00001245} // end: extern "C"
Steve Naroffee9405e2009-09-25 21:45:39 +00001246
Ted Kremenekfb480492010-01-13 21:46:36 +00001247//===----------------------------------------------------------------------===//
1248// CXCursor Operations.
1249//===----------------------------------------------------------------------===//
1250
Ted Kremenekfb480492010-01-13 21:46:36 +00001251static Decl *getDeclFromExpr(Stmt *E) {
1252 if (DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E))
1253 return RefExpr->getDecl();
1254 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
1255 return ME->getMemberDecl();
1256 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E))
1257 return RE->getDecl();
1258
1259 if (CallExpr *CE = dyn_cast<CallExpr>(E))
1260 return getDeclFromExpr(CE->getCallee());
1261 if (CastExpr *CE = dyn_cast<CastExpr>(E))
1262 return getDeclFromExpr(CE->getSubExpr());
1263 if (ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E))
1264 return OME->getMethodDecl();
1265
1266 return 0;
1267}
1268
1269extern "C" {
Douglas Gregorb1373d02010-01-20 20:59:29 +00001270
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001271unsigned clang_visitChildren(CXCursor parent,
Douglas Gregorb1373d02010-01-20 20:59:29 +00001272 CXCursorVisitor visitor,
1273 CXClientData client_data) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001274 ASTUnit *CXXUnit = getCursorASTUnit(parent);
Douglas Gregorb1373d02010-01-20 20:59:29 +00001275
1276 unsigned PCHLevel = Decl::MaxPCHLevel;
1277
1278 // Set the PCHLevel to filter out unwanted decls if requested.
1279 if (CXXUnit->getOnlyLocalDecls()) {
1280 PCHLevel = 0;
1281
1282 // If the main input was an AST, bump the level.
1283 if (CXXUnit->isMainFileAST())
1284 ++PCHLevel;
1285 }
1286
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001287 CursorVisitor CursorVis(CXXUnit, visitor, client_data, PCHLevel);
Douglas Gregorb1373d02010-01-20 20:59:29 +00001288 return CursorVis.VisitChildren(parent);
1289}
1290
Douglas Gregor78205d42010-01-20 21:45:58 +00001291static CXString getDeclSpelling(Decl *D) {
1292 NamedDecl *ND = dyn_cast_or_null<NamedDecl>(D);
1293 if (!ND)
1294 return CIndexer::createCXString("");
1295
1296 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
1297 return CIndexer::createCXString(OMD->getSelector().getAsString().c_str(),
1298 true);
1299
1300 if (ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND))
1301 // No, this isn't the same as the code below. getIdentifier() is non-virtual
1302 // and returns different names. NamedDecl returns the class name and
1303 // ObjCCategoryImplDecl returns the category name.
1304 return CIndexer::createCXString(CIMP->getIdentifier()->getNameStart());
1305
1306 if (ND->getIdentifier())
1307 return CIndexer::createCXString(ND->getIdentifier()->getNameStart());
1308
1309 return CIndexer::createCXString("");
1310}
1311
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001312CXString clang_getCursorSpelling(CXCursor C) {
Daniel Dunbarc81d7182010-01-18 17:52:42 +00001313 assert(getCursorDecl(C) && "CXCursor has null decl");
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001314 if (clang_isTranslationUnit(C.kind))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001315 return clang_getTranslationUnitSpelling(C.data[2]);
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001316
Steve Narofff334b4e2009-09-02 18:26:48 +00001317 if (clang_isReference(C.kind)) {
1318 switch (C.kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +00001319 case CXCursor_ObjCSuperClassRef: {
Douglas Gregor2e331b92010-01-16 14:00:32 +00001320 ObjCInterfaceDecl *Super = getCursorObjCSuperClassRef(C).first;
1321 return CIndexer::createCXString(Super->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00001322 }
1323 case CXCursor_ObjCClassRef: {
Douglas Gregor1adb0822010-01-16 17:14:40 +00001324 ObjCInterfaceDecl *Class = getCursorObjCClassRef(C).first;
1325 return CIndexer::createCXString(Class->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00001326 }
1327 case CXCursor_ObjCProtocolRef: {
Douglas Gregor78db0cd2010-01-16 15:44:18 +00001328 ObjCProtocolDecl *OID = getCursorObjCProtocolRef(C).first;
Douglas Gregorf46034a2010-01-18 23:41:10 +00001329 assert(OID && "getCursorSpelling(): Missing protocol decl");
Ted Kremenek4b333d22010-01-12 00:36:38 +00001330 return CIndexer::createCXString(OID->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00001331 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001332 case CXCursor_TypeRef: {
1333 TypeDecl *Type = getCursorTypeRef(C).first;
1334 assert(Type && "Missing type decl");
1335
1336 return CIndexer::createCXString(
1337 getCursorContext(C).getTypeDeclType(Type).getAsString().c_str(),
1338 true);
1339 }
1340
Daniel Dunbaracca7252009-11-30 20:42:49 +00001341 default:
Ted Kremenek4b333d22010-01-12 00:36:38 +00001342 return CIndexer::createCXString("<not implemented>");
Steve Narofff334b4e2009-09-02 18:26:48 +00001343 }
1344 }
Douglas Gregor97b98722010-01-19 23:20:36 +00001345
1346 if (clang_isExpression(C.kind)) {
1347 Decl *D = getDeclFromExpr(getCursorExpr(C));
1348 if (D)
Douglas Gregor78205d42010-01-20 21:45:58 +00001349 return getDeclSpelling(D);
Douglas Gregor97b98722010-01-19 23:20:36 +00001350 return CIndexer::createCXString("");
1351 }
1352
Douglas Gregor60cbfac2010-01-25 16:56:17 +00001353 if (clang_isDeclaration(C.kind))
1354 return getDeclSpelling(getCursorDecl(C));
1355
1356 return CIndexer::createCXString("");
Steve Narofff334b4e2009-09-02 18:26:48 +00001357}
1358
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001359const char *clang_getCursorKindSpelling(enum CXCursorKind Kind) {
Steve Naroff89922f82009-08-31 00:59:03 +00001360 switch (Kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +00001361 case CXCursor_FunctionDecl: return "FunctionDecl";
1362 case CXCursor_TypedefDecl: return "TypedefDecl";
1363 case CXCursor_EnumDecl: return "EnumDecl";
1364 case CXCursor_EnumConstantDecl: return "EnumConstantDecl";
1365 case CXCursor_StructDecl: return "StructDecl";
1366 case CXCursor_UnionDecl: return "UnionDecl";
1367 case CXCursor_ClassDecl: return "ClassDecl";
1368 case CXCursor_FieldDecl: return "FieldDecl";
1369 case CXCursor_VarDecl: return "VarDecl";
1370 case CXCursor_ParmDecl: return "ParmDecl";
1371 case CXCursor_ObjCInterfaceDecl: return "ObjCInterfaceDecl";
1372 case CXCursor_ObjCCategoryDecl: return "ObjCCategoryDecl";
1373 case CXCursor_ObjCProtocolDecl: return "ObjCProtocolDecl";
1374 case CXCursor_ObjCPropertyDecl: return "ObjCPropertyDecl";
1375 case CXCursor_ObjCIvarDecl: return "ObjCIvarDecl";
1376 case CXCursor_ObjCInstanceMethodDecl: return "ObjCInstanceMethodDecl";
1377 case CXCursor_ObjCClassMethodDecl: return "ObjCClassMethodDecl";
Douglas Gregorb6998662010-01-19 19:34:47 +00001378 case CXCursor_ObjCImplementationDecl: return "ObjCImplementationDecl";
1379 case CXCursor_ObjCCategoryImplDecl: return "ObjCCategoryImplDecl";
Douglas Gregor30122132010-01-19 22:07:56 +00001380 case CXCursor_UnexposedDecl: return "UnexposedDecl";
Daniel Dunbaracca7252009-11-30 20:42:49 +00001381 case CXCursor_ObjCSuperClassRef: return "ObjCSuperClassRef";
1382 case CXCursor_ObjCProtocolRef: return "ObjCProtocolRef";
1383 case CXCursor_ObjCClassRef: return "ObjCClassRef";
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001384 case CXCursor_TypeRef: return "TypeRef";
Douglas Gregor97b98722010-01-19 23:20:36 +00001385 case CXCursor_UnexposedExpr: return "UnexposedExpr";
1386 case CXCursor_DeclRefExpr: return "DeclRefExpr";
1387 case CXCursor_MemberRefExpr: return "MemberRefExpr";
1388 case CXCursor_CallExpr: return "CallExpr";
1389 case CXCursor_ObjCMessageExpr: return "ObjCMessageExpr";
1390 case CXCursor_UnexposedStmt: return "UnexposedStmt";
Daniel Dunbaracca7252009-11-30 20:42:49 +00001391 case CXCursor_InvalidFile: return "InvalidFile";
1392 case CXCursor_NoDeclFound: return "NoDeclFound";
1393 case CXCursor_NotImplemented: return "NotImplemented";
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001394 case CXCursor_TranslationUnit: return "TranslationUnit";
Steve Naroff89922f82009-08-31 00:59:03 +00001395 }
Ted Kremenekdeb06bd2010-01-16 02:02:09 +00001396
1397 llvm_unreachable("Unhandled CXCursorKind");
1398 return NULL;
Steve Naroff600866c2009-08-27 19:51:58 +00001399}
Steve Naroff89922f82009-08-31 00:59:03 +00001400
Douglas Gregor33e9abd2010-01-22 19:49:59 +00001401enum CXChildVisitResult GetCursorVisitor(CXCursor cursor,
1402 CXCursor parent,
1403 CXClientData client_data) {
1404 CXCursor *BestCursor = static_cast<CXCursor *>(client_data);
1405 *BestCursor = cursor;
1406 return CXChildVisit_Recurse;
1407}
1408
Douglas Gregorb9790342010-01-22 21:44:22 +00001409CXCursor clang_getCursor(CXTranslationUnit TU, CXSourceLocation Loc) {
1410 if (!TU)
Ted Kremenekf4629892010-01-14 01:51:23 +00001411 return clang_getNullCursor();
Ted Kremenekf4629892010-01-14 01:51:23 +00001412
Douglas Gregorb9790342010-01-22 21:44:22 +00001413 ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU);
1414
Ted Kremeneka297de22010-01-25 22:34:44 +00001415 SourceLocation SLoc = cxloc::translateSourceLocation(Loc);
Douglas Gregor33e9abd2010-01-22 19:49:59 +00001416 CXCursor Result = MakeCXCursorInvalid(CXCursor_NoDeclFound);
1417 if (SLoc.isValid()) {
1418 SourceRange RegionOfInterest(SLoc,
1419 CXXUnit->getPreprocessor().getLocForEndOfToken(SLoc, 1));
1420
1421 // FIXME: Would be great to have a "hint" cursor, then walk from that
1422 // hint cursor upward until we find a cursor whose source range encloses
1423 // the region of interest, rather than starting from the translation unit.
1424 CXCursor Parent = clang_getTranslationUnitCursor(CXXUnit);
1425 CursorVisitor CursorVis(CXXUnit, GetCursorVisitor, &Result,
1426 Decl::MaxPCHLevel, RegionOfInterest);
1427 CursorVis.VisitChildren(Parent);
Steve Naroff77128dd2009-09-15 20:25:34 +00001428 }
Douglas Gregor33e9abd2010-01-22 19:49:59 +00001429 return Result;
Steve Naroff600866c2009-08-27 19:51:58 +00001430}
1431
Ted Kremenek73885552009-11-17 19:28:59 +00001432CXCursor clang_getNullCursor(void) {
Douglas Gregor5bfb8c12010-01-20 23:34:41 +00001433 return MakeCXCursorInvalid(CXCursor_InvalidFile);
Ted Kremenek73885552009-11-17 19:28:59 +00001434}
1435
1436unsigned clang_equalCursors(CXCursor X, CXCursor Y) {
Douglas Gregor283cae32010-01-15 21:56:13 +00001437 return X == Y;
Ted Kremenek73885552009-11-17 19:28:59 +00001438}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001439
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001440unsigned clang_isInvalid(enum CXCursorKind K) {
Steve Naroff77128dd2009-09-15 20:25:34 +00001441 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
1442}
1443
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001444unsigned clang_isDeclaration(enum CXCursorKind K) {
Steve Naroff89922f82009-08-31 00:59:03 +00001445 return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl;
1446}
Steve Naroff2d4d6292009-08-31 14:26:51 +00001447
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001448unsigned clang_isReference(enum CXCursorKind K) {
Steve Narofff334b4e2009-09-02 18:26:48 +00001449 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
1450}
1451
Douglas Gregor97b98722010-01-19 23:20:36 +00001452unsigned clang_isExpression(enum CXCursorKind K) {
1453 return K >= CXCursor_FirstExpr && K <= CXCursor_LastExpr;
1454}
1455
1456unsigned clang_isStatement(enum CXCursorKind K) {
1457 return K >= CXCursor_FirstStmt && K <= CXCursor_LastStmt;
1458}
1459
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001460unsigned clang_isTranslationUnit(enum CXCursorKind K) {
1461 return K == CXCursor_TranslationUnit;
1462}
1463
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001464CXCursorKind clang_getCursorKind(CXCursor C) {
Steve Naroff9efa7672009-09-04 15:44:05 +00001465 return C.kind;
1466}
1467
Douglas Gregor97b98722010-01-19 23:20:36 +00001468static SourceLocation getLocationFromExpr(Expr *E) {
1469 if (ObjCMessageExpr *Msg = dyn_cast<ObjCMessageExpr>(E))
1470 return /*FIXME:*/Msg->getLeftLoc();
1471 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
1472 return DRE->getLocation();
1473 if (MemberExpr *Member = dyn_cast<MemberExpr>(E))
1474 return Member->getMemberLoc();
1475 if (ObjCIvarRefExpr *Ivar = dyn_cast<ObjCIvarRefExpr>(E))
1476 return Ivar->getLocation();
1477 return E->getLocStart();
1478}
1479
Douglas Gregor98258af2010-01-18 22:46:11 +00001480CXSourceLocation clang_getCursorLocation(CXCursor C) {
1481 if (clang_isReference(C.kind)) {
Douglas Gregorf46034a2010-01-18 23:41:10 +00001482 switch (C.kind) {
1483 case CXCursor_ObjCSuperClassRef: {
1484 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1485 = getCursorObjCSuperClassRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001486 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001487 }
1488
1489 case CXCursor_ObjCProtocolRef: {
1490 std::pair<ObjCProtocolDecl *, SourceLocation> P
1491 = getCursorObjCProtocolRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001492 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001493 }
1494
1495 case CXCursor_ObjCClassRef: {
1496 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1497 = getCursorObjCClassRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001498 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001499 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001500
1501 case CXCursor_TypeRef: {
1502 std::pair<TypeDecl *, SourceLocation> P = getCursorTypeRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001503 return cxloc::translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001504 }
Douglas Gregorf46034a2010-01-18 23:41:10 +00001505
Douglas Gregorf46034a2010-01-18 23:41:10 +00001506 default:
1507 // FIXME: Need a way to enumerate all non-reference cases.
1508 llvm_unreachable("Missed a reference kind");
1509 }
Douglas Gregor98258af2010-01-18 22:46:11 +00001510 }
Douglas Gregor97b98722010-01-19 23:20:36 +00001511
1512 if (clang_isExpression(C.kind))
Ted Kremeneka297de22010-01-25 22:34:44 +00001513 return cxloc::translateSourceLocation(getCursorContext(C),
Douglas Gregor97b98722010-01-19 23:20:36 +00001514 getLocationFromExpr(getCursorExpr(C)));
1515
Douglas Gregor98258af2010-01-18 22:46:11 +00001516 if (!getCursorDecl(C)) {
Douglas Gregor1db19de2010-01-19 21:36:55 +00001517 CXSourceLocation empty = { 0, 0 };
Douglas Gregor98258af2010-01-18 22:46:11 +00001518 return empty;
1519 }
1520
Douglas Gregorf46034a2010-01-18 23:41:10 +00001521 Decl *D = getCursorDecl(C);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001522 SourceLocation Loc = D->getLocation();
1523 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(D))
1524 Loc = Class->getClassLoc();
Ted Kremeneka297de22010-01-25 22:34:44 +00001525 return cxloc::translateSourceLocation(D->getASTContext(), Loc);
Douglas Gregor98258af2010-01-18 22:46:11 +00001526}
Douglas Gregora7bde202010-01-19 00:34:46 +00001527
1528CXSourceRange clang_getCursorExtent(CXCursor C) {
1529 if (clang_isReference(C.kind)) {
1530 switch (C.kind) {
1531 case CXCursor_ObjCSuperClassRef: {
1532 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1533 = getCursorObjCSuperClassRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001534 return cxloc::translateSourceRange(P.first->getASTContext(), P.second);
Douglas Gregora7bde202010-01-19 00:34:46 +00001535 }
1536
1537 case CXCursor_ObjCProtocolRef: {
1538 std::pair<ObjCProtocolDecl *, SourceLocation> P
1539 = getCursorObjCProtocolRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001540 return cxloc::translateSourceRange(P.first->getASTContext(), P.second);
Douglas Gregora7bde202010-01-19 00:34:46 +00001541 }
1542
1543 case CXCursor_ObjCClassRef: {
1544 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1545 = getCursorObjCClassRef(C);
1546
Ted Kremeneka297de22010-01-25 22:34:44 +00001547 return cxloc::translateSourceRange(P.first->getASTContext(), P.second);
Douglas Gregora7bde202010-01-19 00:34:46 +00001548 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001549
1550 case CXCursor_TypeRef: {
1551 std::pair<TypeDecl *, SourceLocation> P = getCursorTypeRef(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001552 return cxloc::translateSourceRange(P.first->getASTContext(), P.second);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001553 }
Douglas Gregora7bde202010-01-19 00:34:46 +00001554
Douglas Gregora7bde202010-01-19 00:34:46 +00001555 default:
1556 // FIXME: Need a way to enumerate all non-reference cases.
1557 llvm_unreachable("Missed a reference kind");
1558 }
1559 }
Douglas Gregor97b98722010-01-19 23:20:36 +00001560
1561 if (clang_isExpression(C.kind))
Ted Kremeneka297de22010-01-25 22:34:44 +00001562 return cxloc::translateSourceRange(getCursorContext(C),
Douglas Gregor97b98722010-01-19 23:20:36 +00001563 getCursorExpr(C)->getSourceRange());
Douglas Gregor33e9abd2010-01-22 19:49:59 +00001564
1565 if (clang_isStatement(C.kind))
Ted Kremeneka297de22010-01-25 22:34:44 +00001566 return cxloc::translateSourceRange(getCursorContext(C),
Douglas Gregor33e9abd2010-01-22 19:49:59 +00001567 getCursorStmt(C)->getSourceRange());
Douglas Gregora7bde202010-01-19 00:34:46 +00001568
1569 if (!getCursorDecl(C)) {
Douglas Gregor1db19de2010-01-19 21:36:55 +00001570 CXSourceRange empty = { 0, 0, 0 };
Douglas Gregora7bde202010-01-19 00:34:46 +00001571 return empty;
1572 }
1573
1574 Decl *D = getCursorDecl(C);
Ted Kremeneka297de22010-01-25 22:34:44 +00001575 return cxloc::translateSourceRange(D->getASTContext(), D->getSourceRange());
Douglas Gregora7bde202010-01-19 00:34:46 +00001576}
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001577
1578CXCursor clang_getCursorReferenced(CXCursor C) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001579 if (clang_isInvalid(C.kind))
1580 return clang_getNullCursor();
1581
1582 ASTUnit *CXXUnit = getCursorASTUnit(C);
Douglas Gregorb6998662010-01-19 19:34:47 +00001583 if (clang_isDeclaration(C.kind))
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001584 return C;
Douglas Gregor98258af2010-01-18 22:46:11 +00001585
Douglas Gregor97b98722010-01-19 23:20:36 +00001586 if (clang_isExpression(C.kind)) {
1587 Decl *D = getDeclFromExpr(getCursorExpr(C));
1588 if (D)
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001589 return MakeCXCursor(D, CXXUnit);
Douglas Gregor97b98722010-01-19 23:20:36 +00001590 return clang_getNullCursor();
1591 }
1592
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001593 if (!clang_isReference(C.kind))
1594 return clang_getNullCursor();
1595
1596 switch (C.kind) {
1597 case CXCursor_ObjCSuperClassRef:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001598 return MakeCXCursor(getCursorObjCSuperClassRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001599
1600 case CXCursor_ObjCProtocolRef: {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001601 return MakeCXCursor(getCursorObjCProtocolRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001602
1603 case CXCursor_ObjCClassRef:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001604 return MakeCXCursor(getCursorObjCClassRef(C).first, CXXUnit);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001605
1606 case CXCursor_TypeRef:
1607 return MakeCXCursor(getCursorTypeRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001608
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001609 default:
1610 // We would prefer to enumerate all non-reference cursor kinds here.
1611 llvm_unreachable("Unhandled reference cursor kind");
1612 break;
1613 }
1614 }
1615
1616 return clang_getNullCursor();
1617}
1618
Douglas Gregorb6998662010-01-19 19:34:47 +00001619CXCursor clang_getCursorDefinition(CXCursor C) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001620 if (clang_isInvalid(C.kind))
1621 return clang_getNullCursor();
1622
1623 ASTUnit *CXXUnit = getCursorASTUnit(C);
1624
Douglas Gregorb6998662010-01-19 19:34:47 +00001625 bool WasReference = false;
Douglas Gregor97b98722010-01-19 23:20:36 +00001626 if (clang_isReference(C.kind) || clang_isExpression(C.kind)) {
Douglas Gregorb6998662010-01-19 19:34:47 +00001627 C = clang_getCursorReferenced(C);
1628 WasReference = true;
1629 }
1630
1631 if (!clang_isDeclaration(C.kind))
1632 return clang_getNullCursor();
1633
1634 Decl *D = getCursorDecl(C);
1635 if (!D)
1636 return clang_getNullCursor();
1637
1638 switch (D->getKind()) {
1639 // Declaration kinds that don't really separate the notions of
1640 // declaration and definition.
1641 case Decl::Namespace:
1642 case Decl::Typedef:
1643 case Decl::TemplateTypeParm:
1644 case Decl::EnumConstant:
1645 case Decl::Field:
1646 case Decl::ObjCIvar:
1647 case Decl::ObjCAtDefsField:
1648 case Decl::ImplicitParam:
1649 case Decl::ParmVar:
1650 case Decl::NonTypeTemplateParm:
1651 case Decl::TemplateTemplateParm:
1652 case Decl::ObjCCategoryImpl:
1653 case Decl::ObjCImplementation:
1654 case Decl::LinkageSpec:
1655 case Decl::ObjCPropertyImpl:
1656 case Decl::FileScopeAsm:
1657 case Decl::StaticAssert:
1658 case Decl::Block:
1659 return C;
1660
1661 // Declaration kinds that don't make any sense here, but are
1662 // nonetheless harmless.
1663 case Decl::TranslationUnit:
1664 case Decl::Template:
1665 case Decl::ObjCContainer:
1666 break;
1667
1668 // Declaration kinds for which the definition is not resolvable.
1669 case Decl::UnresolvedUsingTypename:
1670 case Decl::UnresolvedUsingValue:
1671 break;
1672
1673 case Decl::UsingDirective:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001674 return MakeCXCursor(cast<UsingDirectiveDecl>(D)->getNominatedNamespace(),
1675 CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001676
1677 case Decl::NamespaceAlias:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001678 return MakeCXCursor(cast<NamespaceAliasDecl>(D)->getNamespace(), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001679
1680 case Decl::Enum:
1681 case Decl::Record:
1682 case Decl::CXXRecord:
1683 case Decl::ClassTemplateSpecialization:
1684 case Decl::ClassTemplatePartialSpecialization:
1685 if (TagDecl *Def = cast<TagDecl>(D)->getDefinition(D->getASTContext()))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001686 return MakeCXCursor(Def, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001687 return clang_getNullCursor();
1688
1689 case Decl::Function:
1690 case Decl::CXXMethod:
1691 case Decl::CXXConstructor:
1692 case Decl::CXXDestructor:
1693 case Decl::CXXConversion: {
1694 const FunctionDecl *Def = 0;
1695 if (cast<FunctionDecl>(D)->getBody(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001696 return MakeCXCursor(const_cast<FunctionDecl *>(Def), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001697 return clang_getNullCursor();
1698 }
1699
1700 case Decl::Var: {
1701 VarDecl *Var = cast<VarDecl>(D);
1702
1703 // Variables with initializers have definitions.
1704 const VarDecl *Def = 0;
1705 if (Var->getDefinition(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001706 return MakeCXCursor(const_cast<VarDecl *>(Def), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001707
1708 // extern and private_extern variables are not definitions.
1709 if (Var->hasExternalStorage())
1710 return clang_getNullCursor();
1711
1712 // In-line static data members do not have definitions.
1713 if (Var->isStaticDataMember() && !Var->isOutOfLine())
1714 return clang_getNullCursor();
1715
1716 // All other variables are themselves definitions.
1717 return C;
1718 }
1719
1720 case Decl::FunctionTemplate: {
1721 const FunctionDecl *Def = 0;
1722 if (cast<FunctionTemplateDecl>(D)->getTemplatedDecl()->getBody(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001723 return MakeCXCursor(Def->getDescribedFunctionTemplate(), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001724 return clang_getNullCursor();
1725 }
1726
1727 case Decl::ClassTemplate: {
1728 if (RecordDecl *Def = cast<ClassTemplateDecl>(D)->getTemplatedDecl()
1729 ->getDefinition(D->getASTContext()))
1730 return MakeCXCursor(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001731 cast<CXXRecordDecl>(Def)->getDescribedClassTemplate(),
1732 CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001733 return clang_getNullCursor();
1734 }
1735
1736 case Decl::Using: {
1737 UsingDecl *Using = cast<UsingDecl>(D);
1738 CXCursor Def = clang_getNullCursor();
1739 for (UsingDecl::shadow_iterator S = Using->shadow_begin(),
1740 SEnd = Using->shadow_end();
1741 S != SEnd; ++S) {
1742 if (Def != clang_getNullCursor()) {
1743 // FIXME: We have no way to return multiple results.
1744 return clang_getNullCursor();
1745 }
1746
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001747 Def = clang_getCursorDefinition(MakeCXCursor((*S)->getTargetDecl(),
1748 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001749 }
1750
1751 return Def;
1752 }
1753
1754 case Decl::UsingShadow:
1755 return clang_getCursorDefinition(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001756 MakeCXCursor(cast<UsingShadowDecl>(D)->getTargetDecl(),
1757 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001758
1759 case Decl::ObjCMethod: {
1760 ObjCMethodDecl *Method = cast<ObjCMethodDecl>(D);
1761 if (Method->isThisDeclarationADefinition())
1762 return C;
1763
1764 // Dig out the method definition in the associated
1765 // @implementation, if we have it.
1766 // FIXME: The ASTs should make finding the definition easier.
1767 if (ObjCInterfaceDecl *Class
1768 = dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext()))
1769 if (ObjCImplementationDecl *ClassImpl = Class->getImplementation())
1770 if (ObjCMethodDecl *Def = ClassImpl->getMethod(Method->getSelector(),
1771 Method->isInstanceMethod()))
1772 if (Def->isThisDeclarationADefinition())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001773 return MakeCXCursor(Def, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001774
1775 return clang_getNullCursor();
1776 }
1777
1778 case Decl::ObjCCategory:
1779 if (ObjCCategoryImplDecl *Impl
1780 = cast<ObjCCategoryDecl>(D)->getImplementation())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001781 return MakeCXCursor(Impl, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001782 return clang_getNullCursor();
1783
1784 case Decl::ObjCProtocol:
1785 if (!cast<ObjCProtocolDecl>(D)->isForwardDecl())
1786 return C;
1787 return clang_getNullCursor();
1788
1789 case Decl::ObjCInterface:
1790 // There are two notions of a "definition" for an Objective-C
1791 // class: the interface and its implementation. When we resolved a
1792 // reference to an Objective-C class, produce the @interface as
1793 // the definition; when we were provided with the interface,
1794 // produce the @implementation as the definition.
1795 if (WasReference) {
1796 if (!cast<ObjCInterfaceDecl>(D)->isForwardDecl())
1797 return C;
1798 } else if (ObjCImplementationDecl *Impl
1799 = cast<ObjCInterfaceDecl>(D)->getImplementation())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001800 return MakeCXCursor(Impl, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001801 return clang_getNullCursor();
1802
1803 case Decl::ObjCProperty:
1804 // FIXME: We don't really know where to find the
1805 // ObjCPropertyImplDecls that implement this property.
1806 return clang_getNullCursor();
1807
1808 case Decl::ObjCCompatibleAlias:
1809 if (ObjCInterfaceDecl *Class
1810 = cast<ObjCCompatibleAliasDecl>(D)->getClassInterface())
1811 if (!Class->isForwardDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001812 return MakeCXCursor(Class, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001813
1814 return clang_getNullCursor();
1815
1816 case Decl::ObjCForwardProtocol: {
1817 ObjCForwardProtocolDecl *Forward = cast<ObjCForwardProtocolDecl>(D);
1818 if (Forward->protocol_size() == 1)
1819 return clang_getCursorDefinition(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001820 MakeCXCursor(*Forward->protocol_begin(),
1821 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001822
1823 // FIXME: Cannot return multiple definitions.
1824 return clang_getNullCursor();
1825 }
1826
1827 case Decl::ObjCClass: {
1828 ObjCClassDecl *Class = cast<ObjCClassDecl>(D);
1829 if (Class->size() == 1) {
1830 ObjCInterfaceDecl *IFace = Class->begin()->getInterface();
1831 if (!IFace->isForwardDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001832 return MakeCXCursor(IFace, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001833 return clang_getNullCursor();
1834 }
1835
1836 // FIXME: Cannot return multiple definitions.
1837 return clang_getNullCursor();
1838 }
1839
1840 case Decl::Friend:
1841 if (NamedDecl *Friend = cast<FriendDecl>(D)->getFriendDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001842 return clang_getCursorDefinition(MakeCXCursor(Friend, CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001843 return clang_getNullCursor();
1844
1845 case Decl::FriendTemplate:
1846 if (NamedDecl *Friend = cast<FriendTemplateDecl>(D)->getFriendDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001847 return clang_getCursorDefinition(MakeCXCursor(Friend, CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001848 return clang_getNullCursor();
1849 }
1850
1851 return clang_getNullCursor();
1852}
1853
1854unsigned clang_isCursorDefinition(CXCursor C) {
1855 if (!clang_isDeclaration(C.kind))
1856 return 0;
1857
1858 return clang_getCursorDefinition(C) == C;
1859}
1860
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001861void clang_getDefinitionSpellingAndExtent(CXCursor C,
Steve Naroff4ade6d62009-09-23 17:52:52 +00001862 const char **startBuf,
1863 const char **endBuf,
1864 unsigned *startLine,
1865 unsigned *startColumn,
1866 unsigned *endLine,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001867 unsigned *endColumn) {
Douglas Gregor283cae32010-01-15 21:56:13 +00001868 assert(getCursorDecl(C) && "CXCursor has null decl");
1869 NamedDecl *ND = static_cast<NamedDecl *>(getCursorDecl(C));
Steve Naroff4ade6d62009-09-23 17:52:52 +00001870 FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
1871 CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody());
Ted Kremenekfb480492010-01-13 21:46:36 +00001872
Steve Naroff4ade6d62009-09-23 17:52:52 +00001873 SourceManager &SM = FD->getASTContext().getSourceManager();
1874 *startBuf = SM.getCharacterData(Body->getLBracLoc());
1875 *endBuf = SM.getCharacterData(Body->getRBracLoc());
1876 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
1877 *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc());
1878 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc());
1879 *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc());
1880}
Ted Kremenekfb480492010-01-13 21:46:36 +00001881
1882} // end: extern "C"
Steve Naroff4ade6d62009-09-23 17:52:52 +00001883
Ted Kremenekfb480492010-01-13 21:46:36 +00001884//===----------------------------------------------------------------------===//
1885// CXString Operations.
1886//===----------------------------------------------------------------------===//
1887
1888extern "C" {
1889const char *clang_getCString(CXString string) {
1890 return string.Spelling;
1891}
1892
1893void clang_disposeString(CXString string) {
1894 if (string.MustFreeString && string.Spelling)
1895 free((void*)string.Spelling);
1896}
Ted Kremenek04bb7162010-01-22 22:44:15 +00001897
Ted Kremenekfb480492010-01-13 21:46:36 +00001898} // end: extern "C"
Ted Kremenek04bb7162010-01-22 22:44:15 +00001899
1900//===----------------------------------------------------------------------===//
1901// Misc. utility functions.
1902//===----------------------------------------------------------------------===//
1903
1904extern "C" {
1905
1906const char *clang_getClangVersion() {
Ted Kremeneka18f1b82010-01-23 02:11:34 +00001907 return getClangFullVersion();
Ted Kremenek04bb7162010-01-22 22:44:15 +00001908}
1909
1910} // end: extern "C"
1911