blob: e48581ac0a8a7d7745cdd6fa50972e8bc18dbc8a [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
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000133//===----------------------------------------------------------------------===//
134// Visitors.
135//===----------------------------------------------------------------------===//
136
Steve Naroff89922f82009-08-31 00:59:03 +0000137namespace {
Ted Kremenekab188932010-01-05 19:32:54 +0000138static enum CXCursorKind TranslateDeclRefExpr(DeclRefExpr *DRE) {
Steve Naroff4ade6d62009-09-23 17:52:52 +0000139 NamedDecl *D = DRE->getDecl();
140 if (isa<VarDecl>(D))
141 return CXCursor_VarRef;
142 else if (isa<FunctionDecl>(D))
143 return CXCursor_FunctionRef;
144 else if (isa<EnumConstantDecl>(D))
145 return CXCursor_EnumConstantRef;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000146 else
Steve Naroff4ade6d62009-09-23 17:52:52 +0000147 return CXCursor_NotImplemented;
148}
149
Steve Naroff89922f82009-08-31 00:59:03 +0000150// Translation Unit Visitor.
Ted Kremenekf1286182010-01-13 00:13:47 +0000151
Steve Naroff89922f82009-08-31 00:59:03 +0000152class TUVisitor : public DeclVisitor<TUVisitor> {
Ted Kremenekf1286182010-01-13 00:13:47 +0000153public:
154 typedef void (*Iterator)(void *, CXCursor, CXClientData);
155private:
156 void *Root; // CXDecl or CXTranslationUnit
157 Iterator Callback; // CXTranslationUnitIterator or CXDeclIterator.
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000158 CXClientData CData;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000159
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000160 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
161 // to the visitor. Declarations with a PCH level greater than this value will
162 // be suppressed.
163 unsigned MaxPCHLevel;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000164
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000165 void Call(const CXCursor &C) {
Ted Kremenek70ee5422010-01-16 01:44:12 +0000166 if (clang_isInvalid(C.kind))
167 return;
168
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000169 if (const Decl *D = getCursorDecl(C)) {
170 // Filter any declarations that have a PCH level greater than what
171 // we allow.
172 if (D->getPCHLevel() > MaxPCHLevel)
173 return;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000174
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000175 // Filter any implicit declarations (since the source info will be bogus).
176 if (D->isImplicit())
177 return;
178 }
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000179
Ted Kremenekf1286182010-01-13 00:13:47 +0000180 Callback(Root, C, CData);
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000181 }
Ted Kremenekf1286182010-01-13 00:13:47 +0000182
Steve Naroff89922f82009-08-31 00:59:03 +0000183public:
Ted Kremenekf1286182010-01-13 00:13:47 +0000184 TUVisitor(void *root, Iterator cback, CXClientData D, unsigned MaxPCHLevel) :
185 Root(root), Callback(cback), CData(D), MaxPCHLevel(MaxPCHLevel) {}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000186
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000187 void VisitDecl(Decl *D);
Ted Kremenekf1286182010-01-13 00:13:47 +0000188 void VisitDeclContext(DeclContext *DC);
Ted Kremenekf1286182010-01-13 00:13:47 +0000189 void VisitTranslationUnitDecl(TranslationUnitDecl *D);
Ted Kremenekf1286182010-01-13 00:13:47 +0000190};
Ted Kremenekef7fdc62009-11-17 07:02:15 +0000191
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000192void TUVisitor::VisitDecl(Decl *D) {
193 Call(MakeCXCursor(D));
194}
195
Ted Kremenekf1286182010-01-13 00:13:47 +0000196void TUVisitor::VisitDeclContext(DeclContext *DC) {
197 for (DeclContext::decl_iterator I = DC->decls_begin(), E = DC->decls_end();
198 I != E; ++I)
199 Visit(*I);
200}
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000201
Ted Kremenekf1286182010-01-13 00:13:47 +0000202void TUVisitor::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
203 VisitDeclContext(dyn_cast<DeclContext>(D));
204}
Steve Naroff89922f82009-08-31 00:59:03 +0000205
Steve Naroffc857ea42009-09-02 13:28:54 +0000206// Declaration visitor.
207class CDeclVisitor : public DeclVisitor<CDeclVisitor> {
208 CXDecl CDecl;
209 CXDeclIterator Callback;
210 CXClientData CData;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000211
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000212 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
213 // to the visitor. Declarations with a PCH level greater than this value will
214 // be suppressed.
215 unsigned MaxPCHLevel;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000216
Steve Naroffc857ea42009-09-02 13:28:54 +0000217 void Call(enum CXCursorKind CK, NamedDecl *ND) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000218 // Disable the callback when the context is equal to the visiting decl.
219 if (CDecl == ND && !clang_isReference(CK))
220 return;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000221
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000222 // Filter any declarations that have a PCH level greater than what we allow.
223 if (ND->getPCHLevel() > MaxPCHLevel)
224 return;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000225
Douglas Gregor283cae32010-01-15 21:56:13 +0000226 CXCursor C = { CK, { ND, 0, 0 } };
Steve Naroffc857ea42009-09-02 13:28:54 +0000227 Callback(CDecl, C, CData);
228 }
Douglas Gregor2e331b92010-01-16 14:00:32 +0000229
Steve Naroff89922f82009-08-31 00:59:03 +0000230public:
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000231 CDeclVisitor(CXDecl C, CXDeclIterator cback, CXClientData D,
232 unsigned MaxPCHLevel) :
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000233 CDecl(C), Callback(cback), CData(D), MaxPCHLevel(MaxPCHLevel) {}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000234
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000235 void VisitDeclContext(DeclContext *DC);
236 void VisitEnumConstantDecl(EnumConstantDecl *ND);
237 void VisitFieldDecl(FieldDecl *ND);
238 void VisitFunctionDecl(FunctionDecl *ND);
239 void VisitObjCCategoryDecl(ObjCCategoryDecl *ND);
240 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
241 void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
242 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
243 void VisitObjCIvarDecl(ObjCIvarDecl *ND);
244 void VisitObjCMethodDecl(ObjCMethodDecl *ND);
245 void VisitObjCPropertyDecl(ObjCPropertyDecl *ND);
246 void VisitObjCProtocolDecl(ObjCProtocolDecl *PID);
247 void VisitParmVarDecl(ParmVarDecl *ND);
248 void VisitTagDecl(TagDecl *D);
249 void VisitVarDecl(VarDecl *ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000250};
Ted Kremenekab188932010-01-05 19:32:54 +0000251} // end anonymous namespace
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000252
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000253void CDeclVisitor::VisitDeclContext(DeclContext *DC) {
254 for (DeclContext::decl_iterator
255 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I)
256 Visit(*I);
257}
258
259void CDeclVisitor::VisitEnumConstantDecl(EnumConstantDecl *ND) {
260 Call(CXCursor_EnumConstantDecl, ND);
261}
262
263void CDeclVisitor::VisitFieldDecl(FieldDecl *ND) {
264 Call(CXCursor_FieldDecl, ND);
265}
266
267void CDeclVisitor::VisitFunctionDecl(FunctionDecl *ND) {
268 if (ND->isThisDeclarationADefinition()) {
269 VisitDeclContext(dyn_cast<DeclContext>(ND));
270#if 0
271 // Not currently needed.
272 CompoundStmt *Body = dyn_cast<CompoundStmt>(ND->getBody());
273 CRefVisitor RVisit(CDecl, Callback, CData);
274 RVisit.Visit(Body);
275#endif
276 }
277}
278
279void CDeclVisitor::VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
280 // Issue callbacks for the containing class.
Douglas Gregor1adb0822010-01-16 17:14:40 +0000281 Callback(CDecl,
282 MakeCursorObjCClassRef(ND->getClassInterface(), ND->getLocation()),
283 CData);
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000284 ObjCCategoryDecl::protocol_loc_iterator PL = ND->protocol_loc_begin();
285 for (ObjCCategoryDecl::protocol_iterator I = ND->protocol_begin(),
286 E = ND->protocol_end(); I != E; ++I, ++PL)
287 Callback(CDecl, MakeCursorObjCProtocolRef(*I, *PL), CData);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000288 VisitDeclContext(dyn_cast<DeclContext>(ND));
289}
290
291void CDeclVisitor::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
292 VisitDeclContext(dyn_cast<DeclContext>(D));
293}
294
295void CDeclVisitor::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
296 VisitDeclContext(dyn_cast<DeclContext>(D));
297}
298
299void CDeclVisitor::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
300 // Issue callbacks for super class.
301 if (D->getSuperClass())
Douglas Gregor2e331b92010-01-16 14:00:32 +0000302 Callback(CDecl,
303 MakeCursorObjCSuperClassRef(D->getSuperClass(),
304 D->getSuperClassLoc()),
305 CData);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000306
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000307 ObjCInterfaceDecl::protocol_loc_iterator PL = D->protocol_loc_begin();
308 for (ObjCInterfaceDecl::protocol_iterator I = D->protocol_begin(),
309 E = D->protocol_end(); I != E; ++I, ++PL)
310 Callback(CDecl, MakeCursorObjCProtocolRef(*I, *PL), CData);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000311 VisitDeclContext(dyn_cast<DeclContext>(D));
312}
313
314void CDeclVisitor::VisitObjCIvarDecl(ObjCIvarDecl *ND) {
315 Call(CXCursor_ObjCIvarDecl, ND);
316}
317
318void CDeclVisitor::VisitObjCMethodDecl(ObjCMethodDecl *ND) {
319 if (ND->getBody()) {
320 Call(ND->isInstanceMethod() ? CXCursor_ObjCInstanceMethodDefn
321 : CXCursor_ObjCClassMethodDefn, ND);
322 VisitDeclContext(dyn_cast<DeclContext>(ND));
323 } else
324 Call(ND->isInstanceMethod() ? CXCursor_ObjCInstanceMethodDecl
325 : CXCursor_ObjCClassMethodDecl, ND);
326}
327
328void CDeclVisitor::VisitObjCPropertyDecl(ObjCPropertyDecl *ND) {
329 Call(CXCursor_ObjCPropertyDecl, ND);
330}
331
332void CDeclVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000333 ObjCProtocolDecl::protocol_loc_iterator PL = PID->protocol_loc_begin();
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000334 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000335 E = PID->protocol_end(); I != E; ++I, ++PL)
336 Callback(CDecl, MakeCursorObjCProtocolRef(*I, *PL), CData);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000337
338 VisitDeclContext(dyn_cast<DeclContext>(PID));
339}
340
341void CDeclVisitor::VisitParmVarDecl(ParmVarDecl *ND) {
342 Call(CXCursor_ParmDecl, ND);
343}
344
345void CDeclVisitor::VisitTagDecl(TagDecl *D) {
346 VisitDeclContext(dyn_cast<DeclContext>(D));
347}
348
349void CDeclVisitor::VisitVarDecl(VarDecl *ND) {
350 Call(CXCursor_VarDecl, ND);
351}
352
Daniel Dunbar140fce22010-01-12 02:34:07 +0000353CXString CIndexer::createCXString(const char *String, bool DupString){
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000354 CXString Str;
355 if (DupString) {
356 Str.Spelling = strdup(String);
357 Str.MustFreeString = 1;
358 } else {
359 Str.Spelling = String;
360 Str.MustFreeString = 0;
361 }
362 return Str;
363}
364
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000365extern "C" {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000366CXIndex clang_createIndex(int excludeDeclarationsFromPCH,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000367 int displayDiagnostics) {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000368 CIndexer *CIdxr = new CIndexer(new Program());
369 if (excludeDeclarationsFromPCH)
370 CIdxr->setOnlyLocalDecls();
371 if (displayDiagnostics)
372 CIdxr->setDisplayDiagnostics();
373 return CIdxr;
Steve Naroff600866c2009-08-27 19:51:58 +0000374}
375
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000376void clang_disposeIndex(CXIndex CIdx) {
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000377 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000378 delete static_cast<CIndexer *>(CIdx);
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000379}
380
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000381void clang_setUseExternalASTGeneration(CXIndex CIdx, int value) {
382 assert(CIdx && "Passed null CXIndex");
383 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
384 CXXIdx->setUseExternalASTGeneration(value);
385}
386
Steve Naroff50398192009-08-28 15:28:48 +0000387// FIXME: need to pass back error info.
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000388CXTranslationUnit clang_createTranslationUnit(CXIndex CIdx,
389 const char *ast_filename) {
Steve Naroff50398192009-08-28 15:28:48 +0000390 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000391 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000392
Daniel Dunbar5262fda2009-12-03 01:45:44 +0000393 return ASTUnit::LoadFromPCHFile(ast_filename, CXXIdx->getDiags(),
394 CXXIdx->getOnlyLocalDecls(),
395 /* UseBumpAllocator = */ true);
Steve Naroff600866c2009-08-27 19:51:58 +0000396}
397
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000398CXTranslationUnit
399clang_createTranslationUnitFromSourceFile(CXIndex CIdx,
400 const char *source_filename,
401 int num_command_line_args,
402 const char **command_line_args) {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000403 assert(CIdx && "Passed null CXIndex");
404 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
405
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000406 if (!CXXIdx->getUseExternalASTGeneration()) {
407 llvm::SmallVector<const char *, 16> Args;
408
409 // The 'source_filename' argument is optional. If the caller does not
410 // specify it then it is assumed that the source file is specified
411 // in the actual argument list.
412 if (source_filename)
413 Args.push_back(source_filename);
414 Args.insert(Args.end(), command_line_args,
415 command_line_args + num_command_line_args);
416
Daniel Dunbar94220972009-12-05 02:17:18 +0000417 unsigned NumErrors = CXXIdx->getDiags().getNumErrors();
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000418
Ted Kremenek29b72842010-01-07 22:49:05 +0000419#ifdef USE_CRASHTRACER
420 ArgsCrashTracerInfo ACTI(Args);
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000421#endif
422
Daniel Dunbar94220972009-12-05 02:17:18 +0000423 llvm::OwningPtr<ASTUnit> Unit(
424 ASTUnit::LoadFromCommandLine(Args.data(), Args.data() + Args.size(),
Daniel Dunbar869824e2009-12-13 03:46:13 +0000425 CXXIdx->getDiags(),
426 CXXIdx->getClangResourcesPath(),
Daniel Dunbar94220972009-12-05 02:17:18 +0000427 CXXIdx->getOnlyLocalDecls(),
428 /* UseBumpAllocator = */ true));
Ted Kremenek29b72842010-01-07 22:49:05 +0000429
Daniel Dunbar94220972009-12-05 02:17:18 +0000430 // FIXME: Until we have broader testing, just drop the entire AST if we
431 // encountered an error.
432 if (NumErrors != CXXIdx->getDiags().getNumErrors())
433 return 0;
434
435 return Unit.take();
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000436 }
437
Ted Kremenek139ba862009-10-22 00:03:57 +0000438 // Build up the arguments for invoking 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000439 std::vector<const char *> argv;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000440
Ted Kremenek139ba862009-10-22 00:03:57 +0000441 // First add the complete path to the 'clang' executable.
442 llvm::sys::Path ClangPath = static_cast<CIndexer *>(CIdx)->getClangPath();
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000443 argv.push_back(ClangPath.c_str());
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000444
Ted Kremenek139ba862009-10-22 00:03:57 +0000445 // Add the '-emit-ast' option as our execution mode for 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000446 argv.push_back("-emit-ast");
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000447
Ted Kremenek139ba862009-10-22 00:03:57 +0000448 // The 'source_filename' argument is optional. If the caller does not
449 // specify it then it is assumed that the source file is specified
450 // in the actual argument list.
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000451 if (source_filename)
452 argv.push_back(source_filename);
Ted Kremenek139ba862009-10-22 00:03:57 +0000453
Steve Naroff37b5ac22009-10-15 20:50:09 +0000454 // Generate a temporary name for the AST file.
Ted Kremenek139ba862009-10-22 00:03:57 +0000455 argv.push_back("-o");
Steve Naroff37b5ac22009-10-15 20:50:09 +0000456 char astTmpFile[L_tmpnam];
Ted Kremenek74cd0692009-10-15 23:21:22 +0000457 argv.push_back(tmpnam(astTmpFile));
Ted Kremenek139ba862009-10-22 00:03:57 +0000458
459 // Process the compiler options, stripping off '-o', '-c', '-fsyntax-only'.
460 for (int i = 0; i < num_command_line_args; ++i)
461 if (const char *arg = command_line_args[i]) {
462 if (strcmp(arg, "-o") == 0) {
463 ++i; // Also skip the matching argument.
464 continue;
465 }
466 if (strcmp(arg, "-emit-ast") == 0 ||
467 strcmp(arg, "-c") == 0 ||
468 strcmp(arg, "-fsyntax-only") == 0) {
469 continue;
470 }
471
472 // Keep the argument.
473 argv.push_back(arg);
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000474 }
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000475
Ted Kremenek139ba862009-10-22 00:03:57 +0000476 // Add the null terminator.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000477 argv.push_back(NULL);
478
Ted Kremenekfeb15e32009-10-26 22:14:08 +0000479 // Invoke 'clang'.
480 llvm::sys::Path DevNull; // leave empty, causes redirection to /dev/null
481 // on Unix or NUL (Windows).
Ted Kremenek379afec2009-10-22 03:24:01 +0000482 std::string ErrMsg;
Ted Kremenekc46e4632009-10-19 22:27:32 +0000483 const llvm::sys::Path *Redirects[] = { &DevNull, &DevNull, &DevNull, NULL };
Ted Kremenek379afec2009-10-22 03:24:01 +0000484 llvm::sys::Program::ExecuteAndWait(ClangPath, &argv[0], /* env */ NULL,
485 /* redirects */ !CXXIdx->getDisplayDiagnostics() ? &Redirects[0] : NULL,
486 /* secondsToWait */ 0, /* memoryLimits */ 0, &ErrMsg);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000487
Ted Kremenek0854d702009-11-10 19:18:52 +0000488 if (CXXIdx->getDisplayDiagnostics() && !ErrMsg.empty()) {
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000489 llvm::errs() << "clang_createTranslationUnitFromSourceFile: " << ErrMsg
Daniel Dunbaracca7252009-11-30 20:42:49 +0000490 << '\n' << "Arguments: \n";
Ted Kremenek379afec2009-10-22 03:24:01 +0000491 for (std::vector<const char*>::iterator I = argv.begin(), E = argv.end();
Ted Kremenek779e5f42009-10-26 22:08:39 +0000492 I!=E; ++I) {
493 if (*I)
494 llvm::errs() << ' ' << *I << '\n';
495 }
496 llvm::errs() << '\n';
Ted Kremenek379afec2009-10-22 03:24:01 +0000497 }
Benjamin Kramer0829a832009-10-18 11:19:36 +0000498
Steve Naroff37b5ac22009-10-15 20:50:09 +0000499 // Finally, we create the translation unit from the ast file.
Steve Naroffe19944c2009-10-15 22:23:48 +0000500 ASTUnit *ATU = static_cast<ASTUnit *>(
Daniel Dunbaracca7252009-11-30 20:42:49 +0000501 clang_createTranslationUnit(CIdx, astTmpFile));
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000502 if (ATU)
503 ATU->unlinkTemporaryFile();
Steve Naroffe19944c2009-10-15 22:23:48 +0000504 return ATU;
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000505}
506
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000507void clang_disposeTranslationUnit(CXTranslationUnit CTUnit) {
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000508 assert(CTUnit && "Passed null CXTranslationUnit");
509 delete static_cast<ASTUnit *>(CTUnit);
510}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000511
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000512CXString clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000513 assert(CTUnit && "Passed null CXTranslationUnit");
Steve Naroff77accc12009-09-03 18:19:54 +0000514 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
Ted Kremenek4b333d22010-01-12 00:36:38 +0000515 return CIndexer::createCXString(CXXUnit->getOriginalSourceFileName().c_str(),
516 true);
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000517}
Daniel Dunbar1eb79b52009-08-28 16:30:07 +0000518
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000519void clang_loadTranslationUnit(CXTranslationUnit CTUnit,
Steve Naroffc857ea42009-09-02 13:28:54 +0000520 CXTranslationUnitIterator callback,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000521 CXClientData CData) {
Steve Naroff50398192009-08-28 15:28:48 +0000522 assert(CTUnit && "Passed null CXTranslationUnit");
523 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
524 ASTContext &Ctx = CXXUnit->getASTContext();
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000525
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000526 unsigned PCHLevel = Decl::MaxPCHLevel;
527
528 // Set the PCHLevel to filter out unwanted decls if requested.
529 if (CXXUnit->getOnlyLocalDecls()) {
530 PCHLevel = 0;
531
532 // If the main input was an AST, bump the level.
533 if (CXXUnit->isMainFileAST())
534 ++PCHLevel;
535 }
536
537 TUVisitor DVisit(CTUnit, callback, CData, PCHLevel);
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000538
539 // If using a non-AST based ASTUnit, iterate over the stored list of top-level
540 // decls.
541 if (!CXXUnit->isMainFileAST() && CXXUnit->getOnlyLocalDecls()) {
542 const std::vector<Decl*> &TLDs = CXXUnit->getTopLevelDecls();
543 for (std::vector<Decl*>::const_iterator it = TLDs.begin(),
544 ie = TLDs.end(); it != ie; ++it) {
545 DVisit.Visit(*it);
546 }
547 } else
548 DVisit.Visit(Ctx.getTranslationUnitDecl());
Steve Naroff600866c2009-08-27 19:51:58 +0000549}
550
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000551void clang_loadDeclaration(CXDecl Dcl,
552 CXDeclIterator callback,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000553 CXClientData CData) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000554 assert(Dcl && "Passed null CXDecl");
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000555
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000556 CDeclVisitor DVisit(Dcl, callback, CData,
557 static_cast<Decl *>(Dcl)->getPCHLevel());
Steve Naroffc857ea42009-09-02 13:28:54 +0000558 DVisit.Visit(static_cast<Decl *>(Dcl));
Steve Naroff600866c2009-08-27 19:51:58 +0000559}
Ted Kremenekfb480492010-01-13 21:46:36 +0000560} // end: extern "C"
Steve Naroff600866c2009-08-27 19:51:58 +0000561
Ted Kremenekfb480492010-01-13 21:46:36 +0000562//===----------------------------------------------------------------------===//
Steve Naroff600866c2009-08-27 19:51:58 +0000563// CXDecl Operations.
Ted Kremenekfb480492010-01-13 21:46:36 +0000564//===----------------------------------------------------------------------===//
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000565
Ted Kremenekfb480492010-01-13 21:46:36 +0000566static const FileEntry *getFileEntryFromSourceLocation(SourceManager &SMgr,
567 SourceLocation SLoc) {
568 FileID FID;
569 if (SLoc.isFileID())
570 FID = SMgr.getFileID(SLoc);
571 else
572 FID = SMgr.getDecomposedSpellingLoc(SLoc).first;
573 return SMgr.getFileEntryForID(FID);
574}
575
576extern "C" {
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000577CXString clang_getDeclSpelling(CXDecl AnonDecl) {
Steve Naroff89922f82009-08-31 00:59:03 +0000578 assert(AnonDecl && "Passed null CXDecl");
579 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
Steve Naroffef0cef62009-11-09 17:45:52 +0000580
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000581 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
Ted Kremenek4b333d22010-01-12 00:36:38 +0000582 return CIndexer::createCXString(OMD->getSelector().getAsString().c_str(),
583 true);
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000584
585 if (ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND))
Steve Naroff0d69b8c2009-10-29 21:11:04 +0000586 // No, this isn't the same as the code below. getIdentifier() is non-virtual
587 // and returns different names. NamedDecl returns the class name and
588 // ObjCCategoryImplDecl returns the category name.
Ted Kremenek4b333d22010-01-12 00:36:38 +0000589 return CIndexer::createCXString(CIMP->getIdentifier()->getNameStart());
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000590
591 if (ND->getIdentifier())
Ted Kremenek4b333d22010-01-12 00:36:38 +0000592 return CIndexer::createCXString(ND->getIdentifier()->getNameStart());
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000593
Ted Kremenek4b333d22010-01-12 00:36:38 +0000594 return CIndexer::createCXString("");
Steve Naroff600866c2009-08-27 19:51:58 +0000595}
Steve Narofff334b4e2009-09-02 18:26:48 +0000596
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000597unsigned clang_getDeclLine(CXDecl AnonDecl) {
Steve Naroff699a07d2009-09-25 21:32:34 +0000598 assert(AnonDecl && "Passed null CXDecl");
599 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
600 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
601 return SourceMgr.getSpellingLineNumber(ND->getLocation());
602}
603
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000604unsigned clang_getDeclColumn(CXDecl AnonDecl) {
Steve Naroff699a07d2009-09-25 21:32:34 +0000605 assert(AnonDecl && "Passed null CXDecl");
606 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
607 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Naroff74165242009-09-25 22:15:54 +0000608 return SourceMgr.getSpellingColumnNumber(ND->getLocation());
Steve Naroff699a07d2009-09-25 21:32:34 +0000609}
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000610
Douglas Gregor3c7313d2010-01-18 22:13:09 +0000611CXSourceRange clang_getDeclExtent(CXDecl AnonDecl) {
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000612 assert(AnonDecl && "Passed null CXDecl");
613 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
Ted Kremenekd8210652010-01-06 23:43:31 +0000614 SourceManager &SM = ND->getASTContext().getSourceManager();
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000615 SourceRange R = ND->getSourceRange();
616
Ted Kremenekd8210652010-01-06 23:43:31 +0000617 SourceLocation Begin = SM.getInstantiationLoc(R.getBegin());
618 SourceLocation End = SM.getInstantiationLoc(R.getEnd());
619
620 if (!Begin.isValid()) {
Douglas Gregor3c7313d2010-01-18 22:13:09 +0000621 CXSourceRange extent = { { 0, 0, 0 }, { 0, 0, 0 } };
Ted Kremenekd8210652010-01-06 23:43:31 +0000622 return extent;
623 }
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000624
Ted Kremenekd8210652010-01-06 23:43:31 +0000625 // FIXME: This is largely copy-paste from
626 ///TextDiagnosticPrinter::HighlightRange. When it is clear that this is
627 // what we want the two routines should be refactored.
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000628
Ted Kremenekd8210652010-01-06 23:43:31 +0000629 // If the End location and the start location are the same and are a macro
630 // location, then the range was something that came from a macro expansion
631 // or _Pragma. If this is an object-like macro, the best we can do is to
632 // get the range. If this is a function-like macro, we'd also like to
633 // get the arguments.
634 if (Begin == End && R.getEnd().isMacroID())
635 End = SM.getInstantiationRange(R.getEnd()).second;
636
637 assert(SM.getFileID(Begin) == SM.getFileID(End));
638 unsigned StartLineNo = SM.getInstantiationLineNumber(Begin);
639 unsigned EndLineNo = SM.getInstantiationLineNumber(End);
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000640
Ted Kremenekd8210652010-01-06 23:43:31 +0000641 // Compute the column number of the start. Keep the column based at 1.
642 unsigned StartColNo = SM.getInstantiationColumnNumber(Begin);
643
644 // Compute the column number of the end.
645 unsigned EndColNo = SM.getInstantiationColumnNumber(End);
646 if (EndColNo) {
647 // Offset the end column by 1 so that we point to the last character
648 // in the last token.
649 --EndColNo;
650
651 // Add in the length of the token, so that we cover multi-char tokens.
652 ASTContext &Ctx = ND->getTranslationUnitDecl()->getASTContext();
653 const LangOptions &LOpts = Ctx.getLangOptions();
654
655 EndColNo += Lexer::MeasureTokenLength(End, SM, LOpts);
656 }
657
658 // Package up the line/column data and return to the caller.
Douglas Gregor3c7313d2010-01-18 22:13:09 +0000659 const FileEntry *FEntry = SM.getFileEntryForID(SM.getFileID(Begin));
660 CXSourceRange extent = { { (void *)FEntry, StartLineNo, StartColNo },
661 { (void *)FEntry, EndLineNo, EndColNo } };
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000662 return extent;
663}
Steve Naroff699a07d2009-09-25 21:32:34 +0000664
Ted Kremenek6ab9db12010-01-08 17:11:32 +0000665const char *clang_getDeclSource(CXDecl AnonDecl) {
666 assert(AnonDecl && "Passed null CXDecl");
667 FileEntry *FEnt = static_cast<FileEntry *>(clang_getDeclSourceFile(AnonDecl));
668 assert(FEnt && "Cannot find FileEntry for Decl");
669 return clang_getFileName(FEnt);
670}
671
Steve Naroff88145032009-10-27 14:35:18 +0000672
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000673CXFile clang_getDeclSourceFile(CXDecl AnonDecl) {
Steve Naroff88145032009-10-27 14:35:18 +0000674 assert(AnonDecl && "Passed null CXDecl");
Steve Naroffee9405e2009-09-25 21:45:39 +0000675 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
676 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Naroff88145032009-10-27 14:35:18 +0000677 return (void *)getFileEntryFromSourceLocation(SourceMgr, ND->getLocation());
678}
Ted Kremenekfb480492010-01-13 21:46:36 +0000679} // end: extern "C"
Steve Naroff88145032009-10-27 14:35:18 +0000680
Ted Kremenekfb480492010-01-13 21:46:36 +0000681//===----------------------------------------------------------------------===//
682// CXFile Operations.
683//===----------------------------------------------------------------------===//
684
685extern "C" {
Steve Naroff88145032009-10-27 14:35:18 +0000686const char *clang_getFileName(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000687 if (!SFile)
688 return 0;
689
Steve Naroff88145032009-10-27 14:35:18 +0000690 assert(SFile && "Passed null CXFile");
691 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
692 return FEnt->getName();
693}
694
695time_t clang_getFileTime(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000696 if (!SFile)
697 return 0;
698
Steve Naroff88145032009-10-27 14:35:18 +0000699 assert(SFile && "Passed null CXFile");
700 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
701 return FEnt->getModificationTime();
Steve Naroffee9405e2009-09-25 21:45:39 +0000702}
Ted Kremenekfb480492010-01-13 21:46:36 +0000703} // end: extern "C"
Steve Naroffee9405e2009-09-25 21:45:39 +0000704
Ted Kremenekfb480492010-01-13 21:46:36 +0000705//===----------------------------------------------------------------------===//
706// CXCursor Operations.
707//===----------------------------------------------------------------------===//
708
Ted Kremenekfb480492010-01-13 21:46:36 +0000709static Decl *getDeclFromExpr(Stmt *E) {
710 if (DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E))
711 return RefExpr->getDecl();
712 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
713 return ME->getMemberDecl();
714 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E))
715 return RE->getDecl();
716
717 if (CallExpr *CE = dyn_cast<CallExpr>(E))
718 return getDeclFromExpr(CE->getCallee());
719 if (CastExpr *CE = dyn_cast<CastExpr>(E))
720 return getDeclFromExpr(CE->getSubExpr());
721 if (ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E))
722 return OME->getMethodDecl();
723
724 return 0;
725}
726
727extern "C" {
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000728CXString clang_getCursorSpelling(CXCursor C) {
Daniel Dunbarc81d7182010-01-18 17:52:42 +0000729 assert(getCursorDecl(C) && "CXCursor has null decl");
Steve Narofff334b4e2009-09-02 18:26:48 +0000730 if (clang_isReference(C.kind)) {
731 switch (C.kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +0000732 case CXCursor_ObjCSuperClassRef: {
Douglas Gregor2e331b92010-01-16 14:00:32 +0000733 ObjCInterfaceDecl *Super = getCursorObjCSuperClassRef(C).first;
734 return CIndexer::createCXString(Super->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +0000735 }
736 case CXCursor_ObjCClassRef: {
Douglas Gregor1adb0822010-01-16 17:14:40 +0000737 ObjCInterfaceDecl *Class = getCursorObjCClassRef(C).first;
738 return CIndexer::createCXString(Class->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +0000739 }
740 case CXCursor_ObjCProtocolRef: {
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000741 ObjCProtocolDecl *OID = getCursorObjCProtocolRef(C).first;
Douglas Gregorf46034a2010-01-18 23:41:10 +0000742 assert(OID && "getCursorSpelling(): Missing protocol decl");
Ted Kremenek4b333d22010-01-12 00:36:38 +0000743 return CIndexer::createCXString(OID->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +0000744 }
745 case CXCursor_ObjCSelectorRef: {
Douglas Gregor283cae32010-01-15 21:56:13 +0000746 ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(getCursorStmt(C));
Douglas Gregorf46034a2010-01-18 23:41:10 +0000747 assert(OME && "getCursorSpelling(): Missing message expr");
Ted Kremenek4b333d22010-01-12 00:36:38 +0000748 return CIndexer::createCXString(OME->getSelector().getAsString().c_str(),
749 true);
Daniel Dunbaracca7252009-11-30 20:42:49 +0000750 }
751 case CXCursor_VarRef:
752 case CXCursor_FunctionRef:
753 case CXCursor_EnumConstantRef: {
Douglas Gregor283cae32010-01-15 21:56:13 +0000754 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(getCursorStmt(C));
Douglas Gregorf46034a2010-01-18 23:41:10 +0000755 assert(DRE && "getCursorSpelling(): Missing decl ref expr");
Ted Kremenek4b333d22010-01-12 00:36:38 +0000756 return CIndexer::createCXString(DRE->getDecl()->getIdentifier()
757 ->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +0000758 }
759 default:
Ted Kremenek4b333d22010-01-12 00:36:38 +0000760 return CIndexer::createCXString("<not implemented>");
Steve Narofff334b4e2009-09-02 18:26:48 +0000761 }
762 }
Douglas Gregor283cae32010-01-15 21:56:13 +0000763 return clang_getDeclSpelling(getCursorDecl(C));
Steve Narofff334b4e2009-09-02 18:26:48 +0000764}
765
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000766const char *clang_getCursorKindSpelling(enum CXCursorKind Kind) {
Steve Naroff89922f82009-08-31 00:59:03 +0000767 switch (Kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +0000768 case CXCursor_FunctionDecl: return "FunctionDecl";
769 case CXCursor_TypedefDecl: return "TypedefDecl";
770 case CXCursor_EnumDecl: return "EnumDecl";
771 case CXCursor_EnumConstantDecl: return "EnumConstantDecl";
772 case CXCursor_StructDecl: return "StructDecl";
773 case CXCursor_UnionDecl: return "UnionDecl";
774 case CXCursor_ClassDecl: return "ClassDecl";
775 case CXCursor_FieldDecl: return "FieldDecl";
Ted Kremenekdeb06bd2010-01-16 02:02:09 +0000776 case CXCursor_FunctionDefn: return "FunctionDefn";
Daniel Dunbaracca7252009-11-30 20:42:49 +0000777 case CXCursor_VarDecl: return "VarDecl";
778 case CXCursor_ParmDecl: return "ParmDecl";
779 case CXCursor_ObjCInterfaceDecl: return "ObjCInterfaceDecl";
780 case CXCursor_ObjCCategoryDecl: return "ObjCCategoryDecl";
781 case CXCursor_ObjCProtocolDecl: return "ObjCProtocolDecl";
782 case CXCursor_ObjCPropertyDecl: return "ObjCPropertyDecl";
783 case CXCursor_ObjCIvarDecl: return "ObjCIvarDecl";
Ted Kremenekdeb06bd2010-01-16 02:02:09 +0000784 case CXCursor_ObjCIvarRef: return "ObjCIvarRef";
Daniel Dunbaracca7252009-11-30 20:42:49 +0000785 case CXCursor_ObjCInstanceMethodDecl: return "ObjCInstanceMethodDecl";
786 case CXCursor_ObjCClassMethodDecl: return "ObjCClassMethodDecl";
Daniel Dunbaracca7252009-11-30 20:42:49 +0000787 case CXCursor_ObjCInstanceMethodDefn: return "ObjCInstanceMethodDefn";
Ted Kremenekdeb06bd2010-01-16 02:02:09 +0000788 case CXCursor_ObjCCategoryDefn: return "ObjCCategoryDefn";
Daniel Dunbaracca7252009-11-30 20:42:49 +0000789 case CXCursor_ObjCClassMethodDefn: return "ObjCClassMethodDefn";
790 case CXCursor_ObjCClassDefn: return "ObjCClassDefn";
Daniel Dunbaracca7252009-11-30 20:42:49 +0000791 case CXCursor_ObjCSuperClassRef: return "ObjCSuperClassRef";
792 case CXCursor_ObjCProtocolRef: return "ObjCProtocolRef";
793 case CXCursor_ObjCClassRef: return "ObjCClassRef";
794 case CXCursor_ObjCSelectorRef: return "ObjCSelectorRef";
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000795
Daniel Dunbaracca7252009-11-30 20:42:49 +0000796 case CXCursor_VarRef: return "VarRef";
797 case CXCursor_FunctionRef: return "FunctionRef";
798 case CXCursor_EnumConstantRef: return "EnumConstantRef";
799 case CXCursor_MemberRef: return "MemberRef";
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000800
Daniel Dunbaracca7252009-11-30 20:42:49 +0000801 case CXCursor_InvalidFile: return "InvalidFile";
802 case CXCursor_NoDeclFound: return "NoDeclFound";
803 case CXCursor_NotImplemented: return "NotImplemented";
Steve Naroff89922f82009-08-31 00:59:03 +0000804 }
Ted Kremenekdeb06bd2010-01-16 02:02:09 +0000805
806 llvm_unreachable("Unhandled CXCursorKind");
807 return NULL;
Steve Naroff600866c2009-08-27 19:51:58 +0000808}
Steve Naroff89922f82009-08-31 00:59:03 +0000809
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000810CXCursor clang_getCursor(CXTranslationUnit CTUnit, const char *source_name,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000811 unsigned line, unsigned column) {
Steve Naroff9efa7672009-09-04 15:44:05 +0000812 assert(CTUnit && "Passed null CXTranslationUnit");
813 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000814
Steve Naroff9efa7672009-09-04 15:44:05 +0000815 FileManager &FMgr = CXXUnit->getFileManager();
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000816 const FileEntry *File = FMgr.getFile(source_name,
817 source_name+strlen(source_name));
Ted Kremenekf4629892010-01-14 01:51:23 +0000818 if (!File)
819 return clang_getNullCursor();
820
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000821 SourceLocation SLoc =
Steve Naroff9efa7672009-09-04 15:44:05 +0000822 CXXUnit->getSourceManager().getLocation(File, line, column);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000823
Steve Narofff96b5242009-10-28 20:44:47 +0000824 ASTLocation LastLoc = CXXUnit->getLastASTLocation();
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000825 ASTLocation ALoc = ResolveLocationInAST(CXXUnit->getASTContext(), SLoc,
Steve Narofff96b5242009-10-28 20:44:47 +0000826 &LastLoc);
Ted Kremenekf4629892010-01-14 01:51:23 +0000827
828 // FIXME: This doesn't look thread-safe.
Steve Narofff96b5242009-10-28 20:44:47 +0000829 if (ALoc.isValid())
830 CXXUnit->setLastASTLocation(ALoc);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000831
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +0000832 Decl *Dcl = ALoc.getParentDecl();
Argyrios Kyrtzidis05a76512009-09-29 19:45:58 +0000833 if (ALoc.isNamedRef())
834 Dcl = ALoc.AsNamedRef().ND;
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +0000835 Stmt *Stm = ALoc.dyn_AsStmt();
Steve Naroff4ade6d62009-09-23 17:52:52 +0000836 if (Dcl) {
837 if (Stm) {
Ted Kremenekfb480492010-01-13 21:46:36 +0000838 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Stm))
Douglas Gregorf46034a2010-01-18 23:41:10 +0000839 return MakeCXCursor(TranslateDeclRefExpr(DRE), Dcl, Stm,
840 CXXUnit->getASTContext());
Ted Kremenekfb480492010-01-13 21:46:36 +0000841 else if (ObjCMessageExpr *MExp = dyn_cast<ObjCMessageExpr>(Stm))
Douglas Gregorf46034a2010-01-18 23:41:10 +0000842 return MakeCXCursor(CXCursor_ObjCSelectorRef, Dcl, MExp,
843 CXXUnit->getASTContext());
Steve Naroff4ade6d62009-09-23 17:52:52 +0000844 // Fall through...treat as a decl, not a ref.
845 }
Steve Naroff85e2db72009-10-01 00:31:07 +0000846 if (ALoc.isNamedRef()) {
Douglas Gregor1adb0822010-01-16 17:14:40 +0000847 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(Dcl))
848 return MakeCursorObjCClassRef(Class, ALoc.AsNamedRef().Loc);
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000849 if (ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(Dcl))
850 return MakeCursorObjCProtocolRef(Proto, ALoc.AsNamedRef().Loc);
Steve Naroff85e2db72009-10-01 00:31:07 +0000851 }
Ted Kremenek70ee5422010-01-16 01:44:12 +0000852 return MakeCXCursor(Dcl);
Steve Naroff77128dd2009-09-15 20:25:34 +0000853 }
Ted Kremenekfb480492010-01-13 21:46:36 +0000854 return MakeCXCursor(CXCursor_NoDeclFound, 0);
Steve Naroff600866c2009-08-27 19:51:58 +0000855}
856
Ted Kremenek73885552009-11-17 19:28:59 +0000857CXCursor clang_getNullCursor(void) {
Ted Kremenekfb480492010-01-13 21:46:36 +0000858 return MakeCXCursor(CXCursor_InvalidFile, 0);
Ted Kremenek73885552009-11-17 19:28:59 +0000859}
860
861unsigned clang_equalCursors(CXCursor X, CXCursor Y) {
Douglas Gregor283cae32010-01-15 21:56:13 +0000862 return X == Y;
Ted Kremenek73885552009-11-17 19:28:59 +0000863}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000864
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000865CXCursor clang_getCursorFromDecl(CXDecl AnonDecl) {
Steve Naroff77128dd2009-09-15 20:25:34 +0000866 assert(AnonDecl && "Passed null CXDecl");
Ted Kremenekdeb06bd2010-01-16 02:02:09 +0000867 return MakeCXCursor(static_cast<NamedDecl *>(AnonDecl));
Steve Naroff77128dd2009-09-15 20:25:34 +0000868}
869
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000870unsigned clang_isInvalid(enum CXCursorKind K) {
Steve Naroff77128dd2009-09-15 20:25:34 +0000871 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
872}
873
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000874unsigned clang_isDeclaration(enum CXCursorKind K) {
Steve Naroff89922f82009-08-31 00:59:03 +0000875 return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl;
876}
Steve Naroff2d4d6292009-08-31 14:26:51 +0000877
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000878unsigned clang_isReference(enum CXCursorKind K) {
Steve Narofff334b4e2009-09-02 18:26:48 +0000879 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
880}
881
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000882unsigned clang_isDefinition(enum CXCursorKind K) {
Steve Narofff334b4e2009-09-02 18:26:48 +0000883 return K >= CXCursor_FirstDefn && K <= CXCursor_LastDefn;
884}
885
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000886CXCursorKind clang_getCursorKind(CXCursor C) {
Steve Naroff9efa7672009-09-04 15:44:05 +0000887 return C.kind;
888}
889
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000890CXDecl clang_getCursorDecl(CXCursor C) {
Ted Kremenek70ee5422010-01-16 01:44:12 +0000891 if (clang_isDeclaration(C.kind) || clang_isDefinition(C.kind))
Douglas Gregor283cae32010-01-15 21:56:13 +0000892 return getCursorDecl(C);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000893
Steve Naroff699a07d2009-09-25 21:32:34 +0000894 if (clang_isReference(C.kind)) {
Douglas Gregor1adb0822010-01-16 17:14:40 +0000895 if (getCursorStmt(C))
896 return getDeclFromExpr(getCursorStmt(C));
897
898 return getCursorDecl(C);
Steve Naroff699a07d2009-09-25 21:32:34 +0000899 }
900 return 0;
Steve Naroff9efa7672009-09-04 15:44:05 +0000901}
902
Douglas Gregor98258af2010-01-18 22:46:11 +0000903CXSourceLocation clang_getCursorLocation(CXCursor C) {
904 if (clang_isReference(C.kind)) {
Douglas Gregorf46034a2010-01-18 23:41:10 +0000905 switch (C.kind) {
906 case CXCursor_ObjCSuperClassRef: {
907 std::pair<ObjCInterfaceDecl *, SourceLocation> P
908 = getCursorObjCSuperClassRef(C);
909 SourceManager &SM = P.first->getASTContext().getSourceManager();
910 return translateSourceLocation(SM, P.second);
911 }
912
913 case CXCursor_ObjCProtocolRef: {
914 std::pair<ObjCProtocolDecl *, SourceLocation> P
915 = getCursorObjCProtocolRef(C);
916 SourceManager &SM = P.first->getASTContext().getSourceManager();
917 return translateSourceLocation(SM, P.second);
918 }
919
920 case CXCursor_ObjCClassRef: {
921 std::pair<ObjCInterfaceDecl *, SourceLocation> P
922 = getCursorObjCClassRef(C);
923 SourceManager &SM = P.first->getASTContext().getSourceManager();
924 return translateSourceLocation(SM, P.second);
925 }
926
927 case CXCursor_ObjCSelectorRef:
928 case CXCursor_ObjCIvarRef:
929 case CXCursor_VarRef:
930 case CXCursor_FunctionRef:
931 case CXCursor_EnumConstantRef:
932 case CXCursor_MemberRef: {
933 Expr *E = getCursorExpr(C);
934 SourceManager &SM = getCursorContext(C).getSourceManager();
935 if (ObjCMessageExpr *Msg = dyn_cast<ObjCMessageExpr>(E))
936 return translateSourceLocation(SM, /*FIXME:*/Msg->getLeftLoc());
937 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
938 return translateSourceLocation(SM, DRE->getLocation());
939 if (MemberExpr *Member = dyn_cast<MemberExpr>(E))
940 return translateSourceLocation(SM, Member->getMemberLoc());
941 if (ObjCIvarRefExpr *Ivar = dyn_cast<ObjCIvarRefExpr>(E))
942 return translateSourceLocation(SM, Ivar->getLocation());
943 return translateSourceLocation(SM, E->getLocStart());
944 }
945
946 default:
947 // FIXME: Need a way to enumerate all non-reference cases.
948 llvm_unreachable("Missed a reference kind");
949 }
Douglas Gregor98258af2010-01-18 22:46:11 +0000950 }
951
952 if (!getCursorDecl(C)) {
953 CXSourceLocation empty = { 0, 0, 0 };
954 return empty;
955 }
956
Douglas Gregorf46034a2010-01-18 23:41:10 +0000957 Decl *D = getCursorDecl(C);
958 SourceManager &SM = D->getASTContext().getSourceManager();
959 SourceLocation Loc = D->getLocation();
960 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(D))
961 Loc = Class->getClassLoc();
962 return translateSourceLocation(SM, Loc);
Douglas Gregor98258af2010-01-18 22:46:11 +0000963}
964
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000965void clang_getDefinitionSpellingAndExtent(CXCursor C,
Steve Naroff4ade6d62009-09-23 17:52:52 +0000966 const char **startBuf,
967 const char **endBuf,
968 unsigned *startLine,
969 unsigned *startColumn,
970 unsigned *endLine,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000971 unsigned *endColumn) {
Douglas Gregor283cae32010-01-15 21:56:13 +0000972 assert(getCursorDecl(C) && "CXCursor has null decl");
973 NamedDecl *ND = static_cast<NamedDecl *>(getCursorDecl(C));
Steve Naroff4ade6d62009-09-23 17:52:52 +0000974 FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
975 CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody());
Ted Kremenekfb480492010-01-13 21:46:36 +0000976
Steve Naroff4ade6d62009-09-23 17:52:52 +0000977 SourceManager &SM = FD->getASTContext().getSourceManager();
978 *startBuf = SM.getCharacterData(Body->getLBracLoc());
979 *endBuf = SM.getCharacterData(Body->getRBracLoc());
980 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
981 *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc());
982 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc());
983 *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc());
984}
Ted Kremenekfb480492010-01-13 21:46:36 +0000985
986} // end: extern "C"
Steve Naroff4ade6d62009-09-23 17:52:52 +0000987
Ted Kremenekfb480492010-01-13 21:46:36 +0000988//===----------------------------------------------------------------------===//
989// CXString Operations.
990//===----------------------------------------------------------------------===//
991
992extern "C" {
993const char *clang_getCString(CXString string) {
994 return string.Spelling;
995}
996
997void clang_disposeString(CXString string) {
998 if (string.MustFreeString && string.Spelling)
999 free((void*)string.Spelling);
1000}
1001} // end: extern "C"