blob: e6b4bafc3388447e70b909dc70361fe8e4c52706 [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"
Ted Kremenekd8210652010-01-06 23:43:31 +000020#include "clang/Lex/Lexer.h"
Douglas Gregor02465752009-10-16 21:24:31 +000021#include "llvm/Support/MemoryBuffer.h"
Benjamin Kramer0829a832009-10-18 11:19:36 +000022#include "llvm/System/Program.h"
Ted Kremenekfc062212009-10-19 21:44:57 +000023
Ted Kremenekdb3d0da2010-01-05 20:55:39 +000024// Needed to define L_TMPNAM on some systems.
25#include <cstdio>
26
Steve Naroff50398192009-08-28 15:28:48 +000027using namespace clang;
Ted Kremenek16c440a2010-01-15 20:35:54 +000028using namespace clang::cxcursor;
Steve Naroff50398192009-08-28 15:28:48 +000029using namespace idx;
30
Ted Kremenek8a8da7d2010-01-06 03:42:32 +000031//===----------------------------------------------------------------------===//
32// Crash Reporting.
33//===----------------------------------------------------------------------===//
34
35#ifdef __APPLE__
Ted Kremenek29b72842010-01-07 22:49:05 +000036#ifndef NDEBUG
37#define USE_CRASHTRACER
Ted Kremenek8a8da7d2010-01-06 03:42:32 +000038#include "clang/Analysis/Support/SaveAndRestore.h"
39// Integrate with crash reporter.
40extern "C" const char *__crashreporter_info__;
Ted Kremenek29b72842010-01-07 22:49:05 +000041#define NUM_CRASH_STRINGS 16
42static unsigned crashtracer_counter = 0;
Ted Kremenek254ba7c2010-01-07 23:13:53 +000043static unsigned crashtracer_counter_id[NUM_CRASH_STRINGS] = { 0 };
Ted Kremenek29b72842010-01-07 22:49:05 +000044static const char *crashtracer_strings[NUM_CRASH_STRINGS] = { 0 };
45static const char *agg_crashtracer_strings[NUM_CRASH_STRINGS] = { 0 };
46
47static unsigned SetCrashTracerInfo(const char *str,
48 llvm::SmallString<1024> &AggStr) {
49
Ted Kremenek254ba7c2010-01-07 23:13:53 +000050 unsigned slot = 0;
Ted Kremenek29b72842010-01-07 22:49:05 +000051 while (crashtracer_strings[slot]) {
52 if (++slot == NUM_CRASH_STRINGS)
53 slot = 0;
54 }
55 crashtracer_strings[slot] = str;
Ted Kremenek254ba7c2010-01-07 23:13:53 +000056 crashtracer_counter_id[slot] = ++crashtracer_counter;
Ted Kremenek29b72842010-01-07 22:49:05 +000057
58 // We need to create an aggregate string because multiple threads
59 // may be in this method at one time. The crash reporter string
60 // will attempt to overapproximate the set of in-flight invocations
61 // of this function. Race conditions can still cause this goal
62 // to not be achieved.
63 {
64 llvm::raw_svector_ostream Out(AggStr);
65 for (unsigned i = 0; i < NUM_CRASH_STRINGS; ++i)
66 if (crashtracer_strings[i]) Out << crashtracer_strings[i] << '\n';
67 }
68 __crashreporter_info__ = agg_crashtracer_strings[slot] = AggStr.c_str();
69 return slot;
70}
71
72static void ResetCrashTracerInfo(unsigned slot) {
Ted Kremenek254ba7c2010-01-07 23:13:53 +000073 unsigned max_slot = 0;
74 unsigned max_value = 0;
75
76 crashtracer_strings[slot] = agg_crashtracer_strings[slot] = 0;
77
78 for (unsigned i = 0 ; i < NUM_CRASH_STRINGS; ++i)
79 if (agg_crashtracer_strings[i] &&
80 crashtracer_counter_id[i] > max_value) {
81 max_slot = i;
82 max_value = crashtracer_counter_id[i];
Ted Kremenek29b72842010-01-07 22:49:05 +000083 }
Ted Kremenek254ba7c2010-01-07 23:13:53 +000084
85 __crashreporter_info__ = agg_crashtracer_strings[max_slot];
Ted Kremenek29b72842010-01-07 22:49:05 +000086}
87
88namespace {
89class ArgsCrashTracerInfo {
90 llvm::SmallString<1024> CrashString;
91 llvm::SmallString<1024> AggregateString;
92 unsigned crashtracerSlot;
93public:
94 ArgsCrashTracerInfo(llvm::SmallVectorImpl<const char*> &Args)
95 : crashtracerSlot(0)
96 {
97 {
98 llvm::raw_svector_ostream Out(CrashString);
99 Out << "ClangCIndex [createTranslationUnitFromSourceFile]: clang";
100 for (llvm::SmallVectorImpl<const char*>::iterator I=Args.begin(),
101 E=Args.end(); I!=E; ++I)
102 Out << ' ' << *I;
103 }
104 crashtracerSlot = SetCrashTracerInfo(CrashString.c_str(),
105 AggregateString);
106 }
107
108 ~ArgsCrashTracerInfo() {
109 ResetCrashTracerInfo(crashtracerSlot);
110 }
111};
112}
113#endif
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000114#endif
115
Douglas Gregor98258af2010-01-18 22:46:11 +0000116/// \brief Translate a Clang source location into a CIndex source location.
117static CXSourceLocation translateSourceLocation(SourceManager &SourceMgr,
118 SourceLocation Loc) {
119 SourceLocation InstLoc = SourceMgr.getInstantiationLoc(Loc);
120 if (InstLoc.isInvalid()) {
121 CXSourceLocation Loc = { 0, 0, 0 };
122 return Loc;
123 }
124
125 CXSourceLocation Result;
126 Result.file
127 = (void*)SourceMgr.getFileEntryForID(SourceMgr.getFileID(InstLoc));
128 Result.line = SourceMgr.getInstantiationLineNumber(InstLoc);
129 Result.column = SourceMgr.getInstantiationColumnNumber(InstLoc);
130 return Result;
131}
132
Douglas Gregora7bde202010-01-19 00:34:46 +0000133/// \brief Translate a Clang source range into a CIndex source range.
134static CXSourceRange translateSourceRange(ASTContext &Context,
135 SourceRange R) {
136 if (R.isInvalid()) {
137 CXSourceRange extent = { { 0, 0, 0 }, { 0, 0, 0 } };
138 return extent;
139 }
140
141 // FIXME: This is largely copy-paste from
142 ///TextDiagnosticPrinter::HighlightRange. When it is clear that this is
143 // what we want the two routines should be refactored.
144
145 SourceManager &SM = Context.getSourceManager();
146 SourceLocation Begin = SM.getInstantiationLoc(R.getBegin());
147 SourceLocation End = SM.getInstantiationLoc(R.getEnd());
148
149 // If the End location and the start location are the same and are a macro
150 // location, then the range was something that came from a macro expansion
151 // or _Pragma. If this is an object-like macro, the best we can do is to
152 // get the range. If this is a function-like macro, we'd also like to
153 // get the arguments.
154 if (Begin == End && R.getEnd().isMacroID())
155 End = SM.getInstantiationRange(R.getEnd()).second;
156
157 unsigned StartLineNo = SM.getInstantiationLineNumber(Begin);
158 unsigned EndLineNo = SM.getInstantiationLineNumber(End);
159
160 // Compute the column number of the start. Keep the column based at 1.
161 unsigned StartColNo = SM.getInstantiationColumnNumber(Begin);
162
163 // Compute the column number of the end.
164 unsigned EndColNo = SM.getInstantiationColumnNumber(End);
165 if (EndColNo) {
166 // Offset the end column by 1 so that we point to the last character
167 // in the last token.
168 --EndColNo;
169
170 // Add in the length of the token, so that we cover multi-char tokens.
171 EndColNo += Lexer::MeasureTokenLength(End, SM, Context.getLangOptions());
172 }
173
174 // Package up the line/column data and return to the caller.
175 const FileEntry *BeginFile = SM.getFileEntryForID(SM.getFileID(Begin));
176 const FileEntry *EndFile = SM.getFileEntryForID(SM.getFileID(End));
177 CXSourceRange extent = { { (void *)BeginFile, StartLineNo, StartColNo },
178 { (void *)EndFile, EndLineNo, EndColNo } };
179 return extent;
180}
181
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000182//===----------------------------------------------------------------------===//
183// Visitors.
184//===----------------------------------------------------------------------===//
185
Steve Naroff89922f82009-08-31 00:59:03 +0000186namespace {
Ted Kremenekab188932010-01-05 19:32:54 +0000187static enum CXCursorKind TranslateDeclRefExpr(DeclRefExpr *DRE) {
Steve Naroff4ade6d62009-09-23 17:52:52 +0000188 NamedDecl *D = DRE->getDecl();
189 if (isa<VarDecl>(D))
190 return CXCursor_VarRef;
191 else if (isa<FunctionDecl>(D))
192 return CXCursor_FunctionRef;
193 else if (isa<EnumConstantDecl>(D))
194 return CXCursor_EnumConstantRef;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000195 else
Steve Naroff4ade6d62009-09-23 17:52:52 +0000196 return CXCursor_NotImplemented;
197}
198
Steve Naroff89922f82009-08-31 00:59:03 +0000199// Translation Unit Visitor.
Ted Kremenekf1286182010-01-13 00:13:47 +0000200
Steve Naroff89922f82009-08-31 00:59:03 +0000201class TUVisitor : public DeclVisitor<TUVisitor> {
Ted Kremenekf1286182010-01-13 00:13:47 +0000202public:
203 typedef void (*Iterator)(void *, CXCursor, CXClientData);
204private:
205 void *Root; // CXDecl or CXTranslationUnit
206 Iterator Callback; // CXTranslationUnitIterator or CXDeclIterator.
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000207 CXClientData CData;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000208
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000209 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
210 // to the visitor. Declarations with a PCH level greater than this value will
211 // be suppressed.
212 unsigned MaxPCHLevel;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000213
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000214 void Call(const CXCursor &C) {
Ted Kremenek70ee5422010-01-16 01:44:12 +0000215 if (clang_isInvalid(C.kind))
216 return;
217
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000218 if (const Decl *D = getCursorDecl(C)) {
219 // Filter any declarations that have a PCH level greater than what
220 // we allow.
221 if (D->getPCHLevel() > MaxPCHLevel)
222 return;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000223
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000224 // Filter any implicit declarations (since the source info will be bogus).
225 if (D->isImplicit())
226 return;
227 }
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000228
Ted Kremenekf1286182010-01-13 00:13:47 +0000229 Callback(Root, C, CData);
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000230 }
Ted Kremenekf1286182010-01-13 00:13:47 +0000231
Steve Naroff89922f82009-08-31 00:59:03 +0000232public:
Ted Kremenekf1286182010-01-13 00:13:47 +0000233 TUVisitor(void *root, Iterator cback, CXClientData D, unsigned MaxPCHLevel) :
234 Root(root), Callback(cback), CData(D), MaxPCHLevel(MaxPCHLevel) {}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000235
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000236 void VisitDecl(Decl *D);
Ted Kremenekf1286182010-01-13 00:13:47 +0000237 void VisitDeclContext(DeclContext *DC);
Ted Kremenekf1286182010-01-13 00:13:47 +0000238 void VisitTranslationUnitDecl(TranslationUnitDecl *D);
Ted Kremenekf1286182010-01-13 00:13:47 +0000239};
Ted Kremenekef7fdc62009-11-17 07:02:15 +0000240
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000241void TUVisitor::VisitDecl(Decl *D) {
242 Call(MakeCXCursor(D));
243}
244
Ted Kremenekf1286182010-01-13 00:13:47 +0000245void TUVisitor::VisitDeclContext(DeclContext *DC) {
246 for (DeclContext::decl_iterator I = DC->decls_begin(), E = DC->decls_end();
247 I != E; ++I)
248 Visit(*I);
249}
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000250
Ted Kremenekf1286182010-01-13 00:13:47 +0000251void TUVisitor::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
252 VisitDeclContext(dyn_cast<DeclContext>(D));
253}
Steve Naroff89922f82009-08-31 00:59:03 +0000254
Steve Naroffc857ea42009-09-02 13:28:54 +0000255// Declaration visitor.
256class CDeclVisitor : public DeclVisitor<CDeclVisitor> {
257 CXDecl CDecl;
258 CXDeclIterator Callback;
259 CXClientData CData;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000260
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000261 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
262 // to the visitor. Declarations with a PCH level greater than this value will
263 // be suppressed.
264 unsigned MaxPCHLevel;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000265
Steve Naroffc857ea42009-09-02 13:28:54 +0000266 void Call(enum CXCursorKind CK, NamedDecl *ND) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000267 // Disable the callback when the context is equal to the visiting decl.
268 if (CDecl == ND && !clang_isReference(CK))
269 return;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000270
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000271 // Filter any declarations that have a PCH level greater than what we allow.
272 if (ND->getPCHLevel() > MaxPCHLevel)
273 return;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000274
Douglas Gregor283cae32010-01-15 21:56:13 +0000275 CXCursor C = { CK, { ND, 0, 0 } };
Steve Naroffc857ea42009-09-02 13:28:54 +0000276 Callback(CDecl, C, CData);
277 }
Douglas Gregor2e331b92010-01-16 14:00:32 +0000278
Steve Naroff89922f82009-08-31 00:59:03 +0000279public:
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000280 CDeclVisitor(CXDecl C, CXDeclIterator cback, CXClientData D,
281 unsigned MaxPCHLevel) :
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000282 CDecl(C), Callback(cback), CData(D), MaxPCHLevel(MaxPCHLevel) {}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000283
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000284 void VisitDeclContext(DeclContext *DC);
285 void VisitEnumConstantDecl(EnumConstantDecl *ND);
286 void VisitFieldDecl(FieldDecl *ND);
287 void VisitFunctionDecl(FunctionDecl *ND);
288 void VisitObjCCategoryDecl(ObjCCategoryDecl *ND);
289 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
290 void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
291 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
292 void VisitObjCIvarDecl(ObjCIvarDecl *ND);
293 void VisitObjCMethodDecl(ObjCMethodDecl *ND);
294 void VisitObjCPropertyDecl(ObjCPropertyDecl *ND);
295 void VisitObjCProtocolDecl(ObjCProtocolDecl *PID);
296 void VisitParmVarDecl(ParmVarDecl *ND);
297 void VisitTagDecl(TagDecl *D);
298 void VisitVarDecl(VarDecl *ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000299};
Ted Kremenekab188932010-01-05 19:32:54 +0000300} // end anonymous namespace
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000301
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000302void CDeclVisitor::VisitDeclContext(DeclContext *DC) {
303 for (DeclContext::decl_iterator
304 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I)
305 Visit(*I);
306}
307
308void CDeclVisitor::VisitEnumConstantDecl(EnumConstantDecl *ND) {
309 Call(CXCursor_EnumConstantDecl, ND);
310}
311
312void CDeclVisitor::VisitFieldDecl(FieldDecl *ND) {
313 Call(CXCursor_FieldDecl, ND);
314}
315
316void CDeclVisitor::VisitFunctionDecl(FunctionDecl *ND) {
317 if (ND->isThisDeclarationADefinition()) {
318 VisitDeclContext(dyn_cast<DeclContext>(ND));
319#if 0
320 // Not currently needed.
321 CompoundStmt *Body = dyn_cast<CompoundStmt>(ND->getBody());
322 CRefVisitor RVisit(CDecl, Callback, CData);
323 RVisit.Visit(Body);
324#endif
325 }
326}
327
328void CDeclVisitor::VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
329 // Issue callbacks for the containing class.
Douglas Gregor1adb0822010-01-16 17:14:40 +0000330 Callback(CDecl,
331 MakeCursorObjCClassRef(ND->getClassInterface(), ND->getLocation()),
332 CData);
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000333 ObjCCategoryDecl::protocol_loc_iterator PL = ND->protocol_loc_begin();
334 for (ObjCCategoryDecl::protocol_iterator I = ND->protocol_begin(),
335 E = ND->protocol_end(); I != E; ++I, ++PL)
336 Callback(CDecl, MakeCursorObjCProtocolRef(*I, *PL), CData);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000337 VisitDeclContext(dyn_cast<DeclContext>(ND));
338}
339
340void CDeclVisitor::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
341 VisitDeclContext(dyn_cast<DeclContext>(D));
342}
343
344void CDeclVisitor::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
345 VisitDeclContext(dyn_cast<DeclContext>(D));
346}
347
348void CDeclVisitor::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
349 // Issue callbacks for super class.
350 if (D->getSuperClass())
Douglas Gregor2e331b92010-01-16 14:00:32 +0000351 Callback(CDecl,
352 MakeCursorObjCSuperClassRef(D->getSuperClass(),
353 D->getSuperClassLoc()),
354 CData);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000355
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000356 ObjCInterfaceDecl::protocol_loc_iterator PL = D->protocol_loc_begin();
357 for (ObjCInterfaceDecl::protocol_iterator I = D->protocol_begin(),
358 E = D->protocol_end(); I != E; ++I, ++PL)
359 Callback(CDecl, MakeCursorObjCProtocolRef(*I, *PL), CData);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000360 VisitDeclContext(dyn_cast<DeclContext>(D));
361}
362
363void CDeclVisitor::VisitObjCIvarDecl(ObjCIvarDecl *ND) {
364 Call(CXCursor_ObjCIvarDecl, ND);
365}
366
367void CDeclVisitor::VisitObjCMethodDecl(ObjCMethodDecl *ND) {
Douglas Gregorb6998662010-01-19 19:34:47 +0000368 Call(ND->isInstanceMethod() ? CXCursor_ObjCInstanceMethodDecl
369 : CXCursor_ObjCClassMethodDecl, ND);
370
371 if (ND->getBody())
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000372 VisitDeclContext(dyn_cast<DeclContext>(ND));
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000373}
374
375void CDeclVisitor::VisitObjCPropertyDecl(ObjCPropertyDecl *ND) {
376 Call(CXCursor_ObjCPropertyDecl, ND);
377}
378
379void CDeclVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000380 ObjCProtocolDecl::protocol_loc_iterator PL = PID->protocol_loc_begin();
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000381 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000382 E = PID->protocol_end(); I != E; ++I, ++PL)
383 Callback(CDecl, MakeCursorObjCProtocolRef(*I, *PL), CData);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000384
385 VisitDeclContext(dyn_cast<DeclContext>(PID));
386}
387
388void CDeclVisitor::VisitParmVarDecl(ParmVarDecl *ND) {
389 Call(CXCursor_ParmDecl, ND);
390}
391
392void CDeclVisitor::VisitTagDecl(TagDecl *D) {
393 VisitDeclContext(dyn_cast<DeclContext>(D));
394}
395
396void CDeclVisitor::VisitVarDecl(VarDecl *ND) {
397 Call(CXCursor_VarDecl, ND);
398}
399
Daniel Dunbar140fce22010-01-12 02:34:07 +0000400CXString CIndexer::createCXString(const char *String, bool DupString){
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000401 CXString Str;
402 if (DupString) {
403 Str.Spelling = strdup(String);
404 Str.MustFreeString = 1;
405 } else {
406 Str.Spelling = String;
407 Str.MustFreeString = 0;
408 }
409 return Str;
410}
411
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000412extern "C" {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000413CXIndex clang_createIndex(int excludeDeclarationsFromPCH,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000414 int displayDiagnostics) {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000415 CIndexer *CIdxr = new CIndexer(new Program());
416 if (excludeDeclarationsFromPCH)
417 CIdxr->setOnlyLocalDecls();
418 if (displayDiagnostics)
419 CIdxr->setDisplayDiagnostics();
420 return CIdxr;
Steve Naroff600866c2009-08-27 19:51:58 +0000421}
422
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000423void clang_disposeIndex(CXIndex CIdx) {
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000424 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000425 delete static_cast<CIndexer *>(CIdx);
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000426}
427
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000428void clang_setUseExternalASTGeneration(CXIndex CIdx, int value) {
429 assert(CIdx && "Passed null CXIndex");
430 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
431 CXXIdx->setUseExternalASTGeneration(value);
432}
433
Steve Naroff50398192009-08-28 15:28:48 +0000434// FIXME: need to pass back error info.
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000435CXTranslationUnit clang_createTranslationUnit(CXIndex CIdx,
436 const char *ast_filename) {
Steve Naroff50398192009-08-28 15:28:48 +0000437 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000438 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000439
Daniel Dunbar5262fda2009-12-03 01:45:44 +0000440 return ASTUnit::LoadFromPCHFile(ast_filename, CXXIdx->getDiags(),
441 CXXIdx->getOnlyLocalDecls(),
442 /* UseBumpAllocator = */ true);
Steve Naroff600866c2009-08-27 19:51:58 +0000443}
444
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000445CXTranslationUnit
446clang_createTranslationUnitFromSourceFile(CXIndex CIdx,
447 const char *source_filename,
448 int num_command_line_args,
449 const char **command_line_args) {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000450 assert(CIdx && "Passed null CXIndex");
451 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
452
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000453 if (!CXXIdx->getUseExternalASTGeneration()) {
454 llvm::SmallVector<const char *, 16> Args;
455
456 // The 'source_filename' argument is optional. If the caller does not
457 // specify it then it is assumed that the source file is specified
458 // in the actual argument list.
459 if (source_filename)
460 Args.push_back(source_filename);
461 Args.insert(Args.end(), command_line_args,
462 command_line_args + num_command_line_args);
463
Daniel Dunbar94220972009-12-05 02:17:18 +0000464 unsigned NumErrors = CXXIdx->getDiags().getNumErrors();
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000465
Ted Kremenek29b72842010-01-07 22:49:05 +0000466#ifdef USE_CRASHTRACER
467 ArgsCrashTracerInfo ACTI(Args);
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000468#endif
469
Daniel Dunbar94220972009-12-05 02:17:18 +0000470 llvm::OwningPtr<ASTUnit> Unit(
471 ASTUnit::LoadFromCommandLine(Args.data(), Args.data() + Args.size(),
Daniel Dunbar869824e2009-12-13 03:46:13 +0000472 CXXIdx->getDiags(),
473 CXXIdx->getClangResourcesPath(),
Daniel Dunbar94220972009-12-05 02:17:18 +0000474 CXXIdx->getOnlyLocalDecls(),
475 /* UseBumpAllocator = */ true));
Ted Kremenek29b72842010-01-07 22:49:05 +0000476
Daniel Dunbar94220972009-12-05 02:17:18 +0000477 // FIXME: Until we have broader testing, just drop the entire AST if we
478 // encountered an error.
479 if (NumErrors != CXXIdx->getDiags().getNumErrors())
480 return 0;
481
482 return Unit.take();
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000483 }
484
Ted Kremenek139ba862009-10-22 00:03:57 +0000485 // Build up the arguments for invoking 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000486 std::vector<const char *> argv;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000487
Ted Kremenek139ba862009-10-22 00:03:57 +0000488 // First add the complete path to the 'clang' executable.
489 llvm::sys::Path ClangPath = static_cast<CIndexer *>(CIdx)->getClangPath();
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000490 argv.push_back(ClangPath.c_str());
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000491
Ted Kremenek139ba862009-10-22 00:03:57 +0000492 // Add the '-emit-ast' option as our execution mode for 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000493 argv.push_back("-emit-ast");
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000494
Ted Kremenek139ba862009-10-22 00:03:57 +0000495 // The 'source_filename' argument is optional. If the caller does not
496 // specify it then it is assumed that the source file is specified
497 // in the actual argument list.
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000498 if (source_filename)
499 argv.push_back(source_filename);
Ted Kremenek139ba862009-10-22 00:03:57 +0000500
Steve Naroff37b5ac22009-10-15 20:50:09 +0000501 // Generate a temporary name for the AST file.
Ted Kremenek139ba862009-10-22 00:03:57 +0000502 argv.push_back("-o");
Steve Naroff37b5ac22009-10-15 20:50:09 +0000503 char astTmpFile[L_tmpnam];
Ted Kremenek74cd0692009-10-15 23:21:22 +0000504 argv.push_back(tmpnam(astTmpFile));
Ted Kremenek139ba862009-10-22 00:03:57 +0000505
506 // Process the compiler options, stripping off '-o', '-c', '-fsyntax-only'.
507 for (int i = 0; i < num_command_line_args; ++i)
508 if (const char *arg = command_line_args[i]) {
509 if (strcmp(arg, "-o") == 0) {
510 ++i; // Also skip the matching argument.
511 continue;
512 }
513 if (strcmp(arg, "-emit-ast") == 0 ||
514 strcmp(arg, "-c") == 0 ||
515 strcmp(arg, "-fsyntax-only") == 0) {
516 continue;
517 }
518
519 // Keep the argument.
520 argv.push_back(arg);
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000521 }
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000522
Ted Kremenek139ba862009-10-22 00:03:57 +0000523 // Add the null terminator.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000524 argv.push_back(NULL);
525
Ted Kremenekfeb15e32009-10-26 22:14:08 +0000526 // Invoke 'clang'.
527 llvm::sys::Path DevNull; // leave empty, causes redirection to /dev/null
528 // on Unix or NUL (Windows).
Ted Kremenek379afec2009-10-22 03:24:01 +0000529 std::string ErrMsg;
Ted Kremenekc46e4632009-10-19 22:27:32 +0000530 const llvm::sys::Path *Redirects[] = { &DevNull, &DevNull, &DevNull, NULL };
Ted Kremenek379afec2009-10-22 03:24:01 +0000531 llvm::sys::Program::ExecuteAndWait(ClangPath, &argv[0], /* env */ NULL,
532 /* redirects */ !CXXIdx->getDisplayDiagnostics() ? &Redirects[0] : NULL,
533 /* secondsToWait */ 0, /* memoryLimits */ 0, &ErrMsg);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000534
Ted Kremenek0854d702009-11-10 19:18:52 +0000535 if (CXXIdx->getDisplayDiagnostics() && !ErrMsg.empty()) {
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000536 llvm::errs() << "clang_createTranslationUnitFromSourceFile: " << ErrMsg
Daniel Dunbaracca7252009-11-30 20:42:49 +0000537 << '\n' << "Arguments: \n";
Ted Kremenek379afec2009-10-22 03:24:01 +0000538 for (std::vector<const char*>::iterator I = argv.begin(), E = argv.end();
Ted Kremenek779e5f42009-10-26 22:08:39 +0000539 I!=E; ++I) {
540 if (*I)
541 llvm::errs() << ' ' << *I << '\n';
542 }
543 llvm::errs() << '\n';
Ted Kremenek379afec2009-10-22 03:24:01 +0000544 }
Benjamin Kramer0829a832009-10-18 11:19:36 +0000545
Steve Naroff37b5ac22009-10-15 20:50:09 +0000546 // Finally, we create the translation unit from the ast file.
Steve Naroffe19944c2009-10-15 22:23:48 +0000547 ASTUnit *ATU = static_cast<ASTUnit *>(
Daniel Dunbaracca7252009-11-30 20:42:49 +0000548 clang_createTranslationUnit(CIdx, astTmpFile));
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000549 if (ATU)
550 ATU->unlinkTemporaryFile();
Steve Naroffe19944c2009-10-15 22:23:48 +0000551 return ATU;
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000552}
553
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000554void clang_disposeTranslationUnit(CXTranslationUnit CTUnit) {
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000555 assert(CTUnit && "Passed null CXTranslationUnit");
556 delete static_cast<ASTUnit *>(CTUnit);
557}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000558
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000559CXString clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000560 assert(CTUnit && "Passed null CXTranslationUnit");
Steve Naroff77accc12009-09-03 18:19:54 +0000561 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
Ted Kremenek4b333d22010-01-12 00:36:38 +0000562 return CIndexer::createCXString(CXXUnit->getOriginalSourceFileName().c_str(),
563 true);
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000564}
Daniel Dunbar1eb79b52009-08-28 16:30:07 +0000565
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000566void clang_loadTranslationUnit(CXTranslationUnit CTUnit,
Steve Naroffc857ea42009-09-02 13:28:54 +0000567 CXTranslationUnitIterator callback,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000568 CXClientData CData) {
Steve Naroff50398192009-08-28 15:28:48 +0000569 assert(CTUnit && "Passed null CXTranslationUnit");
570 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
571 ASTContext &Ctx = CXXUnit->getASTContext();
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000572
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000573 unsigned PCHLevel = Decl::MaxPCHLevel;
574
575 // Set the PCHLevel to filter out unwanted decls if requested.
576 if (CXXUnit->getOnlyLocalDecls()) {
577 PCHLevel = 0;
578
579 // If the main input was an AST, bump the level.
580 if (CXXUnit->isMainFileAST())
581 ++PCHLevel;
582 }
583
584 TUVisitor DVisit(CTUnit, callback, CData, PCHLevel);
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000585
586 // If using a non-AST based ASTUnit, iterate over the stored list of top-level
587 // decls.
588 if (!CXXUnit->isMainFileAST() && CXXUnit->getOnlyLocalDecls()) {
589 const std::vector<Decl*> &TLDs = CXXUnit->getTopLevelDecls();
590 for (std::vector<Decl*>::const_iterator it = TLDs.begin(),
591 ie = TLDs.end(); it != ie; ++it) {
592 DVisit.Visit(*it);
593 }
594 } else
595 DVisit.Visit(Ctx.getTranslationUnitDecl());
Steve Naroff600866c2009-08-27 19:51:58 +0000596}
597
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000598void clang_loadDeclaration(CXDecl Dcl,
599 CXDeclIterator callback,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000600 CXClientData CData) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000601 assert(Dcl && "Passed null CXDecl");
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000602
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000603 CDeclVisitor DVisit(Dcl, callback, CData,
604 static_cast<Decl *>(Dcl)->getPCHLevel());
Steve Naroffc857ea42009-09-02 13:28:54 +0000605 DVisit.Visit(static_cast<Decl *>(Dcl));
Steve Naroff600866c2009-08-27 19:51:58 +0000606}
Ted Kremenekfb480492010-01-13 21:46:36 +0000607} // end: extern "C"
Steve Naroff600866c2009-08-27 19:51:58 +0000608
Ted Kremenekfb480492010-01-13 21:46:36 +0000609//===----------------------------------------------------------------------===//
Steve Naroff600866c2009-08-27 19:51:58 +0000610// CXDecl Operations.
Ted Kremenekfb480492010-01-13 21:46:36 +0000611//===----------------------------------------------------------------------===//
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000612
Ted Kremenekfb480492010-01-13 21:46:36 +0000613static const FileEntry *getFileEntryFromSourceLocation(SourceManager &SMgr,
614 SourceLocation SLoc) {
615 FileID FID;
616 if (SLoc.isFileID())
617 FID = SMgr.getFileID(SLoc);
618 else
619 FID = SMgr.getDecomposedSpellingLoc(SLoc).first;
620 return SMgr.getFileEntryForID(FID);
621}
622
623extern "C" {
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000624CXString clang_getDeclSpelling(CXDecl AnonDecl) {
Steve Naroff89922f82009-08-31 00:59:03 +0000625 assert(AnonDecl && "Passed null CXDecl");
626 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
Steve Naroffef0cef62009-11-09 17:45:52 +0000627
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000628 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
Ted Kremenek4b333d22010-01-12 00:36:38 +0000629 return CIndexer::createCXString(OMD->getSelector().getAsString().c_str(),
630 true);
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000631
632 if (ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND))
Steve Naroff0d69b8c2009-10-29 21:11:04 +0000633 // No, this isn't the same as the code below. getIdentifier() is non-virtual
634 // and returns different names. NamedDecl returns the class name and
635 // ObjCCategoryImplDecl returns the category name.
Ted Kremenek4b333d22010-01-12 00:36:38 +0000636 return CIndexer::createCXString(CIMP->getIdentifier()->getNameStart());
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000637
638 if (ND->getIdentifier())
Ted Kremenek4b333d22010-01-12 00:36:38 +0000639 return CIndexer::createCXString(ND->getIdentifier()->getNameStart());
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000640
Ted Kremenek4b333d22010-01-12 00:36:38 +0000641 return CIndexer::createCXString("");
Steve Naroff600866c2009-08-27 19:51:58 +0000642}
Steve Narofff334b4e2009-09-02 18:26:48 +0000643
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000644unsigned clang_getDeclLine(CXDecl AnonDecl) {
Steve Naroff699a07d2009-09-25 21:32:34 +0000645 assert(AnonDecl && "Passed null CXDecl");
646 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
647 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
648 return SourceMgr.getSpellingLineNumber(ND->getLocation());
649}
650
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000651unsigned clang_getDeclColumn(CXDecl AnonDecl) {
Steve Naroff699a07d2009-09-25 21:32:34 +0000652 assert(AnonDecl && "Passed null CXDecl");
653 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
654 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Naroff74165242009-09-25 22:15:54 +0000655 return SourceMgr.getSpellingColumnNumber(ND->getLocation());
Steve Naroff699a07d2009-09-25 21:32:34 +0000656}
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000657
Douglas Gregor3c7313d2010-01-18 22:13:09 +0000658CXSourceRange clang_getDeclExtent(CXDecl AnonDecl) {
Douglas Gregora7bde202010-01-19 00:34:46 +0000659 return clang_getCursorExtent(clang_getCursorFromDecl(AnonDecl));
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000660}
Steve Naroff699a07d2009-09-25 21:32:34 +0000661
Ted Kremenek6ab9db12010-01-08 17:11:32 +0000662const char *clang_getDeclSource(CXDecl AnonDecl) {
663 assert(AnonDecl && "Passed null CXDecl");
664 FileEntry *FEnt = static_cast<FileEntry *>(clang_getDeclSourceFile(AnonDecl));
665 assert(FEnt && "Cannot find FileEntry for Decl");
666 return clang_getFileName(FEnt);
667}
668
Steve Naroff88145032009-10-27 14:35:18 +0000669
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000670CXFile clang_getDeclSourceFile(CXDecl AnonDecl) {
Steve Naroff88145032009-10-27 14:35:18 +0000671 assert(AnonDecl && "Passed null CXDecl");
Steve Naroffee9405e2009-09-25 21:45:39 +0000672 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
673 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Naroff88145032009-10-27 14:35:18 +0000674 return (void *)getFileEntryFromSourceLocation(SourceMgr, ND->getLocation());
675}
Ted Kremenekfb480492010-01-13 21:46:36 +0000676} // end: extern "C"
Steve Naroff88145032009-10-27 14:35:18 +0000677
Ted Kremenekfb480492010-01-13 21:46:36 +0000678//===----------------------------------------------------------------------===//
679// CXFile Operations.
680//===----------------------------------------------------------------------===//
681
682extern "C" {
Steve Naroff88145032009-10-27 14:35:18 +0000683const char *clang_getFileName(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000684 if (!SFile)
685 return 0;
686
Steve Naroff88145032009-10-27 14:35:18 +0000687 assert(SFile && "Passed null CXFile");
688 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
689 return FEnt->getName();
690}
691
692time_t clang_getFileTime(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000693 if (!SFile)
694 return 0;
695
Steve Naroff88145032009-10-27 14:35:18 +0000696 assert(SFile && "Passed null CXFile");
697 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
698 return FEnt->getModificationTime();
Steve Naroffee9405e2009-09-25 21:45:39 +0000699}
Ted Kremenekfb480492010-01-13 21:46:36 +0000700} // end: extern "C"
Steve Naroffee9405e2009-09-25 21:45:39 +0000701
Ted Kremenekfb480492010-01-13 21:46:36 +0000702//===----------------------------------------------------------------------===//
703// CXCursor Operations.
704//===----------------------------------------------------------------------===//
705
Ted Kremenekfb480492010-01-13 21:46:36 +0000706static Decl *getDeclFromExpr(Stmt *E) {
707 if (DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E))
708 return RefExpr->getDecl();
709 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
710 return ME->getMemberDecl();
711 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E))
712 return RE->getDecl();
713
714 if (CallExpr *CE = dyn_cast<CallExpr>(E))
715 return getDeclFromExpr(CE->getCallee());
716 if (CastExpr *CE = dyn_cast<CastExpr>(E))
717 return getDeclFromExpr(CE->getSubExpr());
718 if (ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E))
719 return OME->getMethodDecl();
720
721 return 0;
722}
723
724extern "C" {
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000725CXString clang_getCursorSpelling(CXCursor C) {
Daniel Dunbarc81d7182010-01-18 17:52:42 +0000726 assert(getCursorDecl(C) && "CXCursor has null decl");
Steve Narofff334b4e2009-09-02 18:26:48 +0000727 if (clang_isReference(C.kind)) {
728 switch (C.kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +0000729 case CXCursor_ObjCSuperClassRef: {
Douglas Gregor2e331b92010-01-16 14:00:32 +0000730 ObjCInterfaceDecl *Super = getCursorObjCSuperClassRef(C).first;
731 return CIndexer::createCXString(Super->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +0000732 }
733 case CXCursor_ObjCClassRef: {
Douglas Gregor1adb0822010-01-16 17:14:40 +0000734 ObjCInterfaceDecl *Class = getCursorObjCClassRef(C).first;
735 return CIndexer::createCXString(Class->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +0000736 }
737 case CXCursor_ObjCProtocolRef: {
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000738 ObjCProtocolDecl *OID = getCursorObjCProtocolRef(C).first;
Douglas Gregorf46034a2010-01-18 23:41:10 +0000739 assert(OID && "getCursorSpelling(): Missing protocol decl");
Ted Kremenek4b333d22010-01-12 00:36:38 +0000740 return CIndexer::createCXString(OID->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +0000741 }
742 case CXCursor_ObjCSelectorRef: {
Douglas Gregor283cae32010-01-15 21:56:13 +0000743 ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(getCursorStmt(C));
Douglas Gregorf46034a2010-01-18 23:41:10 +0000744 assert(OME && "getCursorSpelling(): Missing message expr");
Ted Kremenek4b333d22010-01-12 00:36:38 +0000745 return CIndexer::createCXString(OME->getSelector().getAsString().c_str(),
746 true);
Daniel Dunbaracca7252009-11-30 20:42:49 +0000747 }
748 case CXCursor_VarRef:
749 case CXCursor_FunctionRef:
750 case CXCursor_EnumConstantRef: {
Douglas Gregor283cae32010-01-15 21:56:13 +0000751 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(getCursorStmt(C));
Douglas Gregorf46034a2010-01-18 23:41:10 +0000752 assert(DRE && "getCursorSpelling(): Missing decl ref expr");
Ted Kremenek4b333d22010-01-12 00:36:38 +0000753 return CIndexer::createCXString(DRE->getDecl()->getIdentifier()
754 ->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +0000755 }
756 default:
Ted Kremenek4b333d22010-01-12 00:36:38 +0000757 return CIndexer::createCXString("<not implemented>");
Steve Narofff334b4e2009-09-02 18:26:48 +0000758 }
759 }
Douglas Gregor283cae32010-01-15 21:56:13 +0000760 return clang_getDeclSpelling(getCursorDecl(C));
Steve Narofff334b4e2009-09-02 18:26:48 +0000761}
762
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000763const char *clang_getCursorKindSpelling(enum CXCursorKind Kind) {
Steve Naroff89922f82009-08-31 00:59:03 +0000764 switch (Kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +0000765 case CXCursor_FunctionDecl: return "FunctionDecl";
766 case CXCursor_TypedefDecl: return "TypedefDecl";
767 case CXCursor_EnumDecl: return "EnumDecl";
768 case CXCursor_EnumConstantDecl: return "EnumConstantDecl";
769 case CXCursor_StructDecl: return "StructDecl";
770 case CXCursor_UnionDecl: return "UnionDecl";
771 case CXCursor_ClassDecl: return "ClassDecl";
772 case CXCursor_FieldDecl: return "FieldDecl";
773 case CXCursor_VarDecl: return "VarDecl";
774 case CXCursor_ParmDecl: return "ParmDecl";
775 case CXCursor_ObjCInterfaceDecl: return "ObjCInterfaceDecl";
776 case CXCursor_ObjCCategoryDecl: return "ObjCCategoryDecl";
777 case CXCursor_ObjCProtocolDecl: return "ObjCProtocolDecl";
778 case CXCursor_ObjCPropertyDecl: return "ObjCPropertyDecl";
779 case CXCursor_ObjCIvarDecl: return "ObjCIvarDecl";
Ted Kremenekdeb06bd2010-01-16 02:02:09 +0000780 case CXCursor_ObjCIvarRef: return "ObjCIvarRef";
Daniel Dunbaracca7252009-11-30 20:42:49 +0000781 case CXCursor_ObjCInstanceMethodDecl: return "ObjCInstanceMethodDecl";
782 case CXCursor_ObjCClassMethodDecl: return "ObjCClassMethodDecl";
Douglas Gregorb6998662010-01-19 19:34:47 +0000783 case CXCursor_ObjCImplementationDecl: return "ObjCImplementationDecl";
784 case CXCursor_ObjCCategoryImplDecl: return "ObjCCategoryImplDecl";
Daniel Dunbaracca7252009-11-30 20:42:49 +0000785 case CXCursor_ObjCSuperClassRef: return "ObjCSuperClassRef";
786 case CXCursor_ObjCProtocolRef: return "ObjCProtocolRef";
787 case CXCursor_ObjCClassRef: return "ObjCClassRef";
788 case CXCursor_ObjCSelectorRef: return "ObjCSelectorRef";
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000789
Daniel Dunbaracca7252009-11-30 20:42:49 +0000790 case CXCursor_VarRef: return "VarRef";
791 case CXCursor_FunctionRef: return "FunctionRef";
792 case CXCursor_EnumConstantRef: return "EnumConstantRef";
793 case CXCursor_MemberRef: return "MemberRef";
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000794
Daniel Dunbaracca7252009-11-30 20:42:49 +0000795 case CXCursor_InvalidFile: return "InvalidFile";
796 case CXCursor_NoDeclFound: return "NoDeclFound";
797 case CXCursor_NotImplemented: return "NotImplemented";
Steve Naroff89922f82009-08-31 00:59:03 +0000798 }
Ted Kremenekdeb06bd2010-01-16 02:02:09 +0000799
800 llvm_unreachable("Unhandled CXCursorKind");
801 return NULL;
Steve Naroff600866c2009-08-27 19:51:58 +0000802}
Steve Naroff89922f82009-08-31 00:59:03 +0000803
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000804CXCursor clang_getCursor(CXTranslationUnit CTUnit, const char *source_name,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000805 unsigned line, unsigned column) {
Steve Naroff9efa7672009-09-04 15:44:05 +0000806 assert(CTUnit && "Passed null CXTranslationUnit");
807 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000808
Steve Naroff9efa7672009-09-04 15:44:05 +0000809 FileManager &FMgr = CXXUnit->getFileManager();
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000810 const FileEntry *File = FMgr.getFile(source_name,
811 source_name+strlen(source_name));
Ted Kremenekf4629892010-01-14 01:51:23 +0000812 if (!File)
813 return clang_getNullCursor();
814
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000815 SourceLocation SLoc =
Steve Naroff9efa7672009-09-04 15:44:05 +0000816 CXXUnit->getSourceManager().getLocation(File, line, column);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000817
Steve Narofff96b5242009-10-28 20:44:47 +0000818 ASTLocation LastLoc = CXXUnit->getLastASTLocation();
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000819 ASTLocation ALoc = ResolveLocationInAST(CXXUnit->getASTContext(), SLoc,
Steve Narofff96b5242009-10-28 20:44:47 +0000820 &LastLoc);
Ted Kremenekf4629892010-01-14 01:51:23 +0000821
822 // FIXME: This doesn't look thread-safe.
Steve Narofff96b5242009-10-28 20:44:47 +0000823 if (ALoc.isValid())
824 CXXUnit->setLastASTLocation(ALoc);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000825
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +0000826 Decl *Dcl = ALoc.getParentDecl();
Argyrios Kyrtzidis05a76512009-09-29 19:45:58 +0000827 if (ALoc.isNamedRef())
828 Dcl = ALoc.AsNamedRef().ND;
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +0000829 Stmt *Stm = ALoc.dyn_AsStmt();
Steve Naroff4ade6d62009-09-23 17:52:52 +0000830 if (Dcl) {
831 if (Stm) {
Ted Kremenekfb480492010-01-13 21:46:36 +0000832 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Stm))
Douglas Gregorf46034a2010-01-18 23:41:10 +0000833 return MakeCXCursor(TranslateDeclRefExpr(DRE), Dcl, Stm,
834 CXXUnit->getASTContext());
Ted Kremenekfb480492010-01-13 21:46:36 +0000835 else if (ObjCMessageExpr *MExp = dyn_cast<ObjCMessageExpr>(Stm))
Douglas Gregorf46034a2010-01-18 23:41:10 +0000836 return MakeCXCursor(CXCursor_ObjCSelectorRef, Dcl, MExp,
837 CXXUnit->getASTContext());
Steve Naroff4ade6d62009-09-23 17:52:52 +0000838 // Fall through...treat as a decl, not a ref.
839 }
Steve Naroff85e2db72009-10-01 00:31:07 +0000840 if (ALoc.isNamedRef()) {
Douglas Gregor1adb0822010-01-16 17:14:40 +0000841 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(Dcl))
842 return MakeCursorObjCClassRef(Class, ALoc.AsNamedRef().Loc);
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000843 if (ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(Dcl))
844 return MakeCursorObjCProtocolRef(Proto, ALoc.AsNamedRef().Loc);
Steve Naroff85e2db72009-10-01 00:31:07 +0000845 }
Ted Kremenek70ee5422010-01-16 01:44:12 +0000846 return MakeCXCursor(Dcl);
Steve Naroff77128dd2009-09-15 20:25:34 +0000847 }
Ted Kremenekfb480492010-01-13 21:46:36 +0000848 return MakeCXCursor(CXCursor_NoDeclFound, 0);
Steve Naroff600866c2009-08-27 19:51:58 +0000849}
850
Ted Kremenek73885552009-11-17 19:28:59 +0000851CXCursor clang_getNullCursor(void) {
Ted Kremenekfb480492010-01-13 21:46:36 +0000852 return MakeCXCursor(CXCursor_InvalidFile, 0);
Ted Kremenek73885552009-11-17 19:28:59 +0000853}
854
855unsigned clang_equalCursors(CXCursor X, CXCursor Y) {
Douglas Gregor283cae32010-01-15 21:56:13 +0000856 return X == Y;
Ted Kremenek73885552009-11-17 19:28:59 +0000857}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000858
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000859CXCursor clang_getCursorFromDecl(CXDecl AnonDecl) {
Steve Naroff77128dd2009-09-15 20:25:34 +0000860 assert(AnonDecl && "Passed null CXDecl");
Ted Kremenekdeb06bd2010-01-16 02:02:09 +0000861 return MakeCXCursor(static_cast<NamedDecl *>(AnonDecl));
Steve Naroff77128dd2009-09-15 20:25:34 +0000862}
863
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000864unsigned clang_isInvalid(enum CXCursorKind K) {
Steve Naroff77128dd2009-09-15 20:25:34 +0000865 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
866}
867
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000868unsigned clang_isDeclaration(enum CXCursorKind K) {
Steve Naroff89922f82009-08-31 00:59:03 +0000869 return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl;
870}
Steve Naroff2d4d6292009-08-31 14:26:51 +0000871
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000872unsigned clang_isReference(enum CXCursorKind K) {
Steve Narofff334b4e2009-09-02 18:26:48 +0000873 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
874}
875
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000876CXCursorKind clang_getCursorKind(CXCursor C) {
Steve Naroff9efa7672009-09-04 15:44:05 +0000877 return C.kind;
878}
879
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000880CXDecl clang_getCursorDecl(CXCursor C) {
Douglas Gregorb6998662010-01-19 19:34:47 +0000881 if (clang_isDeclaration(C.kind))
Douglas Gregor283cae32010-01-15 21:56:13 +0000882 return getCursorDecl(C);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000883
Steve Naroff699a07d2009-09-25 21:32:34 +0000884 if (clang_isReference(C.kind)) {
Douglas Gregor1adb0822010-01-16 17:14:40 +0000885 if (getCursorStmt(C))
886 return getDeclFromExpr(getCursorStmt(C));
887
888 return getCursorDecl(C);
Steve Naroff699a07d2009-09-25 21:32:34 +0000889 }
890 return 0;
Steve Naroff9efa7672009-09-04 15:44:05 +0000891}
892
Douglas Gregor98258af2010-01-18 22:46:11 +0000893CXSourceLocation clang_getCursorLocation(CXCursor C) {
894 if (clang_isReference(C.kind)) {
Douglas Gregorf46034a2010-01-18 23:41:10 +0000895 switch (C.kind) {
896 case CXCursor_ObjCSuperClassRef: {
897 std::pair<ObjCInterfaceDecl *, SourceLocation> P
898 = getCursorObjCSuperClassRef(C);
899 SourceManager &SM = P.first->getASTContext().getSourceManager();
900 return translateSourceLocation(SM, P.second);
901 }
902
903 case CXCursor_ObjCProtocolRef: {
904 std::pair<ObjCProtocolDecl *, SourceLocation> P
905 = getCursorObjCProtocolRef(C);
906 SourceManager &SM = P.first->getASTContext().getSourceManager();
907 return translateSourceLocation(SM, P.second);
908 }
909
910 case CXCursor_ObjCClassRef: {
911 std::pair<ObjCInterfaceDecl *, SourceLocation> P
912 = getCursorObjCClassRef(C);
913 SourceManager &SM = P.first->getASTContext().getSourceManager();
914 return translateSourceLocation(SM, P.second);
915 }
916
917 case CXCursor_ObjCSelectorRef:
918 case CXCursor_ObjCIvarRef:
919 case CXCursor_VarRef:
920 case CXCursor_FunctionRef:
921 case CXCursor_EnumConstantRef:
922 case CXCursor_MemberRef: {
923 Expr *E = getCursorExpr(C);
924 SourceManager &SM = getCursorContext(C).getSourceManager();
925 if (ObjCMessageExpr *Msg = dyn_cast<ObjCMessageExpr>(E))
926 return translateSourceLocation(SM, /*FIXME:*/Msg->getLeftLoc());
927 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
928 return translateSourceLocation(SM, DRE->getLocation());
929 if (MemberExpr *Member = dyn_cast<MemberExpr>(E))
930 return translateSourceLocation(SM, Member->getMemberLoc());
931 if (ObjCIvarRefExpr *Ivar = dyn_cast<ObjCIvarRefExpr>(E))
932 return translateSourceLocation(SM, Ivar->getLocation());
933 return translateSourceLocation(SM, E->getLocStart());
934 }
935
936 default:
937 // FIXME: Need a way to enumerate all non-reference cases.
938 llvm_unreachable("Missed a reference kind");
939 }
Douglas Gregor98258af2010-01-18 22:46:11 +0000940 }
941
942 if (!getCursorDecl(C)) {
943 CXSourceLocation empty = { 0, 0, 0 };
944 return empty;
945 }
946
Douglas Gregorf46034a2010-01-18 23:41:10 +0000947 Decl *D = getCursorDecl(C);
948 SourceManager &SM = D->getASTContext().getSourceManager();
949 SourceLocation Loc = D->getLocation();
950 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(D))
951 Loc = Class->getClassLoc();
952 return translateSourceLocation(SM, Loc);
Douglas Gregor98258af2010-01-18 22:46:11 +0000953}
Douglas Gregora7bde202010-01-19 00:34:46 +0000954
955CXSourceRange clang_getCursorExtent(CXCursor C) {
956 if (clang_isReference(C.kind)) {
957 switch (C.kind) {
958 case CXCursor_ObjCSuperClassRef: {
959 std::pair<ObjCInterfaceDecl *, SourceLocation> P
960 = getCursorObjCSuperClassRef(C);
961 return translateSourceRange(P.first->getASTContext(), P.second);
962 }
963
964 case CXCursor_ObjCProtocolRef: {
965 std::pair<ObjCProtocolDecl *, SourceLocation> P
966 = getCursorObjCProtocolRef(C);
967 return translateSourceRange(P.first->getASTContext(), P.second);
968 }
969
970 case CXCursor_ObjCClassRef: {
971 std::pair<ObjCInterfaceDecl *, SourceLocation> P
972 = getCursorObjCClassRef(C);
973
974 return translateSourceRange(P.first->getASTContext(), P.second);
975 }
976
977 case CXCursor_ObjCSelectorRef:
978 case CXCursor_ObjCIvarRef:
979 case CXCursor_VarRef:
980 case CXCursor_FunctionRef:
981 case CXCursor_EnumConstantRef:
982 case CXCursor_MemberRef:
983 return translateSourceRange(getCursorContext(C),
984 getCursorExpr(C)->getSourceRange());
985
986 default:
987 // FIXME: Need a way to enumerate all non-reference cases.
988 llvm_unreachable("Missed a reference kind");
989 }
990 }
991
992 if (!getCursorDecl(C)) {
993 CXSourceRange empty = { { 0, 0, 0 }, { 0, 0, 0 } };
994 return empty;
995 }
996
997 Decl *D = getCursorDecl(C);
998 return translateSourceRange(D->getASTContext(), D->getSourceRange());
999}
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001000
1001CXCursor clang_getCursorReferenced(CXCursor C) {
Douglas Gregorb6998662010-01-19 19:34:47 +00001002 if (clang_isDeclaration(C.kind))
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001003 return C;
Douglas Gregor98258af2010-01-18 22:46:11 +00001004
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001005 if (!clang_isReference(C.kind))
1006 return clang_getNullCursor();
1007
1008 switch (C.kind) {
1009 case CXCursor_ObjCSuperClassRef:
1010 return MakeCXCursor(getCursorObjCSuperClassRef(C).first);
1011
1012 case CXCursor_ObjCProtocolRef: {
1013 return MakeCXCursor(getCursorObjCProtocolRef(C).first);
1014
1015 case CXCursor_ObjCClassRef:
1016 return MakeCXCursor(getCursorObjCClassRef(C).first);
1017
1018 case CXCursor_ObjCSelectorRef:
1019 case CXCursor_ObjCIvarRef:
1020 case CXCursor_VarRef:
1021 case CXCursor_FunctionRef:
1022 case CXCursor_EnumConstantRef:
1023 case CXCursor_MemberRef: {
1024 Decl *D = getDeclFromExpr(getCursorExpr(C));
1025 if (D)
1026 return MakeCXCursor(D);
1027 break;
1028 }
1029
1030 default:
1031 // We would prefer to enumerate all non-reference cursor kinds here.
1032 llvm_unreachable("Unhandled reference cursor kind");
1033 break;
1034 }
1035 }
1036
1037 return clang_getNullCursor();
1038}
1039
Douglas Gregorb6998662010-01-19 19:34:47 +00001040CXCursor clang_getCursorDefinition(CXCursor C) {
1041 bool WasReference = false;
1042 if (clang_isReference(C.kind)) {
1043 C = clang_getCursorReferenced(C);
1044 WasReference = true;
1045 }
1046
1047 if (!clang_isDeclaration(C.kind))
1048 return clang_getNullCursor();
1049
1050 Decl *D = getCursorDecl(C);
1051 if (!D)
1052 return clang_getNullCursor();
1053
1054 switch (D->getKind()) {
1055 // Declaration kinds that don't really separate the notions of
1056 // declaration and definition.
1057 case Decl::Namespace:
1058 case Decl::Typedef:
1059 case Decl::TemplateTypeParm:
1060 case Decl::EnumConstant:
1061 case Decl::Field:
1062 case Decl::ObjCIvar:
1063 case Decl::ObjCAtDefsField:
1064 case Decl::ImplicitParam:
1065 case Decl::ParmVar:
1066 case Decl::NonTypeTemplateParm:
1067 case Decl::TemplateTemplateParm:
1068 case Decl::ObjCCategoryImpl:
1069 case Decl::ObjCImplementation:
1070 case Decl::LinkageSpec:
1071 case Decl::ObjCPropertyImpl:
1072 case Decl::FileScopeAsm:
1073 case Decl::StaticAssert:
1074 case Decl::Block:
1075 return C;
1076
1077 // Declaration kinds that don't make any sense here, but are
1078 // nonetheless harmless.
1079 case Decl::TranslationUnit:
1080 case Decl::Template:
1081 case Decl::ObjCContainer:
1082 break;
1083
1084 // Declaration kinds for which the definition is not resolvable.
1085 case Decl::UnresolvedUsingTypename:
1086 case Decl::UnresolvedUsingValue:
1087 break;
1088
1089 case Decl::UsingDirective:
1090 return MakeCXCursor(cast<UsingDirectiveDecl>(D)->getNominatedNamespace());
1091
1092 case Decl::NamespaceAlias:
1093 return MakeCXCursor(cast<NamespaceAliasDecl>(D)->getNamespace());
1094
1095 case Decl::Enum:
1096 case Decl::Record:
1097 case Decl::CXXRecord:
1098 case Decl::ClassTemplateSpecialization:
1099 case Decl::ClassTemplatePartialSpecialization:
1100 if (TagDecl *Def = cast<TagDecl>(D)->getDefinition(D->getASTContext()))
1101 return MakeCXCursor(Def);
1102 return clang_getNullCursor();
1103
1104 case Decl::Function:
1105 case Decl::CXXMethod:
1106 case Decl::CXXConstructor:
1107 case Decl::CXXDestructor:
1108 case Decl::CXXConversion: {
1109 const FunctionDecl *Def = 0;
1110 if (cast<FunctionDecl>(D)->getBody(Def))
1111 return MakeCXCursor(const_cast<FunctionDecl *>(Def));
1112 return clang_getNullCursor();
1113 }
1114
1115 case Decl::Var: {
1116 VarDecl *Var = cast<VarDecl>(D);
1117
1118 // Variables with initializers have definitions.
1119 const VarDecl *Def = 0;
1120 if (Var->getDefinition(Def))
1121 return MakeCXCursor(const_cast<VarDecl *>(Def));
1122
1123 // extern and private_extern variables are not definitions.
1124 if (Var->hasExternalStorage())
1125 return clang_getNullCursor();
1126
1127 // In-line static data members do not have definitions.
1128 if (Var->isStaticDataMember() && !Var->isOutOfLine())
1129 return clang_getNullCursor();
1130
1131 // All other variables are themselves definitions.
1132 return C;
1133 }
1134
1135 case Decl::FunctionTemplate: {
1136 const FunctionDecl *Def = 0;
1137 if (cast<FunctionTemplateDecl>(D)->getTemplatedDecl()->getBody(Def))
1138 return MakeCXCursor(Def->getDescribedFunctionTemplate());
1139 return clang_getNullCursor();
1140 }
1141
1142 case Decl::ClassTemplate: {
1143 if (RecordDecl *Def = cast<ClassTemplateDecl>(D)->getTemplatedDecl()
1144 ->getDefinition(D->getASTContext()))
1145 return MakeCXCursor(
1146 cast<CXXRecordDecl>(Def)->getDescribedClassTemplate());
1147 return clang_getNullCursor();
1148 }
1149
1150 case Decl::Using: {
1151 UsingDecl *Using = cast<UsingDecl>(D);
1152 CXCursor Def = clang_getNullCursor();
1153 for (UsingDecl::shadow_iterator S = Using->shadow_begin(),
1154 SEnd = Using->shadow_end();
1155 S != SEnd; ++S) {
1156 if (Def != clang_getNullCursor()) {
1157 // FIXME: We have no way to return multiple results.
1158 return clang_getNullCursor();
1159 }
1160
1161 Def = clang_getCursorDefinition(MakeCXCursor((*S)->getTargetDecl()));
1162 }
1163
1164 return Def;
1165 }
1166
1167 case Decl::UsingShadow:
1168 return clang_getCursorDefinition(
1169 MakeCXCursor(cast<UsingShadowDecl>(D)->getTargetDecl()));
1170
1171 case Decl::ObjCMethod: {
1172 ObjCMethodDecl *Method = cast<ObjCMethodDecl>(D);
1173 if (Method->isThisDeclarationADefinition())
1174 return C;
1175
1176 // Dig out the method definition in the associated
1177 // @implementation, if we have it.
1178 // FIXME: The ASTs should make finding the definition easier.
1179 if (ObjCInterfaceDecl *Class
1180 = dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext()))
1181 if (ObjCImplementationDecl *ClassImpl = Class->getImplementation())
1182 if (ObjCMethodDecl *Def = ClassImpl->getMethod(Method->getSelector(),
1183 Method->isInstanceMethod()))
1184 if (Def->isThisDeclarationADefinition())
1185 return MakeCXCursor(Def);
1186
1187 return clang_getNullCursor();
1188 }
1189
1190 case Decl::ObjCCategory:
1191 if (ObjCCategoryImplDecl *Impl
1192 = cast<ObjCCategoryDecl>(D)->getImplementation())
1193 return MakeCXCursor(Impl);
1194 return clang_getNullCursor();
1195
1196 case Decl::ObjCProtocol:
1197 if (!cast<ObjCProtocolDecl>(D)->isForwardDecl())
1198 return C;
1199 return clang_getNullCursor();
1200
1201 case Decl::ObjCInterface:
1202 // There are two notions of a "definition" for an Objective-C
1203 // class: the interface and its implementation. When we resolved a
1204 // reference to an Objective-C class, produce the @interface as
1205 // the definition; when we were provided with the interface,
1206 // produce the @implementation as the definition.
1207 if (WasReference) {
1208 if (!cast<ObjCInterfaceDecl>(D)->isForwardDecl())
1209 return C;
1210 } else if (ObjCImplementationDecl *Impl
1211 = cast<ObjCInterfaceDecl>(D)->getImplementation())
1212 return MakeCXCursor(Impl);
1213 return clang_getNullCursor();
1214
1215 case Decl::ObjCProperty:
1216 // FIXME: We don't really know where to find the
1217 // ObjCPropertyImplDecls that implement this property.
1218 return clang_getNullCursor();
1219
1220 case Decl::ObjCCompatibleAlias:
1221 if (ObjCInterfaceDecl *Class
1222 = cast<ObjCCompatibleAliasDecl>(D)->getClassInterface())
1223 if (!Class->isForwardDecl())
1224 return MakeCXCursor(Class);
1225
1226 return clang_getNullCursor();
1227
1228 case Decl::ObjCForwardProtocol: {
1229 ObjCForwardProtocolDecl *Forward = cast<ObjCForwardProtocolDecl>(D);
1230 if (Forward->protocol_size() == 1)
1231 return clang_getCursorDefinition(
1232 MakeCXCursor(*Forward->protocol_begin()));
1233
1234 // FIXME: Cannot return multiple definitions.
1235 return clang_getNullCursor();
1236 }
1237
1238 case Decl::ObjCClass: {
1239 ObjCClassDecl *Class = cast<ObjCClassDecl>(D);
1240 if (Class->size() == 1) {
1241 ObjCInterfaceDecl *IFace = Class->begin()->getInterface();
1242 if (!IFace->isForwardDecl())
1243 return MakeCXCursor(IFace);
1244 return clang_getNullCursor();
1245 }
1246
1247 // FIXME: Cannot return multiple definitions.
1248 return clang_getNullCursor();
1249 }
1250
1251 case Decl::Friend:
1252 if (NamedDecl *Friend = cast<FriendDecl>(D)->getFriendDecl())
1253 return clang_getCursorDefinition(MakeCXCursor(Friend));
1254 return clang_getNullCursor();
1255
1256 case Decl::FriendTemplate:
1257 if (NamedDecl *Friend = cast<FriendTemplateDecl>(D)->getFriendDecl())
1258 return clang_getCursorDefinition(MakeCXCursor(Friend));
1259 return clang_getNullCursor();
1260 }
1261
1262 return clang_getNullCursor();
1263}
1264
1265unsigned clang_isCursorDefinition(CXCursor C) {
1266 if (!clang_isDeclaration(C.kind))
1267 return 0;
1268
1269 return clang_getCursorDefinition(C) == C;
1270}
1271
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001272void clang_getDefinitionSpellingAndExtent(CXCursor C,
Steve Naroff4ade6d62009-09-23 17:52:52 +00001273 const char **startBuf,
1274 const char **endBuf,
1275 unsigned *startLine,
1276 unsigned *startColumn,
1277 unsigned *endLine,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001278 unsigned *endColumn) {
Douglas Gregor283cae32010-01-15 21:56:13 +00001279 assert(getCursorDecl(C) && "CXCursor has null decl");
1280 NamedDecl *ND = static_cast<NamedDecl *>(getCursorDecl(C));
Steve Naroff4ade6d62009-09-23 17:52:52 +00001281 FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
1282 CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody());
Ted Kremenekfb480492010-01-13 21:46:36 +00001283
Steve Naroff4ade6d62009-09-23 17:52:52 +00001284 SourceManager &SM = FD->getASTContext().getSourceManager();
1285 *startBuf = SM.getCharacterData(Body->getLBracLoc());
1286 *endBuf = SM.getCharacterData(Body->getRBracLoc());
1287 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
1288 *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc());
1289 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc());
1290 *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc());
1291}
Ted Kremenekfb480492010-01-13 21:46:36 +00001292
1293} // end: extern "C"
Steve Naroff4ade6d62009-09-23 17:52:52 +00001294
Ted Kremenekfb480492010-01-13 21:46:36 +00001295//===----------------------------------------------------------------------===//
1296// CXString Operations.
1297//===----------------------------------------------------------------------===//
1298
1299extern "C" {
1300const char *clang_getCString(CXString string) {
1301 return string.Spelling;
1302}
1303
1304void clang_disposeString(CXString string) {
1305 if (string.MustFreeString && string.Spelling)
1306 free((void*)string.Spelling);
1307}
1308} // end: extern "C"