blob: 84073f07a981e3f7790749a092126a3af96e954a [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>,
Douglas Gregora59e3902010-01-21 23:27:09 +0000145 public TypeLocVisitor<CursorVisitor, bool>,
146 public StmtVisitor<CursorVisitor, bool>
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000147{
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000148 ASTUnit *TU;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000149 CXCursor Parent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000150 Decl *StmtParent;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000151 CXCursorVisitor Visitor;
152 CXClientData ClientData;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000153
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000154 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
155 // to the visitor. Declarations with a PCH level greater than this value will
156 // be suppressed.
157 unsigned MaxPCHLevel;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000158
159 using DeclVisitor<CursorVisitor, bool>::Visit;
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000160 using TypeLocVisitor<CursorVisitor, bool>::Visit;
Douglas Gregora59e3902010-01-21 23:27:09 +0000161 using StmtVisitor<CursorVisitor, bool>::Visit;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000162
Steve Naroff89922f82009-08-31 00:59:03 +0000163public:
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000164 CursorVisitor(ASTUnit *TU, CXCursorVisitor Visitor, CXClientData ClientData,
Douglas Gregorb1373d02010-01-20 20:59:29 +0000165 unsigned MaxPCHLevel)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000166 : TU(TU), Visitor(Visitor), ClientData(ClientData), MaxPCHLevel(MaxPCHLevel)
Douglas Gregorb1373d02010-01-20 20:59:29 +0000167 {
168 Parent.kind = CXCursor_NoDeclFound;
169 Parent.data[0] = 0;
170 Parent.data[1] = 0;
171 Parent.data[2] = 0;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000172 StmtParent = 0;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000173 }
174
175 bool Visit(CXCursor Cursor);
176 bool VisitChildren(CXCursor Parent);
177
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000178 // Declaration visitors
Douglas Gregorb1373d02010-01-20 20:59:29 +0000179 bool VisitDeclContext(DeclContext *DC);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000180 bool VisitTranslationUnitDecl(TranslationUnitDecl *D);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000181 bool VisitDeclaratorDecl(DeclaratorDecl *DD);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000182 bool VisitFunctionDecl(FunctionDecl *ND);
Douglas Gregora59e3902010-01-21 23:27:09 +0000183 bool VisitObjCContainerDecl(ObjCContainerDecl *D);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000184 bool VisitObjCCategoryDecl(ObjCCategoryDecl *ND);
185 bool VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
186 bool VisitObjCMethodDecl(ObjCMethodDecl *ND);
187 bool VisitObjCProtocolDecl(ObjCProtocolDecl *PID);
188 bool VisitTagDecl(TagDecl *D);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000189
190 // Type visitors
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000191 // FIXME: QualifiedTypeLoc doesn't provide any location information
192 bool VisitBuiltinTypeLoc(BuiltinTypeLoc TL);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000193 bool VisitTypedefTypeLoc(TypedefTypeLoc TL);
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000194 bool VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL);
195 bool VisitTagTypeLoc(TagTypeLoc TL);
196 // FIXME: TemplateTypeParmTypeLoc doesn't provide any location information
197 bool VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL);
198 bool VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL);
199 bool VisitPointerTypeLoc(PointerTypeLoc TL);
200 bool VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL);
201 bool VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL);
202 bool VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL);
203 bool VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL);
204 bool VisitFunctionTypeLoc(FunctionTypeLoc TL);
205 bool VisitArrayTypeLoc(ArrayTypeLoc TL);
Douglas Gregor2332c112010-01-21 20:48:56 +0000206 // FIXME: Implement for TemplateSpecializationTypeLoc
207 // FIXME: Implement visitors here when the unimplemented TypeLocs get
208 // implemented
209 bool VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL);
210 bool VisitTypeOfTypeLoc(TypeOfTypeLoc TL);
Douglas Gregora59e3902010-01-21 23:27:09 +0000211
212 // Statement visitors
213 bool VisitStmt(Stmt *S);
214 bool VisitDeclStmt(DeclStmt *S);
Steve Naroff89922f82009-08-31 00:59:03 +0000215};
Douglas Gregorb1373d02010-01-20 20:59:29 +0000216
Ted Kremenekab188932010-01-05 19:32:54 +0000217} // end anonymous namespace
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000218
Douglas Gregorb1373d02010-01-20 20:59:29 +0000219/// \brief Visit the given cursor and, if requested by the visitor,
220/// its children.
221///
222/// \returns true if the visitation should be aborted, false if it
223/// should continue.
224bool CursorVisitor::Visit(CXCursor Cursor) {
225 if (clang_isInvalid(Cursor.kind))
226 return false;
227
228 if (clang_isDeclaration(Cursor.kind)) {
229 Decl *D = getCursorDecl(Cursor);
230 assert(D && "Invalid declaration cursor");
231 if (D->getPCHLevel() > MaxPCHLevel)
232 return false;
233
234 if (D->isImplicit())
235 return false;
236 }
237
238 switch (Visitor(Cursor, Parent, ClientData)) {
239 case CXChildVisit_Break:
240 return true;
241
242 case CXChildVisit_Continue:
243 return false;
244
245 case CXChildVisit_Recurse:
246 return VisitChildren(Cursor);
247 }
248
249 llvm_unreachable("Silly GCC, we can't get here");
250}
251
252/// \brief Visit the children of the given cursor.
253///
254/// \returns true if the visitation should be aborted, false if it
255/// should continue.
256bool CursorVisitor::VisitChildren(CXCursor Cursor) {
Douglas Gregora59e3902010-01-21 23:27:09 +0000257 if (clang_isReference(Cursor.kind)) {
258 // By definition, references have no children.
259 return false;
260 }
261
Douglas Gregorb1373d02010-01-20 20:59:29 +0000262 // Set the Parent field to Cursor, then back to its old value once we're
263 // done.
264 class SetParentRAII {
265 CXCursor &Parent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000266 Decl *&StmtParent;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000267 CXCursor OldParent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000268
Douglas Gregorb1373d02010-01-20 20:59:29 +0000269 public:
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000270 SetParentRAII(CXCursor &Parent, Decl *&StmtParent, CXCursor NewParent)
271 : Parent(Parent), StmtParent(StmtParent), OldParent(Parent)
Douglas Gregorb1373d02010-01-20 20:59:29 +0000272 {
273 Parent = NewParent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000274 if (clang_isDeclaration(Parent.kind))
275 StmtParent = getCursorDecl(Parent);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000276 }
277
278 ~SetParentRAII() {
279 Parent = OldParent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000280 if (clang_isDeclaration(Parent.kind))
281 StmtParent = getCursorDecl(Parent);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000282 }
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000283 } SetParent(Parent, StmtParent, Cursor);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000284
285 if (clang_isDeclaration(Cursor.kind)) {
286 Decl *D = getCursorDecl(Cursor);
287 assert(D && "Invalid declaration cursor");
288 return Visit(D);
289 }
290
Douglas Gregora59e3902010-01-21 23:27:09 +0000291 if (clang_isStatement(Cursor.kind))
292 return Visit(getCursorStmt(Cursor));
293 if (clang_isExpression(Cursor.kind))
294 return Visit(getCursorExpr(Cursor));
295
Douglas Gregorb1373d02010-01-20 20:59:29 +0000296 if (clang_isTranslationUnit(Cursor.kind)) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000297 ASTUnit *CXXUnit = getCursorASTUnit(Cursor);
Douglas Gregor7b691f332010-01-20 21:13:59 +0000298 if (!CXXUnit->isMainFileAST() && CXXUnit->getOnlyLocalDecls()) {
299 const std::vector<Decl*> &TLDs = CXXUnit->getTopLevelDecls();
300 for (std::vector<Decl*>::const_iterator it = TLDs.begin(),
301 ie = TLDs.end(); it != ie; ++it) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000302 if (Visit(MakeCXCursor(*it, CXXUnit)))
Douglas Gregor7b691f332010-01-20 21:13:59 +0000303 return true;
304 }
305 } else {
306 return VisitDeclContext(
Douglas Gregorb1373d02010-01-20 20:59:29 +0000307 CXXUnit->getASTContext().getTranslationUnitDecl());
Douglas Gregor7b691f332010-01-20 21:13:59 +0000308 }
309
310 return false;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000311 }
Douglas Gregora59e3902010-01-21 23:27:09 +0000312
Douglas Gregorb1373d02010-01-20 20:59:29 +0000313 // Nothing to visit at the moment.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000314 return false;
315}
316
317bool CursorVisitor::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
Douglas Gregor7b691f332010-01-20 21:13:59 +0000318 llvm_unreachable("Translation units are visited directly by Visit()");
319 return false;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000320}
321
322bool CursorVisitor::VisitDeclContext(DeclContext *DC) {
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000323 for (DeclContext::decl_iterator
Douglas Gregorb1373d02010-01-20 20:59:29 +0000324 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000325 if (Visit(MakeCXCursor(*I, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000326 return true;
327 }
328
329 return false;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000330}
331
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000332bool CursorVisitor::VisitDeclaratorDecl(DeclaratorDecl *DD) {
333 if (TypeSourceInfo *TSInfo = DD->getTypeSourceInfo())
334 if (Visit(TSInfo->getTypeLoc()))
335 return true;
336
337 return false;
338}
339
Douglas Gregorb1373d02010-01-20 20:59:29 +0000340bool CursorVisitor::VisitFunctionDecl(FunctionDecl *ND) {
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000341 if (VisitDeclaratorDecl(ND))
342 return true;
343
Douglas Gregora59e3902010-01-21 23:27:09 +0000344 if (ND->isThisDeclarationADefinition() &&
345 Visit(MakeCXCursor(ND->getBody(), StmtParent, TU)))
346 return true;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000347
348 return false;
349}
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000350
Douglas Gregora59e3902010-01-21 23:27:09 +0000351bool CursorVisitor::VisitObjCContainerDecl(ObjCContainerDecl *D) {
352 return VisitDeclContext(D);
353}
354
Douglas Gregorb1373d02010-01-20 20:59:29 +0000355bool CursorVisitor::VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000356 if (Visit(MakeCursorObjCClassRef(ND->getClassInterface(), ND->getLocation(),
357 TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000358 return true;
359
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000360 ObjCCategoryDecl::protocol_loc_iterator PL = ND->protocol_loc_begin();
361 for (ObjCCategoryDecl::protocol_iterator I = ND->protocol_begin(),
362 E = ND->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
Douglas Gregora59e3902010-01-21 23:27:09 +0000366 return VisitObjCContainerDecl(ND);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000367}
368
Douglas Gregorb1373d02010-01-20 20:59:29 +0000369bool CursorVisitor::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000370 // Issue callbacks for super class.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000371 if (D->getSuperClass() &&
372 Visit(MakeCursorObjCSuperClassRef(D->getSuperClass(),
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000373 D->getSuperClassLoc(),
374 TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000375 return true;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000376
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000377 ObjCInterfaceDecl::protocol_loc_iterator PL = D->protocol_loc_begin();
378 for (ObjCInterfaceDecl::protocol_iterator I = D->protocol_begin(),
379 E = D->protocol_end(); I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000380 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000381 return true;
382
Douglas Gregora59e3902010-01-21 23:27:09 +0000383 return VisitObjCContainerDecl(D);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000384}
385
Douglas Gregorb1373d02010-01-20 20:59:29 +0000386bool CursorVisitor::VisitObjCMethodDecl(ObjCMethodDecl *ND) {
Douglas Gregora59e3902010-01-21 23:27:09 +0000387 // FIXME: We really need a TypeLoc covering Objective-C method declarations.
388 // At the moment, we don't have information about locations in the return
389 // type.
390 for (ObjCMethodDecl::param_iterator P = ND->param_begin(),
391 PEnd = ND->param_end();
392 P != PEnd; ++P) {
393 if (Visit(MakeCXCursor(*P, TU)))
394 return true;
395 }
396
397 if (ND->isThisDeclarationADefinition() &&
398 Visit(MakeCXCursor(ND->getBody(), StmtParent, TU)))
399 return true;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000400
401 return false;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000402}
403
Douglas Gregorb1373d02010-01-20 20:59:29 +0000404bool CursorVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000405 ObjCProtocolDecl::protocol_loc_iterator PL = PID->protocol_loc_begin();
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000406 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000407 E = PID->protocol_end(); I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000408 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000409 return true;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000410
Douglas Gregora59e3902010-01-21 23:27:09 +0000411 return VisitObjCContainerDecl(PID);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000412}
413
Douglas Gregorb1373d02010-01-20 20:59:29 +0000414bool CursorVisitor::VisitTagDecl(TagDecl *D) {
415 return VisitDeclContext(D);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000416}
417
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000418bool CursorVisitor::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
419 ASTContext &Context = TU->getASTContext();
420
421 // Some builtin types (such as Objective-C's "id", "sel", and
422 // "Class") have associated declarations. Create cursors for those.
423 QualType VisitType;
424 switch (TL.getType()->getAs<BuiltinType>()->getKind()) {
425 case BuiltinType::Void:
426 case BuiltinType::Bool:
427 case BuiltinType::Char_U:
428 case BuiltinType::UChar:
429 case BuiltinType::Char16:
430 case BuiltinType::Char32:
431 case BuiltinType::UShort:
432 case BuiltinType::UInt:
433 case BuiltinType::ULong:
434 case BuiltinType::ULongLong:
435 case BuiltinType::UInt128:
436 case BuiltinType::Char_S:
437 case BuiltinType::SChar:
438 case BuiltinType::WChar:
439 case BuiltinType::Short:
440 case BuiltinType::Int:
441 case BuiltinType::Long:
442 case BuiltinType::LongLong:
443 case BuiltinType::Int128:
444 case BuiltinType::Float:
445 case BuiltinType::Double:
446 case BuiltinType::LongDouble:
447 case BuiltinType::NullPtr:
448 case BuiltinType::Overload:
449 case BuiltinType::Dependent:
450 break;
451
452 case BuiltinType::UndeducedAuto: // FIXME: Deserves a cursor?
453 break;
454
455 case BuiltinType::ObjCId:
456 VisitType = Context.getObjCIdType();
457 break;
458
459 case BuiltinType::ObjCClass:
460 VisitType = Context.getObjCClassType();
461 break;
462
463 case BuiltinType::ObjCSel:
464 VisitType = Context.getObjCSelType();
465 break;
466 }
467
468 if (!VisitType.isNull()) {
469 if (const TypedefType *Typedef = VisitType->getAs<TypedefType>())
470 return Visit(MakeCursorTypeRef(Typedef->getDecl(), TL.getBuiltinLoc(),
471 TU));
472 }
473
474 return false;
475}
476
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000477bool CursorVisitor::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
478 return Visit(MakeCursorTypeRef(TL.getTypedefDecl(), TL.getNameLoc(), TU));
479}
480
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000481bool CursorVisitor::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
482 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
483}
484
485bool CursorVisitor::VisitTagTypeLoc(TagTypeLoc TL) {
486 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
487}
488
489bool CursorVisitor::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
490 if (Visit(MakeCursorObjCClassRef(TL.getIFaceDecl(), TL.getNameLoc(), TU)))
491 return true;
492
493 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {
494 if (Visit(MakeCursorObjCProtocolRef(TL.getProtocol(I), TL.getProtocolLoc(I),
495 TU)))
496 return true;
497 }
498
499 return false;
500}
501
502bool CursorVisitor::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
503 if (TL.hasBaseTypeAsWritten() && Visit(TL.getBaseTypeLoc()))
504 return true;
505
506 if (TL.hasProtocolsAsWritten()) {
507 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {
508 if (Visit(MakeCursorObjCProtocolRef(TL.getProtocol(I),
509 TL.getProtocolLoc(I),
510 TU)))
511 return true;
512 }
513 }
514
515 return false;
516}
517
518bool CursorVisitor::VisitPointerTypeLoc(PointerTypeLoc TL) {
519 return Visit(TL.getPointeeLoc());
520}
521
522bool CursorVisitor::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
523 return Visit(TL.getPointeeLoc());
524}
525
526bool CursorVisitor::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
527 return Visit(TL.getPointeeLoc());
528}
529
530bool CursorVisitor::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
531 return Visit(TL.getPointeeLoc());
532}
533
534bool CursorVisitor::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
535 return Visit(TL.getPointeeLoc());
536}
537
538bool CursorVisitor::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
539 if (Visit(TL.getResultLoc()))
540 return true;
541
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000542 for (unsigned I = 0, N = TL.getNumArgs(); I != N; ++I)
543 if (Visit(MakeCXCursor(TL.getArg(I), TU)))
544 return true;
545
546 return false;
547}
548
549bool CursorVisitor::VisitArrayTypeLoc(ArrayTypeLoc TL) {
550 if (Visit(TL.getElementLoc()))
551 return true;
552
553 if (Expr *Size = TL.getSizeExpr())
554 return Visit(MakeCXCursor(Size, StmtParent, TU));
555
556 return false;
557}
558
Douglas Gregor2332c112010-01-21 20:48:56 +0000559bool CursorVisitor::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
560 return Visit(MakeCXCursor(TL.getUnderlyingExpr(), StmtParent, TU));
561}
562
563bool CursorVisitor::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
564 if (TypeSourceInfo *TSInfo = TL.getUnderlyingTInfo())
565 return Visit(TSInfo->getTypeLoc());
566
567 return false;
568}
569
Douglas Gregora59e3902010-01-21 23:27:09 +0000570bool CursorVisitor::VisitStmt(Stmt *S) {
571 for (Stmt::child_iterator Child = S->child_begin(), ChildEnd = S->child_end();
572 Child != ChildEnd; ++Child) {
573 if (Visit(MakeCXCursor(*Child, StmtParent, TU)))
574 return true;
575 }
576
577 return false;
578}
579
580bool CursorVisitor::VisitDeclStmt(DeclStmt *S) {
581 for (DeclStmt::decl_iterator D = S->decl_begin(), DEnd = S->decl_end();
582 D != DEnd; ++D) {
583 if (Visit(MakeCXCursor(*D, TU)))
584 return true;
585 }
586
587 return false;
588}
589
Daniel Dunbar140fce22010-01-12 02:34:07 +0000590CXString CIndexer::createCXString(const char *String, bool DupString){
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000591 CXString Str;
592 if (DupString) {
593 Str.Spelling = strdup(String);
594 Str.MustFreeString = 1;
595 } else {
596 Str.Spelling = String;
597 Str.MustFreeString = 0;
598 }
599 return Str;
600}
601
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000602extern "C" {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000603CXIndex clang_createIndex(int excludeDeclarationsFromPCH,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000604 int displayDiagnostics) {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000605 CIndexer *CIdxr = new CIndexer(new Program());
606 if (excludeDeclarationsFromPCH)
607 CIdxr->setOnlyLocalDecls();
608 if (displayDiagnostics)
609 CIdxr->setDisplayDiagnostics();
610 return CIdxr;
Steve Naroff600866c2009-08-27 19:51:58 +0000611}
612
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000613void clang_disposeIndex(CXIndex CIdx) {
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000614 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000615 delete static_cast<CIndexer *>(CIdx);
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000616}
617
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000618void clang_setUseExternalASTGeneration(CXIndex CIdx, int value) {
619 assert(CIdx && "Passed null CXIndex");
620 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
621 CXXIdx->setUseExternalASTGeneration(value);
622}
623
Steve Naroff50398192009-08-28 15:28:48 +0000624// FIXME: need to pass back error info.
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000625CXTranslationUnit clang_createTranslationUnit(CXIndex CIdx,
626 const char *ast_filename) {
Steve Naroff50398192009-08-28 15:28:48 +0000627 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000628 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000629
Daniel Dunbar5262fda2009-12-03 01:45:44 +0000630 return ASTUnit::LoadFromPCHFile(ast_filename, CXXIdx->getDiags(),
631 CXXIdx->getOnlyLocalDecls(),
632 /* UseBumpAllocator = */ true);
Steve Naroff600866c2009-08-27 19:51:58 +0000633}
634
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000635CXTranslationUnit
636clang_createTranslationUnitFromSourceFile(CXIndex CIdx,
637 const char *source_filename,
638 int num_command_line_args,
639 const char **command_line_args) {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000640 assert(CIdx && "Passed null CXIndex");
641 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
642
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000643 if (!CXXIdx->getUseExternalASTGeneration()) {
644 llvm::SmallVector<const char *, 16> Args;
645
646 // The 'source_filename' argument is optional. If the caller does not
647 // specify it then it is assumed that the source file is specified
648 // in the actual argument list.
649 if (source_filename)
650 Args.push_back(source_filename);
651 Args.insert(Args.end(), command_line_args,
652 command_line_args + num_command_line_args);
653
Daniel Dunbar94220972009-12-05 02:17:18 +0000654 unsigned NumErrors = CXXIdx->getDiags().getNumErrors();
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000655
Ted Kremenek29b72842010-01-07 22:49:05 +0000656#ifdef USE_CRASHTRACER
657 ArgsCrashTracerInfo ACTI(Args);
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000658#endif
659
Daniel Dunbar94220972009-12-05 02:17:18 +0000660 llvm::OwningPtr<ASTUnit> Unit(
661 ASTUnit::LoadFromCommandLine(Args.data(), Args.data() + Args.size(),
Daniel Dunbar869824e2009-12-13 03:46:13 +0000662 CXXIdx->getDiags(),
663 CXXIdx->getClangResourcesPath(),
Daniel Dunbar94220972009-12-05 02:17:18 +0000664 CXXIdx->getOnlyLocalDecls(),
665 /* UseBumpAllocator = */ true));
Ted Kremenek29b72842010-01-07 22:49:05 +0000666
Daniel Dunbar94220972009-12-05 02:17:18 +0000667 // FIXME: Until we have broader testing, just drop the entire AST if we
668 // encountered an error.
669 if (NumErrors != CXXIdx->getDiags().getNumErrors())
670 return 0;
671
672 return Unit.take();
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000673 }
674
Ted Kremenek139ba862009-10-22 00:03:57 +0000675 // Build up the arguments for invoking 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000676 std::vector<const char *> argv;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000677
Ted Kremenek139ba862009-10-22 00:03:57 +0000678 // First add the complete path to the 'clang' executable.
679 llvm::sys::Path ClangPath = static_cast<CIndexer *>(CIdx)->getClangPath();
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000680 argv.push_back(ClangPath.c_str());
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000681
Ted Kremenek139ba862009-10-22 00:03:57 +0000682 // Add the '-emit-ast' option as our execution mode for 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000683 argv.push_back("-emit-ast");
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000684
Ted Kremenek139ba862009-10-22 00:03:57 +0000685 // The 'source_filename' argument is optional. If the caller does not
686 // specify it then it is assumed that the source file is specified
687 // in the actual argument list.
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000688 if (source_filename)
689 argv.push_back(source_filename);
Ted Kremenek139ba862009-10-22 00:03:57 +0000690
Steve Naroff37b5ac22009-10-15 20:50:09 +0000691 // Generate a temporary name for the AST file.
Ted Kremenek139ba862009-10-22 00:03:57 +0000692 argv.push_back("-o");
Steve Naroff37b5ac22009-10-15 20:50:09 +0000693 char astTmpFile[L_tmpnam];
Ted Kremenek74cd0692009-10-15 23:21:22 +0000694 argv.push_back(tmpnam(astTmpFile));
Ted Kremenek139ba862009-10-22 00:03:57 +0000695
696 // Process the compiler options, stripping off '-o', '-c', '-fsyntax-only'.
697 for (int i = 0; i < num_command_line_args; ++i)
698 if (const char *arg = command_line_args[i]) {
699 if (strcmp(arg, "-o") == 0) {
700 ++i; // Also skip the matching argument.
701 continue;
702 }
703 if (strcmp(arg, "-emit-ast") == 0 ||
704 strcmp(arg, "-c") == 0 ||
705 strcmp(arg, "-fsyntax-only") == 0) {
706 continue;
707 }
708
709 // Keep the argument.
710 argv.push_back(arg);
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000711 }
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000712
Ted Kremenek139ba862009-10-22 00:03:57 +0000713 // Add the null terminator.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000714 argv.push_back(NULL);
715
Ted Kremenekfeb15e32009-10-26 22:14:08 +0000716 // Invoke 'clang'.
717 llvm::sys::Path DevNull; // leave empty, causes redirection to /dev/null
718 // on Unix or NUL (Windows).
Ted Kremenek379afec2009-10-22 03:24:01 +0000719 std::string ErrMsg;
Ted Kremenekc46e4632009-10-19 22:27:32 +0000720 const llvm::sys::Path *Redirects[] = { &DevNull, &DevNull, &DevNull, NULL };
Ted Kremenek379afec2009-10-22 03:24:01 +0000721 llvm::sys::Program::ExecuteAndWait(ClangPath, &argv[0], /* env */ NULL,
722 /* redirects */ !CXXIdx->getDisplayDiagnostics() ? &Redirects[0] : NULL,
723 /* secondsToWait */ 0, /* memoryLimits */ 0, &ErrMsg);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000724
Ted Kremenek0854d702009-11-10 19:18:52 +0000725 if (CXXIdx->getDisplayDiagnostics() && !ErrMsg.empty()) {
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000726 llvm::errs() << "clang_createTranslationUnitFromSourceFile: " << ErrMsg
Daniel Dunbaracca7252009-11-30 20:42:49 +0000727 << '\n' << "Arguments: \n";
Ted Kremenek379afec2009-10-22 03:24:01 +0000728 for (std::vector<const char*>::iterator I = argv.begin(), E = argv.end();
Ted Kremenek779e5f42009-10-26 22:08:39 +0000729 I!=E; ++I) {
730 if (*I)
731 llvm::errs() << ' ' << *I << '\n';
732 }
733 llvm::errs() << '\n';
Ted Kremenek379afec2009-10-22 03:24:01 +0000734 }
Benjamin Kramer0829a832009-10-18 11:19:36 +0000735
Steve Naroff37b5ac22009-10-15 20:50:09 +0000736 // Finally, we create the translation unit from the ast file.
Steve Naroffe19944c2009-10-15 22:23:48 +0000737 ASTUnit *ATU = static_cast<ASTUnit *>(
Daniel Dunbaracca7252009-11-30 20:42:49 +0000738 clang_createTranslationUnit(CIdx, astTmpFile));
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000739 if (ATU)
740 ATU->unlinkTemporaryFile();
Steve Naroffe19944c2009-10-15 22:23:48 +0000741 return ATU;
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000742}
743
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000744void clang_disposeTranslationUnit(CXTranslationUnit CTUnit) {
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000745 assert(CTUnit && "Passed null CXTranslationUnit");
746 delete static_cast<ASTUnit *>(CTUnit);
747}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000748
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000749CXString clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000750 assert(CTUnit && "Passed null CXTranslationUnit");
Steve Naroff77accc12009-09-03 18:19:54 +0000751 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
Ted Kremenek4b333d22010-01-12 00:36:38 +0000752 return CIndexer::createCXString(CXXUnit->getOriginalSourceFileName().c_str(),
753 true);
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000754}
Daniel Dunbar1eb79b52009-08-28 16:30:07 +0000755
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +0000756CXCursor clang_getTranslationUnitCursor(CXTranslationUnit TU) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000757 CXCursor Result = { CXCursor_TranslationUnit, { 0, 0, TU } };
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +0000758 return Result;
759}
760
Ted Kremenekfb480492010-01-13 21:46:36 +0000761} // end: extern "C"
Steve Naroff600866c2009-08-27 19:51:58 +0000762
Ted Kremenekfb480492010-01-13 21:46:36 +0000763//===----------------------------------------------------------------------===//
Douglas Gregor1db19de2010-01-19 21:36:55 +0000764// CXSourceLocation and CXSourceRange Operations.
765//===----------------------------------------------------------------------===//
766
767void clang_getInstantiationLocation(CXSourceLocation location,
768 CXFile *file,
769 unsigned *line,
770 unsigned *column) {
771 CXSourceLocationPtr Ptr
772 = CXSourceLocationPtr::getFromOpaqueValue(location.ptr_data);
773 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data);
774
775 if (!Ptr.getPointer() || Loc.isInvalid()) {
776 if (file)
777 *file = 0;
778 if (line)
779 *line = 0;
780 if (column)
781 *column = 0;
782 return;
783 }
784
785 // FIXME: This is largely copy-paste from
786 ///TextDiagnosticPrinter::HighlightRange. When it is clear that this is
787 // what we want the two routines should be refactored.
788 ASTContext &Context = *Ptr.getPointer();
789 SourceManager &SM = Context.getSourceManager();
790 SourceLocation InstLoc = SM.getInstantiationLoc(Loc);
791
792 if (Ptr.getInt()) {
793 // We want the last character in this location, so we will adjust
794 // the instantiation location accordingly.
795
796 // If the location is from a macro instantiation, get the end of
797 // the instantiation range.
798 if (Loc.isMacroID())
799 InstLoc = SM.getInstantiationRange(Loc).second;
800
801 // Measure the length token we're pointing at, so we can adjust
802 // the physical location in the file to point at the last
803 // character.
804 // FIXME: This won't cope with trigraphs or escaped newlines
805 // well. For that, we actually need a preprocessor, which isn't
806 // currently available here. Eventually, we'll switch the pointer
807 // data of CXSourceLocation/CXSourceRange to a translation unit
808 // (CXXUnit), so that the preprocessor will be available here. At
809 // that point, we can use Preprocessor::getLocForEndOfToken().
810 unsigned Length = Lexer::MeasureTokenLength(InstLoc, SM,
811 Context.getLangOptions());
812 if (Length > 0)
813 InstLoc = InstLoc.getFileLocWithOffset(Length - 1);
814 }
815
816 if (file)
817 *file = (void *)SM.getFileEntryForID(SM.getFileID(InstLoc));
818 if (line)
819 *line = SM.getInstantiationLineNumber(InstLoc);
820 if (column)
821 *column = SM.getInstantiationColumnNumber(InstLoc);
822}
823
824CXSourceLocation clang_getRangeStart(CXSourceRange range) {
825 CXSourceLocation Result = { range.ptr_data, range.begin_int_data };
826 return Result;
827}
828
829CXSourceLocation clang_getRangeEnd(CXSourceRange range) {
830 llvm::PointerIntPair<ASTContext *, 1, bool> Ptr;
831 Ptr.setPointer(static_cast<ASTContext *>(range.ptr_data));
832 Ptr.setInt(true);
833 CXSourceLocation Result = { Ptr.getOpaqueValue(), range.end_int_data };
834 return Result;
835}
836
837//===----------------------------------------------------------------------===//
Ted Kremenekfb480492010-01-13 21:46:36 +0000838// CXFile Operations.
839//===----------------------------------------------------------------------===//
840
841extern "C" {
Steve Naroff88145032009-10-27 14:35:18 +0000842const char *clang_getFileName(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000843 if (!SFile)
844 return 0;
845
Steve Naroff88145032009-10-27 14:35:18 +0000846 assert(SFile && "Passed null CXFile");
847 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
848 return FEnt->getName();
849}
850
851time_t clang_getFileTime(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000852 if (!SFile)
853 return 0;
854
Steve Naroff88145032009-10-27 14:35:18 +0000855 assert(SFile && "Passed null CXFile");
856 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
857 return FEnt->getModificationTime();
Steve Naroffee9405e2009-09-25 21:45:39 +0000858}
Ted Kremenekfb480492010-01-13 21:46:36 +0000859} // end: extern "C"
Steve Naroffee9405e2009-09-25 21:45:39 +0000860
Ted Kremenekfb480492010-01-13 21:46:36 +0000861//===----------------------------------------------------------------------===//
862// CXCursor Operations.
863//===----------------------------------------------------------------------===//
864
Ted Kremenekfb480492010-01-13 21:46:36 +0000865static Decl *getDeclFromExpr(Stmt *E) {
866 if (DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E))
867 return RefExpr->getDecl();
868 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
869 return ME->getMemberDecl();
870 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E))
871 return RE->getDecl();
872
873 if (CallExpr *CE = dyn_cast<CallExpr>(E))
874 return getDeclFromExpr(CE->getCallee());
875 if (CastExpr *CE = dyn_cast<CastExpr>(E))
876 return getDeclFromExpr(CE->getSubExpr());
877 if (ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E))
878 return OME->getMethodDecl();
879
880 return 0;
881}
882
883extern "C" {
Douglas Gregorb1373d02010-01-20 20:59:29 +0000884
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000885unsigned clang_visitChildren(CXCursor parent,
Douglas Gregorb1373d02010-01-20 20:59:29 +0000886 CXCursorVisitor visitor,
887 CXClientData client_data) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000888 ASTUnit *CXXUnit = getCursorASTUnit(parent);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000889
890 unsigned PCHLevel = Decl::MaxPCHLevel;
891
892 // Set the PCHLevel to filter out unwanted decls if requested.
893 if (CXXUnit->getOnlyLocalDecls()) {
894 PCHLevel = 0;
895
896 // If the main input was an AST, bump the level.
897 if (CXXUnit->isMainFileAST())
898 ++PCHLevel;
899 }
900
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000901 CursorVisitor CursorVis(CXXUnit, visitor, client_data, PCHLevel);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000902 return CursorVis.VisitChildren(parent);
903}
904
Douglas Gregor78205d42010-01-20 21:45:58 +0000905static CXString getDeclSpelling(Decl *D) {
906 NamedDecl *ND = dyn_cast_or_null<NamedDecl>(D);
907 if (!ND)
908 return CIndexer::createCXString("");
909
910 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
911 return CIndexer::createCXString(OMD->getSelector().getAsString().c_str(),
912 true);
913
914 if (ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND))
915 // No, this isn't the same as the code below. getIdentifier() is non-virtual
916 // and returns different names. NamedDecl returns the class name and
917 // ObjCCategoryImplDecl returns the category name.
918 return CIndexer::createCXString(CIMP->getIdentifier()->getNameStart());
919
920 if (ND->getIdentifier())
921 return CIndexer::createCXString(ND->getIdentifier()->getNameStart());
922
923 return CIndexer::createCXString("");
924}
925
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000926CXString clang_getCursorSpelling(CXCursor C) {
Daniel Dunbarc81d7182010-01-18 17:52:42 +0000927 assert(getCursorDecl(C) && "CXCursor has null decl");
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +0000928 if (clang_isTranslationUnit(C.kind))
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000929 return clang_getTranslationUnitSpelling(C.data[2]);
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +0000930
Steve Narofff334b4e2009-09-02 18:26:48 +0000931 if (clang_isReference(C.kind)) {
932 switch (C.kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +0000933 case CXCursor_ObjCSuperClassRef: {
Douglas Gregor2e331b92010-01-16 14:00:32 +0000934 ObjCInterfaceDecl *Super = getCursorObjCSuperClassRef(C).first;
935 return CIndexer::createCXString(Super->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +0000936 }
937 case CXCursor_ObjCClassRef: {
Douglas Gregor1adb0822010-01-16 17:14:40 +0000938 ObjCInterfaceDecl *Class = getCursorObjCClassRef(C).first;
939 return CIndexer::createCXString(Class->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +0000940 }
941 case CXCursor_ObjCProtocolRef: {
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000942 ObjCProtocolDecl *OID = getCursorObjCProtocolRef(C).first;
Douglas Gregorf46034a2010-01-18 23:41:10 +0000943 assert(OID && "getCursorSpelling(): Missing protocol decl");
Ted Kremenek4b333d22010-01-12 00:36:38 +0000944 return CIndexer::createCXString(OID->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +0000945 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000946 case CXCursor_TypeRef: {
947 TypeDecl *Type = getCursorTypeRef(C).first;
948 assert(Type && "Missing type decl");
949
950 return CIndexer::createCXString(
951 getCursorContext(C).getTypeDeclType(Type).getAsString().c_str(),
952 true);
953 }
954
Daniel Dunbaracca7252009-11-30 20:42:49 +0000955 default:
Ted Kremenek4b333d22010-01-12 00:36:38 +0000956 return CIndexer::createCXString("<not implemented>");
Steve Narofff334b4e2009-09-02 18:26:48 +0000957 }
958 }
Douglas Gregor97b98722010-01-19 23:20:36 +0000959
960 if (clang_isExpression(C.kind)) {
961 Decl *D = getDeclFromExpr(getCursorExpr(C));
962 if (D)
Douglas Gregor78205d42010-01-20 21:45:58 +0000963 return getDeclSpelling(D);
Douglas Gregor97b98722010-01-19 23:20:36 +0000964 return CIndexer::createCXString("");
965 }
966
Douglas Gregor78205d42010-01-20 21:45:58 +0000967 return getDeclSpelling(getCursorDecl(C));
Steve Narofff334b4e2009-09-02 18:26:48 +0000968}
969
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000970const char *clang_getCursorKindSpelling(enum CXCursorKind Kind) {
Steve Naroff89922f82009-08-31 00:59:03 +0000971 switch (Kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +0000972 case CXCursor_FunctionDecl: return "FunctionDecl";
973 case CXCursor_TypedefDecl: return "TypedefDecl";
974 case CXCursor_EnumDecl: return "EnumDecl";
975 case CXCursor_EnumConstantDecl: return "EnumConstantDecl";
976 case CXCursor_StructDecl: return "StructDecl";
977 case CXCursor_UnionDecl: return "UnionDecl";
978 case CXCursor_ClassDecl: return "ClassDecl";
979 case CXCursor_FieldDecl: return "FieldDecl";
980 case CXCursor_VarDecl: return "VarDecl";
981 case CXCursor_ParmDecl: return "ParmDecl";
982 case CXCursor_ObjCInterfaceDecl: return "ObjCInterfaceDecl";
983 case CXCursor_ObjCCategoryDecl: return "ObjCCategoryDecl";
984 case CXCursor_ObjCProtocolDecl: return "ObjCProtocolDecl";
985 case CXCursor_ObjCPropertyDecl: return "ObjCPropertyDecl";
986 case CXCursor_ObjCIvarDecl: return "ObjCIvarDecl";
987 case CXCursor_ObjCInstanceMethodDecl: return "ObjCInstanceMethodDecl";
988 case CXCursor_ObjCClassMethodDecl: return "ObjCClassMethodDecl";
Douglas Gregorb6998662010-01-19 19:34:47 +0000989 case CXCursor_ObjCImplementationDecl: return "ObjCImplementationDecl";
990 case CXCursor_ObjCCategoryImplDecl: return "ObjCCategoryImplDecl";
Douglas Gregor30122132010-01-19 22:07:56 +0000991 case CXCursor_UnexposedDecl: return "UnexposedDecl";
Daniel Dunbaracca7252009-11-30 20:42:49 +0000992 case CXCursor_ObjCSuperClassRef: return "ObjCSuperClassRef";
993 case CXCursor_ObjCProtocolRef: return "ObjCProtocolRef";
994 case CXCursor_ObjCClassRef: return "ObjCClassRef";
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000995 case CXCursor_TypeRef: return "TypeRef";
Douglas Gregor97b98722010-01-19 23:20:36 +0000996 case CXCursor_UnexposedExpr: return "UnexposedExpr";
997 case CXCursor_DeclRefExpr: return "DeclRefExpr";
998 case CXCursor_MemberRefExpr: return "MemberRefExpr";
999 case CXCursor_CallExpr: return "CallExpr";
1000 case CXCursor_ObjCMessageExpr: return "ObjCMessageExpr";
1001 case CXCursor_UnexposedStmt: return "UnexposedStmt";
Daniel Dunbaracca7252009-11-30 20:42:49 +00001002 case CXCursor_InvalidFile: return "InvalidFile";
1003 case CXCursor_NoDeclFound: return "NoDeclFound";
1004 case CXCursor_NotImplemented: return "NotImplemented";
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001005 case CXCursor_TranslationUnit: return "TranslationUnit";
Steve Naroff89922f82009-08-31 00:59:03 +00001006 }
Ted Kremenekdeb06bd2010-01-16 02:02:09 +00001007
1008 llvm_unreachable("Unhandled CXCursorKind");
1009 return NULL;
Steve Naroff600866c2009-08-27 19:51:58 +00001010}
Steve Naroff89922f82009-08-31 00:59:03 +00001011
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001012CXCursor clang_getCursor(CXTranslationUnit CTUnit, const char *source_name,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001013 unsigned line, unsigned column) {
Steve Naroff9efa7672009-09-04 15:44:05 +00001014 assert(CTUnit && "Passed null CXTranslationUnit");
1015 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001016
Steve Naroff9efa7672009-09-04 15:44:05 +00001017 FileManager &FMgr = CXXUnit->getFileManager();
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001018 const FileEntry *File = FMgr.getFile(source_name,
1019 source_name+strlen(source_name));
Ted Kremenekf4629892010-01-14 01:51:23 +00001020 if (!File)
1021 return clang_getNullCursor();
1022
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001023 SourceLocation SLoc =
Steve Naroff9efa7672009-09-04 15:44:05 +00001024 CXXUnit->getSourceManager().getLocation(File, line, column);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001025
Steve Narofff96b5242009-10-28 20:44:47 +00001026 ASTLocation LastLoc = CXXUnit->getLastASTLocation();
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001027 ASTLocation ALoc = ResolveLocationInAST(CXXUnit->getASTContext(), SLoc,
Steve Narofff96b5242009-10-28 20:44:47 +00001028 &LastLoc);
Ted Kremenekf4629892010-01-14 01:51:23 +00001029
1030 // FIXME: This doesn't look thread-safe.
Steve Narofff96b5242009-10-28 20:44:47 +00001031 if (ALoc.isValid())
1032 CXXUnit->setLastASTLocation(ALoc);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001033
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +00001034 Decl *Dcl = ALoc.getParentDecl();
Argyrios Kyrtzidis05a76512009-09-29 19:45:58 +00001035 if (ALoc.isNamedRef())
1036 Dcl = ALoc.AsNamedRef().ND;
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +00001037 Stmt *Stm = ALoc.dyn_AsStmt();
Steve Naroff4ade6d62009-09-23 17:52:52 +00001038 if (Dcl) {
Douglas Gregor97b98722010-01-19 23:20:36 +00001039 if (Stm)
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001040 return MakeCXCursor(Stm, Dcl, CXXUnit);
Douglas Gregor97b98722010-01-19 23:20:36 +00001041
Steve Naroff85e2db72009-10-01 00:31:07 +00001042 if (ALoc.isNamedRef()) {
Douglas Gregor1adb0822010-01-16 17:14:40 +00001043 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(Dcl))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001044 return MakeCursorObjCClassRef(Class, ALoc.AsNamedRef().Loc, CXXUnit);
Douglas Gregor78db0cd2010-01-16 15:44:18 +00001045 if (ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(Dcl))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001046 return MakeCursorObjCProtocolRef(Proto, ALoc.AsNamedRef().Loc, CXXUnit);
Steve Naroff85e2db72009-10-01 00:31:07 +00001047 }
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001048 return MakeCXCursor(Dcl, CXXUnit);
Steve Naroff77128dd2009-09-15 20:25:34 +00001049 }
Douglas Gregor5bfb8c12010-01-20 23:34:41 +00001050 return MakeCXCursorInvalid(CXCursor_NoDeclFound);
Steve Naroff600866c2009-08-27 19:51:58 +00001051}
1052
Ted Kremenek73885552009-11-17 19:28:59 +00001053CXCursor clang_getNullCursor(void) {
Douglas Gregor5bfb8c12010-01-20 23:34:41 +00001054 return MakeCXCursorInvalid(CXCursor_InvalidFile);
Ted Kremenek73885552009-11-17 19:28:59 +00001055}
1056
1057unsigned clang_equalCursors(CXCursor X, CXCursor Y) {
Douglas Gregor283cae32010-01-15 21:56:13 +00001058 return X == Y;
Ted Kremenek73885552009-11-17 19:28:59 +00001059}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001060
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001061unsigned clang_isInvalid(enum CXCursorKind K) {
Steve Naroff77128dd2009-09-15 20:25:34 +00001062 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
1063}
1064
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001065unsigned clang_isDeclaration(enum CXCursorKind K) {
Steve Naroff89922f82009-08-31 00:59:03 +00001066 return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl;
1067}
Steve Naroff2d4d6292009-08-31 14:26:51 +00001068
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001069unsigned clang_isReference(enum CXCursorKind K) {
Steve Narofff334b4e2009-09-02 18:26:48 +00001070 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
1071}
1072
Douglas Gregor97b98722010-01-19 23:20:36 +00001073unsigned clang_isExpression(enum CXCursorKind K) {
1074 return K >= CXCursor_FirstExpr && K <= CXCursor_LastExpr;
1075}
1076
1077unsigned clang_isStatement(enum CXCursorKind K) {
1078 return K >= CXCursor_FirstStmt && K <= CXCursor_LastStmt;
1079}
1080
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001081unsigned clang_isTranslationUnit(enum CXCursorKind K) {
1082 return K == CXCursor_TranslationUnit;
1083}
1084
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001085CXCursorKind clang_getCursorKind(CXCursor C) {
Steve Naroff9efa7672009-09-04 15:44:05 +00001086 return C.kind;
1087}
1088
Douglas Gregor97b98722010-01-19 23:20:36 +00001089static SourceLocation getLocationFromExpr(Expr *E) {
1090 if (ObjCMessageExpr *Msg = dyn_cast<ObjCMessageExpr>(E))
1091 return /*FIXME:*/Msg->getLeftLoc();
1092 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
1093 return DRE->getLocation();
1094 if (MemberExpr *Member = dyn_cast<MemberExpr>(E))
1095 return Member->getMemberLoc();
1096 if (ObjCIvarRefExpr *Ivar = dyn_cast<ObjCIvarRefExpr>(E))
1097 return Ivar->getLocation();
1098 return E->getLocStart();
1099}
1100
Douglas Gregor98258af2010-01-18 22:46:11 +00001101CXSourceLocation clang_getCursorLocation(CXCursor C) {
1102 if (clang_isReference(C.kind)) {
Douglas Gregorf46034a2010-01-18 23:41:10 +00001103 switch (C.kind) {
1104 case CXCursor_ObjCSuperClassRef: {
1105 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1106 = getCursorObjCSuperClassRef(C);
Douglas Gregor1db19de2010-01-19 21:36:55 +00001107 return translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001108 }
1109
1110 case CXCursor_ObjCProtocolRef: {
1111 std::pair<ObjCProtocolDecl *, SourceLocation> P
1112 = getCursorObjCProtocolRef(C);
Douglas Gregor1db19de2010-01-19 21:36:55 +00001113 return translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001114 }
1115
1116 case CXCursor_ObjCClassRef: {
1117 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1118 = getCursorObjCClassRef(C);
Douglas Gregor1db19de2010-01-19 21:36:55 +00001119 return translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001120 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001121
1122 case CXCursor_TypeRef: {
1123 std::pair<TypeDecl *, SourceLocation> P = getCursorTypeRef(C);
1124 return translateSourceLocation(P.first->getASTContext(), P.second);
1125 }
Douglas Gregorf46034a2010-01-18 23:41:10 +00001126
Douglas Gregorf46034a2010-01-18 23:41:10 +00001127 default:
1128 // FIXME: Need a way to enumerate all non-reference cases.
1129 llvm_unreachable("Missed a reference kind");
1130 }
Douglas Gregor98258af2010-01-18 22:46:11 +00001131 }
Douglas Gregor97b98722010-01-19 23:20:36 +00001132
1133 if (clang_isExpression(C.kind))
1134 return translateSourceLocation(getCursorContext(C),
1135 getLocationFromExpr(getCursorExpr(C)));
1136
Douglas Gregor98258af2010-01-18 22:46:11 +00001137 if (!getCursorDecl(C)) {
Douglas Gregor1db19de2010-01-19 21:36:55 +00001138 CXSourceLocation empty = { 0, 0 };
Douglas Gregor98258af2010-01-18 22:46:11 +00001139 return empty;
1140 }
1141
Douglas Gregorf46034a2010-01-18 23:41:10 +00001142 Decl *D = getCursorDecl(C);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001143 SourceLocation Loc = D->getLocation();
1144 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(D))
1145 Loc = Class->getClassLoc();
Douglas Gregor1db19de2010-01-19 21:36:55 +00001146 return translateSourceLocation(D->getASTContext(), Loc);
Douglas Gregor98258af2010-01-18 22:46:11 +00001147}
Douglas Gregora7bde202010-01-19 00:34:46 +00001148
1149CXSourceRange clang_getCursorExtent(CXCursor C) {
1150 if (clang_isReference(C.kind)) {
1151 switch (C.kind) {
1152 case CXCursor_ObjCSuperClassRef: {
1153 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1154 = getCursorObjCSuperClassRef(C);
1155 return translateSourceRange(P.first->getASTContext(), P.second);
1156 }
1157
1158 case CXCursor_ObjCProtocolRef: {
1159 std::pair<ObjCProtocolDecl *, SourceLocation> P
1160 = getCursorObjCProtocolRef(C);
1161 return translateSourceRange(P.first->getASTContext(), P.second);
1162 }
1163
1164 case CXCursor_ObjCClassRef: {
1165 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1166 = getCursorObjCClassRef(C);
1167
1168 return translateSourceRange(P.first->getASTContext(), P.second);
1169 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001170
1171 case CXCursor_TypeRef: {
1172 std::pair<TypeDecl *, SourceLocation> P = getCursorTypeRef(C);
1173 return translateSourceRange(P.first->getASTContext(), P.second);
1174 }
Douglas Gregora7bde202010-01-19 00:34:46 +00001175
Douglas Gregora7bde202010-01-19 00:34:46 +00001176 default:
1177 // FIXME: Need a way to enumerate all non-reference cases.
1178 llvm_unreachable("Missed a reference kind");
1179 }
1180 }
Douglas Gregor97b98722010-01-19 23:20:36 +00001181
1182 if (clang_isExpression(C.kind))
1183 return translateSourceRange(getCursorContext(C),
1184 getCursorExpr(C)->getSourceRange());
Douglas Gregora7bde202010-01-19 00:34:46 +00001185
1186 if (!getCursorDecl(C)) {
Douglas Gregor1db19de2010-01-19 21:36:55 +00001187 CXSourceRange empty = { 0, 0, 0 };
Douglas Gregora7bde202010-01-19 00:34:46 +00001188 return empty;
1189 }
1190
1191 Decl *D = getCursorDecl(C);
1192 return translateSourceRange(D->getASTContext(), D->getSourceRange());
1193}
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001194
1195CXCursor clang_getCursorReferenced(CXCursor C) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001196 if (clang_isInvalid(C.kind))
1197 return clang_getNullCursor();
1198
1199 ASTUnit *CXXUnit = getCursorASTUnit(C);
Douglas Gregorb6998662010-01-19 19:34:47 +00001200 if (clang_isDeclaration(C.kind))
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001201 return C;
Douglas Gregor98258af2010-01-18 22:46:11 +00001202
Douglas Gregor97b98722010-01-19 23:20:36 +00001203 if (clang_isExpression(C.kind)) {
1204 Decl *D = getDeclFromExpr(getCursorExpr(C));
1205 if (D)
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001206 return MakeCXCursor(D, CXXUnit);
Douglas Gregor97b98722010-01-19 23:20:36 +00001207 return clang_getNullCursor();
1208 }
1209
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001210 if (!clang_isReference(C.kind))
1211 return clang_getNullCursor();
1212
1213 switch (C.kind) {
1214 case CXCursor_ObjCSuperClassRef:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001215 return MakeCXCursor(getCursorObjCSuperClassRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001216
1217 case CXCursor_ObjCProtocolRef: {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001218 return MakeCXCursor(getCursorObjCProtocolRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001219
1220 case CXCursor_ObjCClassRef:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001221 return MakeCXCursor(getCursorObjCClassRef(C).first, CXXUnit);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001222
1223 case CXCursor_TypeRef:
1224 return MakeCXCursor(getCursorTypeRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001225
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001226 default:
1227 // We would prefer to enumerate all non-reference cursor kinds here.
1228 llvm_unreachable("Unhandled reference cursor kind");
1229 break;
1230 }
1231 }
1232
1233 return clang_getNullCursor();
1234}
1235
Douglas Gregorb6998662010-01-19 19:34:47 +00001236CXCursor clang_getCursorDefinition(CXCursor C) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001237 if (clang_isInvalid(C.kind))
1238 return clang_getNullCursor();
1239
1240 ASTUnit *CXXUnit = getCursorASTUnit(C);
1241
Douglas Gregorb6998662010-01-19 19:34:47 +00001242 bool WasReference = false;
Douglas Gregor97b98722010-01-19 23:20:36 +00001243 if (clang_isReference(C.kind) || clang_isExpression(C.kind)) {
Douglas Gregorb6998662010-01-19 19:34:47 +00001244 C = clang_getCursorReferenced(C);
1245 WasReference = true;
1246 }
1247
1248 if (!clang_isDeclaration(C.kind))
1249 return clang_getNullCursor();
1250
1251 Decl *D = getCursorDecl(C);
1252 if (!D)
1253 return clang_getNullCursor();
1254
1255 switch (D->getKind()) {
1256 // Declaration kinds that don't really separate the notions of
1257 // declaration and definition.
1258 case Decl::Namespace:
1259 case Decl::Typedef:
1260 case Decl::TemplateTypeParm:
1261 case Decl::EnumConstant:
1262 case Decl::Field:
1263 case Decl::ObjCIvar:
1264 case Decl::ObjCAtDefsField:
1265 case Decl::ImplicitParam:
1266 case Decl::ParmVar:
1267 case Decl::NonTypeTemplateParm:
1268 case Decl::TemplateTemplateParm:
1269 case Decl::ObjCCategoryImpl:
1270 case Decl::ObjCImplementation:
1271 case Decl::LinkageSpec:
1272 case Decl::ObjCPropertyImpl:
1273 case Decl::FileScopeAsm:
1274 case Decl::StaticAssert:
1275 case Decl::Block:
1276 return C;
1277
1278 // Declaration kinds that don't make any sense here, but are
1279 // nonetheless harmless.
1280 case Decl::TranslationUnit:
1281 case Decl::Template:
1282 case Decl::ObjCContainer:
1283 break;
1284
1285 // Declaration kinds for which the definition is not resolvable.
1286 case Decl::UnresolvedUsingTypename:
1287 case Decl::UnresolvedUsingValue:
1288 break;
1289
1290 case Decl::UsingDirective:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001291 return MakeCXCursor(cast<UsingDirectiveDecl>(D)->getNominatedNamespace(),
1292 CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001293
1294 case Decl::NamespaceAlias:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001295 return MakeCXCursor(cast<NamespaceAliasDecl>(D)->getNamespace(), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001296
1297 case Decl::Enum:
1298 case Decl::Record:
1299 case Decl::CXXRecord:
1300 case Decl::ClassTemplateSpecialization:
1301 case Decl::ClassTemplatePartialSpecialization:
1302 if (TagDecl *Def = cast<TagDecl>(D)->getDefinition(D->getASTContext()))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001303 return MakeCXCursor(Def, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001304 return clang_getNullCursor();
1305
1306 case Decl::Function:
1307 case Decl::CXXMethod:
1308 case Decl::CXXConstructor:
1309 case Decl::CXXDestructor:
1310 case Decl::CXXConversion: {
1311 const FunctionDecl *Def = 0;
1312 if (cast<FunctionDecl>(D)->getBody(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001313 return MakeCXCursor(const_cast<FunctionDecl *>(Def), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001314 return clang_getNullCursor();
1315 }
1316
1317 case Decl::Var: {
1318 VarDecl *Var = cast<VarDecl>(D);
1319
1320 // Variables with initializers have definitions.
1321 const VarDecl *Def = 0;
1322 if (Var->getDefinition(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001323 return MakeCXCursor(const_cast<VarDecl *>(Def), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001324
1325 // extern and private_extern variables are not definitions.
1326 if (Var->hasExternalStorage())
1327 return clang_getNullCursor();
1328
1329 // In-line static data members do not have definitions.
1330 if (Var->isStaticDataMember() && !Var->isOutOfLine())
1331 return clang_getNullCursor();
1332
1333 // All other variables are themselves definitions.
1334 return C;
1335 }
1336
1337 case Decl::FunctionTemplate: {
1338 const FunctionDecl *Def = 0;
1339 if (cast<FunctionTemplateDecl>(D)->getTemplatedDecl()->getBody(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001340 return MakeCXCursor(Def->getDescribedFunctionTemplate(), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001341 return clang_getNullCursor();
1342 }
1343
1344 case Decl::ClassTemplate: {
1345 if (RecordDecl *Def = cast<ClassTemplateDecl>(D)->getTemplatedDecl()
1346 ->getDefinition(D->getASTContext()))
1347 return MakeCXCursor(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001348 cast<CXXRecordDecl>(Def)->getDescribedClassTemplate(),
1349 CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001350 return clang_getNullCursor();
1351 }
1352
1353 case Decl::Using: {
1354 UsingDecl *Using = cast<UsingDecl>(D);
1355 CXCursor Def = clang_getNullCursor();
1356 for (UsingDecl::shadow_iterator S = Using->shadow_begin(),
1357 SEnd = Using->shadow_end();
1358 S != SEnd; ++S) {
1359 if (Def != clang_getNullCursor()) {
1360 // FIXME: We have no way to return multiple results.
1361 return clang_getNullCursor();
1362 }
1363
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001364 Def = clang_getCursorDefinition(MakeCXCursor((*S)->getTargetDecl(),
1365 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001366 }
1367
1368 return Def;
1369 }
1370
1371 case Decl::UsingShadow:
1372 return clang_getCursorDefinition(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001373 MakeCXCursor(cast<UsingShadowDecl>(D)->getTargetDecl(),
1374 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001375
1376 case Decl::ObjCMethod: {
1377 ObjCMethodDecl *Method = cast<ObjCMethodDecl>(D);
1378 if (Method->isThisDeclarationADefinition())
1379 return C;
1380
1381 // Dig out the method definition in the associated
1382 // @implementation, if we have it.
1383 // FIXME: The ASTs should make finding the definition easier.
1384 if (ObjCInterfaceDecl *Class
1385 = dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext()))
1386 if (ObjCImplementationDecl *ClassImpl = Class->getImplementation())
1387 if (ObjCMethodDecl *Def = ClassImpl->getMethod(Method->getSelector(),
1388 Method->isInstanceMethod()))
1389 if (Def->isThisDeclarationADefinition())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001390 return MakeCXCursor(Def, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001391
1392 return clang_getNullCursor();
1393 }
1394
1395 case Decl::ObjCCategory:
1396 if (ObjCCategoryImplDecl *Impl
1397 = cast<ObjCCategoryDecl>(D)->getImplementation())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001398 return MakeCXCursor(Impl, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001399 return clang_getNullCursor();
1400
1401 case Decl::ObjCProtocol:
1402 if (!cast<ObjCProtocolDecl>(D)->isForwardDecl())
1403 return C;
1404 return clang_getNullCursor();
1405
1406 case Decl::ObjCInterface:
1407 // There are two notions of a "definition" for an Objective-C
1408 // class: the interface and its implementation. When we resolved a
1409 // reference to an Objective-C class, produce the @interface as
1410 // the definition; when we were provided with the interface,
1411 // produce the @implementation as the definition.
1412 if (WasReference) {
1413 if (!cast<ObjCInterfaceDecl>(D)->isForwardDecl())
1414 return C;
1415 } else if (ObjCImplementationDecl *Impl
1416 = cast<ObjCInterfaceDecl>(D)->getImplementation())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001417 return MakeCXCursor(Impl, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001418 return clang_getNullCursor();
1419
1420 case Decl::ObjCProperty:
1421 // FIXME: We don't really know where to find the
1422 // ObjCPropertyImplDecls that implement this property.
1423 return clang_getNullCursor();
1424
1425 case Decl::ObjCCompatibleAlias:
1426 if (ObjCInterfaceDecl *Class
1427 = cast<ObjCCompatibleAliasDecl>(D)->getClassInterface())
1428 if (!Class->isForwardDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001429 return MakeCXCursor(Class, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001430
1431 return clang_getNullCursor();
1432
1433 case Decl::ObjCForwardProtocol: {
1434 ObjCForwardProtocolDecl *Forward = cast<ObjCForwardProtocolDecl>(D);
1435 if (Forward->protocol_size() == 1)
1436 return clang_getCursorDefinition(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001437 MakeCXCursor(*Forward->protocol_begin(),
1438 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001439
1440 // FIXME: Cannot return multiple definitions.
1441 return clang_getNullCursor();
1442 }
1443
1444 case Decl::ObjCClass: {
1445 ObjCClassDecl *Class = cast<ObjCClassDecl>(D);
1446 if (Class->size() == 1) {
1447 ObjCInterfaceDecl *IFace = Class->begin()->getInterface();
1448 if (!IFace->isForwardDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001449 return MakeCXCursor(IFace, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001450 return clang_getNullCursor();
1451 }
1452
1453 // FIXME: Cannot return multiple definitions.
1454 return clang_getNullCursor();
1455 }
1456
1457 case Decl::Friend:
1458 if (NamedDecl *Friend = cast<FriendDecl>(D)->getFriendDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001459 return clang_getCursorDefinition(MakeCXCursor(Friend, CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001460 return clang_getNullCursor();
1461
1462 case Decl::FriendTemplate:
1463 if (NamedDecl *Friend = cast<FriendTemplateDecl>(D)->getFriendDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001464 return clang_getCursorDefinition(MakeCXCursor(Friend, CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001465 return clang_getNullCursor();
1466 }
1467
1468 return clang_getNullCursor();
1469}
1470
1471unsigned clang_isCursorDefinition(CXCursor C) {
1472 if (!clang_isDeclaration(C.kind))
1473 return 0;
1474
1475 return clang_getCursorDefinition(C) == C;
1476}
1477
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001478void clang_getDefinitionSpellingAndExtent(CXCursor C,
Steve Naroff4ade6d62009-09-23 17:52:52 +00001479 const char **startBuf,
1480 const char **endBuf,
1481 unsigned *startLine,
1482 unsigned *startColumn,
1483 unsigned *endLine,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001484 unsigned *endColumn) {
Douglas Gregor283cae32010-01-15 21:56:13 +00001485 assert(getCursorDecl(C) && "CXCursor has null decl");
1486 NamedDecl *ND = static_cast<NamedDecl *>(getCursorDecl(C));
Steve Naroff4ade6d62009-09-23 17:52:52 +00001487 FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
1488 CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody());
Ted Kremenekfb480492010-01-13 21:46:36 +00001489
Steve Naroff4ade6d62009-09-23 17:52:52 +00001490 SourceManager &SM = FD->getASTContext().getSourceManager();
1491 *startBuf = SM.getCharacterData(Body->getLBracLoc());
1492 *endBuf = SM.getCharacterData(Body->getRBracLoc());
1493 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
1494 *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc());
1495 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc());
1496 *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc());
1497}
Ted Kremenekfb480492010-01-13 21:46:36 +00001498
1499} // end: extern "C"
Steve Naroff4ade6d62009-09-23 17:52:52 +00001500
Ted Kremenekfb480492010-01-13 21:46:36 +00001501//===----------------------------------------------------------------------===//
1502// CXString Operations.
1503//===----------------------------------------------------------------------===//
1504
1505extern "C" {
1506const char *clang_getCString(CXString string) {
1507 return string.Spelling;
1508}
1509
1510void clang_disposeString(CXString string) {
1511 if (string.MustFreeString && string.Spelling)
1512 free((void*)string.Spelling);
1513}
1514} // end: extern "C"