blob: e3772da94eb351d182ea7ced7e939203cc95c7b7 [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 Kremenekab188932010-01-05 19:32:54 +000017
Steve Naroff50398192009-08-28 15:28:48 +000018#include "clang/AST/DeclVisitor.h"
Steve Narofffb570422009-09-22 19:25:29 +000019#include "clang/AST/StmtVisitor.h"
Douglas Gregor7d0d40e2010-01-21 16:28:34 +000020#include "clang/AST/TypeLocVisitor.h"
Ted Kremenekd8210652010-01-06 23:43:31 +000021#include "clang/Lex/Lexer.h"
Douglas Gregor02465752009-10-16 21:24:31 +000022#include "llvm/Support/MemoryBuffer.h"
Benjamin Kramer0829a832009-10-18 11:19:36 +000023#include "llvm/System/Program.h"
Ted Kremenekfc062212009-10-19 21:44:57 +000024
Ted Kremenekdb3d0da2010-01-05 20:55:39 +000025// Needed to define L_TMPNAM on some systems.
26#include <cstdio>
27
Steve Naroff50398192009-08-28 15:28:48 +000028using namespace clang;
Ted Kremenek16c440a2010-01-15 20:35:54 +000029using namespace clang::cxcursor;
Steve Naroff50398192009-08-28 15:28:48 +000030using namespace idx;
31
Ted Kremenek8a8da7d2010-01-06 03:42:32 +000032//===----------------------------------------------------------------------===//
33// Crash Reporting.
34//===----------------------------------------------------------------------===//
35
36#ifdef __APPLE__
Ted Kremenek29b72842010-01-07 22:49:05 +000037#ifndef NDEBUG
38#define USE_CRASHTRACER
Ted Kremenek8a8da7d2010-01-06 03:42:32 +000039#include "clang/Analysis/Support/SaveAndRestore.h"
40// Integrate with crash reporter.
41extern "C" const char *__crashreporter_info__;
Ted Kremenek29b72842010-01-07 22:49:05 +000042#define NUM_CRASH_STRINGS 16
43static unsigned crashtracer_counter = 0;
Ted Kremenek254ba7c2010-01-07 23:13:53 +000044static unsigned crashtracer_counter_id[NUM_CRASH_STRINGS] = { 0 };
Ted Kremenek29b72842010-01-07 22:49:05 +000045static const char *crashtracer_strings[NUM_CRASH_STRINGS] = { 0 };
46static const char *agg_crashtracer_strings[NUM_CRASH_STRINGS] = { 0 };
47
48static unsigned SetCrashTracerInfo(const char *str,
49 llvm::SmallString<1024> &AggStr) {
50
Ted Kremenek254ba7c2010-01-07 23:13:53 +000051 unsigned slot = 0;
Ted Kremenek29b72842010-01-07 22:49:05 +000052 while (crashtracer_strings[slot]) {
53 if (++slot == NUM_CRASH_STRINGS)
54 slot = 0;
55 }
56 crashtracer_strings[slot] = str;
Ted Kremenek254ba7c2010-01-07 23:13:53 +000057 crashtracer_counter_id[slot] = ++crashtracer_counter;
Ted Kremenek29b72842010-01-07 22:49:05 +000058
59 // We need to create an aggregate string because multiple threads
60 // may be in this method at one time. The crash reporter string
61 // will attempt to overapproximate the set of in-flight invocations
62 // of this function. Race conditions can still cause this goal
63 // to not be achieved.
64 {
65 llvm::raw_svector_ostream Out(AggStr);
66 for (unsigned i = 0; i < NUM_CRASH_STRINGS; ++i)
67 if (crashtracer_strings[i]) Out << crashtracer_strings[i] << '\n';
68 }
69 __crashreporter_info__ = agg_crashtracer_strings[slot] = AggStr.c_str();
70 return slot;
71}
72
73static void ResetCrashTracerInfo(unsigned slot) {
Ted Kremenek254ba7c2010-01-07 23:13:53 +000074 unsigned max_slot = 0;
75 unsigned max_value = 0;
76
77 crashtracer_strings[slot] = agg_crashtracer_strings[slot] = 0;
78
79 for (unsigned i = 0 ; i < NUM_CRASH_STRINGS; ++i)
80 if (agg_crashtracer_strings[i] &&
81 crashtracer_counter_id[i] > max_value) {
82 max_slot = i;
83 max_value = crashtracer_counter_id[i];
Ted Kremenek29b72842010-01-07 22:49:05 +000084 }
Ted Kremenek254ba7c2010-01-07 23:13:53 +000085
86 __crashreporter_info__ = agg_crashtracer_strings[max_slot];
Ted Kremenek29b72842010-01-07 22:49:05 +000087}
88
89namespace {
90class ArgsCrashTracerInfo {
91 llvm::SmallString<1024> CrashString;
92 llvm::SmallString<1024> AggregateString;
93 unsigned crashtracerSlot;
94public:
95 ArgsCrashTracerInfo(llvm::SmallVectorImpl<const char*> &Args)
96 : crashtracerSlot(0)
97 {
98 {
99 llvm::raw_svector_ostream Out(CrashString);
100 Out << "ClangCIndex [createTranslationUnitFromSourceFile]: clang";
101 for (llvm::SmallVectorImpl<const char*>::iterator I=Args.begin(),
102 E=Args.end(); I!=E; ++I)
103 Out << ' ' << *I;
104 }
105 crashtracerSlot = SetCrashTracerInfo(CrashString.c_str(),
106 AggregateString);
107 }
108
109 ~ArgsCrashTracerInfo() {
110 ResetCrashTracerInfo(crashtracerSlot);
111 }
112};
113}
114#endif
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000115#endif
116
Douglas Gregor1db19de2010-01-19 21:36:55 +0000117typedef llvm::PointerIntPair<ASTContext *, 1, bool> CXSourceLocationPtr;
118
Douglas Gregor98258af2010-01-18 22:46:11 +0000119/// \brief Translate a Clang source location into a CIndex source location.
Douglas Gregor1db19de2010-01-19 21:36:55 +0000120static CXSourceLocation translateSourceLocation(ASTContext &Context,
121 SourceLocation Loc,
122 bool AtEnd = false) {
123 CXSourceLocationPtr Ptr(&Context, AtEnd);
124 CXSourceLocation Result = { Ptr.getOpaqueValue(), Loc.getRawEncoding() };
125 return Result;
Douglas Gregor98258af2010-01-18 22:46:11 +0000126}
127
Douglas Gregora7bde202010-01-19 00:34:46 +0000128/// \brief Translate a Clang source range into a CIndex source range.
Douglas Gregor1db19de2010-01-19 21:36:55 +0000129static CXSourceRange translateSourceRange(ASTContext &Context, SourceRange R) {
130 CXSourceRange Result = { &Context,
131 R.getBegin().getRawEncoding(),
132 R.getEnd().getRawEncoding() };
133 return Result;
Douglas Gregora7bde202010-01-19 00:34:46 +0000134}
135
Douglas Gregor1db19de2010-01-19 21:36:55 +0000136
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000137//===----------------------------------------------------------------------===//
138// Visitors.
139//===----------------------------------------------------------------------===//
140
Steve Naroff89922f82009-08-31 00:59:03 +0000141namespace {
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000142
Douglas Gregorb1373d02010-01-20 20:59:29 +0000143// Cursor visitor.
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000144class CursorVisitor : public DeclVisitor<CursorVisitor, bool>,
145 public TypeLocVisitor<CursorVisitor, bool>
146{
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000147 ASTUnit *TU;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000148 CXCursor Parent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000149 Decl *StmtParent;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000150 CXCursorVisitor Visitor;
151 CXClientData ClientData;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000152
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000153 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
154 // to the visitor. Declarations with a PCH level greater than this value will
155 // be suppressed.
156 unsigned MaxPCHLevel;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000157
158 using DeclVisitor<CursorVisitor, bool>::Visit;
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000159 using TypeLocVisitor<CursorVisitor, bool>::Visit;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000160
Steve Naroff89922f82009-08-31 00:59:03 +0000161public:
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000162 CursorVisitor(ASTUnit *TU, CXCursorVisitor Visitor, CXClientData ClientData,
Douglas Gregorb1373d02010-01-20 20:59:29 +0000163 unsigned MaxPCHLevel)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000164 : TU(TU), Visitor(Visitor), ClientData(ClientData), MaxPCHLevel(MaxPCHLevel)
Douglas Gregorb1373d02010-01-20 20:59:29 +0000165 {
166 Parent.kind = CXCursor_NoDeclFound;
167 Parent.data[0] = 0;
168 Parent.data[1] = 0;
169 Parent.data[2] = 0;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000170 StmtParent = 0;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000171 }
172
173 bool Visit(CXCursor Cursor);
174 bool VisitChildren(CXCursor Parent);
175
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000176 // Declaration visitors
Douglas Gregorb1373d02010-01-20 20:59:29 +0000177 bool VisitDeclContext(DeclContext *DC);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000178 bool VisitTranslationUnitDecl(TranslationUnitDecl *D);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000179 bool VisitDeclaratorDecl(DeclaratorDecl *DD);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000180 bool VisitFunctionDecl(FunctionDecl *ND);
181 bool VisitObjCCategoryDecl(ObjCCategoryDecl *ND);
182 bool VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
183 bool VisitObjCMethodDecl(ObjCMethodDecl *ND);
184 bool VisitObjCProtocolDecl(ObjCProtocolDecl *PID);
185 bool VisitTagDecl(TagDecl *D);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000186
187 // Type visitors
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000188 // FIXME: QualifiedTypeLoc doesn't provide any location information
189 bool VisitBuiltinTypeLoc(BuiltinTypeLoc TL);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000190 bool VisitTypedefTypeLoc(TypedefTypeLoc TL);
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000191 bool VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL);
192 bool VisitTagTypeLoc(TagTypeLoc TL);
193 // FIXME: TemplateTypeParmTypeLoc doesn't provide any location information
194 bool VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL);
195 bool VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL);
196 bool VisitPointerTypeLoc(PointerTypeLoc TL);
197 bool VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL);
198 bool VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL);
199 bool VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL);
200 bool VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL);
201 bool VisitFunctionTypeLoc(FunctionTypeLoc TL);
202 bool VisitArrayTypeLoc(ArrayTypeLoc TL);
Steve Naroff89922f82009-08-31 00:59:03 +0000203};
Douglas Gregorb1373d02010-01-20 20:59:29 +0000204
Ted Kremenekab188932010-01-05 19:32:54 +0000205} // end anonymous namespace
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000206
Douglas Gregorb1373d02010-01-20 20:59:29 +0000207/// \brief Visit the given cursor and, if requested by the visitor,
208/// its children.
209///
210/// \returns true if the visitation should be aborted, false if it
211/// should continue.
212bool CursorVisitor::Visit(CXCursor Cursor) {
213 if (clang_isInvalid(Cursor.kind))
214 return false;
215
216 if (clang_isDeclaration(Cursor.kind)) {
217 Decl *D = getCursorDecl(Cursor);
218 assert(D && "Invalid declaration cursor");
219 if (D->getPCHLevel() > MaxPCHLevel)
220 return false;
221
222 if (D->isImplicit())
223 return false;
224 }
225
226 switch (Visitor(Cursor, Parent, ClientData)) {
227 case CXChildVisit_Break:
228 return true;
229
230 case CXChildVisit_Continue:
231 return false;
232
233 case CXChildVisit_Recurse:
234 return VisitChildren(Cursor);
235 }
236
237 llvm_unreachable("Silly GCC, we can't get here");
238}
239
240/// \brief Visit the children of the given cursor.
241///
242/// \returns true if the visitation should be aborted, false if it
243/// should continue.
244bool CursorVisitor::VisitChildren(CXCursor Cursor) {
245 // Set the Parent field to Cursor, then back to its old value once we're
246 // done.
247 class SetParentRAII {
248 CXCursor &Parent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000249 Decl *&StmtParent;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000250 CXCursor OldParent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000251
Douglas Gregorb1373d02010-01-20 20:59:29 +0000252 public:
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000253 SetParentRAII(CXCursor &Parent, Decl *&StmtParent, CXCursor NewParent)
254 : Parent(Parent), StmtParent(StmtParent), OldParent(Parent)
Douglas Gregorb1373d02010-01-20 20:59:29 +0000255 {
256 Parent = NewParent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000257 if (clang_isDeclaration(Parent.kind))
258 StmtParent = getCursorDecl(Parent);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000259 }
260
261 ~SetParentRAII() {
262 Parent = OldParent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000263 if (clang_isDeclaration(Parent.kind))
264 StmtParent = getCursorDecl(Parent);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000265 }
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000266 } SetParent(Parent, StmtParent, Cursor);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000267
268 if (clang_isDeclaration(Cursor.kind)) {
269 Decl *D = getCursorDecl(Cursor);
270 assert(D && "Invalid declaration cursor");
271 return Visit(D);
272 }
273
274 if (clang_isTranslationUnit(Cursor.kind)) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000275 ASTUnit *CXXUnit = getCursorASTUnit(Cursor);
Douglas Gregor7b691f332010-01-20 21:13:59 +0000276 if (!CXXUnit->isMainFileAST() && CXXUnit->getOnlyLocalDecls()) {
277 const std::vector<Decl*> &TLDs = CXXUnit->getTopLevelDecls();
278 for (std::vector<Decl*>::const_iterator it = TLDs.begin(),
279 ie = TLDs.end(); it != ie; ++it) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000280 if (Visit(MakeCXCursor(*it, CXXUnit)))
Douglas Gregor7b691f332010-01-20 21:13:59 +0000281 return true;
282 }
283 } else {
284 return VisitDeclContext(
Douglas Gregorb1373d02010-01-20 20:59:29 +0000285 CXXUnit->getASTContext().getTranslationUnitDecl());
Douglas Gregor7b691f332010-01-20 21:13:59 +0000286 }
287
288 return false;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000289 }
290
291 // Nothing to visit at the moment.
292 // FIXME: Traverse statements, declarations, etc. here.
293 return false;
294}
295
296bool CursorVisitor::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
Douglas Gregor7b691f332010-01-20 21:13:59 +0000297 llvm_unreachable("Translation units are visited directly by Visit()");
298 return false;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000299}
300
301bool CursorVisitor::VisitDeclContext(DeclContext *DC) {
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000302 for (DeclContext::decl_iterator
Douglas Gregorb1373d02010-01-20 20:59:29 +0000303 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000304 if (Visit(MakeCXCursor(*I, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000305 return true;
306 }
307
308 return false;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000309}
310
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000311bool CursorVisitor::VisitDeclaratorDecl(DeclaratorDecl *DD) {
312 if (TypeSourceInfo *TSInfo = DD->getTypeSourceInfo())
313 if (Visit(TSInfo->getTypeLoc()))
314 return true;
315
316 return false;
317}
318
Douglas Gregorb1373d02010-01-20 20:59:29 +0000319bool CursorVisitor::VisitFunctionDecl(FunctionDecl *ND) {
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000320 if (VisitDeclaratorDecl(ND))
321 return true;
322
323 // FIXME: This is wrong. We want to visit the body as a statement.
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000324 if (ND->isThisDeclarationADefinition()) {
Douglas Gregorb1373d02010-01-20 20:59:29 +0000325 return VisitDeclContext(ND);
326
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000327#if 0
328 // Not currently needed.
329 CompoundStmt *Body = dyn_cast<CompoundStmt>(ND->getBody());
330 CRefVisitor RVisit(CDecl, Callback, CData);
331 RVisit.Visit(Body);
332#endif
333 }
Douglas Gregorb1373d02010-01-20 20:59:29 +0000334
335 return false;
336}
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000337
Douglas Gregorb1373d02010-01-20 20:59:29 +0000338bool CursorVisitor::VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000339 if (Visit(MakeCursorObjCClassRef(ND->getClassInterface(), ND->getLocation(),
340 TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000341 return true;
342
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000343 ObjCCategoryDecl::protocol_loc_iterator PL = ND->protocol_loc_begin();
344 for (ObjCCategoryDecl::protocol_iterator I = ND->protocol_begin(),
345 E = ND->protocol_end(); I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000346 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000347 return true;
348
349 return VisitDeclContext(ND);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000350}
351
Douglas Gregorb1373d02010-01-20 20:59:29 +0000352bool CursorVisitor::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000353 // Issue callbacks for super class.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000354 if (D->getSuperClass() &&
355 Visit(MakeCursorObjCSuperClassRef(D->getSuperClass(),
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000356 D->getSuperClassLoc(),
357 TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000358 return true;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000359
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000360 ObjCInterfaceDecl::protocol_loc_iterator PL = D->protocol_loc_begin();
361 for (ObjCInterfaceDecl::protocol_iterator I = D->protocol_begin(),
362 E = D->protocol_end(); I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000363 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000364 return true;
365
366 return VisitDeclContext(D);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000367}
368
Douglas Gregorb1373d02010-01-20 20:59:29 +0000369bool CursorVisitor::VisitObjCMethodDecl(ObjCMethodDecl *ND) {
370 // FIXME: Wrong in the same way that VisitFunctionDecl is wrong.
Douglas Gregorb6998662010-01-19 19:34:47 +0000371 if (ND->getBody())
Douglas Gregorb1373d02010-01-20 20:59:29 +0000372 return VisitDeclContext(ND);
373
374 return false;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000375}
376
Douglas Gregorb1373d02010-01-20 20:59:29 +0000377bool CursorVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000378 ObjCProtocolDecl::protocol_loc_iterator PL = PID->protocol_loc_begin();
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000379 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000380 E = PID->protocol_end(); I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000381 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000382 return true;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000383
Douglas Gregorb1373d02010-01-20 20:59:29 +0000384 return VisitDeclContext(PID);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000385}
386
Douglas Gregorb1373d02010-01-20 20:59:29 +0000387bool CursorVisitor::VisitTagDecl(TagDecl *D) {
388 return VisitDeclContext(D);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000389}
390
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000391bool CursorVisitor::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
392 ASTContext &Context = TU->getASTContext();
393
394 // Some builtin types (such as Objective-C's "id", "sel", and
395 // "Class") have associated declarations. Create cursors for those.
396 QualType VisitType;
397 switch (TL.getType()->getAs<BuiltinType>()->getKind()) {
398 case BuiltinType::Void:
399 case BuiltinType::Bool:
400 case BuiltinType::Char_U:
401 case BuiltinType::UChar:
402 case BuiltinType::Char16:
403 case BuiltinType::Char32:
404 case BuiltinType::UShort:
405 case BuiltinType::UInt:
406 case BuiltinType::ULong:
407 case BuiltinType::ULongLong:
408 case BuiltinType::UInt128:
409 case BuiltinType::Char_S:
410 case BuiltinType::SChar:
411 case BuiltinType::WChar:
412 case BuiltinType::Short:
413 case BuiltinType::Int:
414 case BuiltinType::Long:
415 case BuiltinType::LongLong:
416 case BuiltinType::Int128:
417 case BuiltinType::Float:
418 case BuiltinType::Double:
419 case BuiltinType::LongDouble:
420 case BuiltinType::NullPtr:
421 case BuiltinType::Overload:
422 case BuiltinType::Dependent:
423 break;
424
425 case BuiltinType::UndeducedAuto: // FIXME: Deserves a cursor?
426 break;
427
428 case BuiltinType::ObjCId:
429 VisitType = Context.getObjCIdType();
430 break;
431
432 case BuiltinType::ObjCClass:
433 VisitType = Context.getObjCClassType();
434 break;
435
436 case BuiltinType::ObjCSel:
437 VisitType = Context.getObjCSelType();
438 break;
439 }
440
441 if (!VisitType.isNull()) {
442 if (const TypedefType *Typedef = VisitType->getAs<TypedefType>())
443 return Visit(MakeCursorTypeRef(Typedef->getDecl(), TL.getBuiltinLoc(),
444 TU));
445 }
446
447 return false;
448}
449
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000450bool CursorVisitor::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
451 return Visit(MakeCursorTypeRef(TL.getTypedefDecl(), TL.getNameLoc(), TU));
452}
453
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000454bool CursorVisitor::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
455 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
456}
457
458bool CursorVisitor::VisitTagTypeLoc(TagTypeLoc TL) {
459 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
460}
461
462bool CursorVisitor::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
463 if (Visit(MakeCursorObjCClassRef(TL.getIFaceDecl(), TL.getNameLoc(), TU)))
464 return true;
465
466 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {
467 if (Visit(MakeCursorObjCProtocolRef(TL.getProtocol(I), TL.getProtocolLoc(I),
468 TU)))
469 return true;
470 }
471
472 return false;
473}
474
475bool CursorVisitor::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
476 if (TL.hasBaseTypeAsWritten() && Visit(TL.getBaseTypeLoc()))
477 return true;
478
479 if (TL.hasProtocolsAsWritten()) {
480 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {
481 if (Visit(MakeCursorObjCProtocolRef(TL.getProtocol(I),
482 TL.getProtocolLoc(I),
483 TU)))
484 return true;
485 }
486 }
487
488 return false;
489}
490
491bool CursorVisitor::VisitPointerTypeLoc(PointerTypeLoc TL) {
492 return Visit(TL.getPointeeLoc());
493}
494
495bool CursorVisitor::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
496 return Visit(TL.getPointeeLoc());
497}
498
499bool CursorVisitor::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
500 return Visit(TL.getPointeeLoc());
501}
502
503bool CursorVisitor::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
504 return Visit(TL.getPointeeLoc());
505}
506
507bool CursorVisitor::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
508 return Visit(TL.getPointeeLoc());
509}
510
511bool CursorVisitor::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
512 if (Visit(TL.getResultLoc()))
513 return true;
514
515 // FIXME: For function definitions, this means that we'll end up
516 // visiting the parameters twice, because VisitFunctionDecl is
517 // walking the DeclContext.
518 for (unsigned I = 0, N = TL.getNumArgs(); I != N; ++I)
519 if (Visit(MakeCXCursor(TL.getArg(I), TU)))
520 return true;
521
522 return false;
523}
524
525bool CursorVisitor::VisitArrayTypeLoc(ArrayTypeLoc TL) {
526 if (Visit(TL.getElementLoc()))
527 return true;
528
529 if (Expr *Size = TL.getSizeExpr())
530 return Visit(MakeCXCursor(Size, StmtParent, TU));
531
532 return false;
533}
534
Daniel Dunbar140fce22010-01-12 02:34:07 +0000535CXString CIndexer::createCXString(const char *String, bool DupString){
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000536 CXString Str;
537 if (DupString) {
538 Str.Spelling = strdup(String);
539 Str.MustFreeString = 1;
540 } else {
541 Str.Spelling = String;
542 Str.MustFreeString = 0;
543 }
544 return Str;
545}
546
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000547extern "C" {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000548CXIndex clang_createIndex(int excludeDeclarationsFromPCH,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000549 int displayDiagnostics) {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000550 CIndexer *CIdxr = new CIndexer(new Program());
551 if (excludeDeclarationsFromPCH)
552 CIdxr->setOnlyLocalDecls();
553 if (displayDiagnostics)
554 CIdxr->setDisplayDiagnostics();
555 return CIdxr;
Steve Naroff600866c2009-08-27 19:51:58 +0000556}
557
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000558void clang_disposeIndex(CXIndex CIdx) {
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000559 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000560 delete static_cast<CIndexer *>(CIdx);
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000561}
562
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000563void clang_setUseExternalASTGeneration(CXIndex CIdx, int value) {
564 assert(CIdx && "Passed null CXIndex");
565 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
566 CXXIdx->setUseExternalASTGeneration(value);
567}
568
Steve Naroff50398192009-08-28 15:28:48 +0000569// FIXME: need to pass back error info.
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000570CXTranslationUnit clang_createTranslationUnit(CXIndex CIdx,
571 const char *ast_filename) {
Steve Naroff50398192009-08-28 15:28:48 +0000572 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000573 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000574
Daniel Dunbar5262fda2009-12-03 01:45:44 +0000575 return ASTUnit::LoadFromPCHFile(ast_filename, CXXIdx->getDiags(),
576 CXXIdx->getOnlyLocalDecls(),
577 /* UseBumpAllocator = */ true);
Steve Naroff600866c2009-08-27 19:51:58 +0000578}
579
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000580CXTranslationUnit
581clang_createTranslationUnitFromSourceFile(CXIndex CIdx,
582 const char *source_filename,
583 int num_command_line_args,
584 const char **command_line_args) {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000585 assert(CIdx && "Passed null CXIndex");
586 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
587
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000588 if (!CXXIdx->getUseExternalASTGeneration()) {
589 llvm::SmallVector<const char *, 16> Args;
590
591 // The 'source_filename' argument is optional. If the caller does not
592 // specify it then it is assumed that the source file is specified
593 // in the actual argument list.
594 if (source_filename)
595 Args.push_back(source_filename);
596 Args.insert(Args.end(), command_line_args,
597 command_line_args + num_command_line_args);
598
Daniel Dunbar94220972009-12-05 02:17:18 +0000599 unsigned NumErrors = CXXIdx->getDiags().getNumErrors();
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000600
Ted Kremenek29b72842010-01-07 22:49:05 +0000601#ifdef USE_CRASHTRACER
602 ArgsCrashTracerInfo ACTI(Args);
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000603#endif
604
Daniel Dunbar94220972009-12-05 02:17:18 +0000605 llvm::OwningPtr<ASTUnit> Unit(
606 ASTUnit::LoadFromCommandLine(Args.data(), Args.data() + Args.size(),
Daniel Dunbar869824e2009-12-13 03:46:13 +0000607 CXXIdx->getDiags(),
608 CXXIdx->getClangResourcesPath(),
Daniel Dunbar94220972009-12-05 02:17:18 +0000609 CXXIdx->getOnlyLocalDecls(),
610 /* UseBumpAllocator = */ true));
Ted Kremenek29b72842010-01-07 22:49:05 +0000611
Daniel Dunbar94220972009-12-05 02:17:18 +0000612 // FIXME: Until we have broader testing, just drop the entire AST if we
613 // encountered an error.
614 if (NumErrors != CXXIdx->getDiags().getNumErrors())
615 return 0;
616
617 return Unit.take();
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000618 }
619
Ted Kremenek139ba862009-10-22 00:03:57 +0000620 // Build up the arguments for invoking 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000621 std::vector<const char *> argv;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000622
Ted Kremenek139ba862009-10-22 00:03:57 +0000623 // First add the complete path to the 'clang' executable.
624 llvm::sys::Path ClangPath = static_cast<CIndexer *>(CIdx)->getClangPath();
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000625 argv.push_back(ClangPath.c_str());
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000626
Ted Kremenek139ba862009-10-22 00:03:57 +0000627 // Add the '-emit-ast' option as our execution mode for 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000628 argv.push_back("-emit-ast");
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000629
Ted Kremenek139ba862009-10-22 00:03:57 +0000630 // The 'source_filename' argument is optional. If the caller does not
631 // specify it then it is assumed that the source file is specified
632 // in the actual argument list.
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000633 if (source_filename)
634 argv.push_back(source_filename);
Ted Kremenek139ba862009-10-22 00:03:57 +0000635
Steve Naroff37b5ac22009-10-15 20:50:09 +0000636 // Generate a temporary name for the AST file.
Ted Kremenek139ba862009-10-22 00:03:57 +0000637 argv.push_back("-o");
Steve Naroff37b5ac22009-10-15 20:50:09 +0000638 char astTmpFile[L_tmpnam];
Ted Kremenek74cd0692009-10-15 23:21:22 +0000639 argv.push_back(tmpnam(astTmpFile));
Ted Kremenek139ba862009-10-22 00:03:57 +0000640
641 // Process the compiler options, stripping off '-o', '-c', '-fsyntax-only'.
642 for (int i = 0; i < num_command_line_args; ++i)
643 if (const char *arg = command_line_args[i]) {
644 if (strcmp(arg, "-o") == 0) {
645 ++i; // Also skip the matching argument.
646 continue;
647 }
648 if (strcmp(arg, "-emit-ast") == 0 ||
649 strcmp(arg, "-c") == 0 ||
650 strcmp(arg, "-fsyntax-only") == 0) {
651 continue;
652 }
653
654 // Keep the argument.
655 argv.push_back(arg);
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000656 }
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000657
Ted Kremenek139ba862009-10-22 00:03:57 +0000658 // Add the null terminator.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000659 argv.push_back(NULL);
660
Ted Kremenekfeb15e32009-10-26 22:14:08 +0000661 // Invoke 'clang'.
662 llvm::sys::Path DevNull; // leave empty, causes redirection to /dev/null
663 // on Unix or NUL (Windows).
Ted Kremenek379afec2009-10-22 03:24:01 +0000664 std::string ErrMsg;
Ted Kremenekc46e4632009-10-19 22:27:32 +0000665 const llvm::sys::Path *Redirects[] = { &DevNull, &DevNull, &DevNull, NULL };
Ted Kremenek379afec2009-10-22 03:24:01 +0000666 llvm::sys::Program::ExecuteAndWait(ClangPath, &argv[0], /* env */ NULL,
667 /* redirects */ !CXXIdx->getDisplayDiagnostics() ? &Redirects[0] : NULL,
668 /* secondsToWait */ 0, /* memoryLimits */ 0, &ErrMsg);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000669
Ted Kremenek0854d702009-11-10 19:18:52 +0000670 if (CXXIdx->getDisplayDiagnostics() && !ErrMsg.empty()) {
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000671 llvm::errs() << "clang_createTranslationUnitFromSourceFile: " << ErrMsg
Daniel Dunbaracca7252009-11-30 20:42:49 +0000672 << '\n' << "Arguments: \n";
Ted Kremenek379afec2009-10-22 03:24:01 +0000673 for (std::vector<const char*>::iterator I = argv.begin(), E = argv.end();
Ted Kremenek779e5f42009-10-26 22:08:39 +0000674 I!=E; ++I) {
675 if (*I)
676 llvm::errs() << ' ' << *I << '\n';
677 }
678 llvm::errs() << '\n';
Ted Kremenek379afec2009-10-22 03:24:01 +0000679 }
Benjamin Kramer0829a832009-10-18 11:19:36 +0000680
Steve Naroff37b5ac22009-10-15 20:50:09 +0000681 // Finally, we create the translation unit from the ast file.
Steve Naroffe19944c2009-10-15 22:23:48 +0000682 ASTUnit *ATU = static_cast<ASTUnit *>(
Daniel Dunbaracca7252009-11-30 20:42:49 +0000683 clang_createTranslationUnit(CIdx, astTmpFile));
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000684 if (ATU)
685 ATU->unlinkTemporaryFile();
Steve Naroffe19944c2009-10-15 22:23:48 +0000686 return ATU;
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000687}
688
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000689void clang_disposeTranslationUnit(CXTranslationUnit CTUnit) {
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000690 assert(CTUnit && "Passed null CXTranslationUnit");
691 delete static_cast<ASTUnit *>(CTUnit);
692}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000693
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000694CXString clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000695 assert(CTUnit && "Passed null CXTranslationUnit");
Steve Naroff77accc12009-09-03 18:19:54 +0000696 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
Ted Kremenek4b333d22010-01-12 00:36:38 +0000697 return CIndexer::createCXString(CXXUnit->getOriginalSourceFileName().c_str(),
698 true);
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000699}
Daniel Dunbar1eb79b52009-08-28 16:30:07 +0000700
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +0000701CXCursor clang_getTranslationUnitCursor(CXTranslationUnit TU) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000702 CXCursor Result = { CXCursor_TranslationUnit, { 0, 0, TU } };
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +0000703 return Result;
704}
705
Ted Kremenekfb480492010-01-13 21:46:36 +0000706} // end: extern "C"
Steve Naroff600866c2009-08-27 19:51:58 +0000707
Ted Kremenekfb480492010-01-13 21:46:36 +0000708//===----------------------------------------------------------------------===//
Douglas Gregor1db19de2010-01-19 21:36:55 +0000709// CXSourceLocation and CXSourceRange Operations.
710//===----------------------------------------------------------------------===//
711
712void clang_getInstantiationLocation(CXSourceLocation location,
713 CXFile *file,
714 unsigned *line,
715 unsigned *column) {
716 CXSourceLocationPtr Ptr
717 = CXSourceLocationPtr::getFromOpaqueValue(location.ptr_data);
718 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data);
719
720 if (!Ptr.getPointer() || Loc.isInvalid()) {
721 if (file)
722 *file = 0;
723 if (line)
724 *line = 0;
725 if (column)
726 *column = 0;
727 return;
728 }
729
730 // FIXME: This is largely copy-paste from
731 ///TextDiagnosticPrinter::HighlightRange. When it is clear that this is
732 // what we want the two routines should be refactored.
733 ASTContext &Context = *Ptr.getPointer();
734 SourceManager &SM = Context.getSourceManager();
735 SourceLocation InstLoc = SM.getInstantiationLoc(Loc);
736
737 if (Ptr.getInt()) {
738 // We want the last character in this location, so we will adjust
739 // the instantiation location accordingly.
740
741 // If the location is from a macro instantiation, get the end of
742 // the instantiation range.
743 if (Loc.isMacroID())
744 InstLoc = SM.getInstantiationRange(Loc).second;
745
746 // Measure the length token we're pointing at, so we can adjust
747 // the physical location in the file to point at the last
748 // character.
749 // FIXME: This won't cope with trigraphs or escaped newlines
750 // well. For that, we actually need a preprocessor, which isn't
751 // currently available here. Eventually, we'll switch the pointer
752 // data of CXSourceLocation/CXSourceRange to a translation unit
753 // (CXXUnit), so that the preprocessor will be available here. At
754 // that point, we can use Preprocessor::getLocForEndOfToken().
755 unsigned Length = Lexer::MeasureTokenLength(InstLoc, SM,
756 Context.getLangOptions());
757 if (Length > 0)
758 InstLoc = InstLoc.getFileLocWithOffset(Length - 1);
759 }
760
761 if (file)
762 *file = (void *)SM.getFileEntryForID(SM.getFileID(InstLoc));
763 if (line)
764 *line = SM.getInstantiationLineNumber(InstLoc);
765 if (column)
766 *column = SM.getInstantiationColumnNumber(InstLoc);
767}
768
769CXSourceLocation clang_getRangeStart(CXSourceRange range) {
770 CXSourceLocation Result = { range.ptr_data, range.begin_int_data };
771 return Result;
772}
773
774CXSourceLocation clang_getRangeEnd(CXSourceRange range) {
775 llvm::PointerIntPair<ASTContext *, 1, bool> Ptr;
776 Ptr.setPointer(static_cast<ASTContext *>(range.ptr_data));
777 Ptr.setInt(true);
778 CXSourceLocation Result = { Ptr.getOpaqueValue(), range.end_int_data };
779 return Result;
780}
781
782//===----------------------------------------------------------------------===//
Ted Kremenekfb480492010-01-13 21:46:36 +0000783// CXFile Operations.
784//===----------------------------------------------------------------------===//
785
786extern "C" {
Steve Naroff88145032009-10-27 14:35:18 +0000787const char *clang_getFileName(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000788 if (!SFile)
789 return 0;
790
Steve Naroff88145032009-10-27 14:35:18 +0000791 assert(SFile && "Passed null CXFile");
792 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
793 return FEnt->getName();
794}
795
796time_t clang_getFileTime(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000797 if (!SFile)
798 return 0;
799
Steve Naroff88145032009-10-27 14:35:18 +0000800 assert(SFile && "Passed null CXFile");
801 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
802 return FEnt->getModificationTime();
Steve Naroffee9405e2009-09-25 21:45:39 +0000803}
Ted Kremenekfb480492010-01-13 21:46:36 +0000804} // end: extern "C"
Steve Naroffee9405e2009-09-25 21:45:39 +0000805
Ted Kremenekfb480492010-01-13 21:46:36 +0000806//===----------------------------------------------------------------------===//
807// CXCursor Operations.
808//===----------------------------------------------------------------------===//
809
Ted Kremenekfb480492010-01-13 21:46:36 +0000810static Decl *getDeclFromExpr(Stmt *E) {
811 if (DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E))
812 return RefExpr->getDecl();
813 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
814 return ME->getMemberDecl();
815 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E))
816 return RE->getDecl();
817
818 if (CallExpr *CE = dyn_cast<CallExpr>(E))
819 return getDeclFromExpr(CE->getCallee());
820 if (CastExpr *CE = dyn_cast<CastExpr>(E))
821 return getDeclFromExpr(CE->getSubExpr());
822 if (ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E))
823 return OME->getMethodDecl();
824
825 return 0;
826}
827
828extern "C" {
Douglas Gregorb1373d02010-01-20 20:59:29 +0000829
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000830unsigned clang_visitChildren(CXCursor parent,
Douglas Gregorb1373d02010-01-20 20:59:29 +0000831 CXCursorVisitor visitor,
832 CXClientData client_data) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000833 ASTUnit *CXXUnit = getCursorASTUnit(parent);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000834
835 unsigned PCHLevel = Decl::MaxPCHLevel;
836
837 // Set the PCHLevel to filter out unwanted decls if requested.
838 if (CXXUnit->getOnlyLocalDecls()) {
839 PCHLevel = 0;
840
841 // If the main input was an AST, bump the level.
842 if (CXXUnit->isMainFileAST())
843 ++PCHLevel;
844 }
845
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000846 CursorVisitor CursorVis(CXXUnit, visitor, client_data, PCHLevel);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000847 return CursorVis.VisitChildren(parent);
848}
849
Douglas Gregor78205d42010-01-20 21:45:58 +0000850static CXString getDeclSpelling(Decl *D) {
851 NamedDecl *ND = dyn_cast_or_null<NamedDecl>(D);
852 if (!ND)
853 return CIndexer::createCXString("");
854
855 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
856 return CIndexer::createCXString(OMD->getSelector().getAsString().c_str(),
857 true);
858
859 if (ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND))
860 // No, this isn't the same as the code below. getIdentifier() is non-virtual
861 // and returns different names. NamedDecl returns the class name and
862 // ObjCCategoryImplDecl returns the category name.
863 return CIndexer::createCXString(CIMP->getIdentifier()->getNameStart());
864
865 if (ND->getIdentifier())
866 return CIndexer::createCXString(ND->getIdentifier()->getNameStart());
867
868 return CIndexer::createCXString("");
869}
870
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000871CXString clang_getCursorSpelling(CXCursor C) {
Daniel Dunbarc81d7182010-01-18 17:52:42 +0000872 assert(getCursorDecl(C) && "CXCursor has null decl");
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +0000873 if (clang_isTranslationUnit(C.kind))
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000874 return clang_getTranslationUnitSpelling(C.data[2]);
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +0000875
Steve Narofff334b4e2009-09-02 18:26:48 +0000876 if (clang_isReference(C.kind)) {
877 switch (C.kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +0000878 case CXCursor_ObjCSuperClassRef: {
Douglas Gregor2e331b92010-01-16 14:00:32 +0000879 ObjCInterfaceDecl *Super = getCursorObjCSuperClassRef(C).first;
880 return CIndexer::createCXString(Super->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +0000881 }
882 case CXCursor_ObjCClassRef: {
Douglas Gregor1adb0822010-01-16 17:14:40 +0000883 ObjCInterfaceDecl *Class = getCursorObjCClassRef(C).first;
884 return CIndexer::createCXString(Class->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +0000885 }
886 case CXCursor_ObjCProtocolRef: {
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000887 ObjCProtocolDecl *OID = getCursorObjCProtocolRef(C).first;
Douglas Gregorf46034a2010-01-18 23:41:10 +0000888 assert(OID && "getCursorSpelling(): Missing protocol decl");
Ted Kremenek4b333d22010-01-12 00:36:38 +0000889 return CIndexer::createCXString(OID->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +0000890 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000891 case CXCursor_TypeRef: {
892 TypeDecl *Type = getCursorTypeRef(C).first;
893 assert(Type && "Missing type decl");
894
895 return CIndexer::createCXString(
896 getCursorContext(C).getTypeDeclType(Type).getAsString().c_str(),
897 true);
898 }
899
Daniel Dunbaracca7252009-11-30 20:42:49 +0000900 default:
Ted Kremenek4b333d22010-01-12 00:36:38 +0000901 return CIndexer::createCXString("<not implemented>");
Steve Narofff334b4e2009-09-02 18:26:48 +0000902 }
903 }
Douglas Gregor97b98722010-01-19 23:20:36 +0000904
905 if (clang_isExpression(C.kind)) {
906 Decl *D = getDeclFromExpr(getCursorExpr(C));
907 if (D)
Douglas Gregor78205d42010-01-20 21:45:58 +0000908 return getDeclSpelling(D);
Douglas Gregor97b98722010-01-19 23:20:36 +0000909 return CIndexer::createCXString("");
910 }
911
Douglas Gregor78205d42010-01-20 21:45:58 +0000912 return getDeclSpelling(getCursorDecl(C));
Steve Narofff334b4e2009-09-02 18:26:48 +0000913}
914
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000915const char *clang_getCursorKindSpelling(enum CXCursorKind Kind) {
Steve Naroff89922f82009-08-31 00:59:03 +0000916 switch (Kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +0000917 case CXCursor_FunctionDecl: return "FunctionDecl";
918 case CXCursor_TypedefDecl: return "TypedefDecl";
919 case CXCursor_EnumDecl: return "EnumDecl";
920 case CXCursor_EnumConstantDecl: return "EnumConstantDecl";
921 case CXCursor_StructDecl: return "StructDecl";
922 case CXCursor_UnionDecl: return "UnionDecl";
923 case CXCursor_ClassDecl: return "ClassDecl";
924 case CXCursor_FieldDecl: return "FieldDecl";
925 case CXCursor_VarDecl: return "VarDecl";
926 case CXCursor_ParmDecl: return "ParmDecl";
927 case CXCursor_ObjCInterfaceDecl: return "ObjCInterfaceDecl";
928 case CXCursor_ObjCCategoryDecl: return "ObjCCategoryDecl";
929 case CXCursor_ObjCProtocolDecl: return "ObjCProtocolDecl";
930 case CXCursor_ObjCPropertyDecl: return "ObjCPropertyDecl";
931 case CXCursor_ObjCIvarDecl: return "ObjCIvarDecl";
932 case CXCursor_ObjCInstanceMethodDecl: return "ObjCInstanceMethodDecl";
933 case CXCursor_ObjCClassMethodDecl: return "ObjCClassMethodDecl";
Douglas Gregorb6998662010-01-19 19:34:47 +0000934 case CXCursor_ObjCImplementationDecl: return "ObjCImplementationDecl";
935 case CXCursor_ObjCCategoryImplDecl: return "ObjCCategoryImplDecl";
Douglas Gregor30122132010-01-19 22:07:56 +0000936 case CXCursor_UnexposedDecl: return "UnexposedDecl";
Daniel Dunbaracca7252009-11-30 20:42:49 +0000937 case CXCursor_ObjCSuperClassRef: return "ObjCSuperClassRef";
938 case CXCursor_ObjCProtocolRef: return "ObjCProtocolRef";
939 case CXCursor_ObjCClassRef: return "ObjCClassRef";
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000940 case CXCursor_TypeRef: return "TypeRef";
Douglas Gregor97b98722010-01-19 23:20:36 +0000941 case CXCursor_UnexposedExpr: return "UnexposedExpr";
942 case CXCursor_DeclRefExpr: return "DeclRefExpr";
943 case CXCursor_MemberRefExpr: return "MemberRefExpr";
944 case CXCursor_CallExpr: return "CallExpr";
945 case CXCursor_ObjCMessageExpr: return "ObjCMessageExpr";
946 case CXCursor_UnexposedStmt: return "UnexposedStmt";
Daniel Dunbaracca7252009-11-30 20:42:49 +0000947 case CXCursor_InvalidFile: return "InvalidFile";
948 case CXCursor_NoDeclFound: return "NoDeclFound";
949 case CXCursor_NotImplemented: return "NotImplemented";
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +0000950 case CXCursor_TranslationUnit: return "TranslationUnit";
Steve Naroff89922f82009-08-31 00:59:03 +0000951 }
Ted Kremenekdeb06bd2010-01-16 02:02:09 +0000952
953 llvm_unreachable("Unhandled CXCursorKind");
954 return NULL;
Steve Naroff600866c2009-08-27 19:51:58 +0000955}
Steve Naroff89922f82009-08-31 00:59:03 +0000956
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000957CXCursor clang_getCursor(CXTranslationUnit CTUnit, const char *source_name,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000958 unsigned line, unsigned column) {
Steve Naroff9efa7672009-09-04 15:44:05 +0000959 assert(CTUnit && "Passed null CXTranslationUnit");
960 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000961
Steve Naroff9efa7672009-09-04 15:44:05 +0000962 FileManager &FMgr = CXXUnit->getFileManager();
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000963 const FileEntry *File = FMgr.getFile(source_name,
964 source_name+strlen(source_name));
Ted Kremenekf4629892010-01-14 01:51:23 +0000965 if (!File)
966 return clang_getNullCursor();
967
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000968 SourceLocation SLoc =
Steve Naroff9efa7672009-09-04 15:44:05 +0000969 CXXUnit->getSourceManager().getLocation(File, line, column);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000970
Steve Narofff96b5242009-10-28 20:44:47 +0000971 ASTLocation LastLoc = CXXUnit->getLastASTLocation();
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000972 ASTLocation ALoc = ResolveLocationInAST(CXXUnit->getASTContext(), SLoc,
Steve Narofff96b5242009-10-28 20:44:47 +0000973 &LastLoc);
Ted Kremenekf4629892010-01-14 01:51:23 +0000974
975 // FIXME: This doesn't look thread-safe.
Steve Narofff96b5242009-10-28 20:44:47 +0000976 if (ALoc.isValid())
977 CXXUnit->setLastASTLocation(ALoc);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000978
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +0000979 Decl *Dcl = ALoc.getParentDecl();
Argyrios Kyrtzidis05a76512009-09-29 19:45:58 +0000980 if (ALoc.isNamedRef())
981 Dcl = ALoc.AsNamedRef().ND;
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +0000982 Stmt *Stm = ALoc.dyn_AsStmt();
Steve Naroff4ade6d62009-09-23 17:52:52 +0000983 if (Dcl) {
Douglas Gregor97b98722010-01-19 23:20:36 +0000984 if (Stm)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000985 return MakeCXCursor(Stm, Dcl, CXXUnit);
Douglas Gregor97b98722010-01-19 23:20:36 +0000986
Steve Naroff85e2db72009-10-01 00:31:07 +0000987 if (ALoc.isNamedRef()) {
Douglas Gregor1adb0822010-01-16 17:14:40 +0000988 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(Dcl))
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000989 return MakeCursorObjCClassRef(Class, ALoc.AsNamedRef().Loc, CXXUnit);
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000990 if (ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(Dcl))
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000991 return MakeCursorObjCProtocolRef(Proto, ALoc.AsNamedRef().Loc, CXXUnit);
Steve Naroff85e2db72009-10-01 00:31:07 +0000992 }
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000993 return MakeCXCursor(Dcl, CXXUnit);
Steve Naroff77128dd2009-09-15 20:25:34 +0000994 }
Douglas Gregor5bfb8c12010-01-20 23:34:41 +0000995 return MakeCXCursorInvalid(CXCursor_NoDeclFound);
Steve Naroff600866c2009-08-27 19:51:58 +0000996}
997
Ted Kremenek73885552009-11-17 19:28:59 +0000998CXCursor clang_getNullCursor(void) {
Douglas Gregor5bfb8c12010-01-20 23:34:41 +0000999 return MakeCXCursorInvalid(CXCursor_InvalidFile);
Ted Kremenek73885552009-11-17 19:28:59 +00001000}
1001
1002unsigned clang_equalCursors(CXCursor X, CXCursor Y) {
Douglas Gregor283cae32010-01-15 21:56:13 +00001003 return X == Y;
Ted Kremenek73885552009-11-17 19:28:59 +00001004}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001005
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001006unsigned clang_isInvalid(enum CXCursorKind K) {
Steve Naroff77128dd2009-09-15 20:25:34 +00001007 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
1008}
1009
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001010unsigned clang_isDeclaration(enum CXCursorKind K) {
Steve Naroff89922f82009-08-31 00:59:03 +00001011 return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl;
1012}
Steve Naroff2d4d6292009-08-31 14:26:51 +00001013
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001014unsigned clang_isReference(enum CXCursorKind K) {
Steve Narofff334b4e2009-09-02 18:26:48 +00001015 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
1016}
1017
Douglas Gregor97b98722010-01-19 23:20:36 +00001018unsigned clang_isExpression(enum CXCursorKind K) {
1019 return K >= CXCursor_FirstExpr && K <= CXCursor_LastExpr;
1020}
1021
1022unsigned clang_isStatement(enum CXCursorKind K) {
1023 return K >= CXCursor_FirstStmt && K <= CXCursor_LastStmt;
1024}
1025
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001026unsigned clang_isTranslationUnit(enum CXCursorKind K) {
1027 return K == CXCursor_TranslationUnit;
1028}
1029
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001030CXCursorKind clang_getCursorKind(CXCursor C) {
Steve Naroff9efa7672009-09-04 15:44:05 +00001031 return C.kind;
1032}
1033
Douglas Gregor97b98722010-01-19 23:20:36 +00001034static SourceLocation getLocationFromExpr(Expr *E) {
1035 if (ObjCMessageExpr *Msg = dyn_cast<ObjCMessageExpr>(E))
1036 return /*FIXME:*/Msg->getLeftLoc();
1037 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
1038 return DRE->getLocation();
1039 if (MemberExpr *Member = dyn_cast<MemberExpr>(E))
1040 return Member->getMemberLoc();
1041 if (ObjCIvarRefExpr *Ivar = dyn_cast<ObjCIvarRefExpr>(E))
1042 return Ivar->getLocation();
1043 return E->getLocStart();
1044}
1045
Douglas Gregor98258af2010-01-18 22:46:11 +00001046CXSourceLocation clang_getCursorLocation(CXCursor C) {
1047 if (clang_isReference(C.kind)) {
Douglas Gregorf46034a2010-01-18 23:41:10 +00001048 switch (C.kind) {
1049 case CXCursor_ObjCSuperClassRef: {
1050 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1051 = getCursorObjCSuperClassRef(C);
Douglas Gregor1db19de2010-01-19 21:36:55 +00001052 return translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001053 }
1054
1055 case CXCursor_ObjCProtocolRef: {
1056 std::pair<ObjCProtocolDecl *, SourceLocation> P
1057 = getCursorObjCProtocolRef(C);
Douglas Gregor1db19de2010-01-19 21:36:55 +00001058 return translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001059 }
1060
1061 case CXCursor_ObjCClassRef: {
1062 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1063 = getCursorObjCClassRef(C);
Douglas Gregor1db19de2010-01-19 21:36:55 +00001064 return translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001065 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001066
1067 case CXCursor_TypeRef: {
1068 std::pair<TypeDecl *, SourceLocation> P = getCursorTypeRef(C);
1069 return translateSourceLocation(P.first->getASTContext(), P.second);
1070 }
Douglas Gregorf46034a2010-01-18 23:41:10 +00001071
Douglas Gregorf46034a2010-01-18 23:41:10 +00001072 default:
1073 // FIXME: Need a way to enumerate all non-reference cases.
1074 llvm_unreachable("Missed a reference kind");
1075 }
Douglas Gregor98258af2010-01-18 22:46:11 +00001076 }
Douglas Gregor97b98722010-01-19 23:20:36 +00001077
1078 if (clang_isExpression(C.kind))
1079 return translateSourceLocation(getCursorContext(C),
1080 getLocationFromExpr(getCursorExpr(C)));
1081
Douglas Gregor98258af2010-01-18 22:46:11 +00001082 if (!getCursorDecl(C)) {
Douglas Gregor1db19de2010-01-19 21:36:55 +00001083 CXSourceLocation empty = { 0, 0 };
Douglas Gregor98258af2010-01-18 22:46:11 +00001084 return empty;
1085 }
1086
Douglas Gregorf46034a2010-01-18 23:41:10 +00001087 Decl *D = getCursorDecl(C);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001088 SourceLocation Loc = D->getLocation();
1089 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(D))
1090 Loc = Class->getClassLoc();
Douglas Gregor1db19de2010-01-19 21:36:55 +00001091 return translateSourceLocation(D->getASTContext(), Loc);
Douglas Gregor98258af2010-01-18 22:46:11 +00001092}
Douglas Gregora7bde202010-01-19 00:34:46 +00001093
1094CXSourceRange clang_getCursorExtent(CXCursor C) {
1095 if (clang_isReference(C.kind)) {
1096 switch (C.kind) {
1097 case CXCursor_ObjCSuperClassRef: {
1098 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1099 = getCursorObjCSuperClassRef(C);
1100 return translateSourceRange(P.first->getASTContext(), P.second);
1101 }
1102
1103 case CXCursor_ObjCProtocolRef: {
1104 std::pair<ObjCProtocolDecl *, SourceLocation> P
1105 = getCursorObjCProtocolRef(C);
1106 return translateSourceRange(P.first->getASTContext(), P.second);
1107 }
1108
1109 case CXCursor_ObjCClassRef: {
1110 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1111 = getCursorObjCClassRef(C);
1112
1113 return translateSourceRange(P.first->getASTContext(), P.second);
1114 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001115
1116 case CXCursor_TypeRef: {
1117 std::pair<TypeDecl *, SourceLocation> P = getCursorTypeRef(C);
1118 return translateSourceRange(P.first->getASTContext(), P.second);
1119 }
Douglas Gregora7bde202010-01-19 00:34:46 +00001120
Douglas Gregora7bde202010-01-19 00:34:46 +00001121 default:
1122 // FIXME: Need a way to enumerate all non-reference cases.
1123 llvm_unreachable("Missed a reference kind");
1124 }
1125 }
Douglas Gregor97b98722010-01-19 23:20:36 +00001126
1127 if (clang_isExpression(C.kind))
1128 return translateSourceRange(getCursorContext(C),
1129 getCursorExpr(C)->getSourceRange());
Douglas Gregora7bde202010-01-19 00:34:46 +00001130
1131 if (!getCursorDecl(C)) {
Douglas Gregor1db19de2010-01-19 21:36:55 +00001132 CXSourceRange empty = { 0, 0, 0 };
Douglas Gregora7bde202010-01-19 00:34:46 +00001133 return empty;
1134 }
1135
1136 Decl *D = getCursorDecl(C);
1137 return translateSourceRange(D->getASTContext(), D->getSourceRange());
1138}
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001139
1140CXCursor clang_getCursorReferenced(CXCursor C) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001141 if (clang_isInvalid(C.kind))
1142 return clang_getNullCursor();
1143
1144 ASTUnit *CXXUnit = getCursorASTUnit(C);
Douglas Gregorb6998662010-01-19 19:34:47 +00001145 if (clang_isDeclaration(C.kind))
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001146 return C;
Douglas Gregor98258af2010-01-18 22:46:11 +00001147
Douglas Gregor97b98722010-01-19 23:20:36 +00001148 if (clang_isExpression(C.kind)) {
1149 Decl *D = getDeclFromExpr(getCursorExpr(C));
1150 if (D)
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001151 return MakeCXCursor(D, CXXUnit);
Douglas Gregor97b98722010-01-19 23:20:36 +00001152 return clang_getNullCursor();
1153 }
1154
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001155 if (!clang_isReference(C.kind))
1156 return clang_getNullCursor();
1157
1158 switch (C.kind) {
1159 case CXCursor_ObjCSuperClassRef:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001160 return MakeCXCursor(getCursorObjCSuperClassRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001161
1162 case CXCursor_ObjCProtocolRef: {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001163 return MakeCXCursor(getCursorObjCProtocolRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001164
1165 case CXCursor_ObjCClassRef:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001166 return MakeCXCursor(getCursorObjCClassRef(C).first, CXXUnit);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001167
1168 case CXCursor_TypeRef:
1169 return MakeCXCursor(getCursorTypeRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001170
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001171 default:
1172 // We would prefer to enumerate all non-reference cursor kinds here.
1173 llvm_unreachable("Unhandled reference cursor kind");
1174 break;
1175 }
1176 }
1177
1178 return clang_getNullCursor();
1179}
1180
Douglas Gregorb6998662010-01-19 19:34:47 +00001181CXCursor clang_getCursorDefinition(CXCursor C) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001182 if (clang_isInvalid(C.kind))
1183 return clang_getNullCursor();
1184
1185 ASTUnit *CXXUnit = getCursorASTUnit(C);
1186
Douglas Gregorb6998662010-01-19 19:34:47 +00001187 bool WasReference = false;
Douglas Gregor97b98722010-01-19 23:20:36 +00001188 if (clang_isReference(C.kind) || clang_isExpression(C.kind)) {
Douglas Gregorb6998662010-01-19 19:34:47 +00001189 C = clang_getCursorReferenced(C);
1190 WasReference = true;
1191 }
1192
1193 if (!clang_isDeclaration(C.kind))
1194 return clang_getNullCursor();
1195
1196 Decl *D = getCursorDecl(C);
1197 if (!D)
1198 return clang_getNullCursor();
1199
1200 switch (D->getKind()) {
1201 // Declaration kinds that don't really separate the notions of
1202 // declaration and definition.
1203 case Decl::Namespace:
1204 case Decl::Typedef:
1205 case Decl::TemplateTypeParm:
1206 case Decl::EnumConstant:
1207 case Decl::Field:
1208 case Decl::ObjCIvar:
1209 case Decl::ObjCAtDefsField:
1210 case Decl::ImplicitParam:
1211 case Decl::ParmVar:
1212 case Decl::NonTypeTemplateParm:
1213 case Decl::TemplateTemplateParm:
1214 case Decl::ObjCCategoryImpl:
1215 case Decl::ObjCImplementation:
1216 case Decl::LinkageSpec:
1217 case Decl::ObjCPropertyImpl:
1218 case Decl::FileScopeAsm:
1219 case Decl::StaticAssert:
1220 case Decl::Block:
1221 return C;
1222
1223 // Declaration kinds that don't make any sense here, but are
1224 // nonetheless harmless.
1225 case Decl::TranslationUnit:
1226 case Decl::Template:
1227 case Decl::ObjCContainer:
1228 break;
1229
1230 // Declaration kinds for which the definition is not resolvable.
1231 case Decl::UnresolvedUsingTypename:
1232 case Decl::UnresolvedUsingValue:
1233 break;
1234
1235 case Decl::UsingDirective:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001236 return MakeCXCursor(cast<UsingDirectiveDecl>(D)->getNominatedNamespace(),
1237 CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001238
1239 case Decl::NamespaceAlias:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001240 return MakeCXCursor(cast<NamespaceAliasDecl>(D)->getNamespace(), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001241
1242 case Decl::Enum:
1243 case Decl::Record:
1244 case Decl::CXXRecord:
1245 case Decl::ClassTemplateSpecialization:
1246 case Decl::ClassTemplatePartialSpecialization:
1247 if (TagDecl *Def = cast<TagDecl>(D)->getDefinition(D->getASTContext()))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001248 return MakeCXCursor(Def, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001249 return clang_getNullCursor();
1250
1251 case Decl::Function:
1252 case Decl::CXXMethod:
1253 case Decl::CXXConstructor:
1254 case Decl::CXXDestructor:
1255 case Decl::CXXConversion: {
1256 const FunctionDecl *Def = 0;
1257 if (cast<FunctionDecl>(D)->getBody(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001258 return MakeCXCursor(const_cast<FunctionDecl *>(Def), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001259 return clang_getNullCursor();
1260 }
1261
1262 case Decl::Var: {
1263 VarDecl *Var = cast<VarDecl>(D);
1264
1265 // Variables with initializers have definitions.
1266 const VarDecl *Def = 0;
1267 if (Var->getDefinition(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001268 return MakeCXCursor(const_cast<VarDecl *>(Def), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001269
1270 // extern and private_extern variables are not definitions.
1271 if (Var->hasExternalStorage())
1272 return clang_getNullCursor();
1273
1274 // In-line static data members do not have definitions.
1275 if (Var->isStaticDataMember() && !Var->isOutOfLine())
1276 return clang_getNullCursor();
1277
1278 // All other variables are themselves definitions.
1279 return C;
1280 }
1281
1282 case Decl::FunctionTemplate: {
1283 const FunctionDecl *Def = 0;
1284 if (cast<FunctionTemplateDecl>(D)->getTemplatedDecl()->getBody(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001285 return MakeCXCursor(Def->getDescribedFunctionTemplate(), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001286 return clang_getNullCursor();
1287 }
1288
1289 case Decl::ClassTemplate: {
1290 if (RecordDecl *Def = cast<ClassTemplateDecl>(D)->getTemplatedDecl()
1291 ->getDefinition(D->getASTContext()))
1292 return MakeCXCursor(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001293 cast<CXXRecordDecl>(Def)->getDescribedClassTemplate(),
1294 CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001295 return clang_getNullCursor();
1296 }
1297
1298 case Decl::Using: {
1299 UsingDecl *Using = cast<UsingDecl>(D);
1300 CXCursor Def = clang_getNullCursor();
1301 for (UsingDecl::shadow_iterator S = Using->shadow_begin(),
1302 SEnd = Using->shadow_end();
1303 S != SEnd; ++S) {
1304 if (Def != clang_getNullCursor()) {
1305 // FIXME: We have no way to return multiple results.
1306 return clang_getNullCursor();
1307 }
1308
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001309 Def = clang_getCursorDefinition(MakeCXCursor((*S)->getTargetDecl(),
1310 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001311 }
1312
1313 return Def;
1314 }
1315
1316 case Decl::UsingShadow:
1317 return clang_getCursorDefinition(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001318 MakeCXCursor(cast<UsingShadowDecl>(D)->getTargetDecl(),
1319 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001320
1321 case Decl::ObjCMethod: {
1322 ObjCMethodDecl *Method = cast<ObjCMethodDecl>(D);
1323 if (Method->isThisDeclarationADefinition())
1324 return C;
1325
1326 // Dig out the method definition in the associated
1327 // @implementation, if we have it.
1328 // FIXME: The ASTs should make finding the definition easier.
1329 if (ObjCInterfaceDecl *Class
1330 = dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext()))
1331 if (ObjCImplementationDecl *ClassImpl = Class->getImplementation())
1332 if (ObjCMethodDecl *Def = ClassImpl->getMethod(Method->getSelector(),
1333 Method->isInstanceMethod()))
1334 if (Def->isThisDeclarationADefinition())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001335 return MakeCXCursor(Def, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001336
1337 return clang_getNullCursor();
1338 }
1339
1340 case Decl::ObjCCategory:
1341 if (ObjCCategoryImplDecl *Impl
1342 = cast<ObjCCategoryDecl>(D)->getImplementation())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001343 return MakeCXCursor(Impl, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001344 return clang_getNullCursor();
1345
1346 case Decl::ObjCProtocol:
1347 if (!cast<ObjCProtocolDecl>(D)->isForwardDecl())
1348 return C;
1349 return clang_getNullCursor();
1350
1351 case Decl::ObjCInterface:
1352 // There are two notions of a "definition" for an Objective-C
1353 // class: the interface and its implementation. When we resolved a
1354 // reference to an Objective-C class, produce the @interface as
1355 // the definition; when we were provided with the interface,
1356 // produce the @implementation as the definition.
1357 if (WasReference) {
1358 if (!cast<ObjCInterfaceDecl>(D)->isForwardDecl())
1359 return C;
1360 } else if (ObjCImplementationDecl *Impl
1361 = cast<ObjCInterfaceDecl>(D)->getImplementation())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001362 return MakeCXCursor(Impl, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001363 return clang_getNullCursor();
1364
1365 case Decl::ObjCProperty:
1366 // FIXME: We don't really know where to find the
1367 // ObjCPropertyImplDecls that implement this property.
1368 return clang_getNullCursor();
1369
1370 case Decl::ObjCCompatibleAlias:
1371 if (ObjCInterfaceDecl *Class
1372 = cast<ObjCCompatibleAliasDecl>(D)->getClassInterface())
1373 if (!Class->isForwardDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001374 return MakeCXCursor(Class, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001375
1376 return clang_getNullCursor();
1377
1378 case Decl::ObjCForwardProtocol: {
1379 ObjCForwardProtocolDecl *Forward = cast<ObjCForwardProtocolDecl>(D);
1380 if (Forward->protocol_size() == 1)
1381 return clang_getCursorDefinition(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001382 MakeCXCursor(*Forward->protocol_begin(),
1383 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001384
1385 // FIXME: Cannot return multiple definitions.
1386 return clang_getNullCursor();
1387 }
1388
1389 case Decl::ObjCClass: {
1390 ObjCClassDecl *Class = cast<ObjCClassDecl>(D);
1391 if (Class->size() == 1) {
1392 ObjCInterfaceDecl *IFace = Class->begin()->getInterface();
1393 if (!IFace->isForwardDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001394 return MakeCXCursor(IFace, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001395 return clang_getNullCursor();
1396 }
1397
1398 // FIXME: Cannot return multiple definitions.
1399 return clang_getNullCursor();
1400 }
1401
1402 case Decl::Friend:
1403 if (NamedDecl *Friend = cast<FriendDecl>(D)->getFriendDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001404 return clang_getCursorDefinition(MakeCXCursor(Friend, CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001405 return clang_getNullCursor();
1406
1407 case Decl::FriendTemplate:
1408 if (NamedDecl *Friend = cast<FriendTemplateDecl>(D)->getFriendDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001409 return clang_getCursorDefinition(MakeCXCursor(Friend, CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001410 return clang_getNullCursor();
1411 }
1412
1413 return clang_getNullCursor();
1414}
1415
1416unsigned clang_isCursorDefinition(CXCursor C) {
1417 if (!clang_isDeclaration(C.kind))
1418 return 0;
1419
1420 return clang_getCursorDefinition(C) == C;
1421}
1422
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001423void clang_getDefinitionSpellingAndExtent(CXCursor C,
Steve Naroff4ade6d62009-09-23 17:52:52 +00001424 const char **startBuf,
1425 const char **endBuf,
1426 unsigned *startLine,
1427 unsigned *startColumn,
1428 unsigned *endLine,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001429 unsigned *endColumn) {
Douglas Gregor283cae32010-01-15 21:56:13 +00001430 assert(getCursorDecl(C) && "CXCursor has null decl");
1431 NamedDecl *ND = static_cast<NamedDecl *>(getCursorDecl(C));
Steve Naroff4ade6d62009-09-23 17:52:52 +00001432 FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
1433 CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody());
Ted Kremenekfb480492010-01-13 21:46:36 +00001434
Steve Naroff4ade6d62009-09-23 17:52:52 +00001435 SourceManager &SM = FD->getASTContext().getSourceManager();
1436 *startBuf = SM.getCharacterData(Body->getLBracLoc());
1437 *endBuf = SM.getCharacterData(Body->getRBracLoc());
1438 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
1439 *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc());
1440 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc());
1441 *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc());
1442}
Ted Kremenekfb480492010-01-13 21:46:36 +00001443
1444} // end: extern "C"
Steve Naroff4ade6d62009-09-23 17:52:52 +00001445
Ted Kremenekfb480492010-01-13 21:46:36 +00001446//===----------------------------------------------------------------------===//
1447// CXString Operations.
1448//===----------------------------------------------------------------------===//
1449
1450extern "C" {
1451const char *clang_getCString(CXString string) {
1452 return string.Spelling;
1453}
1454
1455void clang_disposeString(CXString string) {
1456 if (string.MustFreeString && string.Spelling)
1457 free((void*)string.Spelling);
1458}
1459} // end: extern "C"