blob: 3f3fc8c3d329cc0cca709c23d0505477d5cc4c10 [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.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Clang-C Source Indexing library.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang-c/Index.h"
Steve Naroff50398192009-08-28 15:28:48 +000015#include "clang/Index/Program.h"
16#include "clang/Index/Indexer.h"
Steve Naroff9efa7672009-09-04 15:44:05 +000017#include "clang/Index/ASTLocation.h"
18#include "clang/Index/Utils.h"
Steve Naroff50398192009-08-28 15:28:48 +000019#include "clang/AST/DeclVisitor.h"
Steve Narofffb570422009-09-22 19:25:29 +000020#include "clang/AST/StmtVisitor.h"
Steve Naroffc857ea42009-09-02 13:28:54 +000021#include "clang/AST/Decl.h"
Benjamin Kramerd01a0bc2009-08-29 12:56:35 +000022#include "clang/Basic/FileManager.h"
Steve Naroff2d4d6292009-08-31 14:26:51 +000023#include "clang/Basic/SourceManager.h"
Benjamin Kramerd01a0bc2009-08-29 12:56:35 +000024#include "clang/Frontend/ASTUnit.h"
Benjamin Kramer20d75812009-10-18 16:13:48 +000025#include "llvm/Config/config.h"
Ted Kremenekfc062212009-10-19 21:44:57 +000026#include "llvm/Support/Compiler.h"
Douglas Gregor02465752009-10-16 21:24:31 +000027#include "llvm/Support/MemoryBuffer.h"
28#include "llvm/System/Path.h"
Benjamin Kramer0829a832009-10-18 11:19:36 +000029#include "llvm/System/Program.h"
Ted Kremenekfc062212009-10-19 21:44:57 +000030
Benjamin Kramerd01a0bc2009-08-29 12:56:35 +000031#include <cstdio>
Ted Kremenek49358d82009-10-19 21:17:25 +000032#include <vector>
33
Benjamin Kramer20d75812009-10-18 16:13:48 +000034#ifdef LLVM_ON_WIN32
35#define WIN32_LEAN_AND_MEAN
36#include <windows.h>
37#else
Steve Naroff5b7d8e22009-10-15 20:04:39 +000038#include <dlfcn.h>
Daniel Dunbara47dd192009-10-17 23:53:11 +000039#endif
Steve Naroff5b7d8e22009-10-15 20:04:39 +000040
Steve Naroff50398192009-08-28 15:28:48 +000041using namespace clang;
42using namespace idx;
43
Steve Naroff89922f82009-08-31 00:59:03 +000044namespace {
Steve Naroff4ade6d62009-09-23 17:52:52 +000045static enum CXCursorKind TranslateDeclRefExpr(DeclRefExpr *DRE)
46{
47 NamedDecl *D = DRE->getDecl();
48 if (isa<VarDecl>(D))
49 return CXCursor_VarRef;
50 else if (isa<FunctionDecl>(D))
51 return CXCursor_FunctionRef;
52 else if (isa<EnumConstantDecl>(D))
53 return CXCursor_EnumConstantRef;
54 else
55 return CXCursor_NotImplemented;
56}
57
58#if 0
59// Will be useful one day.
Steve Narofffb570422009-09-22 19:25:29 +000060class CRefVisitor : public StmtVisitor<CRefVisitor> {
61 CXDecl CDecl;
62 CXDeclIterator Callback;
63 CXClientData CData;
64
65 void Call(enum CXCursorKind CK, Stmt *SRef) {
66 CXCursor C = { CK, CDecl, SRef };
67 Callback(CDecl, C, CData);
68 }
69
70public:
71 CRefVisitor(CXDecl C, CXDeclIterator cback, CXClientData D) :
72 CDecl(C), Callback(cback), CData(D) {}
73
74 void VisitStmt(Stmt *S) {
75 for (Stmt::child_iterator C = S->child_begin(), CEnd = S->child_end();
76 C != CEnd; ++C)
77 Visit(*C);
78 }
79 void VisitDeclRefExpr(DeclRefExpr *Node) {
Steve Naroff4ade6d62009-09-23 17:52:52 +000080 Call(TranslateDeclRefExpr(Node), Node);
Steve Narofffb570422009-09-22 19:25:29 +000081 }
82 void VisitMemberExpr(MemberExpr *Node) {
83 Call(CXCursor_MemberRef, Node);
84 }
85 void VisitObjCMessageExpr(ObjCMessageExpr *Node) {
86 Call(CXCursor_ObjCSelectorRef, Node);
87 }
88 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *Node) {
89 Call(CXCursor_ObjCIvarRef, Node);
90 }
91};
Steve Naroff4ade6d62009-09-23 17:52:52 +000092#endif
Ted Kremenekfc062212009-10-19 21:44:57 +000093
94/// IgnoreDiagnosticsClient - A DiagnosticsClient that just ignores emitted
95/// warnings and errors.
96class VISIBILITY_HIDDEN IgnoreDiagnosticsClient : public DiagnosticClient {
97public:
98 virtual ~IgnoreDiagnosticsClient() {}
99 virtual void HandleDiagnostic(Diagnostic::Level, const DiagnosticInfo &) {}
100};
Steve Narofffb570422009-09-22 19:25:29 +0000101
Steve Naroff89922f82009-08-31 00:59:03 +0000102// Translation Unit Visitor.
103class TUVisitor : public DeclVisitor<TUVisitor> {
104 CXTranslationUnit TUnit;
105 CXTranslationUnitIterator Callback;
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000106 CXClientData CData;
107
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000108 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
109 // to the visitor. Declarations with a PCH level greater than this value will
110 // be suppressed.
111 unsigned MaxPCHLevel;
112
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000113 void Call(enum CXCursorKind CK, NamedDecl *ND) {
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000114 // Filter any declarations that have a PCH level greater than what we allow.
115 if (ND->getPCHLevel() > MaxPCHLevel)
116 return;
117
Steve Narofffb570422009-09-22 19:25:29 +0000118 CXCursor C = { CK, ND, 0 };
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000119 Callback(TUnit, C, CData);
120 }
Steve Naroff89922f82009-08-31 00:59:03 +0000121public:
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000122 TUVisitor(CXTranslationUnit CTU,
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000123 CXTranslationUnitIterator cback, CXClientData D,
124 unsigned MaxPCHLevel) :
125 TUnit(CTU), Callback(cback), CData(D), MaxPCHLevel(MaxPCHLevel) {}
Steve Naroff89922f82009-08-31 00:59:03 +0000126
127 void VisitTranslationUnitDecl(TranslationUnitDecl *D) {
128 VisitDeclContext(dyn_cast<DeclContext>(D));
129 }
130 void VisitDeclContext(DeclContext *DC) {
131 for (DeclContext::decl_iterator
132 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I)
133 Visit(*I);
134 }
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000135 void VisitTypedefDecl(TypedefDecl *ND) {
136 Call(CXCursor_TypedefDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000137 }
138 void VisitTagDecl(TagDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000139 switch (ND->getTagKind()) {
140 case TagDecl::TK_struct:
141 Call(CXCursor_StructDecl, ND);
142 break;
143 case TagDecl::TK_class:
144 Call(CXCursor_ClassDecl, ND);
145 break;
146 case TagDecl::TK_union:
147 Call(CXCursor_UnionDecl, ND);
148 break;
149 case TagDecl::TK_enum:
150 Call(CXCursor_EnumDecl, ND);
151 break;
152 }
Steve Naroff89922f82009-08-31 00:59:03 +0000153 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000154 void VisitVarDecl(VarDecl *ND) {
155 Call(CXCursor_VarDecl, ND);
156 }
Steve Naroff89922f82009-08-31 00:59:03 +0000157 void VisitFunctionDecl(FunctionDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000158 Call(ND->isThisDeclarationADefinition() ? CXCursor_FunctionDefn
159 : CXCursor_FunctionDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000160 }
161 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *ND) {
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000162 Call(CXCursor_ObjCInterfaceDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000163 }
164 void VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000165 Call(CXCursor_ObjCCategoryDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000166 }
167 void VisitObjCProtocolDecl(ObjCProtocolDecl *ND) {
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000168 Call(CXCursor_ObjCProtocolDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000169 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000170 void VisitObjCImplementationDecl(ObjCImplementationDecl *ND) {
171 Call(CXCursor_ObjCClassDefn, ND);
172 }
173 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *ND) {
174 Call(CXCursor_ObjCCategoryDefn, ND);
175 }
Steve Naroff89922f82009-08-31 00:59:03 +0000176};
177
Steve Naroffc857ea42009-09-02 13:28:54 +0000178// Declaration visitor.
179class CDeclVisitor : public DeclVisitor<CDeclVisitor> {
180 CXDecl CDecl;
181 CXDeclIterator Callback;
182 CXClientData CData;
183
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000184 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
185 // to the visitor. Declarations with a PCH level greater than this value will
186 // be suppressed.
187 unsigned MaxPCHLevel;
188
Steve Naroffc857ea42009-09-02 13:28:54 +0000189 void Call(enum CXCursorKind CK, NamedDecl *ND) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000190 // Disable the callback when the context is equal to the visiting decl.
191 if (CDecl == ND && !clang_isReference(CK))
192 return;
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000193
194 // Filter any declarations that have a PCH level greater than what we allow.
195 if (ND->getPCHLevel() > MaxPCHLevel)
196 return;
197
Steve Narofffb570422009-09-22 19:25:29 +0000198 CXCursor C = { CK, ND, 0 };
Steve Naroffc857ea42009-09-02 13:28:54 +0000199 Callback(CDecl, C, CData);
200 }
Steve Naroff89922f82009-08-31 00:59:03 +0000201public:
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000202 CDeclVisitor(CXDecl C, CXDeclIterator cback, CXClientData D,
203 unsigned MaxPCHLevel) :
204 CDecl(C), Callback(cback), CData(D), MaxPCHLevel(MaxPCHLevel) {}
Steve Naroffc857ea42009-09-02 13:28:54 +0000205
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000206 void VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
207 // Issue callbacks for the containing class.
208 Call(CXCursor_ObjCClassRef, ND);
209 // FIXME: Issue callbacks for protocol refs.
210 VisitDeclContext(dyn_cast<DeclContext>(ND));
211 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000212 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000213 // Issue callbacks for super class.
Steve Narofff334b4e2009-09-02 18:26:48 +0000214 if (D->getSuperClass())
215 Call(CXCursor_ObjCSuperClassRef, D);
216
Steve Naroff9efa7672009-09-04 15:44:05 +0000217 for (ObjCProtocolDecl::protocol_iterator I = D->protocol_begin(),
218 E = D->protocol_end(); I != E; ++I)
219 Call(CXCursor_ObjCProtocolRef, *I);
Steve Naroffc857ea42009-09-02 13:28:54 +0000220 VisitDeclContext(dyn_cast<DeclContext>(D));
221 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000222 void VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
223 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
224 E = PID->protocol_end(); I != E; ++I)
225 Call(CXCursor_ObjCProtocolRef, *I);
226
227 VisitDeclContext(dyn_cast<DeclContext>(PID));
228 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000229 void VisitTagDecl(TagDecl *D) {
230 VisitDeclContext(dyn_cast<DeclContext>(D));
231 }
232 void VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
233 VisitDeclContext(dyn_cast<DeclContext>(D));
234 }
235 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
236 VisitDeclContext(dyn_cast<DeclContext>(D));
237 }
Steve Naroff89922f82009-08-31 00:59:03 +0000238 void VisitDeclContext(DeclContext *DC) {
239 for (DeclContext::decl_iterator
240 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I)
241 Visit(*I);
242 }
243 void VisitEnumConstantDecl(EnumConstantDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000244 Call(CXCursor_EnumConstantDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000245 }
246 void VisitFieldDecl(FieldDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000247 Call(CXCursor_FieldDecl, ND);
248 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000249 void VisitVarDecl(VarDecl *ND) {
250 Call(CXCursor_VarDecl, ND);
251 }
252 void VisitParmVarDecl(ParmVarDecl *ND) {
253 Call(CXCursor_ParmDecl, ND);
254 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000255 void VisitObjCPropertyDecl(ObjCPropertyDecl *ND) {
256 Call(CXCursor_ObjCPropertyDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000257 }
258 void VisitObjCIvarDecl(ObjCIvarDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000259 Call(CXCursor_ObjCIvarDecl, ND);
260 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000261 void VisitFunctionDecl(FunctionDecl *ND) {
262 if (ND->isThisDeclarationADefinition()) {
263 VisitDeclContext(dyn_cast<DeclContext>(ND));
Steve Naroff4ade6d62009-09-23 17:52:52 +0000264#if 0
265 // Not currently needed.
266 CompoundStmt *Body = dyn_cast<CompoundStmt>(ND->getBody());
Steve Narofffb570422009-09-22 19:25:29 +0000267 CRefVisitor RVisit(CDecl, Callback, CData);
Steve Naroff4ade6d62009-09-23 17:52:52 +0000268 RVisit.Visit(Body);
269#endif
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000270 }
271 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000272 void VisitObjCMethodDecl(ObjCMethodDecl *ND) {
273 if (ND->getBody()) {
274 Call(ND->isInstanceMethod() ? CXCursor_ObjCInstanceMethodDefn
275 : CXCursor_ObjCClassMethodDefn, ND);
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000276 VisitDeclContext(dyn_cast<DeclContext>(ND));
Steve Naroffc857ea42009-09-02 13:28:54 +0000277 } else
278 Call(ND->isInstanceMethod() ? CXCursor_ObjCInstanceMethodDecl
279 : CXCursor_ObjCClassMethodDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000280 }
281};
282
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000283class CIndexer : public Indexer {
284public:
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000285 explicit CIndexer(Program *prog) : Indexer(*prog), OnlyLocalDecls(false) {}
Ted Kremenekdff76892009-10-17 06:21:47 +0000286
287 virtual ~CIndexer() { delete &getProgram(); }
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000288
289 /// \brief Whether we only want to see "local" declarations (that did not
290 /// come from a previous precompiled header). If false, we want to see all
291 /// declarations.
292 bool getOnlyLocalDecls() const { return OnlyLocalDecls; }
293 void setOnlyLocalDecls(bool Local = true) { OnlyLocalDecls = Local; }
Benjamin Kramer96707622009-10-18 11:10:55 +0000294
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000295 /// \brief Get the path of the clang binary.
Benjamin Kramerc5a9e952009-10-19 10:20:24 +0000296 const llvm::sys::Path& getClangPath();
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000297private:
298 bool OnlyLocalDecls;
Benjamin Kramerc5a9e952009-10-19 10:20:24 +0000299 llvm::sys::Path ClangPath;
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000300};
Steve Naroff89922f82009-08-31 00:59:03 +0000301
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000302const llvm::sys::Path& CIndexer::getClangPath() {
303 // Did we already compute the path?
304 if (!ClangPath.empty())
305 return ClangPath;
306
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000307 // Find the location where this library lives (libCIndex.dylib).
Benjamin Kramer20d75812009-10-18 16:13:48 +0000308#ifdef LLVM_ON_WIN32
309 MEMORY_BASIC_INFORMATION mbi;
310 char path[MAX_PATH];
Benjamin Krameredcd8282009-10-18 16:20:58 +0000311 VirtualQuery((void *)(uintptr_t)clang_createTranslationUnit, &mbi,
Benjamin Kramer20d75812009-10-18 16:13:48 +0000312 sizeof(mbi));
313 GetModuleFileNameA((HINSTANCE)mbi.AllocationBase, path, MAX_PATH);
314
315 llvm::sys::Path CIndexPath(path);
316#else
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000317 // This silly cast below avoids a C++ warning.
318 Dl_info info;
319 if (dladdr((void *)(uintptr_t)clang_createTranslationUnit, &info) == 0)
320 assert(0 && "Call to dladdr() failed");
321
322 llvm::sys::Path CIndexPath(info.dli_fname);
Daniel Dunbara47dd192009-10-17 23:53:11 +0000323#endif
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000324
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000325 // We now have the CIndex directory, locate clang relative to it.
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000326 CIndexPath.eraseComponent();
327 CIndexPath.eraseComponent();
328 CIndexPath.appendComponent("bin");
329 CIndexPath.appendComponent("clang");
330
331 // Cache our result.
332 ClangPath = CIndexPath;
333 return ClangPath;
334}
335
336}
337
338extern "C" {
339
340CXIndex clang_createIndex()
341{
342 return new CIndexer(new Program());
Steve Naroff600866c2009-08-27 19:51:58 +0000343}
344
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000345void clang_disposeIndex(CXIndex CIdx)
346{
347 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000348 delete static_cast<CIndexer *>(CIdx);
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000349}
350
Steve Naroff50398192009-08-28 15:28:48 +0000351// FIXME: need to pass back error info.
352CXTranslationUnit clang_createTranslationUnit(
353 CXIndex CIdx, const char *ast_filename)
Steve Naroff600866c2009-08-27 19:51:58 +0000354{
Steve Naroff50398192009-08-28 15:28:48 +0000355 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000356 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
Steve Naroff50398192009-08-28 15:28:48 +0000357 std::string astName(ast_filename);
358 std::string ErrMsg;
359
Steve Naroff36c44642009-10-19 14:34:22 +0000360 return ASTUnit::LoadFromPCHFile(astName, &ErrMsg,
Ted Kremenekfc062212009-10-19 21:44:57 +0000361 new IgnoreDiagnosticsClient(),
Ted Kremenek5cf48762009-10-17 00:34:24 +0000362 CXXIdx->getOnlyLocalDecls(),
363 /* UseBumpAllocator = */ true);
Steve Naroff600866c2009-08-27 19:51:58 +0000364}
365
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000366CXTranslationUnit clang_createTranslationUnitFromSourceFile(
367 CXIndex CIdx,
368 const char *source_filename,
369 int num_command_line_args, const char **command_line_args)
370{
Ted Kremenek74cd0692009-10-15 23:21:22 +0000371 // Build up the arguments for involing clang.
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000372 llvm::sys::Path ClangPath = static_cast<CIndexer *>(CIdx)->getClangPath();
Ted Kremenek74cd0692009-10-15 23:21:22 +0000373 std::vector<const char *> argv;
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000374 argv.push_back(ClangPath.c_str());
Ted Kremenek74cd0692009-10-15 23:21:22 +0000375 argv.push_back("-emit-ast");
376 argv.push_back(source_filename);
377 argv.push_back("-o");
Steve Naroff37b5ac22009-10-15 20:50:09 +0000378 // Generate a temporary name for the AST file.
379 char astTmpFile[L_tmpnam];
Ted Kremenek74cd0692009-10-15 23:21:22 +0000380 argv.push_back(tmpnam(astTmpFile));
Benjamin Kramerb14346b2009-10-18 16:52:07 +0000381 for (int i = 0; i < num_command_line_args; i++)
Ted Kremenek74cd0692009-10-15 23:21:22 +0000382 argv.push_back(command_line_args[i]);
383 argv.push_back(NULL);
384
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000385 // Generate the AST file in a separate process.
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000386 llvm::sys::Program::ExecuteAndWait(ClangPath, &argv[0]);
Benjamin Kramer0829a832009-10-18 11:19:36 +0000387
Steve Naroff37b5ac22009-10-15 20:50:09 +0000388 // Finally, we create the translation unit from the ast file.
Steve Naroffe19944c2009-10-15 22:23:48 +0000389 ASTUnit *ATU = static_cast<ASTUnit *>(
390 clang_createTranslationUnit(CIdx, astTmpFile));
391 ATU->unlinkTemporaryFile();
392 return ATU;
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000393}
394
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000395void clang_disposeTranslationUnit(
396 CXTranslationUnit CTUnit)
397{
398 assert(CTUnit && "Passed null CXTranslationUnit");
399 delete static_cast<ASTUnit *>(CTUnit);
400}
401
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000402void clang_wantOnlyLocalDeclarations(CXIndex CIdx) {
403 static_cast<CIndexer *>(CIdx)->setOnlyLocalDecls(true);
404}
405
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000406const char *clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit)
407{
408 assert(CTUnit && "Passed null CXTranslationUnit");
Steve Naroff77accc12009-09-03 18:19:54 +0000409 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
410 return CXXUnit->getOriginalSourceFileName().c_str();
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000411}
Daniel Dunbar1eb79b52009-08-28 16:30:07 +0000412
Steve Naroffc857ea42009-09-02 13:28:54 +0000413void clang_loadTranslationUnit(CXTranslationUnit CTUnit,
414 CXTranslationUnitIterator callback,
415 CXClientData CData)
Steve Naroff600866c2009-08-27 19:51:58 +0000416{
Steve Naroff50398192009-08-28 15:28:48 +0000417 assert(CTUnit && "Passed null CXTranslationUnit");
418 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
419 ASTContext &Ctx = CXXUnit->getASTContext();
420
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000421 TUVisitor DVisit(CTUnit, callback, CData,
422 CXXUnit->getOnlyLocalDecls()? 1 : Decl::MaxPCHLevel);
Steve Naroff50398192009-08-28 15:28:48 +0000423 DVisit.Visit(Ctx.getTranslationUnitDecl());
Steve Naroff600866c2009-08-27 19:51:58 +0000424}
425
Steve Naroffc857ea42009-09-02 13:28:54 +0000426void clang_loadDeclaration(CXDecl Dcl,
427 CXDeclIterator callback,
428 CXClientData CData)
Steve Naroff600866c2009-08-27 19:51:58 +0000429{
Steve Naroffc857ea42009-09-02 13:28:54 +0000430 assert(Dcl && "Passed null CXDecl");
431
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000432 CDeclVisitor DVisit(Dcl, callback, CData,
433 static_cast<Decl *>(Dcl)->getPCHLevel());
Steve Naroffc857ea42009-09-02 13:28:54 +0000434 DVisit.Visit(static_cast<Decl *>(Dcl));
Steve Naroff600866c2009-08-27 19:51:58 +0000435}
436
Steve Naroff7e8f8182009-08-28 12:07:44 +0000437// Some notes on CXEntity:
438//
439// - Since the 'ordinary' namespace includes functions, data, typedefs,
440// ObjC interfaces, thecurrent algorithm is a bit naive (resulting in one
441// entity for 2 different types). For example:
442//
443// module1.m: @interface Foo @end Foo *x;
444// module2.m: void Foo(int);
445//
446// - Since the unique name spans translation units, static data/functions
447// within a CXTranslationUnit are *not* currently represented by entities.
448// As a result, there will be no entity for the following:
449//
450// module.m: static void Foo() { }
451//
452
453
Steve Naroff600866c2009-08-27 19:51:58 +0000454const char *clang_getDeclarationName(CXEntity)
455{
456 return "";
457}
458const char *clang_getURI(CXEntity)
459{
460 return "";
461}
462
463CXEntity clang_getEntity(const char *URI)
464{
465 return 0;
466}
467
468//
469// CXDecl Operations.
470//
Steve Naroff600866c2009-08-27 19:51:58 +0000471CXEntity clang_getEntityFromDecl(CXDecl)
472{
473 return 0;
474}
Steve Naroff89922f82009-08-31 00:59:03 +0000475const char *clang_getDeclSpelling(CXDecl AnonDecl)
Steve Naroff600866c2009-08-27 19:51:58 +0000476{
Steve Naroff89922f82009-08-31 00:59:03 +0000477 assert(AnonDecl && "Passed null CXDecl");
478 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
Steve Naroffc857ea42009-09-02 13:28:54 +0000479
480 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND)) {
481 return OMD->getSelector().getAsString().c_str();
482 }
Steve Naroff89922f82009-08-31 00:59:03 +0000483 if (ND->getIdentifier())
Daniel Dunbare013d682009-10-18 20:26:12 +0000484 return ND->getIdentifier()->getNameStart();
Steve Naroffc857ea42009-09-02 13:28:54 +0000485 else
Steve Naroff89922f82009-08-31 00:59:03 +0000486 return "";
Steve Naroff600866c2009-08-27 19:51:58 +0000487}
Steve Narofff334b4e2009-09-02 18:26:48 +0000488
Steve Naroff699a07d2009-09-25 21:32:34 +0000489unsigned clang_getDeclLine(CXDecl AnonDecl)
490{
491 assert(AnonDecl && "Passed null CXDecl");
492 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
493 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
494 return SourceMgr.getSpellingLineNumber(ND->getLocation());
495}
496
497unsigned clang_getDeclColumn(CXDecl AnonDecl)
498{
499 assert(AnonDecl && "Passed null CXDecl");
500 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
501 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Naroff74165242009-09-25 22:15:54 +0000502 return SourceMgr.getSpellingColumnNumber(ND->getLocation());
Steve Naroff699a07d2009-09-25 21:32:34 +0000503}
504
Steve Naroffee9405e2009-09-25 21:45:39 +0000505const char *clang_getDeclSource(CXDecl AnonDecl)
506{
507 assert(AnonDecl && "Passed null CXDecl");
508 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
509 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
510 return SourceMgr.getBufferName(ND->getLocation());
511}
512
Steve Narofff334b4e2009-09-02 18:26:48 +0000513const char *clang_getCursorSpelling(CXCursor C)
514{
515 assert(C.decl && "CXCursor has null decl");
516 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
517
518 if (clang_isReference(C.kind)) {
519 switch (C.kind) {
Steve Naroffbade7de2009-10-19 13:41:39 +0000520 case CXCursor_ObjCSuperClassRef: {
Steve Narofff334b4e2009-09-02 18:26:48 +0000521 ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND);
522 assert(OID && "clang_getCursorLine(): Missing interface decl");
Daniel Dunbare013d682009-10-18 20:26:12 +0000523 return OID->getSuperClass()->getIdentifier()->getNameStart();
Steve Naroffbade7de2009-10-19 13:41:39 +0000524 }
525 case CXCursor_ObjCClassRef: {
Steve Naroff85e2db72009-10-01 00:31:07 +0000526 if (ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND)) {
Daniel Dunbare013d682009-10-18 20:26:12 +0000527 return OID->getIdentifier()->getNameStart();
Steve Naroff85e2db72009-10-01 00:31:07 +0000528 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000529 ObjCCategoryDecl *OID = dyn_cast<ObjCCategoryDecl>(ND);
530 assert(OID && "clang_getCursorLine(): Missing category decl");
Daniel Dunbare013d682009-10-18 20:26:12 +0000531 return OID->getClassInterface()->getIdentifier()->getNameStart();
Steve Naroffbade7de2009-10-19 13:41:39 +0000532 }
533 case CXCursor_ObjCProtocolRef: {
Steve Naroff9efa7672009-09-04 15:44:05 +0000534 ObjCProtocolDecl *OID = dyn_cast<ObjCProtocolDecl>(ND);
535 assert(OID && "clang_getCursorLine(): Missing protocol decl");
Daniel Dunbare013d682009-10-18 20:26:12 +0000536 return OID->getIdentifier()->getNameStart();
Steve Naroffbade7de2009-10-19 13:41:39 +0000537 }
538 case CXCursor_ObjCSelectorRef: {
Steve Narofffb570422009-09-22 19:25:29 +0000539 ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(
540 static_cast<Stmt *>(C.stmt));
541 assert(OME && "clang_getCursorLine(): Missing message expr");
542 return OME->getSelector().getAsString().c_str();
Steve Naroffbade7de2009-10-19 13:41:39 +0000543 }
Steve Narofffb570422009-09-22 19:25:29 +0000544 case CXCursor_VarRef:
545 case CXCursor_FunctionRef:
Steve Naroffbade7de2009-10-19 13:41:39 +0000546 case CXCursor_EnumConstantRef: {
Steve Narofffb570422009-09-22 19:25:29 +0000547 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(
548 static_cast<Stmt *>(C.stmt));
549 assert(DRE && "clang_getCursorLine(): Missing decl ref expr");
Daniel Dunbare013d682009-10-18 20:26:12 +0000550 return DRE->getDecl()->getIdentifier()->getNameStart();
Steve Naroffbade7de2009-10-19 13:41:39 +0000551 }
Steve Narofff334b4e2009-09-02 18:26:48 +0000552 default:
553 return "<not implemented>";
554 }
555 }
556 return clang_getDeclSpelling(C.decl);
557}
558
559const char *clang_getCursorKindSpelling(enum CXCursorKind Kind)
Steve Naroff600866c2009-08-27 19:51:58 +0000560{
Steve Naroff89922f82009-08-31 00:59:03 +0000561 switch (Kind) {
562 case CXCursor_FunctionDecl: return "FunctionDecl";
563 case CXCursor_TypedefDecl: return "TypedefDecl";
564 case CXCursor_EnumDecl: return "EnumDecl";
565 case CXCursor_EnumConstantDecl: return "EnumConstantDecl";
Steve Naroffc857ea42009-09-02 13:28:54 +0000566 case CXCursor_StructDecl: return "StructDecl";
567 case CXCursor_UnionDecl: return "UnionDecl";
568 case CXCursor_ClassDecl: return "ClassDecl";
Steve Naroff89922f82009-08-31 00:59:03 +0000569 case CXCursor_FieldDecl: return "FieldDecl";
570 case CXCursor_VarDecl: return "VarDecl";
571 case CXCursor_ParmDecl: return "ParmDecl";
572 case CXCursor_ObjCInterfaceDecl: return "ObjCInterfaceDecl";
573 case CXCursor_ObjCCategoryDecl: return "ObjCCategoryDecl";
574 case CXCursor_ObjCProtocolDecl: return "ObjCProtocolDecl";
575 case CXCursor_ObjCPropertyDecl: return "ObjCPropertyDecl";
576 case CXCursor_ObjCIvarDecl: return "ObjCIvarDecl";
Steve Naroffc857ea42009-09-02 13:28:54 +0000577 case CXCursor_ObjCInstanceMethodDecl: return "ObjCInstanceMethodDecl";
578 case CXCursor_ObjCClassMethodDecl: return "ObjCClassMethodDecl";
579 case CXCursor_FunctionDefn: return "FunctionDefn";
580 case CXCursor_ObjCInstanceMethodDefn: return "ObjCInstanceMethodDefn";
581 case CXCursor_ObjCClassMethodDefn: return "ObjCClassMethodDefn";
582 case CXCursor_ObjCClassDefn: return "ObjCClassDefn";
583 case CXCursor_ObjCCategoryDefn: return "ObjCCategoryDefn";
Steve Narofff334b4e2009-09-02 18:26:48 +0000584 case CXCursor_ObjCSuperClassRef: return "ObjCSuperClassRef";
Steve Naroff9efa7672009-09-04 15:44:05 +0000585 case CXCursor_ObjCProtocolRef: return "ObjCProtocolRef";
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000586 case CXCursor_ObjCClassRef: return "ObjCClassRef";
Steve Narofffb570422009-09-22 19:25:29 +0000587 case CXCursor_ObjCSelectorRef: return "ObjCSelectorRef";
588
589 case CXCursor_VarRef: return "VarRef";
590 case CXCursor_FunctionRef: return "FunctionRef";
591 case CXCursor_EnumConstantRef: return "EnumConstantRef";
592 case CXCursor_MemberRef: return "MemberRef";
593
Steve Naroff77128dd2009-09-15 20:25:34 +0000594 case CXCursor_InvalidFile: return "InvalidFile";
595 case CXCursor_NoDeclFound: return "NoDeclFound";
596 case CXCursor_NotImplemented: return "NotImplemented";
Steve Naroff89922f82009-08-31 00:59:03 +0000597 default: return "<not implemented>";
598 }
Steve Naroff600866c2009-08-27 19:51:58 +0000599}
Steve Naroff89922f82009-08-31 00:59:03 +0000600
Steve Naroff9efa7672009-09-04 15:44:05 +0000601static enum CXCursorKind TranslateKind(Decl *D) {
602 switch (D->getKind()) {
603 case Decl::Function: return CXCursor_FunctionDecl;
604 case Decl::Typedef: return CXCursor_TypedefDecl;
605 case Decl::Enum: return CXCursor_EnumDecl;
606 case Decl::EnumConstant: return CXCursor_EnumConstantDecl;
607 case Decl::Record: return CXCursor_StructDecl; // FIXME: union/class
608 case Decl::Field: return CXCursor_FieldDecl;
609 case Decl::Var: return CXCursor_VarDecl;
610 case Decl::ParmVar: return CXCursor_ParmDecl;
611 case Decl::ObjCInterface: return CXCursor_ObjCInterfaceDecl;
Steve Narofffb570422009-09-22 19:25:29 +0000612 case Decl::ObjCCategory: return CXCursor_ObjCCategoryDecl;
613 case Decl::ObjCProtocol: return CXCursor_ObjCProtocolDecl;
Steve Naroff9efa7672009-09-04 15:44:05 +0000614 case Decl::ObjCMethod: {
615 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D);
616 if (MD->isInstanceMethod())
617 return CXCursor_ObjCInstanceMethodDecl;
618 return CXCursor_ObjCClassMethodDecl;
619 }
620 default: break;
621 }
Steve Naroff77128dd2009-09-15 20:25:34 +0000622 return CXCursor_NotImplemented;
Steve Naroff9efa7672009-09-04 15:44:05 +0000623}
Steve Naroff600866c2009-08-27 19:51:58 +0000624//
625// CXCursor Operations.
626//
Steve Naroff9efa7672009-09-04 15:44:05 +0000627CXCursor clang_getCursor(CXTranslationUnit CTUnit, const char *source_name,
Steve Naroff600866c2009-08-27 19:51:58 +0000628 unsigned line, unsigned column)
629{
Steve Naroff9efa7672009-09-04 15:44:05 +0000630 assert(CTUnit && "Passed null CXTranslationUnit");
631 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
632
633 FileManager &FMgr = CXXUnit->getFileManager();
634 const FileEntry *File = FMgr.getFile(source_name,
Steve Naroff77128dd2009-09-15 20:25:34 +0000635 source_name+strlen(source_name));
636 if (!File) {
Steve Narofffb570422009-09-22 19:25:29 +0000637 CXCursor C = { CXCursor_InvalidFile, 0, 0 };
Steve Naroff77128dd2009-09-15 20:25:34 +0000638 return C;
639 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000640 SourceLocation SLoc =
641 CXXUnit->getSourceManager().getLocation(File, line, column);
642
643 ASTLocation ALoc = ResolveLocationInAST(CXXUnit->getASTContext(), SLoc);
644
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +0000645 Decl *Dcl = ALoc.getParentDecl();
Argyrios Kyrtzidis05a76512009-09-29 19:45:58 +0000646 if (ALoc.isNamedRef())
647 Dcl = ALoc.AsNamedRef().ND;
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +0000648 Stmt *Stm = ALoc.dyn_AsStmt();
Steve Naroff4ade6d62009-09-23 17:52:52 +0000649 if (Dcl) {
650 if (Stm) {
651 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Stm)) {
652 CXCursor C = { TranslateDeclRefExpr(DRE), Dcl, Stm };
653 return C;
654 } else if (ObjCMessageExpr *MExp = dyn_cast<ObjCMessageExpr>(Stm)) {
655 CXCursor C = { CXCursor_ObjCSelectorRef, Dcl, MExp };
656 return C;
Steve Naroff85e2db72009-10-01 00:31:07 +0000657 }
Steve Naroff4ade6d62009-09-23 17:52:52 +0000658 // Fall through...treat as a decl, not a ref.
659 }
Steve Naroff85e2db72009-10-01 00:31:07 +0000660 if (ALoc.isNamedRef()) {
661 if (isa<ObjCInterfaceDecl>(Dcl)) {
662 CXCursor C = { CXCursor_ObjCClassRef, Dcl, ALoc.getParentDecl() };
663 return C;
664 }
665 if (isa<ObjCProtocolDecl>(Dcl)) {
666 CXCursor C = { CXCursor_ObjCProtocolRef, Dcl, ALoc.getParentDecl() };
667 return C;
668 }
669 }
670 CXCursor C = { TranslateKind(Dcl), Dcl, 0 };
Steve Naroff77128dd2009-09-15 20:25:34 +0000671 return C;
672 }
Steve Narofffb570422009-09-22 19:25:29 +0000673 CXCursor C = { CXCursor_NoDeclFound, 0, 0 };
Steve Naroff9efa7672009-09-04 15:44:05 +0000674 return C;
Steve Naroff600866c2009-08-27 19:51:58 +0000675}
676
Steve Naroff77128dd2009-09-15 20:25:34 +0000677CXCursor clang_getCursorFromDecl(CXDecl AnonDecl)
678{
679 assert(AnonDecl && "Passed null CXDecl");
680 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
681
Steve Narofffb570422009-09-22 19:25:29 +0000682 CXCursor C = { TranslateKind(ND), ND, 0 };
Steve Naroff77128dd2009-09-15 20:25:34 +0000683 return C;
684}
685
686unsigned clang_isInvalid(enum CXCursorKind K)
687{
688 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
689}
690
Steve Naroff89922f82009-08-31 00:59:03 +0000691unsigned clang_isDeclaration(enum CXCursorKind K)
692{
693 return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl;
694}
Steve Naroff2d4d6292009-08-31 14:26:51 +0000695
Steve Narofff334b4e2009-09-02 18:26:48 +0000696unsigned clang_isReference(enum CXCursorKind K)
697{
698 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
699}
700
701unsigned clang_isDefinition(enum CXCursorKind K)
702{
703 return K >= CXCursor_FirstDefn && K <= CXCursor_LastDefn;
704}
705
Steve Naroff9efa7672009-09-04 15:44:05 +0000706CXCursorKind clang_getCursorKind(CXCursor C)
707{
708 return C.kind;
709}
710
Steve Naroff699a07d2009-09-25 21:32:34 +0000711static Decl *getDeclFromExpr(Stmt *E) {
712 if (DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E))
713 return RefExpr->getDecl();
714 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
715 return ME->getMemberDecl();
716 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E))
717 return RE->getDecl();
718
719 if (CallExpr *CE = dyn_cast<CallExpr>(E))
720 return getDeclFromExpr(CE->getCallee());
721 if (CastExpr *CE = dyn_cast<CastExpr>(E))
722 return getDeclFromExpr(CE->getSubExpr());
723 if (ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E))
724 return OME->getMethodDecl();
725
726 return 0;
727}
728
Steve Naroff9efa7672009-09-04 15:44:05 +0000729CXDecl clang_getCursorDecl(CXCursor C)
730{
Steve Naroff699a07d2009-09-25 21:32:34 +0000731 if (clang_isDeclaration(C.kind))
732 return C.decl;
733
734 if (clang_isReference(C.kind)) {
Steve Naroff85e2db72009-10-01 00:31:07 +0000735 if (C.stmt) {
Steve Narofff9adf8f2009-10-05 17:58:19 +0000736 if (C.kind == CXCursor_ObjCClassRef ||
737 C.kind == CXCursor_ObjCProtocolRef)
Steve Naroff85e2db72009-10-01 00:31:07 +0000738 return static_cast<Stmt *>(C.stmt);
739 else
740 return getDeclFromExpr(static_cast<Stmt *>(C.stmt));
741 } else
Steve Naroff699a07d2009-09-25 21:32:34 +0000742 return C.decl;
743 }
744 return 0;
Steve Naroff9efa7672009-09-04 15:44:05 +0000745}
746
Steve Naroff85e2db72009-10-01 00:31:07 +0000747
Steve Narofff334b4e2009-09-02 18:26:48 +0000748static SourceLocation getLocationFromCursor(CXCursor C,
749 SourceManager &SourceMgr,
750 NamedDecl *ND) {
Steve Narofff334b4e2009-09-02 18:26:48 +0000751 if (clang_isReference(C.kind)) {
752 switch (C.kind) {
Steve Naroffbade7de2009-10-19 13:41:39 +0000753 case CXCursor_ObjCClassRef: {
Steve Naroff85e2db72009-10-01 00:31:07 +0000754 if (isa<ObjCInterfaceDecl>(ND)) {
755 // FIXME: This is a hack (storing the parent decl in the stmt slot).
756 NamedDecl *parentDecl = static_cast<NamedDecl *>(C.stmt);
757 return parentDecl->getLocation();
758 }
759 ObjCCategoryDecl *OID = dyn_cast<ObjCCategoryDecl>(ND);
760 assert(OID && "clang_getCursorLine(): Missing category decl");
761 return OID->getClassInterface()->getLocation();
Steve Naroffbade7de2009-10-19 13:41:39 +0000762 }
763 case CXCursor_ObjCSuperClassRef: {
Steve Narofff334b4e2009-09-02 18:26:48 +0000764 ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND);
765 assert(OID && "clang_getCursorLine(): Missing interface decl");
Steve Naroff1164d852009-09-02 18:58:52 +0000766 return OID->getSuperClassLoc();
Steve Naroffbade7de2009-10-19 13:41:39 +0000767 }
768 case CXCursor_ObjCProtocolRef: {
Steve Naroff9efa7672009-09-04 15:44:05 +0000769 ObjCProtocolDecl *OID = dyn_cast<ObjCProtocolDecl>(ND);
770 assert(OID && "clang_getCursorLine(): Missing protocol decl");
771 return OID->getLocation();
Steve Naroffbade7de2009-10-19 13:41:39 +0000772 }
773 case CXCursor_ObjCSelectorRef: {
Steve Narofffb570422009-09-22 19:25:29 +0000774 ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(
775 static_cast<Stmt *>(C.stmt));
776 assert(OME && "clang_getCursorLine(): Missing message expr");
777 return OME->getLeftLoc(); /* FIXME: should be a range */
Steve Naroffbade7de2009-10-19 13:41:39 +0000778 }
Steve Narofffb570422009-09-22 19:25:29 +0000779 case CXCursor_VarRef:
780 case CXCursor_FunctionRef:
Steve Naroffbade7de2009-10-19 13:41:39 +0000781 case CXCursor_EnumConstantRef: {
Steve Narofffb570422009-09-22 19:25:29 +0000782 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(
783 static_cast<Stmt *>(C.stmt));
784 assert(DRE && "clang_getCursorLine(): Missing decl ref expr");
785 return DRE->getLocation();
Steve Naroffbade7de2009-10-19 13:41:39 +0000786 }
Steve Narofff334b4e2009-09-02 18:26:48 +0000787 default:
Steve Naroff1164d852009-09-02 18:58:52 +0000788 return SourceLocation();
Steve Narofff334b4e2009-09-02 18:26:48 +0000789 }
790 } else { // We have a declaration or a definition.
Steve Naroff9efa7672009-09-04 15:44:05 +0000791 SourceLocation SLoc;
792 switch (ND->getKind()) {
Steve Naroffbade7de2009-10-19 13:41:39 +0000793 case Decl::ObjCInterface: {
Steve Naroff9efa7672009-09-04 15:44:05 +0000794 SLoc = dyn_cast<ObjCInterfaceDecl>(ND)->getClassLoc();
795 break;
Steve Naroffbade7de2009-10-19 13:41:39 +0000796 }
797 case Decl::ObjCProtocol: {
Steve Naroff9efa7672009-09-04 15:44:05 +0000798 SLoc = ND->getLocation(); /* FIXME: need to get the name location. */
799 break;
Steve Naroffbade7de2009-10-19 13:41:39 +0000800 }
801 default: {
Steve Naroff9efa7672009-09-04 15:44:05 +0000802 SLoc = ND->getLocation();
803 break;
Steve Naroffbade7de2009-10-19 13:41:39 +0000804 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000805 }
Steve Narofff334b4e2009-09-02 18:26:48 +0000806 if (SLoc.isInvalid())
807 return SourceLocation();
Steve Naroff1164d852009-09-02 18:58:52 +0000808 return SourceMgr.getSpellingLoc(SLoc); // handles macro instantiations.
Steve Narofff334b4e2009-09-02 18:26:48 +0000809 }
Steve Narofff334b4e2009-09-02 18:26:48 +0000810}
811
Steve Naroff2d4d6292009-08-31 14:26:51 +0000812unsigned clang_getCursorLine(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000813{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000814 assert(C.decl && "CXCursor has null decl");
815 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000816 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000817
818 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000819 return SourceMgr.getSpellingLineNumber(SLoc);
Steve Naroff600866c2009-08-27 19:51:58 +0000820}
Steve Narofff334b4e2009-09-02 18:26:48 +0000821
Steve Naroff2d4d6292009-08-31 14:26:51 +0000822unsigned clang_getCursorColumn(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000823{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000824 assert(C.decl && "CXCursor has null decl");
825 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000826 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000827
828 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000829 return SourceMgr.getSpellingColumnNumber(SLoc);
Steve Naroff600866c2009-08-27 19:51:58 +0000830}
Steve Naroff2d4d6292009-08-31 14:26:51 +0000831const char *clang_getCursorSource(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000832{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000833 assert(C.decl && "CXCursor has null decl");
834 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000835 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000836
837 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Douglas Gregor02465752009-10-16 21:24:31 +0000838 if (SLoc.isFileID())
839 return SourceMgr.getBufferName(SLoc);
840
841 // Retrieve the file in which the macro was instantiated, then provide that
842 // buffer name.
843 // FIXME: Do we want to give specific macro-instantiation information?
844 const llvm::MemoryBuffer *Buffer
845 = SourceMgr.getBuffer(SourceMgr.getDecomposedSpellingLoc(SLoc).first);
846 if (!Buffer)
847 return 0;
848
849 return Buffer->getBufferIdentifier();
Steve Naroff600866c2009-08-27 19:51:58 +0000850}
851
Steve Naroff4ade6d62009-09-23 17:52:52 +0000852void clang_getDefinitionSpellingAndExtent(CXCursor C,
853 const char **startBuf,
854 const char **endBuf,
855 unsigned *startLine,
856 unsigned *startColumn,
857 unsigned *endLine,
858 unsigned *endColumn)
859{
860 assert(C.decl && "CXCursor has null decl");
861 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
862 FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
863 CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody());
864
865 SourceManager &SM = FD->getASTContext().getSourceManager();
866 *startBuf = SM.getCharacterData(Body->getLBracLoc());
867 *endBuf = SM.getCharacterData(Body->getRBracLoc());
868 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
869 *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc());
870 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc());
871 *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc());
872}
873
874
Steve Naroff600866c2009-08-27 19:51:58 +0000875} // end extern "C"