blob: e84d15ceae1b4ff611486ce527533ec7f86f3969 [file] [log] [blame]
Ted Kremenekd2fa5662009-08-26 22:36:44 +00001//===- CIndex.cpp - Clang-C Source Indexing Library -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00007//
Ted Kremenekd2fa5662009-08-26 22:36:44 +00008//===----------------------------------------------------------------------===//
9//
Ted Kremenekab188932010-01-05 19:32:54 +000010// This file implements the main API hooks in the Clang-C Source Indexing
11// library.
Ted Kremenekd2fa5662009-08-26 22:36:44 +000012//
13//===----------------------------------------------------------------------===//
14
Ted Kremenekab188932010-01-05 19:32:54 +000015#include "CIndexer.h"
Ted Kremenek16c440a2010-01-15 20:35:54 +000016#include "CXCursor.h"
Ted Kremenekab188932010-01-05 19:32:54 +000017
Steve Naroff50398192009-08-28 15:28:48 +000018#include "clang/AST/DeclVisitor.h"
Steve Narofffb570422009-09-22 19:25:29 +000019#include "clang/AST/StmtVisitor.h"
Douglas Gregor7d0d40e2010-01-21 16:28:34 +000020#include "clang/AST/TypeLocVisitor.h"
Ted Kremenekd8210652010-01-06 23:43:31 +000021#include "clang/Lex/Lexer.h"
Douglas Gregor02465752009-10-16 21:24:31 +000022#include "llvm/Support/MemoryBuffer.h"
Benjamin Kramer0829a832009-10-18 11:19:36 +000023#include "llvm/System/Program.h"
Ted Kremenekfc062212009-10-19 21:44:57 +000024
Ted Kremenekdb3d0da2010-01-05 20:55:39 +000025// Needed to define L_TMPNAM on some systems.
26#include <cstdio>
27
Steve Naroff50398192009-08-28 15:28:48 +000028using namespace clang;
Ted Kremenek16c440a2010-01-15 20:35:54 +000029using namespace clang::cxcursor;
Steve Naroff50398192009-08-28 15:28:48 +000030using namespace idx;
31
Ted Kremenek8a8da7d2010-01-06 03:42:32 +000032//===----------------------------------------------------------------------===//
33// Crash Reporting.
34//===----------------------------------------------------------------------===//
35
36#ifdef __APPLE__
Ted Kremenek29b72842010-01-07 22:49:05 +000037#ifndef NDEBUG
38#define USE_CRASHTRACER
Ted Kremenek8a8da7d2010-01-06 03:42:32 +000039#include "clang/Analysis/Support/SaveAndRestore.h"
40// Integrate with crash reporter.
41extern "C" const char *__crashreporter_info__;
Ted Kremenek29b72842010-01-07 22:49:05 +000042#define NUM_CRASH_STRINGS 16
43static unsigned crashtracer_counter = 0;
Ted Kremenek254ba7c2010-01-07 23:13:53 +000044static unsigned crashtracer_counter_id[NUM_CRASH_STRINGS] = { 0 };
Ted Kremenek29b72842010-01-07 22:49:05 +000045static const char *crashtracer_strings[NUM_CRASH_STRINGS] = { 0 };
46static const char *agg_crashtracer_strings[NUM_CRASH_STRINGS] = { 0 };
47
48static unsigned SetCrashTracerInfo(const char *str,
49 llvm::SmallString<1024> &AggStr) {
50
Ted Kremenek254ba7c2010-01-07 23:13:53 +000051 unsigned slot = 0;
Ted Kremenek29b72842010-01-07 22:49:05 +000052 while (crashtracer_strings[slot]) {
53 if (++slot == NUM_CRASH_STRINGS)
54 slot = 0;
55 }
56 crashtracer_strings[slot] = str;
Ted Kremenek254ba7c2010-01-07 23:13:53 +000057 crashtracer_counter_id[slot] = ++crashtracer_counter;
Ted Kremenek29b72842010-01-07 22:49:05 +000058
59 // We need to create an aggregate string because multiple threads
60 // may be in this method at one time. The crash reporter string
61 // will attempt to overapproximate the set of in-flight invocations
62 // of this function. Race conditions can still cause this goal
63 // to not be achieved.
64 {
65 llvm::raw_svector_ostream Out(AggStr);
66 for (unsigned i = 0; i < NUM_CRASH_STRINGS; ++i)
67 if (crashtracer_strings[i]) Out << crashtracer_strings[i] << '\n';
68 }
69 __crashreporter_info__ = agg_crashtracer_strings[slot] = AggStr.c_str();
70 return slot;
71}
72
73static void ResetCrashTracerInfo(unsigned slot) {
Ted Kremenek254ba7c2010-01-07 23:13:53 +000074 unsigned max_slot = 0;
75 unsigned max_value = 0;
76
77 crashtracer_strings[slot] = agg_crashtracer_strings[slot] = 0;
78
79 for (unsigned i = 0 ; i < NUM_CRASH_STRINGS; ++i)
80 if (agg_crashtracer_strings[i] &&
81 crashtracer_counter_id[i] > max_value) {
82 max_slot = i;
83 max_value = crashtracer_counter_id[i];
Ted Kremenek29b72842010-01-07 22:49:05 +000084 }
Ted Kremenek254ba7c2010-01-07 23:13:53 +000085
86 __crashreporter_info__ = agg_crashtracer_strings[max_slot];
Ted Kremenek29b72842010-01-07 22:49:05 +000087}
88
89namespace {
90class ArgsCrashTracerInfo {
91 llvm::SmallString<1024> CrashString;
92 llvm::SmallString<1024> AggregateString;
93 unsigned crashtracerSlot;
94public:
95 ArgsCrashTracerInfo(llvm::SmallVectorImpl<const char*> &Args)
96 : crashtracerSlot(0)
97 {
98 {
99 llvm::raw_svector_ostream Out(CrashString);
100 Out << "ClangCIndex [createTranslationUnitFromSourceFile]: clang";
101 for (llvm::SmallVectorImpl<const char*>::iterator I=Args.begin(),
102 E=Args.end(); I!=E; ++I)
103 Out << ' ' << *I;
104 }
105 crashtracerSlot = SetCrashTracerInfo(CrashString.c_str(),
106 AggregateString);
107 }
108
109 ~ArgsCrashTracerInfo() {
110 ResetCrashTracerInfo(crashtracerSlot);
111 }
112};
113}
114#endif
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000115#endif
116
Douglas Gregor1db19de2010-01-19 21:36:55 +0000117typedef llvm::PointerIntPair<ASTContext *, 1, bool> CXSourceLocationPtr;
118
Douglas Gregor98258af2010-01-18 22:46:11 +0000119/// \brief Translate a Clang source location into a CIndex source location.
Douglas Gregor1db19de2010-01-19 21:36:55 +0000120static CXSourceLocation translateSourceLocation(ASTContext &Context,
121 SourceLocation Loc,
122 bool AtEnd = false) {
123 CXSourceLocationPtr Ptr(&Context, AtEnd);
124 CXSourceLocation Result = { Ptr.getOpaqueValue(), Loc.getRawEncoding() };
125 return Result;
Douglas Gregor98258af2010-01-18 22:46:11 +0000126}
127
Douglas Gregora7bde202010-01-19 00:34:46 +0000128/// \brief Translate a Clang source range into a CIndex source range.
Douglas Gregor1db19de2010-01-19 21:36:55 +0000129static CXSourceRange translateSourceRange(ASTContext &Context, SourceRange R) {
130 CXSourceRange Result = { &Context,
131 R.getBegin().getRawEncoding(),
132 R.getEnd().getRawEncoding() };
133 return Result;
Douglas Gregora7bde202010-01-19 00:34:46 +0000134}
135
Douglas Gregor1db19de2010-01-19 21:36:55 +0000136
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000137//===----------------------------------------------------------------------===//
138// Visitors.
139//===----------------------------------------------------------------------===//
140
Steve Naroff89922f82009-08-31 00:59:03 +0000141namespace {
Ted Kremenekedc8aa62010-01-16 00:36:30 +0000142
Douglas Gregorb1373d02010-01-20 20:59:29 +0000143// Cursor visitor.
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000144class CursorVisitor : public DeclVisitor<CursorVisitor, bool>,
Douglas Gregora59e3902010-01-21 23:27:09 +0000145 public TypeLocVisitor<CursorVisitor, bool>,
146 public StmtVisitor<CursorVisitor, bool>
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000147{
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000148 ASTUnit *TU;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000149 CXCursor Parent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000150 Decl *StmtParent;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000151 CXCursorVisitor Visitor;
152 CXClientData ClientData;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000153
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000154 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
155 // to the visitor. Declarations with a PCH level greater than this value will
156 // be suppressed.
157 unsigned MaxPCHLevel;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000158
159 using DeclVisitor<CursorVisitor, bool>::Visit;
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000160 using TypeLocVisitor<CursorVisitor, bool>::Visit;
Douglas Gregora59e3902010-01-21 23:27:09 +0000161 using StmtVisitor<CursorVisitor, bool>::Visit;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000162
Steve Naroff89922f82009-08-31 00:59:03 +0000163public:
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000164 CursorVisitor(ASTUnit *TU, CXCursorVisitor Visitor, CXClientData ClientData,
Douglas Gregorb1373d02010-01-20 20:59:29 +0000165 unsigned MaxPCHLevel)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000166 : TU(TU), Visitor(Visitor), ClientData(ClientData), MaxPCHLevel(MaxPCHLevel)
Douglas Gregorb1373d02010-01-20 20:59:29 +0000167 {
168 Parent.kind = CXCursor_NoDeclFound;
169 Parent.data[0] = 0;
170 Parent.data[1] = 0;
171 Parent.data[2] = 0;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000172 StmtParent = 0;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000173 }
174
175 bool Visit(CXCursor Cursor);
176 bool VisitChildren(CXCursor Parent);
177
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000178 // Declaration visitors
Douglas Gregorb1373d02010-01-20 20:59:29 +0000179 bool VisitDeclContext(DeclContext *DC);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000180 bool VisitTranslationUnitDecl(TranslationUnitDecl *D);
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000181 bool VisitTypedefDecl(TypedefDecl *D);
182 bool VisitTagDecl(TagDecl *D);
183 bool VisitEnumConstantDecl(EnumConstantDecl *D);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000184 bool VisitDeclaratorDecl(DeclaratorDecl *DD);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000185 bool VisitFunctionDecl(FunctionDecl *ND);
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000186 bool VisitFieldDecl(FieldDecl *D);
187 bool VisitVarDecl(VarDecl *);
188 bool VisitObjCMethodDecl(ObjCMethodDecl *ND);
Douglas Gregora59e3902010-01-21 23:27:09 +0000189 bool VisitObjCContainerDecl(ObjCContainerDecl *D);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000190 bool VisitObjCCategoryDecl(ObjCCategoryDecl *ND);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000191 bool VisitObjCProtocolDecl(ObjCProtocolDecl *PID);
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000192 bool VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
193 bool VisitObjCImplDecl(ObjCImplDecl *D);
194 bool VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
195 bool VisitObjCImplementationDecl(ObjCImplementationDecl *D);
196 // FIXME: ObjCPropertyDecl requires TypeSourceInfo, getter/setter locations,
197 // etc.
198 // FIXME: ObjCCompatibleAliasDecl requires aliased-class locations.
199 bool VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D);
200 bool VisitObjCClassDecl(ObjCClassDecl *D);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000201
202 // Type visitors
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000203 // FIXME: QualifiedTypeLoc doesn't provide any location information
204 bool VisitBuiltinTypeLoc(BuiltinTypeLoc TL);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000205 bool VisitTypedefTypeLoc(TypedefTypeLoc TL);
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000206 bool VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL);
207 bool VisitTagTypeLoc(TagTypeLoc TL);
208 // FIXME: TemplateTypeParmTypeLoc doesn't provide any location information
209 bool VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL);
210 bool VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL);
211 bool VisitPointerTypeLoc(PointerTypeLoc TL);
212 bool VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL);
213 bool VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL);
214 bool VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL);
215 bool VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL);
216 bool VisitFunctionTypeLoc(FunctionTypeLoc TL);
217 bool VisitArrayTypeLoc(ArrayTypeLoc TL);
Douglas Gregor2332c112010-01-21 20:48:56 +0000218 // FIXME: Implement for TemplateSpecializationTypeLoc
219 // FIXME: Implement visitors here when the unimplemented TypeLocs get
220 // implemented
221 bool VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL);
222 bool VisitTypeOfTypeLoc(TypeOfTypeLoc TL);
Douglas Gregora59e3902010-01-21 23:27:09 +0000223
224 // Statement visitors
225 bool VisitStmt(Stmt *S);
226 bool VisitDeclStmt(DeclStmt *S);
Douglas Gregorf5bab412010-01-22 01:00:11 +0000227 // FIXME: LabelStmt label?
228 bool VisitIfStmt(IfStmt *S);
229 bool VisitSwitchStmt(SwitchStmt *S);
Steve Naroff89922f82009-08-31 00:59:03 +0000230};
Douglas Gregorb1373d02010-01-20 20:59:29 +0000231
Ted Kremenekab188932010-01-05 19:32:54 +0000232} // end anonymous namespace
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000233
Douglas Gregorb1373d02010-01-20 20:59:29 +0000234/// \brief Visit the given cursor and, if requested by the visitor,
235/// its children.
236///
237/// \returns true if the visitation should be aborted, false if it
238/// should continue.
239bool CursorVisitor::Visit(CXCursor Cursor) {
240 if (clang_isInvalid(Cursor.kind))
241 return false;
242
243 if (clang_isDeclaration(Cursor.kind)) {
244 Decl *D = getCursorDecl(Cursor);
245 assert(D && "Invalid declaration cursor");
246 if (D->getPCHLevel() > MaxPCHLevel)
247 return false;
248
249 if (D->isImplicit())
250 return false;
251 }
252
253 switch (Visitor(Cursor, Parent, ClientData)) {
254 case CXChildVisit_Break:
255 return true;
256
257 case CXChildVisit_Continue:
258 return false;
259
260 case CXChildVisit_Recurse:
261 return VisitChildren(Cursor);
262 }
263
264 llvm_unreachable("Silly GCC, we can't get here");
265}
266
267/// \brief Visit the children of the given cursor.
268///
269/// \returns true if the visitation should be aborted, false if it
270/// should continue.
271bool CursorVisitor::VisitChildren(CXCursor Cursor) {
Douglas Gregora59e3902010-01-21 23:27:09 +0000272 if (clang_isReference(Cursor.kind)) {
273 // By definition, references have no children.
274 return false;
275 }
276
Douglas Gregorb1373d02010-01-20 20:59:29 +0000277 // Set the Parent field to Cursor, then back to its old value once we're
278 // done.
279 class SetParentRAII {
280 CXCursor &Parent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000281 Decl *&StmtParent;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000282 CXCursor OldParent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000283
Douglas Gregorb1373d02010-01-20 20:59:29 +0000284 public:
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000285 SetParentRAII(CXCursor &Parent, Decl *&StmtParent, CXCursor NewParent)
286 : Parent(Parent), StmtParent(StmtParent), OldParent(Parent)
Douglas Gregorb1373d02010-01-20 20:59:29 +0000287 {
288 Parent = NewParent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000289 if (clang_isDeclaration(Parent.kind))
290 StmtParent = getCursorDecl(Parent);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000291 }
292
293 ~SetParentRAII() {
294 Parent = OldParent;
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000295 if (clang_isDeclaration(Parent.kind))
296 StmtParent = getCursorDecl(Parent);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000297 }
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000298 } SetParent(Parent, StmtParent, Cursor);
Douglas Gregorb1373d02010-01-20 20:59:29 +0000299
300 if (clang_isDeclaration(Cursor.kind)) {
301 Decl *D = getCursorDecl(Cursor);
302 assert(D && "Invalid declaration cursor");
303 return Visit(D);
304 }
305
Douglas Gregora59e3902010-01-21 23:27:09 +0000306 if (clang_isStatement(Cursor.kind))
307 return Visit(getCursorStmt(Cursor));
308 if (clang_isExpression(Cursor.kind))
309 return Visit(getCursorExpr(Cursor));
310
Douglas Gregorb1373d02010-01-20 20:59:29 +0000311 if (clang_isTranslationUnit(Cursor.kind)) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000312 ASTUnit *CXXUnit = getCursorASTUnit(Cursor);
Douglas Gregor7b691f332010-01-20 21:13:59 +0000313 if (!CXXUnit->isMainFileAST() && CXXUnit->getOnlyLocalDecls()) {
314 const std::vector<Decl*> &TLDs = CXXUnit->getTopLevelDecls();
315 for (std::vector<Decl*>::const_iterator it = TLDs.begin(),
316 ie = TLDs.end(); it != ie; ++it) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000317 if (Visit(MakeCXCursor(*it, CXXUnit)))
Douglas Gregor7b691f332010-01-20 21:13:59 +0000318 return true;
319 }
320 } else {
321 return VisitDeclContext(
Douglas Gregorb1373d02010-01-20 20:59:29 +0000322 CXXUnit->getASTContext().getTranslationUnitDecl());
Douglas Gregor7b691f332010-01-20 21:13:59 +0000323 }
324
325 return false;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000326 }
Douglas Gregora59e3902010-01-21 23:27:09 +0000327
Douglas Gregorb1373d02010-01-20 20:59:29 +0000328 // Nothing to visit at the moment.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000329 return false;
330}
331
Douglas Gregorb1373d02010-01-20 20:59:29 +0000332bool CursorVisitor::VisitDeclContext(DeclContext *DC) {
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000333 for (DeclContext::decl_iterator
Douglas Gregorb1373d02010-01-20 20:59:29 +0000334 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000335 if (Visit(MakeCXCursor(*I, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000336 return true;
337 }
338
339 return false;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000340}
341
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000342bool CursorVisitor::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
343 llvm_unreachable("Translation units are visited directly by Visit()");
344 return false;
345}
346
347bool CursorVisitor::VisitTypedefDecl(TypedefDecl *D) {
348 if (TypeSourceInfo *TSInfo = D->getTypeSourceInfo())
349 return Visit(TSInfo->getTypeLoc());
350
351 return false;
352}
353
354bool CursorVisitor::VisitTagDecl(TagDecl *D) {
355 return VisitDeclContext(D);
356}
357
358bool CursorVisitor::VisitEnumConstantDecl(EnumConstantDecl *D) {
359 if (Expr *Init = D->getInitExpr())
360 return Visit(MakeCXCursor(Init, StmtParent, TU));
361 return false;
362}
363
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000364bool CursorVisitor::VisitDeclaratorDecl(DeclaratorDecl *DD) {
365 if (TypeSourceInfo *TSInfo = DD->getTypeSourceInfo())
366 if (Visit(TSInfo->getTypeLoc()))
367 return true;
368
369 return false;
370}
371
Douglas Gregorb1373d02010-01-20 20:59:29 +0000372bool CursorVisitor::VisitFunctionDecl(FunctionDecl *ND) {
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000373 if (VisitDeclaratorDecl(ND))
374 return true;
375
Douglas Gregora59e3902010-01-21 23:27:09 +0000376 if (ND->isThisDeclarationADefinition() &&
377 Visit(MakeCXCursor(ND->getBody(), StmtParent, TU)))
378 return true;
Douglas Gregorb1373d02010-01-20 20:59:29 +0000379
380 return false;
381}
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000382
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000383bool CursorVisitor::VisitFieldDecl(FieldDecl *D) {
384 if (VisitDeclaratorDecl(D))
385 return true;
386
387 if (Expr *BitWidth = D->getBitWidth())
388 return Visit(MakeCXCursor(BitWidth, StmtParent, TU));
389
390 return false;
391}
392
393bool CursorVisitor::VisitVarDecl(VarDecl *D) {
394 if (VisitDeclaratorDecl(D))
395 return true;
396
397 if (Expr *Init = D->getInit())
398 return Visit(MakeCXCursor(Init, StmtParent, TU));
399
400 return false;
401}
402
403bool CursorVisitor::VisitObjCMethodDecl(ObjCMethodDecl *ND) {
404 // FIXME: We really need a TypeLoc covering Objective-C method declarations.
405 // At the moment, we don't have information about locations in the return
406 // type.
407 for (ObjCMethodDecl::param_iterator P = ND->param_begin(),
408 PEnd = ND->param_end();
409 P != PEnd; ++P) {
410 if (Visit(MakeCXCursor(*P, TU)))
411 return true;
412 }
413
414 if (ND->isThisDeclarationADefinition() &&
415 Visit(MakeCXCursor(ND->getBody(), StmtParent, TU)))
416 return true;
417
418 return false;
419}
420
Douglas Gregora59e3902010-01-21 23:27:09 +0000421bool CursorVisitor::VisitObjCContainerDecl(ObjCContainerDecl *D) {
422 return VisitDeclContext(D);
423}
424
Douglas Gregorb1373d02010-01-20 20:59:29 +0000425bool CursorVisitor::VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000426 if (Visit(MakeCursorObjCClassRef(ND->getClassInterface(), ND->getLocation(),
427 TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000428 return true;
429
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000430 ObjCCategoryDecl::protocol_loc_iterator PL = ND->protocol_loc_begin();
431 for (ObjCCategoryDecl::protocol_iterator I = ND->protocol_begin(),
432 E = ND->protocol_end(); I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000433 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000434 return true;
435
Douglas Gregora59e3902010-01-21 23:27:09 +0000436 return VisitObjCContainerDecl(ND);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000437}
438
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000439bool CursorVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
440 ObjCProtocolDecl::protocol_loc_iterator PL = PID->protocol_loc_begin();
441 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
442 E = PID->protocol_end(); I != E; ++I, ++PL)
443 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
444 return true;
445
446 return VisitObjCContainerDecl(PID);
447}
448
Douglas Gregorb1373d02010-01-20 20:59:29 +0000449bool CursorVisitor::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000450 // Issue callbacks for super class.
Douglas Gregorb1373d02010-01-20 20:59:29 +0000451 if (D->getSuperClass() &&
452 Visit(MakeCursorObjCSuperClassRef(D->getSuperClass(),
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000453 D->getSuperClassLoc(),
454 TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000455 return true;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000456
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000457 ObjCInterfaceDecl::protocol_loc_iterator PL = D->protocol_loc_begin();
458 for (ObjCInterfaceDecl::protocol_iterator I = D->protocol_begin(),
459 E = D->protocol_end(); I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000460 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000461 return true;
462
Douglas Gregora59e3902010-01-21 23:27:09 +0000463 return VisitObjCContainerDecl(D);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000464}
465
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000466bool CursorVisitor::VisitObjCImplDecl(ObjCImplDecl *D) {
467 return VisitObjCContainerDecl(D);
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000468}
469
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000470bool CursorVisitor::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
471 if (Visit(MakeCursorObjCClassRef(D->getCategoryDecl()->getClassInterface(),
472 D->getLocation(), TU)))
473 return true;
474
475 return VisitObjCImplDecl(D);
476}
477
478bool CursorVisitor::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
479#if 0
480 // Issue callbacks for super class.
481 // FIXME: No source location information!
482 if (D->getSuperClass() &&
483 Visit(MakeCursorObjCSuperClassRef(D->getSuperClass(),
484 D->getSuperClassLoc(),
485 TU)))
486 return true;
487#endif
488
489 return VisitObjCImplDecl(D);
490}
491
492bool CursorVisitor::VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D) {
493 ObjCForwardProtocolDecl::protocol_loc_iterator PL = D->protocol_loc_begin();
494 for (ObjCForwardProtocolDecl::protocol_iterator I = D->protocol_begin(),
495 E = D->protocol_end();
496 I != E; ++I, ++PL)
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000497 if (Visit(MakeCursorObjCProtocolRef(*I, *PL, TU)))
Douglas Gregorb1373d02010-01-20 20:59:29 +0000498 return true;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000499
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000500 return false;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000501}
502
Douglas Gregor1ef2fc12010-01-22 00:50:27 +0000503bool CursorVisitor::VisitObjCClassDecl(ObjCClassDecl *D) {
504 for (ObjCClassDecl::iterator C = D->begin(), CEnd = D->end(); C != CEnd; ++C)
505 if (Visit(MakeCursorObjCClassRef(C->getInterface(), C->getLocation(), TU)))
506 return true;
507
508 return false;
Ted Kremenekdd6bcc52010-01-13 00:22:49 +0000509}
510
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000511bool CursorVisitor::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
512 ASTContext &Context = TU->getASTContext();
513
514 // Some builtin types (such as Objective-C's "id", "sel", and
515 // "Class") have associated declarations. Create cursors for those.
516 QualType VisitType;
517 switch (TL.getType()->getAs<BuiltinType>()->getKind()) {
518 case BuiltinType::Void:
519 case BuiltinType::Bool:
520 case BuiltinType::Char_U:
521 case BuiltinType::UChar:
522 case BuiltinType::Char16:
523 case BuiltinType::Char32:
524 case BuiltinType::UShort:
525 case BuiltinType::UInt:
526 case BuiltinType::ULong:
527 case BuiltinType::ULongLong:
528 case BuiltinType::UInt128:
529 case BuiltinType::Char_S:
530 case BuiltinType::SChar:
531 case BuiltinType::WChar:
532 case BuiltinType::Short:
533 case BuiltinType::Int:
534 case BuiltinType::Long:
535 case BuiltinType::LongLong:
536 case BuiltinType::Int128:
537 case BuiltinType::Float:
538 case BuiltinType::Double:
539 case BuiltinType::LongDouble:
540 case BuiltinType::NullPtr:
541 case BuiltinType::Overload:
542 case BuiltinType::Dependent:
543 break;
544
545 case BuiltinType::UndeducedAuto: // FIXME: Deserves a cursor?
546 break;
547
548 case BuiltinType::ObjCId:
549 VisitType = Context.getObjCIdType();
550 break;
551
552 case BuiltinType::ObjCClass:
553 VisitType = Context.getObjCClassType();
554 break;
555
556 case BuiltinType::ObjCSel:
557 VisitType = Context.getObjCSelType();
558 break;
559 }
560
561 if (!VisitType.isNull()) {
562 if (const TypedefType *Typedef = VisitType->getAs<TypedefType>())
563 return Visit(MakeCursorTypeRef(Typedef->getDecl(), TL.getBuiltinLoc(),
564 TU));
565 }
566
567 return false;
568}
569
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000570bool CursorVisitor::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
571 return Visit(MakeCursorTypeRef(TL.getTypedefDecl(), TL.getNameLoc(), TU));
572}
573
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000574bool CursorVisitor::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
575 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
576}
577
578bool CursorVisitor::VisitTagTypeLoc(TagTypeLoc TL) {
579 return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
580}
581
582bool CursorVisitor::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
583 if (Visit(MakeCursorObjCClassRef(TL.getIFaceDecl(), TL.getNameLoc(), TU)))
584 return true;
585
586 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {
587 if (Visit(MakeCursorObjCProtocolRef(TL.getProtocol(I), TL.getProtocolLoc(I),
588 TU)))
589 return true;
590 }
591
592 return false;
593}
594
595bool CursorVisitor::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
596 if (TL.hasBaseTypeAsWritten() && Visit(TL.getBaseTypeLoc()))
597 return true;
598
599 if (TL.hasProtocolsAsWritten()) {
600 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {
601 if (Visit(MakeCursorObjCProtocolRef(TL.getProtocol(I),
602 TL.getProtocolLoc(I),
603 TU)))
604 return true;
605 }
606 }
607
608 return false;
609}
610
611bool CursorVisitor::VisitPointerTypeLoc(PointerTypeLoc TL) {
612 return Visit(TL.getPointeeLoc());
613}
614
615bool CursorVisitor::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
616 return Visit(TL.getPointeeLoc());
617}
618
619bool CursorVisitor::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
620 return Visit(TL.getPointeeLoc());
621}
622
623bool CursorVisitor::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
624 return Visit(TL.getPointeeLoc());
625}
626
627bool CursorVisitor::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
628 return Visit(TL.getPointeeLoc());
629}
630
631bool CursorVisitor::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
632 if (Visit(TL.getResultLoc()))
633 return true;
634
Douglas Gregorf20dfbc2010-01-21 17:29:07 +0000635 for (unsigned I = 0, N = TL.getNumArgs(); I != N; ++I)
636 if (Visit(MakeCXCursor(TL.getArg(I), TU)))
637 return true;
638
639 return false;
640}
641
642bool CursorVisitor::VisitArrayTypeLoc(ArrayTypeLoc TL) {
643 if (Visit(TL.getElementLoc()))
644 return true;
645
646 if (Expr *Size = TL.getSizeExpr())
647 return Visit(MakeCXCursor(Size, StmtParent, TU));
648
649 return false;
650}
651
Douglas Gregor2332c112010-01-21 20:48:56 +0000652bool CursorVisitor::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
653 return Visit(MakeCXCursor(TL.getUnderlyingExpr(), StmtParent, TU));
654}
655
656bool CursorVisitor::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
657 if (TypeSourceInfo *TSInfo = TL.getUnderlyingTInfo())
658 return Visit(TSInfo->getTypeLoc());
659
660 return false;
661}
662
Douglas Gregora59e3902010-01-21 23:27:09 +0000663bool CursorVisitor::VisitStmt(Stmt *S) {
664 for (Stmt::child_iterator Child = S->child_begin(), ChildEnd = S->child_end();
665 Child != ChildEnd; ++Child) {
666 if (Visit(MakeCXCursor(*Child, StmtParent, TU)))
667 return true;
668 }
669
670 return false;
671}
672
673bool CursorVisitor::VisitDeclStmt(DeclStmt *S) {
674 for (DeclStmt::decl_iterator D = S->decl_begin(), DEnd = S->decl_end();
675 D != DEnd; ++D) {
676 if (Visit(MakeCXCursor(*D, TU)))
677 return true;
678 }
679
680 return false;
681}
682
Douglas Gregorf5bab412010-01-22 01:00:11 +0000683bool CursorVisitor::VisitIfStmt(IfStmt *S) {
684 if (VarDecl *Var = S->getConditionVariable()) {
685 if (Visit(MakeCXCursor(Var, TU)))
686 return true;
687 } else if (S->getCond() && Visit(MakeCXCursor(S->getCond(), StmtParent, TU)))
688 return true;
689
690 if (S->getThen() && Visit(MakeCXCursor(S->getThen(), StmtParent, TU)))
691 return true;
692
693 if (S->getElse() && Visit(MakeCXCursor(S->getElse(), StmtParent, TU)))
694 return true;
695
696 return false;
697}
698
699bool CursorVisitor::VisitSwitchStmt(SwitchStmt *S) {
700 if (VarDecl *Var = S->getConditionVariable()) {
701 if (Visit(MakeCXCursor(Var, TU)))
702 return true;
703 } else if (S->getCond() && Visit(MakeCXCursor(S->getCond(), StmtParent, TU)))
704 return true;
705
706 if (S->getBody() && Visit(MakeCXCursor(S->getBody(), StmtParent, TU)))
707 return true;
708
709 return false;
710}
711
Daniel Dunbar140fce22010-01-12 02:34:07 +0000712CXString CIndexer::createCXString(const char *String, bool DupString){
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000713 CXString Str;
714 if (DupString) {
715 Str.Spelling = strdup(String);
716 Str.MustFreeString = 1;
717 } else {
718 Str.Spelling = String;
719 Str.MustFreeString = 0;
720 }
721 return Str;
722}
723
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000724extern "C" {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000725CXIndex clang_createIndex(int excludeDeclarationsFromPCH,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000726 int displayDiagnostics) {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000727 CIndexer *CIdxr = new CIndexer(new Program());
728 if (excludeDeclarationsFromPCH)
729 CIdxr->setOnlyLocalDecls();
730 if (displayDiagnostics)
731 CIdxr->setDisplayDiagnostics();
732 return CIdxr;
Steve Naroff600866c2009-08-27 19:51:58 +0000733}
734
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000735void clang_disposeIndex(CXIndex CIdx) {
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000736 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000737 delete static_cast<CIndexer *>(CIdx);
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000738}
739
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000740void clang_setUseExternalASTGeneration(CXIndex CIdx, int value) {
741 assert(CIdx && "Passed null CXIndex");
742 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
743 CXXIdx->setUseExternalASTGeneration(value);
744}
745
Steve Naroff50398192009-08-28 15:28:48 +0000746// FIXME: need to pass back error info.
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000747CXTranslationUnit clang_createTranslationUnit(CXIndex CIdx,
748 const char *ast_filename) {
Steve Naroff50398192009-08-28 15:28:48 +0000749 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000750 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000751
Daniel Dunbar5262fda2009-12-03 01:45:44 +0000752 return ASTUnit::LoadFromPCHFile(ast_filename, CXXIdx->getDiags(),
753 CXXIdx->getOnlyLocalDecls(),
754 /* UseBumpAllocator = */ true);
Steve Naroff600866c2009-08-27 19:51:58 +0000755}
756
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000757CXTranslationUnit
758clang_createTranslationUnitFromSourceFile(CXIndex CIdx,
759 const char *source_filename,
760 int num_command_line_args,
761 const char **command_line_args) {
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000762 assert(CIdx && "Passed null CXIndex");
763 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
764
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000765 if (!CXXIdx->getUseExternalASTGeneration()) {
766 llvm::SmallVector<const char *, 16> Args;
767
768 // The 'source_filename' argument is optional. If the caller does not
769 // specify it then it is assumed that the source file is specified
770 // in the actual argument list.
771 if (source_filename)
772 Args.push_back(source_filename);
773 Args.insert(Args.end(), command_line_args,
774 command_line_args + num_command_line_args);
775
Daniel Dunbar94220972009-12-05 02:17:18 +0000776 unsigned NumErrors = CXXIdx->getDiags().getNumErrors();
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000777
Ted Kremenek29b72842010-01-07 22:49:05 +0000778#ifdef USE_CRASHTRACER
779 ArgsCrashTracerInfo ACTI(Args);
Ted Kremenek8a8da7d2010-01-06 03:42:32 +0000780#endif
781
Daniel Dunbar94220972009-12-05 02:17:18 +0000782 llvm::OwningPtr<ASTUnit> Unit(
783 ASTUnit::LoadFromCommandLine(Args.data(), Args.data() + Args.size(),
Daniel Dunbar869824e2009-12-13 03:46:13 +0000784 CXXIdx->getDiags(),
785 CXXIdx->getClangResourcesPath(),
Daniel Dunbar94220972009-12-05 02:17:18 +0000786 CXXIdx->getOnlyLocalDecls(),
787 /* UseBumpAllocator = */ true));
Ted Kremenek29b72842010-01-07 22:49:05 +0000788
Daniel Dunbar94220972009-12-05 02:17:18 +0000789 // FIXME: Until we have broader testing, just drop the entire AST if we
790 // encountered an error.
791 if (NumErrors != CXXIdx->getDiags().getNumErrors())
792 return 0;
793
794 return Unit.take();
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000795 }
796
Ted Kremenek139ba862009-10-22 00:03:57 +0000797 // Build up the arguments for invoking 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000798 std::vector<const char *> argv;
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000799
Ted Kremenek139ba862009-10-22 00:03:57 +0000800 // First add the complete path to the 'clang' executable.
801 llvm::sys::Path ClangPath = static_cast<CIndexer *>(CIdx)->getClangPath();
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000802 argv.push_back(ClangPath.c_str());
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000803
Ted Kremenek139ba862009-10-22 00:03:57 +0000804 // Add the '-emit-ast' option as our execution mode for 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000805 argv.push_back("-emit-ast");
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000806
Ted Kremenek139ba862009-10-22 00:03:57 +0000807 // The 'source_filename' argument is optional. If the caller does not
808 // specify it then it is assumed that the source file is specified
809 // in the actual argument list.
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000810 if (source_filename)
811 argv.push_back(source_filename);
Ted Kremenek139ba862009-10-22 00:03:57 +0000812
Steve Naroff37b5ac22009-10-15 20:50:09 +0000813 // Generate a temporary name for the AST file.
Ted Kremenek139ba862009-10-22 00:03:57 +0000814 argv.push_back("-o");
Steve Naroff37b5ac22009-10-15 20:50:09 +0000815 char astTmpFile[L_tmpnam];
Ted Kremenek74cd0692009-10-15 23:21:22 +0000816 argv.push_back(tmpnam(astTmpFile));
Ted Kremenek139ba862009-10-22 00:03:57 +0000817
818 // Process the compiler options, stripping off '-o', '-c', '-fsyntax-only'.
819 for (int i = 0; i < num_command_line_args; ++i)
820 if (const char *arg = command_line_args[i]) {
821 if (strcmp(arg, "-o") == 0) {
822 ++i; // Also skip the matching argument.
823 continue;
824 }
825 if (strcmp(arg, "-emit-ast") == 0 ||
826 strcmp(arg, "-c") == 0 ||
827 strcmp(arg, "-fsyntax-only") == 0) {
828 continue;
829 }
830
831 // Keep the argument.
832 argv.push_back(arg);
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000833 }
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000834
Ted Kremenek139ba862009-10-22 00:03:57 +0000835 // Add the null terminator.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000836 argv.push_back(NULL);
837
Ted Kremenekfeb15e32009-10-26 22:14:08 +0000838 // Invoke 'clang'.
839 llvm::sys::Path DevNull; // leave empty, causes redirection to /dev/null
840 // on Unix or NUL (Windows).
Ted Kremenek379afec2009-10-22 03:24:01 +0000841 std::string ErrMsg;
Ted Kremenekc46e4632009-10-19 22:27:32 +0000842 const llvm::sys::Path *Redirects[] = { &DevNull, &DevNull, &DevNull, NULL };
Ted Kremenek379afec2009-10-22 03:24:01 +0000843 llvm::sys::Program::ExecuteAndWait(ClangPath, &argv[0], /* env */ NULL,
844 /* redirects */ !CXXIdx->getDisplayDiagnostics() ? &Redirects[0] : NULL,
845 /* secondsToWait */ 0, /* memoryLimits */ 0, &ErrMsg);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000846
Ted Kremenek0854d702009-11-10 19:18:52 +0000847 if (CXXIdx->getDisplayDiagnostics() && !ErrMsg.empty()) {
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000848 llvm::errs() << "clang_createTranslationUnitFromSourceFile: " << ErrMsg
Daniel Dunbaracca7252009-11-30 20:42:49 +0000849 << '\n' << "Arguments: \n";
Ted Kremenek379afec2009-10-22 03:24:01 +0000850 for (std::vector<const char*>::iterator I = argv.begin(), E = argv.end();
Ted Kremenek779e5f42009-10-26 22:08:39 +0000851 I!=E; ++I) {
852 if (*I)
853 llvm::errs() << ' ' << *I << '\n';
854 }
855 llvm::errs() << '\n';
Ted Kremenek379afec2009-10-22 03:24:01 +0000856 }
Benjamin Kramer0829a832009-10-18 11:19:36 +0000857
Steve Naroff37b5ac22009-10-15 20:50:09 +0000858 // Finally, we create the translation unit from the ast file.
Steve Naroffe19944c2009-10-15 22:23:48 +0000859 ASTUnit *ATU = static_cast<ASTUnit *>(
Daniel Dunbaracca7252009-11-30 20:42:49 +0000860 clang_createTranslationUnit(CIdx, astTmpFile));
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000861 if (ATU)
862 ATU->unlinkTemporaryFile();
Steve Naroffe19944c2009-10-15 22:23:48 +0000863 return ATU;
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000864}
865
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000866void clang_disposeTranslationUnit(CXTranslationUnit CTUnit) {
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000867 assert(CTUnit && "Passed null CXTranslationUnit");
868 delete static_cast<ASTUnit *>(CTUnit);
869}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +0000870
Daniel Dunbar9ebfa312009-12-01 03:14:51 +0000871CXString clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000872 assert(CTUnit && "Passed null CXTranslationUnit");
Steve Naroff77accc12009-09-03 18:19:54 +0000873 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
Ted Kremenek4b333d22010-01-12 00:36:38 +0000874 return CIndexer::createCXString(CXXUnit->getOriginalSourceFileName().c_str(),
875 true);
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000876}
Daniel Dunbar1eb79b52009-08-28 16:30:07 +0000877
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +0000878CXCursor clang_getTranslationUnitCursor(CXTranslationUnit TU) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000879 CXCursor Result = { CXCursor_TranslationUnit, { 0, 0, TU } };
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +0000880 return Result;
881}
882
Ted Kremenekfb480492010-01-13 21:46:36 +0000883} // end: extern "C"
Steve Naroff600866c2009-08-27 19:51:58 +0000884
Ted Kremenekfb480492010-01-13 21:46:36 +0000885//===----------------------------------------------------------------------===//
Douglas Gregor1db19de2010-01-19 21:36:55 +0000886// CXSourceLocation and CXSourceRange Operations.
887//===----------------------------------------------------------------------===//
888
889void clang_getInstantiationLocation(CXSourceLocation location,
890 CXFile *file,
891 unsigned *line,
892 unsigned *column) {
893 CXSourceLocationPtr Ptr
894 = CXSourceLocationPtr::getFromOpaqueValue(location.ptr_data);
895 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data);
896
897 if (!Ptr.getPointer() || Loc.isInvalid()) {
898 if (file)
899 *file = 0;
900 if (line)
901 *line = 0;
902 if (column)
903 *column = 0;
904 return;
905 }
906
907 // FIXME: This is largely copy-paste from
908 ///TextDiagnosticPrinter::HighlightRange. When it is clear that this is
909 // what we want the two routines should be refactored.
910 ASTContext &Context = *Ptr.getPointer();
911 SourceManager &SM = Context.getSourceManager();
912 SourceLocation InstLoc = SM.getInstantiationLoc(Loc);
913
914 if (Ptr.getInt()) {
915 // We want the last character in this location, so we will adjust
916 // the instantiation location accordingly.
917
918 // If the location is from a macro instantiation, get the end of
919 // the instantiation range.
920 if (Loc.isMacroID())
921 InstLoc = SM.getInstantiationRange(Loc).second;
922
923 // Measure the length token we're pointing at, so we can adjust
924 // the physical location in the file to point at the last
925 // character.
926 // FIXME: This won't cope with trigraphs or escaped newlines
927 // well. For that, we actually need a preprocessor, which isn't
928 // currently available here. Eventually, we'll switch the pointer
929 // data of CXSourceLocation/CXSourceRange to a translation unit
930 // (CXXUnit), so that the preprocessor will be available here. At
931 // that point, we can use Preprocessor::getLocForEndOfToken().
932 unsigned Length = Lexer::MeasureTokenLength(InstLoc, SM,
933 Context.getLangOptions());
934 if (Length > 0)
935 InstLoc = InstLoc.getFileLocWithOffset(Length - 1);
936 }
937
938 if (file)
939 *file = (void *)SM.getFileEntryForID(SM.getFileID(InstLoc));
940 if (line)
941 *line = SM.getInstantiationLineNumber(InstLoc);
942 if (column)
943 *column = SM.getInstantiationColumnNumber(InstLoc);
944}
945
946CXSourceLocation clang_getRangeStart(CXSourceRange range) {
947 CXSourceLocation Result = { range.ptr_data, range.begin_int_data };
948 return Result;
949}
950
951CXSourceLocation clang_getRangeEnd(CXSourceRange range) {
952 llvm::PointerIntPair<ASTContext *, 1, bool> Ptr;
953 Ptr.setPointer(static_cast<ASTContext *>(range.ptr_data));
954 Ptr.setInt(true);
955 CXSourceLocation Result = { Ptr.getOpaqueValue(), range.end_int_data };
956 return Result;
957}
958
959//===----------------------------------------------------------------------===//
Ted Kremenekfb480492010-01-13 21:46:36 +0000960// CXFile Operations.
961//===----------------------------------------------------------------------===//
962
963extern "C" {
Steve Naroff88145032009-10-27 14:35:18 +0000964const char *clang_getFileName(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000965 if (!SFile)
966 return 0;
967
Steve Naroff88145032009-10-27 14:35:18 +0000968 assert(SFile && "Passed null CXFile");
969 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
970 return FEnt->getName();
971}
972
973time_t clang_getFileTime(CXFile SFile) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000974 if (!SFile)
975 return 0;
976
Steve Naroff88145032009-10-27 14:35:18 +0000977 assert(SFile && "Passed null CXFile");
978 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
979 return FEnt->getModificationTime();
Steve Naroffee9405e2009-09-25 21:45:39 +0000980}
Ted Kremenekfb480492010-01-13 21:46:36 +0000981} // end: extern "C"
Steve Naroffee9405e2009-09-25 21:45:39 +0000982
Ted Kremenekfb480492010-01-13 21:46:36 +0000983//===----------------------------------------------------------------------===//
984// CXCursor Operations.
985//===----------------------------------------------------------------------===//
986
Ted Kremenekfb480492010-01-13 21:46:36 +0000987static Decl *getDeclFromExpr(Stmt *E) {
988 if (DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E))
989 return RefExpr->getDecl();
990 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
991 return ME->getMemberDecl();
992 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E))
993 return RE->getDecl();
994
995 if (CallExpr *CE = dyn_cast<CallExpr>(E))
996 return getDeclFromExpr(CE->getCallee());
997 if (CastExpr *CE = dyn_cast<CastExpr>(E))
998 return getDeclFromExpr(CE->getSubExpr());
999 if (ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E))
1000 return OME->getMethodDecl();
1001
1002 return 0;
1003}
1004
1005extern "C" {
Douglas Gregorb1373d02010-01-20 20:59:29 +00001006
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001007unsigned clang_visitChildren(CXCursor parent,
Douglas Gregorb1373d02010-01-20 20:59:29 +00001008 CXCursorVisitor visitor,
1009 CXClientData client_data) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001010 ASTUnit *CXXUnit = getCursorASTUnit(parent);
Douglas Gregorb1373d02010-01-20 20:59:29 +00001011
1012 unsigned PCHLevel = Decl::MaxPCHLevel;
1013
1014 // Set the PCHLevel to filter out unwanted decls if requested.
1015 if (CXXUnit->getOnlyLocalDecls()) {
1016 PCHLevel = 0;
1017
1018 // If the main input was an AST, bump the level.
1019 if (CXXUnit->isMainFileAST())
1020 ++PCHLevel;
1021 }
1022
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001023 CursorVisitor CursorVis(CXXUnit, visitor, client_data, PCHLevel);
Douglas Gregorb1373d02010-01-20 20:59:29 +00001024 return CursorVis.VisitChildren(parent);
1025}
1026
Douglas Gregor78205d42010-01-20 21:45:58 +00001027static CXString getDeclSpelling(Decl *D) {
1028 NamedDecl *ND = dyn_cast_or_null<NamedDecl>(D);
1029 if (!ND)
1030 return CIndexer::createCXString("");
1031
1032 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
1033 return CIndexer::createCXString(OMD->getSelector().getAsString().c_str(),
1034 true);
1035
1036 if (ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND))
1037 // No, this isn't the same as the code below. getIdentifier() is non-virtual
1038 // and returns different names. NamedDecl returns the class name and
1039 // ObjCCategoryImplDecl returns the category name.
1040 return CIndexer::createCXString(CIMP->getIdentifier()->getNameStart());
1041
1042 if (ND->getIdentifier())
1043 return CIndexer::createCXString(ND->getIdentifier()->getNameStart());
1044
1045 return CIndexer::createCXString("");
1046}
1047
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001048CXString clang_getCursorSpelling(CXCursor C) {
Daniel Dunbarc81d7182010-01-18 17:52:42 +00001049 assert(getCursorDecl(C) && "CXCursor has null decl");
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001050 if (clang_isTranslationUnit(C.kind))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001051 return clang_getTranslationUnitSpelling(C.data[2]);
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001052
Steve Narofff334b4e2009-09-02 18:26:48 +00001053 if (clang_isReference(C.kind)) {
1054 switch (C.kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +00001055 case CXCursor_ObjCSuperClassRef: {
Douglas Gregor2e331b92010-01-16 14:00:32 +00001056 ObjCInterfaceDecl *Super = getCursorObjCSuperClassRef(C).first;
1057 return CIndexer::createCXString(Super->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00001058 }
1059 case CXCursor_ObjCClassRef: {
Douglas Gregor1adb0822010-01-16 17:14:40 +00001060 ObjCInterfaceDecl *Class = getCursorObjCClassRef(C).first;
1061 return CIndexer::createCXString(Class->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00001062 }
1063 case CXCursor_ObjCProtocolRef: {
Douglas Gregor78db0cd2010-01-16 15:44:18 +00001064 ObjCProtocolDecl *OID = getCursorObjCProtocolRef(C).first;
Douglas Gregorf46034a2010-01-18 23:41:10 +00001065 assert(OID && "getCursorSpelling(): Missing protocol decl");
Ted Kremenek4b333d22010-01-12 00:36:38 +00001066 return CIndexer::createCXString(OID->getIdentifier()->getNameStart());
Daniel Dunbaracca7252009-11-30 20:42:49 +00001067 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001068 case CXCursor_TypeRef: {
1069 TypeDecl *Type = getCursorTypeRef(C).first;
1070 assert(Type && "Missing type decl");
1071
1072 return CIndexer::createCXString(
1073 getCursorContext(C).getTypeDeclType(Type).getAsString().c_str(),
1074 true);
1075 }
1076
Daniel Dunbaracca7252009-11-30 20:42:49 +00001077 default:
Ted Kremenek4b333d22010-01-12 00:36:38 +00001078 return CIndexer::createCXString("<not implemented>");
Steve Narofff334b4e2009-09-02 18:26:48 +00001079 }
1080 }
Douglas Gregor97b98722010-01-19 23:20:36 +00001081
1082 if (clang_isExpression(C.kind)) {
1083 Decl *D = getDeclFromExpr(getCursorExpr(C));
1084 if (D)
Douglas Gregor78205d42010-01-20 21:45:58 +00001085 return getDeclSpelling(D);
Douglas Gregor97b98722010-01-19 23:20:36 +00001086 return CIndexer::createCXString("");
1087 }
1088
Douglas Gregor78205d42010-01-20 21:45:58 +00001089 return getDeclSpelling(getCursorDecl(C));
Steve Narofff334b4e2009-09-02 18:26:48 +00001090}
1091
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001092const char *clang_getCursorKindSpelling(enum CXCursorKind Kind) {
Steve Naroff89922f82009-08-31 00:59:03 +00001093 switch (Kind) {
Daniel Dunbaracca7252009-11-30 20:42:49 +00001094 case CXCursor_FunctionDecl: return "FunctionDecl";
1095 case CXCursor_TypedefDecl: return "TypedefDecl";
1096 case CXCursor_EnumDecl: return "EnumDecl";
1097 case CXCursor_EnumConstantDecl: return "EnumConstantDecl";
1098 case CXCursor_StructDecl: return "StructDecl";
1099 case CXCursor_UnionDecl: return "UnionDecl";
1100 case CXCursor_ClassDecl: return "ClassDecl";
1101 case CXCursor_FieldDecl: return "FieldDecl";
1102 case CXCursor_VarDecl: return "VarDecl";
1103 case CXCursor_ParmDecl: return "ParmDecl";
1104 case CXCursor_ObjCInterfaceDecl: return "ObjCInterfaceDecl";
1105 case CXCursor_ObjCCategoryDecl: return "ObjCCategoryDecl";
1106 case CXCursor_ObjCProtocolDecl: return "ObjCProtocolDecl";
1107 case CXCursor_ObjCPropertyDecl: return "ObjCPropertyDecl";
1108 case CXCursor_ObjCIvarDecl: return "ObjCIvarDecl";
1109 case CXCursor_ObjCInstanceMethodDecl: return "ObjCInstanceMethodDecl";
1110 case CXCursor_ObjCClassMethodDecl: return "ObjCClassMethodDecl";
Douglas Gregorb6998662010-01-19 19:34:47 +00001111 case CXCursor_ObjCImplementationDecl: return "ObjCImplementationDecl";
1112 case CXCursor_ObjCCategoryImplDecl: return "ObjCCategoryImplDecl";
Douglas Gregor30122132010-01-19 22:07:56 +00001113 case CXCursor_UnexposedDecl: return "UnexposedDecl";
Daniel Dunbaracca7252009-11-30 20:42:49 +00001114 case CXCursor_ObjCSuperClassRef: return "ObjCSuperClassRef";
1115 case CXCursor_ObjCProtocolRef: return "ObjCProtocolRef";
1116 case CXCursor_ObjCClassRef: return "ObjCClassRef";
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001117 case CXCursor_TypeRef: return "TypeRef";
Douglas Gregor97b98722010-01-19 23:20:36 +00001118 case CXCursor_UnexposedExpr: return "UnexposedExpr";
1119 case CXCursor_DeclRefExpr: return "DeclRefExpr";
1120 case CXCursor_MemberRefExpr: return "MemberRefExpr";
1121 case CXCursor_CallExpr: return "CallExpr";
1122 case CXCursor_ObjCMessageExpr: return "ObjCMessageExpr";
1123 case CXCursor_UnexposedStmt: return "UnexposedStmt";
Daniel Dunbaracca7252009-11-30 20:42:49 +00001124 case CXCursor_InvalidFile: return "InvalidFile";
1125 case CXCursor_NoDeclFound: return "NoDeclFound";
1126 case CXCursor_NotImplemented: return "NotImplemented";
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001127 case CXCursor_TranslationUnit: return "TranslationUnit";
Steve Naroff89922f82009-08-31 00:59:03 +00001128 }
Ted Kremenekdeb06bd2010-01-16 02:02:09 +00001129
1130 llvm_unreachable("Unhandled CXCursorKind");
1131 return NULL;
Steve Naroff600866c2009-08-27 19:51:58 +00001132}
Steve Naroff89922f82009-08-31 00:59:03 +00001133
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001134CXCursor clang_getCursor(CXTranslationUnit CTUnit, const char *source_name,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001135 unsigned line, unsigned column) {
Steve Naroff9efa7672009-09-04 15:44:05 +00001136 assert(CTUnit && "Passed null CXTranslationUnit");
1137 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001138
Steve Naroff9efa7672009-09-04 15:44:05 +00001139 FileManager &FMgr = CXXUnit->getFileManager();
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001140 const FileEntry *File = FMgr.getFile(source_name,
1141 source_name+strlen(source_name));
Ted Kremenekf4629892010-01-14 01:51:23 +00001142 if (!File)
1143 return clang_getNullCursor();
1144
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001145 SourceLocation SLoc =
Steve Naroff9efa7672009-09-04 15:44:05 +00001146 CXXUnit->getSourceManager().getLocation(File, line, column);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001147
Steve Narofff96b5242009-10-28 20:44:47 +00001148 ASTLocation LastLoc = CXXUnit->getLastASTLocation();
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001149 ASTLocation ALoc = ResolveLocationInAST(CXXUnit->getASTContext(), SLoc,
Steve Narofff96b5242009-10-28 20:44:47 +00001150 &LastLoc);
Ted Kremenekf4629892010-01-14 01:51:23 +00001151
1152 // FIXME: This doesn't look thread-safe.
Steve Narofff96b5242009-10-28 20:44:47 +00001153 if (ALoc.isValid())
1154 CXXUnit->setLastASTLocation(ALoc);
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001155
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +00001156 Decl *Dcl = ALoc.getParentDecl();
Argyrios Kyrtzidis05a76512009-09-29 19:45:58 +00001157 if (ALoc.isNamedRef())
1158 Dcl = ALoc.AsNamedRef().ND;
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +00001159 Stmt *Stm = ALoc.dyn_AsStmt();
Steve Naroff4ade6d62009-09-23 17:52:52 +00001160 if (Dcl) {
Douglas Gregor97b98722010-01-19 23:20:36 +00001161 if (Stm)
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001162 return MakeCXCursor(Stm, Dcl, CXXUnit);
Douglas Gregor97b98722010-01-19 23:20:36 +00001163
Steve Naroff85e2db72009-10-01 00:31:07 +00001164 if (ALoc.isNamedRef()) {
Douglas Gregor1adb0822010-01-16 17:14:40 +00001165 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(Dcl))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001166 return MakeCursorObjCClassRef(Class, ALoc.AsNamedRef().Loc, CXXUnit);
Douglas Gregor78db0cd2010-01-16 15:44:18 +00001167 if (ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(Dcl))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001168 return MakeCursorObjCProtocolRef(Proto, ALoc.AsNamedRef().Loc, CXXUnit);
Steve Naroff85e2db72009-10-01 00:31:07 +00001169 }
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001170 return MakeCXCursor(Dcl, CXXUnit);
Steve Naroff77128dd2009-09-15 20:25:34 +00001171 }
Douglas Gregor5bfb8c12010-01-20 23:34:41 +00001172 return MakeCXCursorInvalid(CXCursor_NoDeclFound);
Steve Naroff600866c2009-08-27 19:51:58 +00001173}
1174
Ted Kremenek73885552009-11-17 19:28:59 +00001175CXCursor clang_getNullCursor(void) {
Douglas Gregor5bfb8c12010-01-20 23:34:41 +00001176 return MakeCXCursorInvalid(CXCursor_InvalidFile);
Ted Kremenek73885552009-11-17 19:28:59 +00001177}
1178
1179unsigned clang_equalCursors(CXCursor X, CXCursor Y) {
Douglas Gregor283cae32010-01-15 21:56:13 +00001180 return X == Y;
Ted Kremenek73885552009-11-17 19:28:59 +00001181}
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001182
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001183unsigned clang_isInvalid(enum CXCursorKind K) {
Steve Naroff77128dd2009-09-15 20:25:34 +00001184 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
1185}
1186
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001187unsigned clang_isDeclaration(enum CXCursorKind K) {
Steve Naroff89922f82009-08-31 00:59:03 +00001188 return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl;
1189}
Steve Naroff2d4d6292009-08-31 14:26:51 +00001190
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001191unsigned clang_isReference(enum CXCursorKind K) {
Steve Narofff334b4e2009-09-02 18:26:48 +00001192 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
1193}
1194
Douglas Gregor97b98722010-01-19 23:20:36 +00001195unsigned clang_isExpression(enum CXCursorKind K) {
1196 return K >= CXCursor_FirstExpr && K <= CXCursor_LastExpr;
1197}
1198
1199unsigned clang_isStatement(enum CXCursorKind K) {
1200 return K >= CXCursor_FirstStmt && K <= CXCursor_LastStmt;
1201}
1202
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +00001203unsigned clang_isTranslationUnit(enum CXCursorKind K) {
1204 return K == CXCursor_TranslationUnit;
1205}
1206
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001207CXCursorKind clang_getCursorKind(CXCursor C) {
Steve Naroff9efa7672009-09-04 15:44:05 +00001208 return C.kind;
1209}
1210
Douglas Gregor97b98722010-01-19 23:20:36 +00001211static SourceLocation getLocationFromExpr(Expr *E) {
1212 if (ObjCMessageExpr *Msg = dyn_cast<ObjCMessageExpr>(E))
1213 return /*FIXME:*/Msg->getLeftLoc();
1214 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
1215 return DRE->getLocation();
1216 if (MemberExpr *Member = dyn_cast<MemberExpr>(E))
1217 return Member->getMemberLoc();
1218 if (ObjCIvarRefExpr *Ivar = dyn_cast<ObjCIvarRefExpr>(E))
1219 return Ivar->getLocation();
1220 return E->getLocStart();
1221}
1222
Douglas Gregor98258af2010-01-18 22:46:11 +00001223CXSourceLocation clang_getCursorLocation(CXCursor C) {
1224 if (clang_isReference(C.kind)) {
Douglas Gregorf46034a2010-01-18 23:41:10 +00001225 switch (C.kind) {
1226 case CXCursor_ObjCSuperClassRef: {
1227 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1228 = getCursorObjCSuperClassRef(C);
Douglas Gregor1db19de2010-01-19 21:36:55 +00001229 return translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001230 }
1231
1232 case CXCursor_ObjCProtocolRef: {
1233 std::pair<ObjCProtocolDecl *, SourceLocation> P
1234 = getCursorObjCProtocolRef(C);
Douglas Gregor1db19de2010-01-19 21:36:55 +00001235 return translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001236 }
1237
1238 case CXCursor_ObjCClassRef: {
1239 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1240 = getCursorObjCClassRef(C);
Douglas Gregor1db19de2010-01-19 21:36:55 +00001241 return translateSourceLocation(P.first->getASTContext(), P.second);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001242 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001243
1244 case CXCursor_TypeRef: {
1245 std::pair<TypeDecl *, SourceLocation> P = getCursorTypeRef(C);
1246 return translateSourceLocation(P.first->getASTContext(), P.second);
1247 }
Douglas Gregorf46034a2010-01-18 23:41:10 +00001248
Douglas Gregorf46034a2010-01-18 23:41:10 +00001249 default:
1250 // FIXME: Need a way to enumerate all non-reference cases.
1251 llvm_unreachable("Missed a reference kind");
1252 }
Douglas Gregor98258af2010-01-18 22:46:11 +00001253 }
Douglas Gregor97b98722010-01-19 23:20:36 +00001254
1255 if (clang_isExpression(C.kind))
1256 return translateSourceLocation(getCursorContext(C),
1257 getLocationFromExpr(getCursorExpr(C)));
1258
Douglas Gregor98258af2010-01-18 22:46:11 +00001259 if (!getCursorDecl(C)) {
Douglas Gregor1db19de2010-01-19 21:36:55 +00001260 CXSourceLocation empty = { 0, 0 };
Douglas Gregor98258af2010-01-18 22:46:11 +00001261 return empty;
1262 }
1263
Douglas Gregorf46034a2010-01-18 23:41:10 +00001264 Decl *D = getCursorDecl(C);
Douglas Gregorf46034a2010-01-18 23:41:10 +00001265 SourceLocation Loc = D->getLocation();
1266 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(D))
1267 Loc = Class->getClassLoc();
Douglas Gregor1db19de2010-01-19 21:36:55 +00001268 return translateSourceLocation(D->getASTContext(), Loc);
Douglas Gregor98258af2010-01-18 22:46:11 +00001269}
Douglas Gregora7bde202010-01-19 00:34:46 +00001270
1271CXSourceRange clang_getCursorExtent(CXCursor C) {
1272 if (clang_isReference(C.kind)) {
1273 switch (C.kind) {
1274 case CXCursor_ObjCSuperClassRef: {
1275 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1276 = getCursorObjCSuperClassRef(C);
1277 return translateSourceRange(P.first->getASTContext(), P.second);
1278 }
1279
1280 case CXCursor_ObjCProtocolRef: {
1281 std::pair<ObjCProtocolDecl *, SourceLocation> P
1282 = getCursorObjCProtocolRef(C);
1283 return translateSourceRange(P.first->getASTContext(), P.second);
1284 }
1285
1286 case CXCursor_ObjCClassRef: {
1287 std::pair<ObjCInterfaceDecl *, SourceLocation> P
1288 = getCursorObjCClassRef(C);
1289
1290 return translateSourceRange(P.first->getASTContext(), P.second);
1291 }
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001292
1293 case CXCursor_TypeRef: {
1294 std::pair<TypeDecl *, SourceLocation> P = getCursorTypeRef(C);
1295 return translateSourceRange(P.first->getASTContext(), P.second);
1296 }
Douglas Gregora7bde202010-01-19 00:34:46 +00001297
Douglas Gregora7bde202010-01-19 00:34:46 +00001298 default:
1299 // FIXME: Need a way to enumerate all non-reference cases.
1300 llvm_unreachable("Missed a reference kind");
1301 }
1302 }
Douglas Gregor97b98722010-01-19 23:20:36 +00001303
1304 if (clang_isExpression(C.kind))
1305 return translateSourceRange(getCursorContext(C),
1306 getCursorExpr(C)->getSourceRange());
Douglas Gregora7bde202010-01-19 00:34:46 +00001307
1308 if (!getCursorDecl(C)) {
Douglas Gregor1db19de2010-01-19 21:36:55 +00001309 CXSourceRange empty = { 0, 0, 0 };
Douglas Gregora7bde202010-01-19 00:34:46 +00001310 return empty;
1311 }
1312
1313 Decl *D = getCursorDecl(C);
1314 return translateSourceRange(D->getASTContext(), D->getSourceRange());
1315}
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001316
1317CXCursor clang_getCursorReferenced(CXCursor C) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001318 if (clang_isInvalid(C.kind))
1319 return clang_getNullCursor();
1320
1321 ASTUnit *CXXUnit = getCursorASTUnit(C);
Douglas Gregorb6998662010-01-19 19:34:47 +00001322 if (clang_isDeclaration(C.kind))
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001323 return C;
Douglas Gregor98258af2010-01-18 22:46:11 +00001324
Douglas Gregor97b98722010-01-19 23:20:36 +00001325 if (clang_isExpression(C.kind)) {
1326 Decl *D = getDeclFromExpr(getCursorExpr(C));
1327 if (D)
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001328 return MakeCXCursor(D, CXXUnit);
Douglas Gregor97b98722010-01-19 23:20:36 +00001329 return clang_getNullCursor();
1330 }
1331
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001332 if (!clang_isReference(C.kind))
1333 return clang_getNullCursor();
1334
1335 switch (C.kind) {
1336 case CXCursor_ObjCSuperClassRef:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001337 return MakeCXCursor(getCursorObjCSuperClassRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001338
1339 case CXCursor_ObjCProtocolRef: {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001340 return MakeCXCursor(getCursorObjCProtocolRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001341
1342 case CXCursor_ObjCClassRef:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001343 return MakeCXCursor(getCursorObjCClassRef(C).first, CXXUnit);
Douglas Gregor7d0d40e2010-01-21 16:28:34 +00001344
1345 case CXCursor_TypeRef:
1346 return MakeCXCursor(getCursorTypeRef(C).first, CXXUnit);
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001347
Douglas Gregorc5d1e932010-01-19 01:20:04 +00001348 default:
1349 // We would prefer to enumerate all non-reference cursor kinds here.
1350 llvm_unreachable("Unhandled reference cursor kind");
1351 break;
1352 }
1353 }
1354
1355 return clang_getNullCursor();
1356}
1357
Douglas Gregorb6998662010-01-19 19:34:47 +00001358CXCursor clang_getCursorDefinition(CXCursor C) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001359 if (clang_isInvalid(C.kind))
1360 return clang_getNullCursor();
1361
1362 ASTUnit *CXXUnit = getCursorASTUnit(C);
1363
Douglas Gregorb6998662010-01-19 19:34:47 +00001364 bool WasReference = false;
Douglas Gregor97b98722010-01-19 23:20:36 +00001365 if (clang_isReference(C.kind) || clang_isExpression(C.kind)) {
Douglas Gregorb6998662010-01-19 19:34:47 +00001366 C = clang_getCursorReferenced(C);
1367 WasReference = true;
1368 }
1369
1370 if (!clang_isDeclaration(C.kind))
1371 return clang_getNullCursor();
1372
1373 Decl *D = getCursorDecl(C);
1374 if (!D)
1375 return clang_getNullCursor();
1376
1377 switch (D->getKind()) {
1378 // Declaration kinds that don't really separate the notions of
1379 // declaration and definition.
1380 case Decl::Namespace:
1381 case Decl::Typedef:
1382 case Decl::TemplateTypeParm:
1383 case Decl::EnumConstant:
1384 case Decl::Field:
1385 case Decl::ObjCIvar:
1386 case Decl::ObjCAtDefsField:
1387 case Decl::ImplicitParam:
1388 case Decl::ParmVar:
1389 case Decl::NonTypeTemplateParm:
1390 case Decl::TemplateTemplateParm:
1391 case Decl::ObjCCategoryImpl:
1392 case Decl::ObjCImplementation:
1393 case Decl::LinkageSpec:
1394 case Decl::ObjCPropertyImpl:
1395 case Decl::FileScopeAsm:
1396 case Decl::StaticAssert:
1397 case Decl::Block:
1398 return C;
1399
1400 // Declaration kinds that don't make any sense here, but are
1401 // nonetheless harmless.
1402 case Decl::TranslationUnit:
1403 case Decl::Template:
1404 case Decl::ObjCContainer:
1405 break;
1406
1407 // Declaration kinds for which the definition is not resolvable.
1408 case Decl::UnresolvedUsingTypename:
1409 case Decl::UnresolvedUsingValue:
1410 break;
1411
1412 case Decl::UsingDirective:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001413 return MakeCXCursor(cast<UsingDirectiveDecl>(D)->getNominatedNamespace(),
1414 CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001415
1416 case Decl::NamespaceAlias:
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001417 return MakeCXCursor(cast<NamespaceAliasDecl>(D)->getNamespace(), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001418
1419 case Decl::Enum:
1420 case Decl::Record:
1421 case Decl::CXXRecord:
1422 case Decl::ClassTemplateSpecialization:
1423 case Decl::ClassTemplatePartialSpecialization:
1424 if (TagDecl *Def = cast<TagDecl>(D)->getDefinition(D->getASTContext()))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001425 return MakeCXCursor(Def, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001426 return clang_getNullCursor();
1427
1428 case Decl::Function:
1429 case Decl::CXXMethod:
1430 case Decl::CXXConstructor:
1431 case Decl::CXXDestructor:
1432 case Decl::CXXConversion: {
1433 const FunctionDecl *Def = 0;
1434 if (cast<FunctionDecl>(D)->getBody(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001435 return MakeCXCursor(const_cast<FunctionDecl *>(Def), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001436 return clang_getNullCursor();
1437 }
1438
1439 case Decl::Var: {
1440 VarDecl *Var = cast<VarDecl>(D);
1441
1442 // Variables with initializers have definitions.
1443 const VarDecl *Def = 0;
1444 if (Var->getDefinition(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001445 return MakeCXCursor(const_cast<VarDecl *>(Def), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001446
1447 // extern and private_extern variables are not definitions.
1448 if (Var->hasExternalStorage())
1449 return clang_getNullCursor();
1450
1451 // In-line static data members do not have definitions.
1452 if (Var->isStaticDataMember() && !Var->isOutOfLine())
1453 return clang_getNullCursor();
1454
1455 // All other variables are themselves definitions.
1456 return C;
1457 }
1458
1459 case Decl::FunctionTemplate: {
1460 const FunctionDecl *Def = 0;
1461 if (cast<FunctionTemplateDecl>(D)->getTemplatedDecl()->getBody(Def))
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001462 return MakeCXCursor(Def->getDescribedFunctionTemplate(), CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001463 return clang_getNullCursor();
1464 }
1465
1466 case Decl::ClassTemplate: {
1467 if (RecordDecl *Def = cast<ClassTemplateDecl>(D)->getTemplatedDecl()
1468 ->getDefinition(D->getASTContext()))
1469 return MakeCXCursor(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001470 cast<CXXRecordDecl>(Def)->getDescribedClassTemplate(),
1471 CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001472 return clang_getNullCursor();
1473 }
1474
1475 case Decl::Using: {
1476 UsingDecl *Using = cast<UsingDecl>(D);
1477 CXCursor Def = clang_getNullCursor();
1478 for (UsingDecl::shadow_iterator S = Using->shadow_begin(),
1479 SEnd = Using->shadow_end();
1480 S != SEnd; ++S) {
1481 if (Def != clang_getNullCursor()) {
1482 // FIXME: We have no way to return multiple results.
1483 return clang_getNullCursor();
1484 }
1485
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001486 Def = clang_getCursorDefinition(MakeCXCursor((*S)->getTargetDecl(),
1487 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001488 }
1489
1490 return Def;
1491 }
1492
1493 case Decl::UsingShadow:
1494 return clang_getCursorDefinition(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001495 MakeCXCursor(cast<UsingShadowDecl>(D)->getTargetDecl(),
1496 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001497
1498 case Decl::ObjCMethod: {
1499 ObjCMethodDecl *Method = cast<ObjCMethodDecl>(D);
1500 if (Method->isThisDeclarationADefinition())
1501 return C;
1502
1503 // Dig out the method definition in the associated
1504 // @implementation, if we have it.
1505 // FIXME: The ASTs should make finding the definition easier.
1506 if (ObjCInterfaceDecl *Class
1507 = dyn_cast<ObjCInterfaceDecl>(Method->getDeclContext()))
1508 if (ObjCImplementationDecl *ClassImpl = Class->getImplementation())
1509 if (ObjCMethodDecl *Def = ClassImpl->getMethod(Method->getSelector(),
1510 Method->isInstanceMethod()))
1511 if (Def->isThisDeclarationADefinition())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001512 return MakeCXCursor(Def, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001513
1514 return clang_getNullCursor();
1515 }
1516
1517 case Decl::ObjCCategory:
1518 if (ObjCCategoryImplDecl *Impl
1519 = cast<ObjCCategoryDecl>(D)->getImplementation())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001520 return MakeCXCursor(Impl, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001521 return clang_getNullCursor();
1522
1523 case Decl::ObjCProtocol:
1524 if (!cast<ObjCProtocolDecl>(D)->isForwardDecl())
1525 return C;
1526 return clang_getNullCursor();
1527
1528 case Decl::ObjCInterface:
1529 // There are two notions of a "definition" for an Objective-C
1530 // class: the interface and its implementation. When we resolved a
1531 // reference to an Objective-C class, produce the @interface as
1532 // the definition; when we were provided with the interface,
1533 // produce the @implementation as the definition.
1534 if (WasReference) {
1535 if (!cast<ObjCInterfaceDecl>(D)->isForwardDecl())
1536 return C;
1537 } else if (ObjCImplementationDecl *Impl
1538 = cast<ObjCInterfaceDecl>(D)->getImplementation())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001539 return MakeCXCursor(Impl, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001540 return clang_getNullCursor();
1541
1542 case Decl::ObjCProperty:
1543 // FIXME: We don't really know where to find the
1544 // ObjCPropertyImplDecls that implement this property.
1545 return clang_getNullCursor();
1546
1547 case Decl::ObjCCompatibleAlias:
1548 if (ObjCInterfaceDecl *Class
1549 = cast<ObjCCompatibleAliasDecl>(D)->getClassInterface())
1550 if (!Class->isForwardDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001551 return MakeCXCursor(Class, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001552
1553 return clang_getNullCursor();
1554
1555 case Decl::ObjCForwardProtocol: {
1556 ObjCForwardProtocolDecl *Forward = cast<ObjCForwardProtocolDecl>(D);
1557 if (Forward->protocol_size() == 1)
1558 return clang_getCursorDefinition(
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001559 MakeCXCursor(*Forward->protocol_begin(),
1560 CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001561
1562 // FIXME: Cannot return multiple definitions.
1563 return clang_getNullCursor();
1564 }
1565
1566 case Decl::ObjCClass: {
1567 ObjCClassDecl *Class = cast<ObjCClassDecl>(D);
1568 if (Class->size() == 1) {
1569 ObjCInterfaceDecl *IFace = Class->begin()->getInterface();
1570 if (!IFace->isForwardDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001571 return MakeCXCursor(IFace, CXXUnit);
Douglas Gregorb6998662010-01-19 19:34:47 +00001572 return clang_getNullCursor();
1573 }
1574
1575 // FIXME: Cannot return multiple definitions.
1576 return clang_getNullCursor();
1577 }
1578
1579 case Decl::Friend:
1580 if (NamedDecl *Friend = cast<FriendDecl>(D)->getFriendDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001581 return clang_getCursorDefinition(MakeCXCursor(Friend, CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001582 return clang_getNullCursor();
1583
1584 case Decl::FriendTemplate:
1585 if (NamedDecl *Friend = cast<FriendTemplateDecl>(D)->getFriendDecl())
Douglas Gregorb2cd4872010-01-20 23:57:43 +00001586 return clang_getCursorDefinition(MakeCXCursor(Friend, CXXUnit));
Douglas Gregorb6998662010-01-19 19:34:47 +00001587 return clang_getNullCursor();
1588 }
1589
1590 return clang_getNullCursor();
1591}
1592
1593unsigned clang_isCursorDefinition(CXCursor C) {
1594 if (!clang_isDeclaration(C.kind))
1595 return 0;
1596
1597 return clang_getCursorDefinition(C) == C;
1598}
1599
Daniel Dunbar0d7dd222009-11-30 20:42:43 +00001600void clang_getDefinitionSpellingAndExtent(CXCursor C,
Steve Naroff4ade6d62009-09-23 17:52:52 +00001601 const char **startBuf,
1602 const char **endBuf,
1603 unsigned *startLine,
1604 unsigned *startColumn,
1605 unsigned *endLine,
Daniel Dunbar9ebfa312009-12-01 03:14:51 +00001606 unsigned *endColumn) {
Douglas Gregor283cae32010-01-15 21:56:13 +00001607 assert(getCursorDecl(C) && "CXCursor has null decl");
1608 NamedDecl *ND = static_cast<NamedDecl *>(getCursorDecl(C));
Steve Naroff4ade6d62009-09-23 17:52:52 +00001609 FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
1610 CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody());
Ted Kremenekfb480492010-01-13 21:46:36 +00001611
Steve Naroff4ade6d62009-09-23 17:52:52 +00001612 SourceManager &SM = FD->getASTContext().getSourceManager();
1613 *startBuf = SM.getCharacterData(Body->getLBracLoc());
1614 *endBuf = SM.getCharacterData(Body->getRBracLoc());
1615 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
1616 *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc());
1617 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc());
1618 *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc());
1619}
Ted Kremenekfb480492010-01-13 21:46:36 +00001620
1621} // end: extern "C"
Steve Naroff4ade6d62009-09-23 17:52:52 +00001622
Ted Kremenekfb480492010-01-13 21:46:36 +00001623//===----------------------------------------------------------------------===//
1624// CXString Operations.
1625//===----------------------------------------------------------------------===//
1626
1627extern "C" {
1628const char *clang_getCString(CXString string) {
1629 return string.Spelling;
1630}
1631
1632void clang_disposeString(CXString string) {
1633 if (string.MustFreeString && string.Spelling)
1634 free((void*)string.Spelling);
1635}
1636} // end: extern "C"