blob: af2b417ab8b684e6fc6b2ec0d0b4196533562729 [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"
Douglas Gregor02465752009-10-16 21:24:31 +000026#include "llvm/Support/MemoryBuffer.h"
27#include "llvm/System/Path.h"
Benjamin Kramer0829a832009-10-18 11:19:36 +000028#include "llvm/System/Program.h"
Benjamin Kramerd01a0bc2009-08-29 12:56:35 +000029#include <cstdio>
Benjamin Kramer20d75812009-10-18 16:13:48 +000030#ifdef LLVM_ON_WIN32
31#define WIN32_LEAN_AND_MEAN
32#include <windows.h>
33#else
Steve Naroff5b7d8e22009-10-15 20:04:39 +000034#include <dlfcn.h>
Daniel Dunbara47dd192009-10-17 23:53:11 +000035#endif
Ted Kremenek74cd0692009-10-15 23:21:22 +000036#include <vector>
Steve Naroff5b7d8e22009-10-15 20:04:39 +000037
Steve Naroff50398192009-08-28 15:28:48 +000038using namespace clang;
39using namespace idx;
40
Steve Naroff89922f82009-08-31 00:59:03 +000041namespace {
42
Steve Naroff4ade6d62009-09-23 17:52:52 +000043static enum CXCursorKind TranslateDeclRefExpr(DeclRefExpr *DRE)
44{
45 NamedDecl *D = DRE->getDecl();
46 if (isa<VarDecl>(D))
47 return CXCursor_VarRef;
48 else if (isa<FunctionDecl>(D))
49 return CXCursor_FunctionRef;
50 else if (isa<EnumConstantDecl>(D))
51 return CXCursor_EnumConstantRef;
52 else
53 return CXCursor_NotImplemented;
54}
55
56#if 0
57// Will be useful one day.
Steve Narofffb570422009-09-22 19:25:29 +000058class CRefVisitor : public StmtVisitor<CRefVisitor> {
59 CXDecl CDecl;
60 CXDeclIterator Callback;
61 CXClientData CData;
62
63 void Call(enum CXCursorKind CK, Stmt *SRef) {
64 CXCursor C = { CK, CDecl, SRef };
65 Callback(CDecl, C, CData);
66 }
67
68public:
69 CRefVisitor(CXDecl C, CXDeclIterator cback, CXClientData D) :
70 CDecl(C), Callback(cback), CData(D) {}
71
72 void VisitStmt(Stmt *S) {
73 for (Stmt::child_iterator C = S->child_begin(), CEnd = S->child_end();
74 C != CEnd; ++C)
75 Visit(*C);
76 }
77 void VisitDeclRefExpr(DeclRefExpr *Node) {
Steve Naroff4ade6d62009-09-23 17:52:52 +000078 Call(TranslateDeclRefExpr(Node), Node);
Steve Narofffb570422009-09-22 19:25:29 +000079 }
80 void VisitMemberExpr(MemberExpr *Node) {
81 Call(CXCursor_MemberRef, Node);
82 }
83 void VisitObjCMessageExpr(ObjCMessageExpr *Node) {
84 Call(CXCursor_ObjCSelectorRef, Node);
85 }
86 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *Node) {
87 Call(CXCursor_ObjCIvarRef, Node);
88 }
89};
Steve Naroff4ade6d62009-09-23 17:52:52 +000090#endif
Steve Narofffb570422009-09-22 19:25:29 +000091
Steve Naroff89922f82009-08-31 00:59:03 +000092// Translation Unit Visitor.
93class TUVisitor : public DeclVisitor<TUVisitor> {
94 CXTranslationUnit TUnit;
95 CXTranslationUnitIterator Callback;
Steve Naroff2b8ee6c2009-09-01 15:55:40 +000096 CXClientData CData;
97
Douglas Gregor7d1d49d2009-10-16 20:01:17 +000098 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
99 // to the visitor. Declarations with a PCH level greater than this value will
100 // be suppressed.
101 unsigned MaxPCHLevel;
102
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000103 void Call(enum CXCursorKind CK, NamedDecl *ND) {
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000104 // Filter any declarations that have a PCH level greater than what we allow.
105 if (ND->getPCHLevel() > MaxPCHLevel)
106 return;
107
Steve Narofffb570422009-09-22 19:25:29 +0000108 CXCursor C = { CK, ND, 0 };
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000109 Callback(TUnit, C, CData);
110 }
Steve Naroff89922f82009-08-31 00:59:03 +0000111public:
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000112 TUVisitor(CXTranslationUnit CTU,
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000113 CXTranslationUnitIterator cback, CXClientData D,
114 unsigned MaxPCHLevel) :
115 TUnit(CTU), Callback(cback), CData(D), MaxPCHLevel(MaxPCHLevel) {}
Steve Naroff89922f82009-08-31 00:59:03 +0000116
117 void VisitTranslationUnitDecl(TranslationUnitDecl *D) {
118 VisitDeclContext(dyn_cast<DeclContext>(D));
119 }
120 void VisitDeclContext(DeclContext *DC) {
121 for (DeclContext::decl_iterator
122 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I)
123 Visit(*I);
124 }
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000125 void VisitTypedefDecl(TypedefDecl *ND) {
126 Call(CXCursor_TypedefDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000127 }
128 void VisitTagDecl(TagDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000129 switch (ND->getTagKind()) {
130 case TagDecl::TK_struct:
131 Call(CXCursor_StructDecl, ND);
132 break;
133 case TagDecl::TK_class:
134 Call(CXCursor_ClassDecl, ND);
135 break;
136 case TagDecl::TK_union:
137 Call(CXCursor_UnionDecl, ND);
138 break;
139 case TagDecl::TK_enum:
140 Call(CXCursor_EnumDecl, ND);
141 break;
142 }
Steve Naroff89922f82009-08-31 00:59:03 +0000143 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000144 void VisitVarDecl(VarDecl *ND) {
145 Call(CXCursor_VarDecl, ND);
146 }
Steve Naroff89922f82009-08-31 00:59:03 +0000147 void VisitFunctionDecl(FunctionDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000148 Call(ND->isThisDeclarationADefinition() ? CXCursor_FunctionDefn
149 : CXCursor_FunctionDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000150 }
151 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *ND) {
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000152 Call(CXCursor_ObjCInterfaceDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000153 }
154 void VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000155 Call(CXCursor_ObjCCategoryDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000156 }
157 void VisitObjCProtocolDecl(ObjCProtocolDecl *ND) {
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000158 Call(CXCursor_ObjCProtocolDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000159 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000160 void VisitObjCImplementationDecl(ObjCImplementationDecl *ND) {
161 Call(CXCursor_ObjCClassDefn, ND);
162 }
163 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *ND) {
164 Call(CXCursor_ObjCCategoryDefn, ND);
165 }
Steve Naroff89922f82009-08-31 00:59:03 +0000166};
167
Steve Naroffc857ea42009-09-02 13:28:54 +0000168// Declaration visitor.
169class CDeclVisitor : public DeclVisitor<CDeclVisitor> {
170 CXDecl CDecl;
171 CXDeclIterator Callback;
172 CXClientData CData;
173
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000174 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
175 // to the visitor. Declarations with a PCH level greater than this value will
176 // be suppressed.
177 unsigned MaxPCHLevel;
178
Steve Naroffc857ea42009-09-02 13:28:54 +0000179 void Call(enum CXCursorKind CK, NamedDecl *ND) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000180 // Disable the callback when the context is equal to the visiting decl.
181 if (CDecl == ND && !clang_isReference(CK))
182 return;
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000183
184 // Filter any declarations that have a PCH level greater than what we allow.
185 if (ND->getPCHLevel() > MaxPCHLevel)
186 return;
187
Steve Narofffb570422009-09-22 19:25:29 +0000188 CXCursor C = { CK, ND, 0 };
Steve Naroffc857ea42009-09-02 13:28:54 +0000189 Callback(CDecl, C, CData);
190 }
Steve Naroff89922f82009-08-31 00:59:03 +0000191public:
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000192 CDeclVisitor(CXDecl C, CXDeclIterator cback, CXClientData D,
193 unsigned MaxPCHLevel) :
194 CDecl(C), Callback(cback), CData(D), MaxPCHLevel(MaxPCHLevel) {}
Steve Naroffc857ea42009-09-02 13:28:54 +0000195
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000196 void VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
197 // Issue callbacks for the containing class.
198 Call(CXCursor_ObjCClassRef, ND);
199 // FIXME: Issue callbacks for protocol refs.
200 VisitDeclContext(dyn_cast<DeclContext>(ND));
201 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000202 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000203 // Issue callbacks for super class.
Steve Narofff334b4e2009-09-02 18:26:48 +0000204 if (D->getSuperClass())
205 Call(CXCursor_ObjCSuperClassRef, D);
206
Steve Naroff9efa7672009-09-04 15:44:05 +0000207 for (ObjCProtocolDecl::protocol_iterator I = D->protocol_begin(),
208 E = D->protocol_end(); I != E; ++I)
209 Call(CXCursor_ObjCProtocolRef, *I);
Steve Naroffc857ea42009-09-02 13:28:54 +0000210 VisitDeclContext(dyn_cast<DeclContext>(D));
211 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000212 void VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
213 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
214 E = PID->protocol_end(); I != E; ++I)
215 Call(CXCursor_ObjCProtocolRef, *I);
216
217 VisitDeclContext(dyn_cast<DeclContext>(PID));
218 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000219 void VisitTagDecl(TagDecl *D) {
220 VisitDeclContext(dyn_cast<DeclContext>(D));
221 }
222 void VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
223 VisitDeclContext(dyn_cast<DeclContext>(D));
224 }
225 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
226 VisitDeclContext(dyn_cast<DeclContext>(D));
227 }
Steve Naroff89922f82009-08-31 00:59:03 +0000228 void VisitDeclContext(DeclContext *DC) {
229 for (DeclContext::decl_iterator
230 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I)
231 Visit(*I);
232 }
233 void VisitEnumConstantDecl(EnumConstantDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000234 Call(CXCursor_EnumConstantDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000235 }
236 void VisitFieldDecl(FieldDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000237 Call(CXCursor_FieldDecl, ND);
238 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000239 void VisitVarDecl(VarDecl *ND) {
240 Call(CXCursor_VarDecl, ND);
241 }
242 void VisitParmVarDecl(ParmVarDecl *ND) {
243 Call(CXCursor_ParmDecl, ND);
244 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000245 void VisitObjCPropertyDecl(ObjCPropertyDecl *ND) {
246 Call(CXCursor_ObjCPropertyDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000247 }
248 void VisitObjCIvarDecl(ObjCIvarDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000249 Call(CXCursor_ObjCIvarDecl, ND);
250 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000251 void VisitFunctionDecl(FunctionDecl *ND) {
252 if (ND->isThisDeclarationADefinition()) {
253 VisitDeclContext(dyn_cast<DeclContext>(ND));
Steve Naroff4ade6d62009-09-23 17:52:52 +0000254#if 0
255 // Not currently needed.
256 CompoundStmt *Body = dyn_cast<CompoundStmt>(ND->getBody());
Steve Narofffb570422009-09-22 19:25:29 +0000257 CRefVisitor RVisit(CDecl, Callback, CData);
Steve Naroff4ade6d62009-09-23 17:52:52 +0000258 RVisit.Visit(Body);
259#endif
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000260 }
261 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000262 void VisitObjCMethodDecl(ObjCMethodDecl *ND) {
263 if (ND->getBody()) {
264 Call(ND->isInstanceMethod() ? CXCursor_ObjCInstanceMethodDefn
265 : CXCursor_ObjCClassMethodDefn, ND);
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000266 VisitDeclContext(dyn_cast<DeclContext>(ND));
Steve Naroffc857ea42009-09-02 13:28:54 +0000267 } else
268 Call(ND->isInstanceMethod() ? CXCursor_ObjCInstanceMethodDecl
269 : CXCursor_ObjCClassMethodDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000270 }
271};
272
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000273class CIndexer : public Indexer {
274public:
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000275 explicit CIndexer(Program *prog) : Indexer(*prog), OnlyLocalDecls(false) {}
Ted Kremenekdff76892009-10-17 06:21:47 +0000276
277 virtual ~CIndexer() { delete &getProgram(); }
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000278
279 /// \brief Whether we only want to see "local" declarations (that did not
280 /// come from a previous precompiled header). If false, we want to see all
281 /// declarations.
282 bool getOnlyLocalDecls() const { return OnlyLocalDecls; }
283 void setOnlyLocalDecls(bool Local = true) { OnlyLocalDecls = Local; }
Benjamin Kramer96707622009-10-18 11:10:55 +0000284
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000285 /// \brief Get the path of the clang binary.
286 static const llvm::sys::Path& getClangPath();
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000287private:
288 bool OnlyLocalDecls;
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000289 static llvm::sys::Path ClangPath;
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000290};
Steve Naroff89922f82009-08-31 00:59:03 +0000291
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000292llvm::sys::Path CIndexer::ClangPath;
Ted Kremenekd2fa5662009-08-26 22:36:44 +0000293
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000294const llvm::sys::Path& CIndexer::getClangPath() {
295 // Did we already compute the path?
296 if (!ClangPath.empty())
297 return ClangPath;
298
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000299 // Find the location where this library lives (libCIndex.dylib).
Benjamin Kramer20d75812009-10-18 16:13:48 +0000300#ifdef LLVM_ON_WIN32
301 MEMORY_BASIC_INFORMATION mbi;
302 char path[MAX_PATH];
Benjamin Krameredcd8282009-10-18 16:20:58 +0000303 VirtualQuery((void *)(uintptr_t)clang_createTranslationUnit, &mbi,
Benjamin Kramer20d75812009-10-18 16:13:48 +0000304 sizeof(mbi));
305 GetModuleFileNameA((HINSTANCE)mbi.AllocationBase, path, MAX_PATH);
306
307 llvm::sys::Path CIndexPath(path);
308#else
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000309 // This silly cast below avoids a C++ warning.
310 Dl_info info;
311 if (dladdr((void *)(uintptr_t)clang_createTranslationUnit, &info) == 0)
312 assert(0 && "Call to dladdr() failed");
313
314 llvm::sys::Path CIndexPath(info.dli_fname);
Daniel Dunbara47dd192009-10-17 23:53:11 +0000315#endif
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000316
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000317 // We now have the CIndex directory, locate clang relative to it.
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000318 CIndexPath.eraseComponent();
319 CIndexPath.eraseComponent();
320 CIndexPath.appendComponent("bin");
321 CIndexPath.appendComponent("clang");
322
323 // Cache our result.
324 ClangPath = CIndexPath;
325 return ClangPath;
326}
327
328}
329
330extern "C" {
331
332CXIndex clang_createIndex()
333{
334 return new CIndexer(new Program());
Steve Naroff600866c2009-08-27 19:51:58 +0000335}
336
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000337void clang_disposeIndex(CXIndex CIdx)
338{
339 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000340 delete static_cast<CIndexer *>(CIdx);
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000341}
342
Steve Naroff50398192009-08-28 15:28:48 +0000343// FIXME: need to pass back error info.
344CXTranslationUnit clang_createTranslationUnit(
345 CXIndex CIdx, const char *ast_filename)
Steve Naroff600866c2009-08-27 19:51:58 +0000346{
Steve Naroff50398192009-08-28 15:28:48 +0000347 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000348 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
Steve Naroff50398192009-08-28 15:28:48 +0000349 std::string astName(ast_filename);
350 std::string ErrMsg;
351
Daniel Dunbar31b87d82009-09-21 03:03:39 +0000352 return ASTUnit::LoadFromPCHFile(astName, CXXIdx->getDiagnostics(),
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000353 CXXIdx->getFileManager(), &ErrMsg,
Ted Kremenek5cf48762009-10-17 00:34:24 +0000354 CXXIdx->getOnlyLocalDecls(),
355 /* UseBumpAllocator = */ true);
Steve Naroff600866c2009-08-27 19:51:58 +0000356}
357
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000358CXTranslationUnit clang_createTranslationUnitFromSourceFile(
359 CXIndex CIdx,
360 const char *source_filename,
361 int num_command_line_args, const char **command_line_args)
362{
Ted Kremenek74cd0692009-10-15 23:21:22 +0000363 // Build up the arguments for involing clang.
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000364 llvm::sys::Path ClangPath = static_cast<CIndexer *>(CIdx)->getClangPath();
Ted Kremenek74cd0692009-10-15 23:21:22 +0000365 std::vector<const char *> argv;
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000366 argv.push_back(ClangPath.c_str());
Ted Kremenek74cd0692009-10-15 23:21:22 +0000367 argv.push_back("-emit-ast");
368 argv.push_back(source_filename);
369 argv.push_back("-o");
Steve Naroff37b5ac22009-10-15 20:50:09 +0000370 // Generate a temporary name for the AST file.
371 char astTmpFile[L_tmpnam];
Ted Kremenek74cd0692009-10-15 23:21:22 +0000372 argv.push_back(tmpnam(astTmpFile));
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000373 for (int i = num_command_line_args; i < num_command_line_args; i++)
Ted Kremenek74cd0692009-10-15 23:21:22 +0000374 argv.push_back(command_line_args[i]);
375 argv.push_back(NULL);
376
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000377 // Generate the AST file in a separate process.
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000378 llvm::sys::Program::ExecuteAndWait(ClangPath, &argv[0]);
Benjamin Kramer0829a832009-10-18 11:19:36 +0000379
Steve Naroff37b5ac22009-10-15 20:50:09 +0000380 // Finally, we create the translation unit from the ast file.
Steve Naroffe19944c2009-10-15 22:23:48 +0000381 ASTUnit *ATU = static_cast<ASTUnit *>(
382 clang_createTranslationUnit(CIdx, astTmpFile));
383 ATU->unlinkTemporaryFile();
384 return ATU;
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000385}
386
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000387void clang_disposeTranslationUnit(
388 CXTranslationUnit CTUnit)
389{
390 assert(CTUnit && "Passed null CXTranslationUnit");
391 delete static_cast<ASTUnit *>(CTUnit);
392}
393
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000394void clang_wantOnlyLocalDeclarations(CXIndex CIdx) {
395 static_cast<CIndexer *>(CIdx)->setOnlyLocalDecls(true);
396}
397
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000398const char *clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit)
399{
400 assert(CTUnit && "Passed null CXTranslationUnit");
Steve Naroff77accc12009-09-03 18:19:54 +0000401 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
402 return CXXUnit->getOriginalSourceFileName().c_str();
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000403}
Daniel Dunbar1eb79b52009-08-28 16:30:07 +0000404
Steve Naroffc857ea42009-09-02 13:28:54 +0000405void clang_loadTranslationUnit(CXTranslationUnit CTUnit,
406 CXTranslationUnitIterator callback,
407 CXClientData CData)
Steve Naroff600866c2009-08-27 19:51:58 +0000408{
Steve Naroff50398192009-08-28 15:28:48 +0000409 assert(CTUnit && "Passed null CXTranslationUnit");
410 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
411 ASTContext &Ctx = CXXUnit->getASTContext();
412
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000413 TUVisitor DVisit(CTUnit, callback, CData,
414 CXXUnit->getOnlyLocalDecls()? 1 : Decl::MaxPCHLevel);
Steve Naroff50398192009-08-28 15:28:48 +0000415 DVisit.Visit(Ctx.getTranslationUnitDecl());
Steve Naroff600866c2009-08-27 19:51:58 +0000416}
417
Steve Naroffc857ea42009-09-02 13:28:54 +0000418void clang_loadDeclaration(CXDecl Dcl,
419 CXDeclIterator callback,
420 CXClientData CData)
Steve Naroff600866c2009-08-27 19:51:58 +0000421{
Steve Naroffc857ea42009-09-02 13:28:54 +0000422 assert(Dcl && "Passed null CXDecl");
423
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000424 CDeclVisitor DVisit(Dcl, callback, CData,
425 static_cast<Decl *>(Dcl)->getPCHLevel());
Steve Naroffc857ea42009-09-02 13:28:54 +0000426 DVisit.Visit(static_cast<Decl *>(Dcl));
Steve Naroff600866c2009-08-27 19:51:58 +0000427}
428
Steve Naroff7e8f8182009-08-28 12:07:44 +0000429// Some notes on CXEntity:
430//
431// - Since the 'ordinary' namespace includes functions, data, typedefs,
432// ObjC interfaces, thecurrent algorithm is a bit naive (resulting in one
433// entity for 2 different types). For example:
434//
435// module1.m: @interface Foo @end Foo *x;
436// module2.m: void Foo(int);
437//
438// - Since the unique name spans translation units, static data/functions
439// within a CXTranslationUnit are *not* currently represented by entities.
440// As a result, there will be no entity for the following:
441//
442// module.m: static void Foo() { }
443//
444
445
Steve Naroff600866c2009-08-27 19:51:58 +0000446const char *clang_getDeclarationName(CXEntity)
447{
448 return "";
449}
450const char *clang_getURI(CXEntity)
451{
452 return "";
453}
454
455CXEntity clang_getEntity(const char *URI)
456{
457 return 0;
458}
459
460//
461// CXDecl Operations.
462//
Steve Naroff600866c2009-08-27 19:51:58 +0000463CXEntity clang_getEntityFromDecl(CXDecl)
464{
465 return 0;
466}
Steve Naroff89922f82009-08-31 00:59:03 +0000467const char *clang_getDeclSpelling(CXDecl AnonDecl)
Steve Naroff600866c2009-08-27 19:51:58 +0000468{
Steve Naroff89922f82009-08-31 00:59:03 +0000469 assert(AnonDecl && "Passed null CXDecl");
470 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
Steve Naroffc857ea42009-09-02 13:28:54 +0000471
472 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND)) {
473 return OMD->getSelector().getAsString().c_str();
474 }
Steve Naroff89922f82009-08-31 00:59:03 +0000475 if (ND->getIdentifier())
476 return ND->getIdentifier()->getName();
Steve Naroffc857ea42009-09-02 13:28:54 +0000477 else
Steve Naroff89922f82009-08-31 00:59:03 +0000478 return "";
Steve Naroff600866c2009-08-27 19:51:58 +0000479}
Steve Narofff334b4e2009-09-02 18:26:48 +0000480
Steve Naroff699a07d2009-09-25 21:32:34 +0000481unsigned clang_getDeclLine(CXDecl AnonDecl)
482{
483 assert(AnonDecl && "Passed null CXDecl");
484 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
485 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
486 return SourceMgr.getSpellingLineNumber(ND->getLocation());
487}
488
489unsigned clang_getDeclColumn(CXDecl AnonDecl)
490{
491 assert(AnonDecl && "Passed null CXDecl");
492 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
493 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Naroff74165242009-09-25 22:15:54 +0000494 return SourceMgr.getSpellingColumnNumber(ND->getLocation());
Steve Naroff699a07d2009-09-25 21:32:34 +0000495}
496
Steve Naroffee9405e2009-09-25 21:45:39 +0000497const char *clang_getDeclSource(CXDecl AnonDecl)
498{
499 assert(AnonDecl && "Passed null CXDecl");
500 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
501 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
502 return SourceMgr.getBufferName(ND->getLocation());
503}
504
Steve Narofff334b4e2009-09-02 18:26:48 +0000505const char *clang_getCursorSpelling(CXCursor C)
506{
507 assert(C.decl && "CXCursor has null decl");
508 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
509
510 if (clang_isReference(C.kind)) {
511 switch (C.kind) {
Steve Naroff1164d852009-09-02 18:58:52 +0000512 case CXCursor_ObjCSuperClassRef:
513 {
Steve Narofff334b4e2009-09-02 18:26:48 +0000514 ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND);
515 assert(OID && "clang_getCursorLine(): Missing interface decl");
516 return OID->getSuperClass()->getIdentifier()->getName();
Steve Naroff1164d852009-09-02 18:58:52 +0000517 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000518 case CXCursor_ObjCClassRef:
519 {
Steve Naroff85e2db72009-10-01 00:31:07 +0000520 if (ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND)) {
521 return OID->getIdentifier()->getName();
522 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000523 ObjCCategoryDecl *OID = dyn_cast<ObjCCategoryDecl>(ND);
524 assert(OID && "clang_getCursorLine(): Missing category decl");
525 return OID->getClassInterface()->getIdentifier()->getName();
526 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000527 case CXCursor_ObjCProtocolRef:
528 {
529 ObjCProtocolDecl *OID = dyn_cast<ObjCProtocolDecl>(ND);
530 assert(OID && "clang_getCursorLine(): Missing protocol decl");
531 return OID->getIdentifier()->getName();
532 }
Steve Narofffb570422009-09-22 19:25:29 +0000533 case CXCursor_ObjCSelectorRef:
534 {
535 ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(
536 static_cast<Stmt *>(C.stmt));
537 assert(OME && "clang_getCursorLine(): Missing message expr");
538 return OME->getSelector().getAsString().c_str();
539 }
540 case CXCursor_VarRef:
541 case CXCursor_FunctionRef:
542 case CXCursor_EnumConstantRef:
543 {
544 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(
545 static_cast<Stmt *>(C.stmt));
546 assert(DRE && "clang_getCursorLine(): Missing decl ref expr");
547 return DRE->getDecl()->getIdentifier()->getName();
548 }
Steve Narofff334b4e2009-09-02 18:26:48 +0000549 default:
550 return "<not implemented>";
551 }
552 }
553 return clang_getDeclSpelling(C.decl);
554}
555
556const char *clang_getCursorKindSpelling(enum CXCursorKind Kind)
Steve Naroff600866c2009-08-27 19:51:58 +0000557{
Steve Naroff89922f82009-08-31 00:59:03 +0000558 switch (Kind) {
559 case CXCursor_FunctionDecl: return "FunctionDecl";
560 case CXCursor_TypedefDecl: return "TypedefDecl";
561 case CXCursor_EnumDecl: return "EnumDecl";
562 case CXCursor_EnumConstantDecl: return "EnumConstantDecl";
Steve Naroffc857ea42009-09-02 13:28:54 +0000563 case CXCursor_StructDecl: return "StructDecl";
564 case CXCursor_UnionDecl: return "UnionDecl";
565 case CXCursor_ClassDecl: return "ClassDecl";
Steve Naroff89922f82009-08-31 00:59:03 +0000566 case CXCursor_FieldDecl: return "FieldDecl";
567 case CXCursor_VarDecl: return "VarDecl";
568 case CXCursor_ParmDecl: return "ParmDecl";
569 case CXCursor_ObjCInterfaceDecl: return "ObjCInterfaceDecl";
570 case CXCursor_ObjCCategoryDecl: return "ObjCCategoryDecl";
571 case CXCursor_ObjCProtocolDecl: return "ObjCProtocolDecl";
572 case CXCursor_ObjCPropertyDecl: return "ObjCPropertyDecl";
573 case CXCursor_ObjCIvarDecl: return "ObjCIvarDecl";
Steve Naroffc857ea42009-09-02 13:28:54 +0000574 case CXCursor_ObjCInstanceMethodDecl: return "ObjCInstanceMethodDecl";
575 case CXCursor_ObjCClassMethodDecl: return "ObjCClassMethodDecl";
576 case CXCursor_FunctionDefn: return "FunctionDefn";
577 case CXCursor_ObjCInstanceMethodDefn: return "ObjCInstanceMethodDefn";
578 case CXCursor_ObjCClassMethodDefn: return "ObjCClassMethodDefn";
579 case CXCursor_ObjCClassDefn: return "ObjCClassDefn";
580 case CXCursor_ObjCCategoryDefn: return "ObjCCategoryDefn";
Steve Narofff334b4e2009-09-02 18:26:48 +0000581 case CXCursor_ObjCSuperClassRef: return "ObjCSuperClassRef";
Steve Naroff9efa7672009-09-04 15:44:05 +0000582 case CXCursor_ObjCProtocolRef: return "ObjCProtocolRef";
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000583 case CXCursor_ObjCClassRef: return "ObjCClassRef";
Steve Narofffb570422009-09-22 19:25:29 +0000584 case CXCursor_ObjCSelectorRef: return "ObjCSelectorRef";
585
586 case CXCursor_VarRef: return "VarRef";
587 case CXCursor_FunctionRef: return "FunctionRef";
588 case CXCursor_EnumConstantRef: return "EnumConstantRef";
589 case CXCursor_MemberRef: return "MemberRef";
590
Steve Naroff77128dd2009-09-15 20:25:34 +0000591 case CXCursor_InvalidFile: return "InvalidFile";
592 case CXCursor_NoDeclFound: return "NoDeclFound";
593 case CXCursor_NotImplemented: return "NotImplemented";
Steve Naroff89922f82009-08-31 00:59:03 +0000594 default: return "<not implemented>";
595 }
Steve Naroff600866c2009-08-27 19:51:58 +0000596}
Steve Naroff89922f82009-08-31 00:59:03 +0000597
Steve Naroff9efa7672009-09-04 15:44:05 +0000598static enum CXCursorKind TranslateKind(Decl *D) {
599 switch (D->getKind()) {
600 case Decl::Function: return CXCursor_FunctionDecl;
601 case Decl::Typedef: return CXCursor_TypedefDecl;
602 case Decl::Enum: return CXCursor_EnumDecl;
603 case Decl::EnumConstant: return CXCursor_EnumConstantDecl;
604 case Decl::Record: return CXCursor_StructDecl; // FIXME: union/class
605 case Decl::Field: return CXCursor_FieldDecl;
606 case Decl::Var: return CXCursor_VarDecl;
607 case Decl::ParmVar: return CXCursor_ParmDecl;
608 case Decl::ObjCInterface: return CXCursor_ObjCInterfaceDecl;
Steve Narofffb570422009-09-22 19:25:29 +0000609 case Decl::ObjCCategory: return CXCursor_ObjCCategoryDecl;
610 case Decl::ObjCProtocol: return CXCursor_ObjCProtocolDecl;
Steve Naroff9efa7672009-09-04 15:44:05 +0000611 case Decl::ObjCMethod: {
612 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D);
613 if (MD->isInstanceMethod())
614 return CXCursor_ObjCInstanceMethodDecl;
615 return CXCursor_ObjCClassMethodDecl;
616 }
617 default: break;
618 }
Steve Naroff77128dd2009-09-15 20:25:34 +0000619 return CXCursor_NotImplemented;
Steve Naroff9efa7672009-09-04 15:44:05 +0000620}
Steve Naroff600866c2009-08-27 19:51:58 +0000621//
622// CXCursor Operations.
623//
Steve Naroff9efa7672009-09-04 15:44:05 +0000624CXCursor clang_getCursor(CXTranslationUnit CTUnit, const char *source_name,
Steve Naroff600866c2009-08-27 19:51:58 +0000625 unsigned line, unsigned column)
626{
Steve Naroff9efa7672009-09-04 15:44:05 +0000627 assert(CTUnit && "Passed null CXTranslationUnit");
628 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
629
630 FileManager &FMgr = CXXUnit->getFileManager();
631 const FileEntry *File = FMgr.getFile(source_name,
Steve Naroff77128dd2009-09-15 20:25:34 +0000632 source_name+strlen(source_name));
633 if (!File) {
Steve Narofffb570422009-09-22 19:25:29 +0000634 CXCursor C = { CXCursor_InvalidFile, 0, 0 };
Steve Naroff77128dd2009-09-15 20:25:34 +0000635 return C;
636 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000637 SourceLocation SLoc =
638 CXXUnit->getSourceManager().getLocation(File, line, column);
639
640 ASTLocation ALoc = ResolveLocationInAST(CXXUnit->getASTContext(), SLoc);
641
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +0000642 Decl *Dcl = ALoc.getParentDecl();
Argyrios Kyrtzidis05a76512009-09-29 19:45:58 +0000643 if (ALoc.isNamedRef())
644 Dcl = ALoc.AsNamedRef().ND;
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +0000645 Stmt *Stm = ALoc.dyn_AsStmt();
Steve Naroff4ade6d62009-09-23 17:52:52 +0000646 if (Dcl) {
647 if (Stm) {
648 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Stm)) {
649 CXCursor C = { TranslateDeclRefExpr(DRE), Dcl, Stm };
650 return C;
651 } else if (ObjCMessageExpr *MExp = dyn_cast<ObjCMessageExpr>(Stm)) {
652 CXCursor C = { CXCursor_ObjCSelectorRef, Dcl, MExp };
653 return C;
Steve Naroff85e2db72009-10-01 00:31:07 +0000654 }
Steve Naroff4ade6d62009-09-23 17:52:52 +0000655 // Fall through...treat as a decl, not a ref.
656 }
Steve Naroff85e2db72009-10-01 00:31:07 +0000657 if (ALoc.isNamedRef()) {
658 if (isa<ObjCInterfaceDecl>(Dcl)) {
659 CXCursor C = { CXCursor_ObjCClassRef, Dcl, ALoc.getParentDecl() };
660 return C;
661 }
662 if (isa<ObjCProtocolDecl>(Dcl)) {
663 CXCursor C = { CXCursor_ObjCProtocolRef, Dcl, ALoc.getParentDecl() };
664 return C;
665 }
666 }
667 CXCursor C = { TranslateKind(Dcl), Dcl, 0 };
Steve Naroff77128dd2009-09-15 20:25:34 +0000668 return C;
669 }
Steve Narofffb570422009-09-22 19:25:29 +0000670 CXCursor C = { CXCursor_NoDeclFound, 0, 0 };
Steve Naroff9efa7672009-09-04 15:44:05 +0000671 return C;
Steve Naroff600866c2009-08-27 19:51:58 +0000672}
673
Steve Naroff77128dd2009-09-15 20:25:34 +0000674CXCursor clang_getCursorFromDecl(CXDecl AnonDecl)
675{
676 assert(AnonDecl && "Passed null CXDecl");
677 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
678
Steve Narofffb570422009-09-22 19:25:29 +0000679 CXCursor C = { TranslateKind(ND), ND, 0 };
Steve Naroff77128dd2009-09-15 20:25:34 +0000680 return C;
681}
682
683unsigned clang_isInvalid(enum CXCursorKind K)
684{
685 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
686}
687
Steve Naroff89922f82009-08-31 00:59:03 +0000688unsigned clang_isDeclaration(enum CXCursorKind K)
689{
690 return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl;
691}
Steve Naroff2d4d6292009-08-31 14:26:51 +0000692
Steve Narofff334b4e2009-09-02 18:26:48 +0000693unsigned clang_isReference(enum CXCursorKind K)
694{
695 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
696}
697
698unsigned clang_isDefinition(enum CXCursorKind K)
699{
700 return K >= CXCursor_FirstDefn && K <= CXCursor_LastDefn;
701}
702
Steve Naroff9efa7672009-09-04 15:44:05 +0000703CXCursorKind clang_getCursorKind(CXCursor C)
704{
705 return C.kind;
706}
707
Steve Naroff699a07d2009-09-25 21:32:34 +0000708static Decl *getDeclFromExpr(Stmt *E) {
709 if (DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E))
710 return RefExpr->getDecl();
711 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
712 return ME->getMemberDecl();
713 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E))
714 return RE->getDecl();
715
716 if (CallExpr *CE = dyn_cast<CallExpr>(E))
717 return getDeclFromExpr(CE->getCallee());
718 if (CastExpr *CE = dyn_cast<CastExpr>(E))
719 return getDeclFromExpr(CE->getSubExpr());
720 if (ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E))
721 return OME->getMethodDecl();
722
723 return 0;
724}
725
Steve Naroff9efa7672009-09-04 15:44:05 +0000726CXDecl clang_getCursorDecl(CXCursor C)
727{
Steve Naroff699a07d2009-09-25 21:32:34 +0000728 if (clang_isDeclaration(C.kind))
729 return C.decl;
730
731 if (clang_isReference(C.kind)) {
Steve Naroff85e2db72009-10-01 00:31:07 +0000732 if (C.stmt) {
Steve Narofff9adf8f2009-10-05 17:58:19 +0000733 if (C.kind == CXCursor_ObjCClassRef ||
734 C.kind == CXCursor_ObjCProtocolRef)
Steve Naroff85e2db72009-10-01 00:31:07 +0000735 return static_cast<Stmt *>(C.stmt);
736 else
737 return getDeclFromExpr(static_cast<Stmt *>(C.stmt));
738 } else
Steve Naroff699a07d2009-09-25 21:32:34 +0000739 return C.decl;
740 }
741 return 0;
Steve Naroff9efa7672009-09-04 15:44:05 +0000742}
743
Steve Naroff85e2db72009-10-01 00:31:07 +0000744
Steve Narofff334b4e2009-09-02 18:26:48 +0000745static SourceLocation getLocationFromCursor(CXCursor C,
746 SourceManager &SourceMgr,
747 NamedDecl *ND) {
Steve Narofff334b4e2009-09-02 18:26:48 +0000748 if (clang_isReference(C.kind)) {
749 switch (C.kind) {
Steve Naroff85e2db72009-10-01 00:31:07 +0000750 case CXCursor_ObjCClassRef:
751 {
752 if (isa<ObjCInterfaceDecl>(ND)) {
753 // FIXME: This is a hack (storing the parent decl in the stmt slot).
754 NamedDecl *parentDecl = static_cast<NamedDecl *>(C.stmt);
755 return parentDecl->getLocation();
756 }
757 ObjCCategoryDecl *OID = dyn_cast<ObjCCategoryDecl>(ND);
758 assert(OID && "clang_getCursorLine(): Missing category decl");
759 return OID->getClassInterface()->getLocation();
760 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000761 case CXCursor_ObjCSuperClassRef:
Steve Naroff1164d852009-09-02 18:58:52 +0000762 {
Steve Narofff334b4e2009-09-02 18:26:48 +0000763 ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND);
764 assert(OID && "clang_getCursorLine(): Missing interface decl");
Steve Naroff1164d852009-09-02 18:58:52 +0000765 return OID->getSuperClassLoc();
766 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000767 case CXCursor_ObjCProtocolRef:
768 {
769 ObjCProtocolDecl *OID = dyn_cast<ObjCProtocolDecl>(ND);
770 assert(OID && "clang_getCursorLine(): Missing protocol decl");
771 return OID->getLocation();
772 }
Steve Narofffb570422009-09-22 19:25:29 +0000773 case CXCursor_ObjCSelectorRef:
774 {
775 ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(
776 static_cast<Stmt *>(C.stmt));
777 assert(OME && "clang_getCursorLine(): Missing message expr");
778 return OME->getLeftLoc(); /* FIXME: should be a range */
779 }
780 case CXCursor_VarRef:
781 case CXCursor_FunctionRef:
782 case CXCursor_EnumConstantRef:
783 {
784 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(
785 static_cast<Stmt *>(C.stmt));
786 assert(DRE && "clang_getCursorLine(): Missing decl ref expr");
787 return DRE->getLocation();
788 }
Steve Narofff334b4e2009-09-02 18:26:48 +0000789 default:
Steve Naroff1164d852009-09-02 18:58:52 +0000790 return SourceLocation();
Steve Narofff334b4e2009-09-02 18:26:48 +0000791 }
792 } else { // We have a declaration or a definition.
Steve Naroff9efa7672009-09-04 15:44:05 +0000793 SourceLocation SLoc;
794 switch (ND->getKind()) {
795 case Decl::ObjCInterface:
796 {
797 SLoc = dyn_cast<ObjCInterfaceDecl>(ND)->getClassLoc();
798 break;
799 }
800 case Decl::ObjCProtocol:
801 {
802 SLoc = ND->getLocation(); /* FIXME: need to get the name location. */
803 break;
804 }
805 default:
806 {
807 SLoc = ND->getLocation();
808 break;
809 }
810 }
Steve Narofff334b4e2009-09-02 18:26:48 +0000811 if (SLoc.isInvalid())
812 return SourceLocation();
Steve Naroff1164d852009-09-02 18:58:52 +0000813 return SourceMgr.getSpellingLoc(SLoc); // handles macro instantiations.
Steve Narofff334b4e2009-09-02 18:26:48 +0000814 }
Steve Narofff334b4e2009-09-02 18:26:48 +0000815}
816
Steve Naroff2d4d6292009-08-31 14:26:51 +0000817unsigned clang_getCursorLine(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000818{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000819 assert(C.decl && "CXCursor has null decl");
820 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000821 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000822
823 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000824 return SourceMgr.getSpellingLineNumber(SLoc);
Steve Naroff600866c2009-08-27 19:51:58 +0000825}
Steve Narofff334b4e2009-09-02 18:26:48 +0000826
Steve Naroff2d4d6292009-08-31 14:26:51 +0000827unsigned clang_getCursorColumn(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000828{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000829 assert(C.decl && "CXCursor has null decl");
830 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000831 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000832
833 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000834 return SourceMgr.getSpellingColumnNumber(SLoc);
Steve Naroff600866c2009-08-27 19:51:58 +0000835}
Steve Naroff2d4d6292009-08-31 14:26:51 +0000836const char *clang_getCursorSource(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000837{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000838 assert(C.decl && "CXCursor has null decl");
839 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000840 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000841
842 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Douglas Gregor02465752009-10-16 21:24:31 +0000843 if (SLoc.isFileID())
844 return SourceMgr.getBufferName(SLoc);
845
846 // Retrieve the file in which the macro was instantiated, then provide that
847 // buffer name.
848 // FIXME: Do we want to give specific macro-instantiation information?
849 const llvm::MemoryBuffer *Buffer
850 = SourceMgr.getBuffer(SourceMgr.getDecomposedSpellingLoc(SLoc).first);
851 if (!Buffer)
852 return 0;
853
854 return Buffer->getBufferIdentifier();
Steve Naroff600866c2009-08-27 19:51:58 +0000855}
856
Steve Naroff4ade6d62009-09-23 17:52:52 +0000857void clang_getDefinitionSpellingAndExtent(CXCursor C,
858 const char **startBuf,
859 const char **endBuf,
860 unsigned *startLine,
861 unsigned *startColumn,
862 unsigned *endLine,
863 unsigned *endColumn)
864{
865 assert(C.decl && "CXCursor has null decl");
866 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
867 FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
868 CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody());
869
870 SourceManager &SM = FD->getASTContext().getSourceManager();
871 *startBuf = SM.getCharacterData(Body->getLBracLoc());
872 *endBuf = SM.getCharacterData(Body->getRBracLoc());
873 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
874 *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc());
875 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc());
876 *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc());
877}
878
879
Steve Naroff600866c2009-08-27 19:51:58 +0000880} // end extern "C"