Ted Kremenek | d2fa566 | 2009-08-26 22:36:44 +0000 | [diff] [blame] | 1 | //===- 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 Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 7 | // |
Ted Kremenek | d2fa566 | 2009-08-26 22:36:44 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Ted Kremenek | ab18893 | 2010-01-05 19:32:54 +0000 | [diff] [blame] | 10 | // This file implements the main API hooks in the Clang-C Source Indexing |
| 11 | // library. |
Ted Kremenek | d2fa566 | 2009-08-26 22:36:44 +0000 | [diff] [blame] | 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Ted Kremenek | ab18893 | 2010-01-05 19:32:54 +0000 | [diff] [blame] | 15 | #include "CIndexer.h" |
| 16 | |
Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclVisitor.h" |
Steve Naroff | fb57042 | 2009-09-22 19:25:29 +0000 | [diff] [blame] | 18 | #include "clang/AST/StmtVisitor.h" |
Ted Kremenek | d821065 | 2010-01-06 23:43:31 +0000 | [diff] [blame] | 19 | #include "clang/Lex/Lexer.h" |
Douglas Gregor | 0246575 | 2009-10-16 21:24:31 +0000 | [diff] [blame] | 20 | #include "llvm/Support/MemoryBuffer.h" |
Benjamin Kramer | 0829a83 | 2009-10-18 11:19:36 +0000 | [diff] [blame] | 21 | #include "llvm/System/Program.h" |
Ted Kremenek | fc06221 | 2009-10-19 21:44:57 +0000 | [diff] [blame] | 22 | |
Ted Kremenek | db3d0da | 2010-01-05 20:55:39 +0000 | [diff] [blame] | 23 | // Needed to define L_TMPNAM on some systems. |
| 24 | #include <cstdio> |
| 25 | |
Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 26 | using namespace clang; |
| 27 | using namespace idx; |
| 28 | |
Ted Kremenek | 8a8da7d | 2010-01-06 03:42:32 +0000 | [diff] [blame] | 29 | //===----------------------------------------------------------------------===// |
| 30 | // Crash Reporting. |
| 31 | //===----------------------------------------------------------------------===// |
| 32 | |
| 33 | #ifdef __APPLE__ |
Ted Kremenek | 29b7284 | 2010-01-07 22:49:05 +0000 | [diff] [blame] | 34 | #ifndef NDEBUG |
| 35 | #define USE_CRASHTRACER |
Ted Kremenek | 8a8da7d | 2010-01-06 03:42:32 +0000 | [diff] [blame] | 36 | #include "clang/Analysis/Support/SaveAndRestore.h" |
| 37 | // Integrate with crash reporter. |
| 38 | extern "C" const char *__crashreporter_info__; |
Ted Kremenek | 29b7284 | 2010-01-07 22:49:05 +0000 | [diff] [blame] | 39 | #define NUM_CRASH_STRINGS 16 |
| 40 | static unsigned crashtracer_counter = 0; |
Ted Kremenek | 254ba7c | 2010-01-07 23:13:53 +0000 | [diff] [blame] | 41 | static unsigned crashtracer_counter_id[NUM_CRASH_STRINGS] = { 0 }; |
Ted Kremenek | 29b7284 | 2010-01-07 22:49:05 +0000 | [diff] [blame] | 42 | static const char *crashtracer_strings[NUM_CRASH_STRINGS] = { 0 }; |
| 43 | static const char *agg_crashtracer_strings[NUM_CRASH_STRINGS] = { 0 }; |
| 44 | |
| 45 | static unsigned SetCrashTracerInfo(const char *str, |
| 46 | llvm::SmallString<1024> &AggStr) { |
| 47 | |
Ted Kremenek | 254ba7c | 2010-01-07 23:13:53 +0000 | [diff] [blame] | 48 | unsigned slot = 0; |
Ted Kremenek | 29b7284 | 2010-01-07 22:49:05 +0000 | [diff] [blame] | 49 | while (crashtracer_strings[slot]) { |
| 50 | if (++slot == NUM_CRASH_STRINGS) |
| 51 | slot = 0; |
| 52 | } |
| 53 | crashtracer_strings[slot] = str; |
Ted Kremenek | 254ba7c | 2010-01-07 23:13:53 +0000 | [diff] [blame] | 54 | crashtracer_counter_id[slot] = ++crashtracer_counter; |
Ted Kremenek | 29b7284 | 2010-01-07 22:49:05 +0000 | [diff] [blame] | 55 | |
| 56 | // We need to create an aggregate string because multiple threads |
| 57 | // may be in this method at one time. The crash reporter string |
| 58 | // will attempt to overapproximate the set of in-flight invocations |
| 59 | // of this function. Race conditions can still cause this goal |
| 60 | // to not be achieved. |
| 61 | { |
| 62 | llvm::raw_svector_ostream Out(AggStr); |
| 63 | for (unsigned i = 0; i < NUM_CRASH_STRINGS; ++i) |
| 64 | if (crashtracer_strings[i]) Out << crashtracer_strings[i] << '\n'; |
| 65 | } |
| 66 | __crashreporter_info__ = agg_crashtracer_strings[slot] = AggStr.c_str(); |
| 67 | return slot; |
| 68 | } |
| 69 | |
| 70 | static void ResetCrashTracerInfo(unsigned slot) { |
Ted Kremenek | 254ba7c | 2010-01-07 23:13:53 +0000 | [diff] [blame] | 71 | unsigned max_slot = 0; |
| 72 | unsigned max_value = 0; |
| 73 | |
| 74 | crashtracer_strings[slot] = agg_crashtracer_strings[slot] = 0; |
| 75 | |
| 76 | for (unsigned i = 0 ; i < NUM_CRASH_STRINGS; ++i) |
| 77 | if (agg_crashtracer_strings[i] && |
| 78 | crashtracer_counter_id[i] > max_value) { |
| 79 | max_slot = i; |
| 80 | max_value = crashtracer_counter_id[i]; |
Ted Kremenek | 29b7284 | 2010-01-07 22:49:05 +0000 | [diff] [blame] | 81 | } |
Ted Kremenek | 254ba7c | 2010-01-07 23:13:53 +0000 | [diff] [blame] | 82 | |
| 83 | __crashreporter_info__ = agg_crashtracer_strings[max_slot]; |
Ted Kremenek | 29b7284 | 2010-01-07 22:49:05 +0000 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | namespace { |
| 87 | class ArgsCrashTracerInfo { |
| 88 | llvm::SmallString<1024> CrashString; |
| 89 | llvm::SmallString<1024> AggregateString; |
| 90 | unsigned crashtracerSlot; |
| 91 | public: |
| 92 | ArgsCrashTracerInfo(llvm::SmallVectorImpl<const char*> &Args) |
| 93 | : crashtracerSlot(0) |
| 94 | { |
| 95 | { |
| 96 | llvm::raw_svector_ostream Out(CrashString); |
| 97 | Out << "ClangCIndex [createTranslationUnitFromSourceFile]: clang"; |
| 98 | for (llvm::SmallVectorImpl<const char*>::iterator I=Args.begin(), |
| 99 | E=Args.end(); I!=E; ++I) |
| 100 | Out << ' ' << *I; |
| 101 | } |
| 102 | crashtracerSlot = SetCrashTracerInfo(CrashString.c_str(), |
| 103 | AggregateString); |
| 104 | } |
| 105 | |
| 106 | ~ArgsCrashTracerInfo() { |
| 107 | ResetCrashTracerInfo(crashtracerSlot); |
| 108 | } |
| 109 | }; |
| 110 | } |
| 111 | #endif |
Ted Kremenek | 8a8da7d | 2010-01-06 03:42:32 +0000 | [diff] [blame] | 112 | #endif |
| 113 | |
| 114 | //===----------------------------------------------------------------------===// |
| 115 | // Visitors. |
| 116 | //===----------------------------------------------------------------------===// |
| 117 | |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 118 | namespace { |
Ted Kremenek | ab18893 | 2010-01-05 19:32:54 +0000 | [diff] [blame] | 119 | static enum CXCursorKind TranslateDeclRefExpr(DeclRefExpr *DRE) { |
Steve Naroff | 4ade6d6 | 2009-09-23 17:52:52 +0000 | [diff] [blame] | 120 | NamedDecl *D = DRE->getDecl(); |
| 121 | if (isa<VarDecl>(D)) |
| 122 | return CXCursor_VarRef; |
| 123 | else if (isa<FunctionDecl>(D)) |
| 124 | return CXCursor_FunctionRef; |
| 125 | else if (isa<EnumConstantDecl>(D)) |
| 126 | return CXCursor_EnumConstantRef; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 127 | else |
Steve Naroff | 4ade6d6 | 2009-09-23 17:52:52 +0000 | [diff] [blame] | 128 | return CXCursor_NotImplemented; |
| 129 | } |
| 130 | |
| 131 | #if 0 |
| 132 | // Will be useful one day. |
Steve Naroff | fb57042 | 2009-09-22 19:25:29 +0000 | [diff] [blame] | 133 | class CRefVisitor : public StmtVisitor<CRefVisitor> { |
| 134 | CXDecl CDecl; |
| 135 | CXDeclIterator Callback; |
| 136 | CXClientData CData; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 137 | |
Steve Naroff | fb57042 | 2009-09-22 19:25:29 +0000 | [diff] [blame] | 138 | void Call(enum CXCursorKind CK, Stmt *SRef) { |
| 139 | CXCursor C = { CK, CDecl, SRef }; |
| 140 | Callback(CDecl, C, CData); |
| 141 | } |
| 142 | |
| 143 | public: |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 144 | CRefVisitor(CXDecl C, CXDeclIterator cback, CXClientData D) : |
Steve Naroff | fb57042 | 2009-09-22 19:25:29 +0000 | [diff] [blame] | 145 | CDecl(C), Callback(cback), CData(D) {} |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 146 | |
Steve Naroff | fb57042 | 2009-09-22 19:25:29 +0000 | [diff] [blame] | 147 | void VisitStmt(Stmt *S) { |
| 148 | for (Stmt::child_iterator C = S->child_begin(), CEnd = S->child_end(); |
| 149 | C != CEnd; ++C) |
| 150 | Visit(*C); |
| 151 | } |
| 152 | void VisitDeclRefExpr(DeclRefExpr *Node) { |
Steve Naroff | 4ade6d6 | 2009-09-23 17:52:52 +0000 | [diff] [blame] | 153 | Call(TranslateDeclRefExpr(Node), Node); |
Steve Naroff | fb57042 | 2009-09-22 19:25:29 +0000 | [diff] [blame] | 154 | } |
| 155 | void VisitMemberExpr(MemberExpr *Node) { |
| 156 | Call(CXCursor_MemberRef, Node); |
| 157 | } |
| 158 | void VisitObjCMessageExpr(ObjCMessageExpr *Node) { |
| 159 | Call(CXCursor_ObjCSelectorRef, Node); |
| 160 | } |
| 161 | void VisitObjCIvarRefExpr(ObjCIvarRefExpr *Node) { |
| 162 | Call(CXCursor_ObjCIvarRef, Node); |
| 163 | } |
| 164 | }; |
Steve Naroff | 4ade6d6 | 2009-09-23 17:52:52 +0000 | [diff] [blame] | 165 | #endif |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 166 | |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 167 | // Translation Unit Visitor. |
Ted Kremenek | f128618 | 2010-01-13 00:13:47 +0000 | [diff] [blame] | 168 | |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 169 | class TUVisitor : public DeclVisitor<TUVisitor> { |
Ted Kremenek | f128618 | 2010-01-13 00:13:47 +0000 | [diff] [blame] | 170 | public: |
| 171 | typedef void (*Iterator)(void *, CXCursor, CXClientData); |
| 172 | private: |
| 173 | void *Root; // CXDecl or CXTranslationUnit |
| 174 | Iterator Callback; // CXTranslationUnitIterator or CXDeclIterator. |
Steve Naroff | 2b8ee6c | 2009-09-01 15:55:40 +0000 | [diff] [blame] | 175 | CXClientData CData; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 176 | |
Douglas Gregor | 7d1d49d | 2009-10-16 20:01:17 +0000 | [diff] [blame] | 177 | // MaxPCHLevel - the maximum PCH level of declarations that we will pass on |
| 178 | // to the visitor. Declarations with a PCH level greater than this value will |
| 179 | // be suppressed. |
| 180 | unsigned MaxPCHLevel; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 181 | |
Steve Naroff | 2b8ee6c | 2009-09-01 15:55:40 +0000 | [diff] [blame] | 182 | void Call(enum CXCursorKind CK, NamedDecl *ND) { |
Douglas Gregor | 7d1d49d | 2009-10-16 20:01:17 +0000 | [diff] [blame] | 183 | // Filter any declarations that have a PCH level greater than what we allow. |
| 184 | if (ND->getPCHLevel() > MaxPCHLevel) |
| 185 | return; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 186 | |
Steve Naroff | f96b524 | 2009-10-28 20:44:47 +0000 | [diff] [blame] | 187 | // Filter any implicit declarations (since the source info will be bogus). |
| 188 | if (ND->isImplicit()) |
| 189 | return; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 190 | |
Steve Naroff | fb57042 | 2009-09-22 19:25:29 +0000 | [diff] [blame] | 191 | CXCursor C = { CK, ND, 0 }; |
Ted Kremenek | f128618 | 2010-01-13 00:13:47 +0000 | [diff] [blame] | 192 | Callback(Root, C, CData); |
Steve Naroff | 2b8ee6c | 2009-09-01 15:55:40 +0000 | [diff] [blame] | 193 | } |
Ted Kremenek | f128618 | 2010-01-13 00:13:47 +0000 | [diff] [blame] | 194 | |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 195 | public: |
Ted Kremenek | f128618 | 2010-01-13 00:13:47 +0000 | [diff] [blame] | 196 | TUVisitor(void *root, Iterator cback, CXClientData D, unsigned MaxPCHLevel) : |
| 197 | Root(root), Callback(cback), CData(D), MaxPCHLevel(MaxPCHLevel) {} |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 198 | |
Ted Kremenek | f128618 | 2010-01-13 00:13:47 +0000 | [diff] [blame] | 199 | void VisitDeclContext(DeclContext *DC); |
| 200 | void VisitFunctionDecl(FunctionDecl *ND); |
| 201 | void VisitObjCCategoryDecl(ObjCCategoryDecl *ND); |
| 202 | void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *ND); |
| 203 | void VisitObjCImplementationDecl(ObjCImplementationDecl *ND); |
| 204 | void VisitObjCInterfaceDecl(ObjCInterfaceDecl *ND); |
| 205 | void VisitObjCProtocolDecl(ObjCProtocolDecl *ND); |
| 206 | void VisitTagDecl(TagDecl *ND); |
| 207 | void VisitTranslationUnitDecl(TranslationUnitDecl *D); |
| 208 | void VisitTypedefDecl(TypedefDecl *ND); |
| 209 | void VisitVarDecl(VarDecl *ND); |
| 210 | }; |
Ted Kremenek | ef7fdc6 | 2009-11-17 07:02:15 +0000 | [diff] [blame] | 211 | |
Ted Kremenek | f128618 | 2010-01-13 00:13:47 +0000 | [diff] [blame] | 212 | void TUVisitor::VisitDeclContext(DeclContext *DC) { |
| 213 | for (DeclContext::decl_iterator I = DC->decls_begin(), E = DC->decls_end(); |
| 214 | I != E; ++I) |
| 215 | Visit(*I); |
| 216 | } |
| 217 | |
| 218 | void TUVisitor::VisitFunctionDecl(FunctionDecl *ND) { |
| 219 | Call(ND->isThisDeclarationADefinition() ? CXCursor_FunctionDefn |
| 220 | : CXCursor_FunctionDecl, ND); |
| 221 | } |
| 222 | |
| 223 | void TUVisitor::VisitObjCCategoryDecl(ObjCCategoryDecl *ND) { |
| 224 | Call(CXCursor_ObjCCategoryDecl, ND); |
| 225 | } |
| 226 | |
| 227 | void TUVisitor::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *ND) { |
| 228 | Call(CXCursor_ObjCCategoryDefn, ND); |
| 229 | } |
| 230 | |
| 231 | void TUVisitor::VisitObjCImplementationDecl(ObjCImplementationDecl *ND) { |
| 232 | Call(CXCursor_ObjCClassDefn, ND); |
| 233 | } |
| 234 | |
| 235 | void TUVisitor::VisitObjCInterfaceDecl(ObjCInterfaceDecl *ND) { |
| 236 | Call(CXCursor_ObjCInterfaceDecl, ND); |
| 237 | } |
| 238 | |
| 239 | void TUVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *ND) { |
| 240 | Call(CXCursor_ObjCProtocolDecl, ND); |
| 241 | } |
| 242 | |
| 243 | void TUVisitor::VisitTagDecl(TagDecl *ND) { |
| 244 | switch (ND->getTagKind()) { |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 245 | case TagDecl::TK_struct: |
| 246 | Call(CXCursor_StructDecl, ND); |
| 247 | break; |
| 248 | case TagDecl::TK_class: |
| 249 | Call(CXCursor_ClassDecl, ND); |
| 250 | break; |
| 251 | case TagDecl::TK_union: |
| 252 | Call(CXCursor_UnionDecl, ND); |
| 253 | break; |
| 254 | case TagDecl::TK_enum: |
| 255 | Call(CXCursor_EnumDecl, ND); |
| 256 | break; |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 257 | } |
Ted Kremenek | f128618 | 2010-01-13 00:13:47 +0000 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | void TUVisitor::VisitTranslationUnitDecl(TranslationUnitDecl *D) { |
| 261 | VisitDeclContext(dyn_cast<DeclContext>(D)); |
| 262 | } |
| 263 | |
| 264 | void TUVisitor::VisitTypedefDecl(TypedefDecl *ND) { |
| 265 | Call(CXCursor_TypedefDecl, ND); |
| 266 | } |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 267 | |
Ted Kremenek | f128618 | 2010-01-13 00:13:47 +0000 | [diff] [blame] | 268 | void TUVisitor::VisitVarDecl(VarDecl *ND) { |
| 269 | Call(CXCursor_VarDecl, ND); |
| 270 | } |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 271 | |
Steve Naroff | c857ea4 | 2009-09-02 13:28:54 +0000 | [diff] [blame] | 272 | // Declaration visitor. |
| 273 | class CDeclVisitor : public DeclVisitor<CDeclVisitor> { |
| 274 | CXDecl CDecl; |
| 275 | CXDeclIterator Callback; |
| 276 | CXClientData CData; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 277 | |
Douglas Gregor | 7d1d49d | 2009-10-16 20:01:17 +0000 | [diff] [blame] | 278 | // MaxPCHLevel - the maximum PCH level of declarations that we will pass on |
| 279 | // to the visitor. Declarations with a PCH level greater than this value will |
| 280 | // be suppressed. |
| 281 | unsigned MaxPCHLevel; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 282 | |
Steve Naroff | c857ea4 | 2009-09-02 13:28:54 +0000 | [diff] [blame] | 283 | void Call(enum CXCursorKind CK, NamedDecl *ND) { |
Steve Naroff | af08ddc | 2009-09-03 15:49:00 +0000 | [diff] [blame] | 284 | // Disable the callback when the context is equal to the visiting decl. |
| 285 | if (CDecl == ND && !clang_isReference(CK)) |
| 286 | return; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 287 | |
Douglas Gregor | 7d1d49d | 2009-10-16 20:01:17 +0000 | [diff] [blame] | 288 | // Filter any declarations that have a PCH level greater than what we allow. |
| 289 | if (ND->getPCHLevel() > MaxPCHLevel) |
| 290 | return; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 291 | |
Steve Naroff | fb57042 | 2009-09-22 19:25:29 +0000 | [diff] [blame] | 292 | CXCursor C = { CK, ND, 0 }; |
Steve Naroff | c857ea4 | 2009-09-02 13:28:54 +0000 | [diff] [blame] | 293 | Callback(CDecl, C, CData); |
| 294 | } |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 295 | public: |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 296 | CDeclVisitor(CXDecl C, CXDeclIterator cback, CXClientData D, |
| 297 | unsigned MaxPCHLevel) : |
Douglas Gregor | 7d1d49d | 2009-10-16 20:01:17 +0000 | [diff] [blame] | 298 | CDecl(C), Callback(cback), CData(D), MaxPCHLevel(MaxPCHLevel) {} |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 299 | |
Ted Kremenek | dd6bcc5 | 2010-01-13 00:22:49 +0000 | [diff] [blame^] | 300 | void VisitDeclContext(DeclContext *DC); |
| 301 | void VisitEnumConstantDecl(EnumConstantDecl *ND); |
| 302 | void VisitFieldDecl(FieldDecl *ND); |
| 303 | void VisitFunctionDecl(FunctionDecl *ND); |
| 304 | void VisitObjCCategoryDecl(ObjCCategoryDecl *ND); |
| 305 | void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D); |
| 306 | void VisitObjCImplementationDecl(ObjCImplementationDecl *D); |
| 307 | void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D); |
| 308 | void VisitObjCIvarDecl(ObjCIvarDecl *ND); |
| 309 | void VisitObjCMethodDecl(ObjCMethodDecl *ND); |
| 310 | void VisitObjCPropertyDecl(ObjCPropertyDecl *ND); |
| 311 | void VisitObjCProtocolDecl(ObjCProtocolDecl *PID); |
| 312 | void VisitParmVarDecl(ParmVarDecl *ND); |
| 313 | void VisitTagDecl(TagDecl *D); |
| 314 | void VisitVarDecl(VarDecl *ND); |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 315 | }; |
Ted Kremenek | ab18893 | 2010-01-05 19:32:54 +0000 | [diff] [blame] | 316 | } // end anonymous namespace |
Benjamin Kramer | 5e4bc59 | 2009-10-18 16:11:04 +0000 | [diff] [blame] | 317 | |
Ted Kremenek | dd6bcc5 | 2010-01-13 00:22:49 +0000 | [diff] [blame^] | 318 | void CDeclVisitor::VisitDeclContext(DeclContext *DC) { |
| 319 | for (DeclContext::decl_iterator |
| 320 | I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I) |
| 321 | Visit(*I); |
| 322 | } |
| 323 | |
| 324 | void CDeclVisitor::VisitEnumConstantDecl(EnumConstantDecl *ND) { |
| 325 | Call(CXCursor_EnumConstantDecl, ND); |
| 326 | } |
| 327 | |
| 328 | void CDeclVisitor::VisitFieldDecl(FieldDecl *ND) { |
| 329 | Call(CXCursor_FieldDecl, ND); |
| 330 | } |
| 331 | |
| 332 | void CDeclVisitor::VisitFunctionDecl(FunctionDecl *ND) { |
| 333 | if (ND->isThisDeclarationADefinition()) { |
| 334 | VisitDeclContext(dyn_cast<DeclContext>(ND)); |
| 335 | #if 0 |
| 336 | // Not currently needed. |
| 337 | CompoundStmt *Body = dyn_cast<CompoundStmt>(ND->getBody()); |
| 338 | CRefVisitor RVisit(CDecl, Callback, CData); |
| 339 | RVisit.Visit(Body); |
| 340 | #endif |
| 341 | } |
| 342 | } |
| 343 | |
| 344 | void CDeclVisitor::VisitObjCCategoryDecl(ObjCCategoryDecl *ND) { |
| 345 | // Issue callbacks for the containing class. |
| 346 | Call(CXCursor_ObjCClassRef, ND); |
| 347 | // FIXME: Issue callbacks for protocol refs. |
| 348 | VisitDeclContext(dyn_cast<DeclContext>(ND)); |
| 349 | } |
| 350 | |
| 351 | void CDeclVisitor::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { |
| 352 | VisitDeclContext(dyn_cast<DeclContext>(D)); |
| 353 | } |
| 354 | |
| 355 | void CDeclVisitor::VisitObjCImplementationDecl(ObjCImplementationDecl *D) { |
| 356 | VisitDeclContext(dyn_cast<DeclContext>(D)); |
| 357 | } |
| 358 | |
| 359 | void CDeclVisitor::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) { |
| 360 | // Issue callbacks for super class. |
| 361 | if (D->getSuperClass()) |
| 362 | Call(CXCursor_ObjCSuperClassRef, D); |
| 363 | |
| 364 | for (ObjCProtocolDecl::protocol_iterator I = D->protocol_begin(), |
| 365 | E = D->protocol_end(); I != E; ++I) |
| 366 | Call(CXCursor_ObjCProtocolRef, *I); |
| 367 | VisitDeclContext(dyn_cast<DeclContext>(D)); |
| 368 | } |
| 369 | |
| 370 | void CDeclVisitor::VisitObjCIvarDecl(ObjCIvarDecl *ND) { |
| 371 | Call(CXCursor_ObjCIvarDecl, ND); |
| 372 | } |
| 373 | |
| 374 | void CDeclVisitor::VisitObjCMethodDecl(ObjCMethodDecl *ND) { |
| 375 | if (ND->getBody()) { |
| 376 | Call(ND->isInstanceMethod() ? CXCursor_ObjCInstanceMethodDefn |
| 377 | : CXCursor_ObjCClassMethodDefn, ND); |
| 378 | VisitDeclContext(dyn_cast<DeclContext>(ND)); |
| 379 | } else |
| 380 | Call(ND->isInstanceMethod() ? CXCursor_ObjCInstanceMethodDecl |
| 381 | : CXCursor_ObjCClassMethodDecl, ND); |
| 382 | } |
| 383 | |
| 384 | void CDeclVisitor::VisitObjCPropertyDecl(ObjCPropertyDecl *ND) { |
| 385 | Call(CXCursor_ObjCPropertyDecl, ND); |
| 386 | } |
| 387 | |
| 388 | void CDeclVisitor::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) { |
| 389 | for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(), |
| 390 | E = PID->protocol_end(); I != E; ++I) |
| 391 | Call(CXCursor_ObjCProtocolRef, *I); |
| 392 | |
| 393 | VisitDeclContext(dyn_cast<DeclContext>(PID)); |
| 394 | } |
| 395 | |
| 396 | void CDeclVisitor::VisitParmVarDecl(ParmVarDecl *ND) { |
| 397 | Call(CXCursor_ParmDecl, ND); |
| 398 | } |
| 399 | |
| 400 | void CDeclVisitor::VisitTagDecl(TagDecl *D) { |
| 401 | VisitDeclContext(dyn_cast<DeclContext>(D)); |
| 402 | } |
| 403 | |
| 404 | void CDeclVisitor::VisitVarDecl(VarDecl *ND) { |
| 405 | Call(CXCursor_VarDecl, ND); |
| 406 | } |
| 407 | |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 408 | static SourceLocation getLocationFromCursor(CXCursor C, |
Daniel Dunbar | c619033 | 2009-11-08 04:13:53 +0000 | [diff] [blame] | 409 | SourceManager &SourceMgr, |
| 410 | NamedDecl *ND) { |
| 411 | if (clang_isReference(C.kind)) { |
| 412 | switch (C.kind) { |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 413 | case CXCursor_ObjCClassRef: { |
| 414 | if (isa<ObjCInterfaceDecl>(ND)) { |
| 415 | // FIXME: This is a hack (storing the parent decl in the stmt slot). |
| 416 | NamedDecl *parentDecl = static_cast<NamedDecl *>(C.stmt); |
| 417 | return parentDecl->getLocation(); |
Daniel Dunbar | c619033 | 2009-11-08 04:13:53 +0000 | [diff] [blame] | 418 | } |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 419 | ObjCCategoryDecl *OID = dyn_cast<ObjCCategoryDecl>(ND); |
| 420 | assert(OID && "clang_getCursorLine(): Missing category decl"); |
| 421 | return OID->getClassInterface()->getLocation(); |
| 422 | } |
| 423 | case CXCursor_ObjCSuperClassRef: { |
| 424 | ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND); |
| 425 | assert(OID && "clang_getCursorLine(): Missing interface decl"); |
| 426 | return OID->getSuperClassLoc(); |
| 427 | } |
| 428 | case CXCursor_ObjCProtocolRef: { |
| 429 | ObjCProtocolDecl *OID = dyn_cast<ObjCProtocolDecl>(ND); |
| 430 | assert(OID && "clang_getCursorLine(): Missing protocol decl"); |
| 431 | return OID->getLocation(); |
| 432 | } |
| 433 | case CXCursor_ObjCSelectorRef: { |
| 434 | ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>( |
| 435 | static_cast<Stmt *>(C.stmt)); |
| 436 | assert(OME && "clang_getCursorLine(): Missing message expr"); |
| 437 | return OME->getLeftLoc(); /* FIXME: should be a range */ |
| 438 | } |
| 439 | case CXCursor_VarRef: |
| 440 | case CXCursor_FunctionRef: |
| 441 | case CXCursor_EnumConstantRef: { |
| 442 | DeclRefExpr *DRE = dyn_cast<DeclRefExpr>( |
| 443 | static_cast<Stmt *>(C.stmt)); |
| 444 | assert(DRE && "clang_getCursorLine(): Missing decl ref expr"); |
| 445 | return DRE->getLocation(); |
| 446 | } |
| 447 | default: |
| 448 | return SourceLocation(); |
Daniel Dunbar | c619033 | 2009-11-08 04:13:53 +0000 | [diff] [blame] | 449 | } |
| 450 | } else { // We have a declaration or a definition. |
| 451 | SourceLocation SLoc; |
| 452 | switch (ND->getKind()) { |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 453 | case Decl::ObjCInterface: { |
| 454 | SLoc = dyn_cast<ObjCInterfaceDecl>(ND)->getClassLoc(); |
| 455 | break; |
| 456 | } |
| 457 | case Decl::ObjCProtocol: { |
| 458 | SLoc = ND->getLocation(); /* FIXME: need to get the name location. */ |
| 459 | break; |
| 460 | } |
| 461 | default: { |
| 462 | SLoc = ND->getLocation(); |
| 463 | break; |
| 464 | } |
Daniel Dunbar | c619033 | 2009-11-08 04:13:53 +0000 | [diff] [blame] | 465 | } |
| 466 | if (SLoc.isInvalid()) |
| 467 | return SourceLocation(); |
| 468 | return SourceMgr.getSpellingLoc(SLoc); // handles macro instantiations. |
| 469 | } |
| 470 | } |
| 471 | |
Daniel Dunbar | 140fce2 | 2010-01-12 02:34:07 +0000 | [diff] [blame] | 472 | CXString CIndexer::createCXString(const char *String, bool DupString){ |
Benjamin Kramer | 62cf322 | 2009-11-09 19:13:48 +0000 | [diff] [blame] | 473 | CXString Str; |
| 474 | if (DupString) { |
| 475 | Str.Spelling = strdup(String); |
| 476 | Str.MustFreeString = 1; |
| 477 | } else { |
| 478 | Str.Spelling = String; |
| 479 | Str.MustFreeString = 0; |
| 480 | } |
| 481 | return Str; |
| 482 | } |
| 483 | |
Benjamin Kramer | 5e4bc59 | 2009-10-18 16:11:04 +0000 | [diff] [blame] | 484 | extern "C" { |
| 485 | |
Steve Naroff | e56b4ba | 2009-10-20 14:46:24 +0000 | [diff] [blame] | 486 | CXIndex clang_createIndex(int excludeDeclarationsFromPCH, |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 487 | int displayDiagnostics) { |
Steve Naroff | e56b4ba | 2009-10-20 14:46:24 +0000 | [diff] [blame] | 488 | CIndexer *CIdxr = new CIndexer(new Program()); |
| 489 | if (excludeDeclarationsFromPCH) |
| 490 | CIdxr->setOnlyLocalDecls(); |
| 491 | if (displayDiagnostics) |
| 492 | CIdxr->setDisplayDiagnostics(); |
| 493 | return CIdxr; |
Steve Naroff | 600866c | 2009-08-27 19:51:58 +0000 | [diff] [blame] | 494 | } |
| 495 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 496 | void clang_disposeIndex(CXIndex CIdx) { |
Steve Naroff | 2bd6b9f | 2009-09-17 18:33:27 +0000 | [diff] [blame] | 497 | assert(CIdx && "Passed null CXIndex"); |
Douglas Gregor | 7d1d49d | 2009-10-16 20:01:17 +0000 | [diff] [blame] | 498 | delete static_cast<CIndexer *>(CIdx); |
Steve Naroff | 2bd6b9f | 2009-09-17 18:33:27 +0000 | [diff] [blame] | 499 | } |
| 500 | |
Daniel Dunbar | 8506dde | 2009-12-03 01:54:28 +0000 | [diff] [blame] | 501 | void clang_setUseExternalASTGeneration(CXIndex CIdx, int value) { |
| 502 | assert(CIdx && "Passed null CXIndex"); |
| 503 | CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx); |
| 504 | CXXIdx->setUseExternalASTGeneration(value); |
| 505 | } |
| 506 | |
Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 507 | // FIXME: need to pass back error info. |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 508 | CXTranslationUnit clang_createTranslationUnit(CXIndex CIdx, |
| 509 | const char *ast_filename) { |
Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 510 | assert(CIdx && "Passed null CXIndex"); |
Douglas Gregor | 7d1d49d | 2009-10-16 20:01:17 +0000 | [diff] [blame] | 511 | CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 512 | |
Daniel Dunbar | 5262fda | 2009-12-03 01:45:44 +0000 | [diff] [blame] | 513 | return ASTUnit::LoadFromPCHFile(ast_filename, CXXIdx->getDiags(), |
| 514 | CXXIdx->getOnlyLocalDecls(), |
| 515 | /* UseBumpAllocator = */ true); |
Steve Naroff | 600866c | 2009-08-27 19:51:58 +0000 | [diff] [blame] | 516 | } |
| 517 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 518 | CXTranslationUnit |
| 519 | clang_createTranslationUnitFromSourceFile(CXIndex CIdx, |
| 520 | const char *source_filename, |
| 521 | int num_command_line_args, |
| 522 | const char **command_line_args) { |
Steve Naroff | e56b4ba | 2009-10-20 14:46:24 +0000 | [diff] [blame] | 523 | assert(CIdx && "Passed null CXIndex"); |
| 524 | CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx); |
| 525 | |
Daniel Dunbar | 8506dde | 2009-12-03 01:54:28 +0000 | [diff] [blame] | 526 | if (!CXXIdx->getUseExternalASTGeneration()) { |
| 527 | llvm::SmallVector<const char *, 16> Args; |
| 528 | |
| 529 | // The 'source_filename' argument is optional. If the caller does not |
| 530 | // specify it then it is assumed that the source file is specified |
| 531 | // in the actual argument list. |
| 532 | if (source_filename) |
| 533 | Args.push_back(source_filename); |
| 534 | Args.insert(Args.end(), command_line_args, |
| 535 | command_line_args + num_command_line_args); |
| 536 | |
Daniel Dunbar | 9422097 | 2009-12-05 02:17:18 +0000 | [diff] [blame] | 537 | unsigned NumErrors = CXXIdx->getDiags().getNumErrors(); |
Ted Kremenek | 8a8da7d | 2010-01-06 03:42:32 +0000 | [diff] [blame] | 538 | |
Ted Kremenek | 29b7284 | 2010-01-07 22:49:05 +0000 | [diff] [blame] | 539 | #ifdef USE_CRASHTRACER |
| 540 | ArgsCrashTracerInfo ACTI(Args); |
Ted Kremenek | 8a8da7d | 2010-01-06 03:42:32 +0000 | [diff] [blame] | 541 | #endif |
| 542 | |
Daniel Dunbar | 9422097 | 2009-12-05 02:17:18 +0000 | [diff] [blame] | 543 | llvm::OwningPtr<ASTUnit> Unit( |
| 544 | ASTUnit::LoadFromCommandLine(Args.data(), Args.data() + Args.size(), |
Daniel Dunbar | 869824e | 2009-12-13 03:46:13 +0000 | [diff] [blame] | 545 | CXXIdx->getDiags(), |
| 546 | CXXIdx->getClangResourcesPath(), |
Daniel Dunbar | 9422097 | 2009-12-05 02:17:18 +0000 | [diff] [blame] | 547 | CXXIdx->getOnlyLocalDecls(), |
| 548 | /* UseBumpAllocator = */ true)); |
Ted Kremenek | 29b7284 | 2010-01-07 22:49:05 +0000 | [diff] [blame] | 549 | |
Daniel Dunbar | 9422097 | 2009-12-05 02:17:18 +0000 | [diff] [blame] | 550 | // FIXME: Until we have broader testing, just drop the entire AST if we |
| 551 | // encountered an error. |
| 552 | if (NumErrors != CXXIdx->getDiags().getNumErrors()) |
| 553 | return 0; |
| 554 | |
| 555 | return Unit.take(); |
Daniel Dunbar | 8506dde | 2009-12-03 01:54:28 +0000 | [diff] [blame] | 556 | } |
| 557 | |
Ted Kremenek | 139ba86 | 2009-10-22 00:03:57 +0000 | [diff] [blame] | 558 | // Build up the arguments for invoking 'clang'. |
Ted Kremenek | 74cd069 | 2009-10-15 23:21:22 +0000 | [diff] [blame] | 559 | std::vector<const char *> argv; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 560 | |
Ted Kremenek | 139ba86 | 2009-10-22 00:03:57 +0000 | [diff] [blame] | 561 | // First add the complete path to the 'clang' executable. |
| 562 | llvm::sys::Path ClangPath = static_cast<CIndexer *>(CIdx)->getClangPath(); |
Benjamin Kramer | 5e4bc59 | 2009-10-18 16:11:04 +0000 | [diff] [blame] | 563 | argv.push_back(ClangPath.c_str()); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 564 | |
Ted Kremenek | 139ba86 | 2009-10-22 00:03:57 +0000 | [diff] [blame] | 565 | // Add the '-emit-ast' option as our execution mode for 'clang'. |
Ted Kremenek | 74cd069 | 2009-10-15 23:21:22 +0000 | [diff] [blame] | 566 | argv.push_back("-emit-ast"); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 567 | |
Ted Kremenek | 139ba86 | 2009-10-22 00:03:57 +0000 | [diff] [blame] | 568 | // The 'source_filename' argument is optional. If the caller does not |
| 569 | // specify it then it is assumed that the source file is specified |
| 570 | // in the actual argument list. |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 571 | if (source_filename) |
| 572 | argv.push_back(source_filename); |
Ted Kremenek | 139ba86 | 2009-10-22 00:03:57 +0000 | [diff] [blame] | 573 | |
Steve Naroff | 37b5ac2 | 2009-10-15 20:50:09 +0000 | [diff] [blame] | 574 | // Generate a temporary name for the AST file. |
Ted Kremenek | 139ba86 | 2009-10-22 00:03:57 +0000 | [diff] [blame] | 575 | argv.push_back("-o"); |
Steve Naroff | 37b5ac2 | 2009-10-15 20:50:09 +0000 | [diff] [blame] | 576 | char astTmpFile[L_tmpnam]; |
Ted Kremenek | 74cd069 | 2009-10-15 23:21:22 +0000 | [diff] [blame] | 577 | argv.push_back(tmpnam(astTmpFile)); |
Ted Kremenek | 139ba86 | 2009-10-22 00:03:57 +0000 | [diff] [blame] | 578 | |
| 579 | // Process the compiler options, stripping off '-o', '-c', '-fsyntax-only'. |
| 580 | for (int i = 0; i < num_command_line_args; ++i) |
| 581 | if (const char *arg = command_line_args[i]) { |
| 582 | if (strcmp(arg, "-o") == 0) { |
| 583 | ++i; // Also skip the matching argument. |
| 584 | continue; |
| 585 | } |
| 586 | if (strcmp(arg, "-emit-ast") == 0 || |
| 587 | strcmp(arg, "-c") == 0 || |
| 588 | strcmp(arg, "-fsyntax-only") == 0) { |
| 589 | continue; |
| 590 | } |
| 591 | |
| 592 | // Keep the argument. |
| 593 | argv.push_back(arg); |
Steve Naroff | e56b4ba | 2009-10-20 14:46:24 +0000 | [diff] [blame] | 594 | } |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 595 | |
Ted Kremenek | 139ba86 | 2009-10-22 00:03:57 +0000 | [diff] [blame] | 596 | // Add the null terminator. |
Ted Kremenek | 74cd069 | 2009-10-15 23:21:22 +0000 | [diff] [blame] | 597 | argv.push_back(NULL); |
| 598 | |
Ted Kremenek | feb15e3 | 2009-10-26 22:14:08 +0000 | [diff] [blame] | 599 | // Invoke 'clang'. |
| 600 | llvm::sys::Path DevNull; // leave empty, causes redirection to /dev/null |
| 601 | // on Unix or NUL (Windows). |
Ted Kremenek | 379afec | 2009-10-22 03:24:01 +0000 | [diff] [blame] | 602 | std::string ErrMsg; |
Ted Kremenek | c46e463 | 2009-10-19 22:27:32 +0000 | [diff] [blame] | 603 | const llvm::sys::Path *Redirects[] = { &DevNull, &DevNull, &DevNull, NULL }; |
Ted Kremenek | 379afec | 2009-10-22 03:24:01 +0000 | [diff] [blame] | 604 | llvm::sys::Program::ExecuteAndWait(ClangPath, &argv[0], /* env */ NULL, |
| 605 | /* redirects */ !CXXIdx->getDisplayDiagnostics() ? &Redirects[0] : NULL, |
| 606 | /* secondsToWait */ 0, /* memoryLimits */ 0, &ErrMsg); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 607 | |
Ted Kremenek | 0854d70 | 2009-11-10 19:18:52 +0000 | [diff] [blame] | 608 | if (CXXIdx->getDisplayDiagnostics() && !ErrMsg.empty()) { |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 609 | llvm::errs() << "clang_createTranslationUnitFromSourceFile: " << ErrMsg |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 610 | << '\n' << "Arguments: \n"; |
Ted Kremenek | 379afec | 2009-10-22 03:24:01 +0000 | [diff] [blame] | 611 | for (std::vector<const char*>::iterator I = argv.begin(), E = argv.end(); |
Ted Kremenek | 779e5f4 | 2009-10-26 22:08:39 +0000 | [diff] [blame] | 612 | I!=E; ++I) { |
| 613 | if (*I) |
| 614 | llvm::errs() << ' ' << *I << '\n'; |
| 615 | } |
| 616 | llvm::errs() << '\n'; |
Ted Kremenek | 379afec | 2009-10-22 03:24:01 +0000 | [diff] [blame] | 617 | } |
Benjamin Kramer | 0829a83 | 2009-10-18 11:19:36 +0000 | [diff] [blame] | 618 | |
Steve Naroff | 37b5ac2 | 2009-10-15 20:50:09 +0000 | [diff] [blame] | 619 | // Finally, we create the translation unit from the ast file. |
Steve Naroff | e19944c | 2009-10-15 22:23:48 +0000 | [diff] [blame] | 620 | ASTUnit *ATU = static_cast<ASTUnit *>( |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 621 | clang_createTranslationUnit(CIdx, astTmpFile)); |
Steve Naroff | e56b4ba | 2009-10-20 14:46:24 +0000 | [diff] [blame] | 622 | if (ATU) |
| 623 | ATU->unlinkTemporaryFile(); |
Steve Naroff | e19944c | 2009-10-15 22:23:48 +0000 | [diff] [blame] | 624 | return ATU; |
Steve Naroff | 5b7d8e2 | 2009-10-15 20:04:39 +0000 | [diff] [blame] | 625 | } |
| 626 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 627 | void clang_disposeTranslationUnit(CXTranslationUnit CTUnit) { |
Steve Naroff | 2bd6b9f | 2009-09-17 18:33:27 +0000 | [diff] [blame] | 628 | assert(CTUnit && "Passed null CXTranslationUnit"); |
| 629 | delete static_cast<ASTUnit *>(CTUnit); |
| 630 | } |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 631 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 632 | CXString clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit) { |
Steve Naroff | af08ddc | 2009-09-03 15:49:00 +0000 | [diff] [blame] | 633 | assert(CTUnit && "Passed null CXTranslationUnit"); |
Steve Naroff | 77accc1 | 2009-09-03 18:19:54 +0000 | [diff] [blame] | 634 | ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit); |
Ted Kremenek | 4b333d2 | 2010-01-12 00:36:38 +0000 | [diff] [blame] | 635 | return CIndexer::createCXString(CXXUnit->getOriginalSourceFileName().c_str(), |
| 636 | true); |
Steve Naroff | af08ddc | 2009-09-03 15:49:00 +0000 | [diff] [blame] | 637 | } |
Daniel Dunbar | 1eb79b5 | 2009-08-28 16:30:07 +0000 | [diff] [blame] | 638 | |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 639 | void clang_loadTranslationUnit(CXTranslationUnit CTUnit, |
Steve Naroff | c857ea4 | 2009-09-02 13:28:54 +0000 | [diff] [blame] | 640 | CXTranslationUnitIterator callback, |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 641 | CXClientData CData) { |
Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 642 | assert(CTUnit && "Passed null CXTranslationUnit"); |
| 643 | ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit); |
| 644 | ASTContext &Ctx = CXXUnit->getASTContext(); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 645 | |
Daniel Dunbar | 8506dde | 2009-12-03 01:54:28 +0000 | [diff] [blame] | 646 | unsigned PCHLevel = Decl::MaxPCHLevel; |
| 647 | |
| 648 | // Set the PCHLevel to filter out unwanted decls if requested. |
| 649 | if (CXXUnit->getOnlyLocalDecls()) { |
| 650 | PCHLevel = 0; |
| 651 | |
| 652 | // If the main input was an AST, bump the level. |
| 653 | if (CXXUnit->isMainFileAST()) |
| 654 | ++PCHLevel; |
| 655 | } |
| 656 | |
| 657 | TUVisitor DVisit(CTUnit, callback, CData, PCHLevel); |
Daniel Dunbar | f772d1e | 2009-12-04 08:17:33 +0000 | [diff] [blame] | 658 | |
| 659 | // If using a non-AST based ASTUnit, iterate over the stored list of top-level |
| 660 | // decls. |
| 661 | if (!CXXUnit->isMainFileAST() && CXXUnit->getOnlyLocalDecls()) { |
| 662 | const std::vector<Decl*> &TLDs = CXXUnit->getTopLevelDecls(); |
| 663 | for (std::vector<Decl*>::const_iterator it = TLDs.begin(), |
| 664 | ie = TLDs.end(); it != ie; ++it) { |
| 665 | DVisit.Visit(*it); |
| 666 | } |
| 667 | } else |
| 668 | DVisit.Visit(Ctx.getTranslationUnitDecl()); |
Steve Naroff | 600866c | 2009-08-27 19:51:58 +0000 | [diff] [blame] | 669 | } |
| 670 | |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 671 | void clang_loadDeclaration(CXDecl Dcl, |
| 672 | CXDeclIterator callback, |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 673 | CXClientData CData) { |
Steve Naroff | c857ea4 | 2009-09-02 13:28:54 +0000 | [diff] [blame] | 674 | assert(Dcl && "Passed null CXDecl"); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 675 | |
Douglas Gregor | 7d1d49d | 2009-10-16 20:01:17 +0000 | [diff] [blame] | 676 | CDeclVisitor DVisit(Dcl, callback, CData, |
| 677 | static_cast<Decl *>(Dcl)->getPCHLevel()); |
Steve Naroff | c857ea4 | 2009-09-02 13:28:54 +0000 | [diff] [blame] | 678 | DVisit.Visit(static_cast<Decl *>(Dcl)); |
Steve Naroff | 600866c | 2009-08-27 19:51:58 +0000 | [diff] [blame] | 679 | } |
| 680 | |
Steve Naroff | 600866c | 2009-08-27 19:51:58 +0000 | [diff] [blame] | 681 | // |
| 682 | // CXDecl Operations. |
| 683 | // |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 684 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 685 | CXString clang_getDeclSpelling(CXDecl AnonDecl) { |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 686 | assert(AnonDecl && "Passed null CXDecl"); |
| 687 | NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl); |
Steve Naroff | ef0cef6 | 2009-11-09 17:45:52 +0000 | [diff] [blame] | 688 | |
Benjamin Kramer | 62cf322 | 2009-11-09 19:13:48 +0000 | [diff] [blame] | 689 | if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND)) |
Ted Kremenek | 4b333d2 | 2010-01-12 00:36:38 +0000 | [diff] [blame] | 690 | return CIndexer::createCXString(OMD->getSelector().getAsString().c_str(), |
| 691 | true); |
Benjamin Kramer | 62cf322 | 2009-11-09 19:13:48 +0000 | [diff] [blame] | 692 | |
| 693 | if (ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND)) |
Steve Naroff | 0d69b8c | 2009-10-29 21:11:04 +0000 | [diff] [blame] | 694 | // No, this isn't the same as the code below. getIdentifier() is non-virtual |
| 695 | // and returns different names. NamedDecl returns the class name and |
| 696 | // ObjCCategoryImplDecl returns the category name. |
Ted Kremenek | 4b333d2 | 2010-01-12 00:36:38 +0000 | [diff] [blame] | 697 | return CIndexer::createCXString(CIMP->getIdentifier()->getNameStart()); |
Benjamin Kramer | 62cf322 | 2009-11-09 19:13:48 +0000 | [diff] [blame] | 698 | |
| 699 | if (ND->getIdentifier()) |
Ted Kremenek | 4b333d2 | 2010-01-12 00:36:38 +0000 | [diff] [blame] | 700 | return CIndexer::createCXString(ND->getIdentifier()->getNameStart()); |
Benjamin Kramer | 62cf322 | 2009-11-09 19:13:48 +0000 | [diff] [blame] | 701 | |
Ted Kremenek | 4b333d2 | 2010-01-12 00:36:38 +0000 | [diff] [blame] | 702 | return CIndexer::createCXString(""); |
Steve Naroff | 600866c | 2009-08-27 19:51:58 +0000 | [diff] [blame] | 703 | } |
Steve Naroff | f334b4e | 2009-09-02 18:26:48 +0000 | [diff] [blame] | 704 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 705 | unsigned clang_getDeclLine(CXDecl AnonDecl) { |
Steve Naroff | 699a07d | 2009-09-25 21:32:34 +0000 | [diff] [blame] | 706 | assert(AnonDecl && "Passed null CXDecl"); |
| 707 | NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl); |
| 708 | SourceManager &SourceMgr = ND->getASTContext().getSourceManager(); |
| 709 | return SourceMgr.getSpellingLineNumber(ND->getLocation()); |
| 710 | } |
| 711 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 712 | unsigned clang_getDeclColumn(CXDecl AnonDecl) { |
Steve Naroff | 699a07d | 2009-09-25 21:32:34 +0000 | [diff] [blame] | 713 | assert(AnonDecl && "Passed null CXDecl"); |
| 714 | NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl); |
| 715 | SourceManager &SourceMgr = ND->getASTContext().getSourceManager(); |
Steve Naroff | 7416524 | 2009-09-25 22:15:54 +0000 | [diff] [blame] | 716 | return SourceMgr.getSpellingColumnNumber(ND->getLocation()); |
Steve Naroff | 699a07d | 2009-09-25 21:32:34 +0000 | [diff] [blame] | 717 | } |
Ted Kremenek | fe6fd3d | 2010-01-05 23:18:49 +0000 | [diff] [blame] | 718 | |
| 719 | CXDeclExtent clang_getDeclExtent(CXDecl AnonDecl) { |
| 720 | assert(AnonDecl && "Passed null CXDecl"); |
| 721 | NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl); |
Ted Kremenek | d821065 | 2010-01-06 23:43:31 +0000 | [diff] [blame] | 722 | SourceManager &SM = ND->getASTContext().getSourceManager(); |
Ted Kremenek | fe6fd3d | 2010-01-05 23:18:49 +0000 | [diff] [blame] | 723 | SourceRange R = ND->getSourceRange(); |
| 724 | |
Ted Kremenek | d821065 | 2010-01-06 23:43:31 +0000 | [diff] [blame] | 725 | SourceLocation Begin = SM.getInstantiationLoc(R.getBegin()); |
| 726 | SourceLocation End = SM.getInstantiationLoc(R.getEnd()); |
| 727 | |
| 728 | if (!Begin.isValid()) { |
| 729 | CXDeclExtent extent = { { 0, 0 }, { 0, 0 } }; |
| 730 | return extent; |
| 731 | } |
Ted Kremenek | fe6fd3d | 2010-01-05 23:18:49 +0000 | [diff] [blame] | 732 | |
Ted Kremenek | d821065 | 2010-01-06 23:43:31 +0000 | [diff] [blame] | 733 | // FIXME: This is largely copy-paste from |
| 734 | ///TextDiagnosticPrinter::HighlightRange. When it is clear that this is |
| 735 | // what we want the two routines should be refactored. |
Ted Kremenek | fe6fd3d | 2010-01-05 23:18:49 +0000 | [diff] [blame] | 736 | |
Ted Kremenek | d821065 | 2010-01-06 23:43:31 +0000 | [diff] [blame] | 737 | // If the End location and the start location are the same and are a macro |
| 738 | // location, then the range was something that came from a macro expansion |
| 739 | // or _Pragma. If this is an object-like macro, the best we can do is to |
| 740 | // get the range. If this is a function-like macro, we'd also like to |
| 741 | // get the arguments. |
| 742 | if (Begin == End && R.getEnd().isMacroID()) |
| 743 | End = SM.getInstantiationRange(R.getEnd()).second; |
| 744 | |
| 745 | assert(SM.getFileID(Begin) == SM.getFileID(End)); |
| 746 | unsigned StartLineNo = SM.getInstantiationLineNumber(Begin); |
| 747 | unsigned EndLineNo = SM.getInstantiationLineNumber(End); |
Ted Kremenek | fe6fd3d | 2010-01-05 23:18:49 +0000 | [diff] [blame] | 748 | |
Ted Kremenek | d821065 | 2010-01-06 23:43:31 +0000 | [diff] [blame] | 749 | // Compute the column number of the start. Keep the column based at 1. |
| 750 | unsigned StartColNo = SM.getInstantiationColumnNumber(Begin); |
| 751 | |
| 752 | // Compute the column number of the end. |
| 753 | unsigned EndColNo = SM.getInstantiationColumnNumber(End); |
| 754 | if (EndColNo) { |
| 755 | // Offset the end column by 1 so that we point to the last character |
| 756 | // in the last token. |
| 757 | --EndColNo; |
| 758 | |
| 759 | // Add in the length of the token, so that we cover multi-char tokens. |
| 760 | ASTContext &Ctx = ND->getTranslationUnitDecl()->getASTContext(); |
| 761 | const LangOptions &LOpts = Ctx.getLangOptions(); |
| 762 | |
| 763 | EndColNo += Lexer::MeasureTokenLength(End, SM, LOpts); |
| 764 | } |
| 765 | |
| 766 | // Package up the line/column data and return to the caller. |
| 767 | CXDeclExtent extent = { { StartLineNo, StartColNo }, |
| 768 | { EndLineNo, EndColNo } }; |
Ted Kremenek | fe6fd3d | 2010-01-05 23:18:49 +0000 | [diff] [blame] | 769 | return extent; |
| 770 | } |
Steve Naroff | 699a07d | 2009-09-25 21:32:34 +0000 | [diff] [blame] | 771 | |
Ted Kremenek | 6ab9db1 | 2010-01-08 17:11:32 +0000 | [diff] [blame] | 772 | const char *clang_getDeclSource(CXDecl AnonDecl) { |
| 773 | assert(AnonDecl && "Passed null CXDecl"); |
| 774 | FileEntry *FEnt = static_cast<FileEntry *>(clang_getDeclSourceFile(AnonDecl)); |
| 775 | assert(FEnt && "Cannot find FileEntry for Decl"); |
| 776 | return clang_getFileName(FEnt); |
| 777 | } |
| 778 | |
Steve Naroff | 8814503 | 2009-10-27 14:35:18 +0000 | [diff] [blame] | 779 | static const FileEntry *getFileEntryFromSourceLocation(SourceManager &SMgr, |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 780 | SourceLocation SLoc) { |
Steve Naroff | 8814503 | 2009-10-27 14:35:18 +0000 | [diff] [blame] | 781 | FileID FID; |
| 782 | if (SLoc.isFileID()) |
| 783 | FID = SMgr.getFileID(SLoc); |
| 784 | else |
| 785 | FID = SMgr.getDecomposedSpellingLoc(SLoc).first; |
| 786 | return SMgr.getFileEntryForID(FID); |
| 787 | } |
| 788 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 789 | CXFile clang_getDeclSourceFile(CXDecl AnonDecl) { |
Steve Naroff | 8814503 | 2009-10-27 14:35:18 +0000 | [diff] [blame] | 790 | assert(AnonDecl && "Passed null CXDecl"); |
Steve Naroff | ee9405e | 2009-09-25 21:45:39 +0000 | [diff] [blame] | 791 | NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl); |
| 792 | SourceManager &SourceMgr = ND->getASTContext().getSourceManager(); |
Steve Naroff | 8814503 | 2009-10-27 14:35:18 +0000 | [diff] [blame] | 793 | return (void *)getFileEntryFromSourceLocation(SourceMgr, ND->getLocation()); |
| 794 | } |
| 795 | |
| 796 | const char *clang_getFileName(CXFile SFile) { |
| 797 | assert(SFile && "Passed null CXFile"); |
| 798 | FileEntry *FEnt = static_cast<FileEntry *>(SFile); |
| 799 | return FEnt->getName(); |
| 800 | } |
| 801 | |
| 802 | time_t clang_getFileTime(CXFile SFile) { |
| 803 | assert(SFile && "Passed null CXFile"); |
| 804 | FileEntry *FEnt = static_cast<FileEntry *>(SFile); |
| 805 | return FEnt->getModificationTime(); |
Steve Naroff | ee9405e | 2009-09-25 21:45:39 +0000 | [diff] [blame] | 806 | } |
| 807 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 808 | CXString clang_getCursorSpelling(CXCursor C) { |
Steve Naroff | f334b4e | 2009-09-02 18:26:48 +0000 | [diff] [blame] | 809 | assert(C.decl && "CXCursor has null decl"); |
| 810 | NamedDecl *ND = static_cast<NamedDecl *>(C.decl); |
Steve Naroff | ef0cef6 | 2009-11-09 17:45:52 +0000 | [diff] [blame] | 811 | |
Steve Naroff | f334b4e | 2009-09-02 18:26:48 +0000 | [diff] [blame] | 812 | if (clang_isReference(C.kind)) { |
| 813 | switch (C.kind) { |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 814 | case CXCursor_ObjCSuperClassRef: { |
| 815 | ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND); |
| 816 | assert(OID && "clang_getCursorLine(): Missing interface decl"); |
Ted Kremenek | 4b333d2 | 2010-01-12 00:36:38 +0000 | [diff] [blame] | 817 | return CIndexer::createCXString(OID->getSuperClass()->getIdentifier() |
| 818 | ->getNameStart()); |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 819 | } |
| 820 | case CXCursor_ObjCClassRef: { |
| 821 | if (ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND)) |
Ted Kremenek | 4b333d2 | 2010-01-12 00:36:38 +0000 | [diff] [blame] | 822 | return CIndexer::createCXString(OID->getIdentifier()->getNameStart()); |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 823 | |
| 824 | ObjCCategoryDecl *OCD = dyn_cast<ObjCCategoryDecl>(ND); |
| 825 | assert(OCD && "clang_getCursorLine(): Missing category decl"); |
Ted Kremenek | 4b333d2 | 2010-01-12 00:36:38 +0000 | [diff] [blame] | 826 | return CIndexer::createCXString(OCD->getClassInterface()->getIdentifier() |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 827 | ->getNameStart()); |
| 828 | } |
| 829 | case CXCursor_ObjCProtocolRef: { |
| 830 | ObjCProtocolDecl *OID = dyn_cast<ObjCProtocolDecl>(ND); |
| 831 | assert(OID && "clang_getCursorLine(): Missing protocol decl"); |
Ted Kremenek | 4b333d2 | 2010-01-12 00:36:38 +0000 | [diff] [blame] | 832 | return CIndexer::createCXString(OID->getIdentifier()->getNameStart()); |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 833 | } |
| 834 | case CXCursor_ObjCSelectorRef: { |
| 835 | ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>( |
| 836 | static_cast<Stmt *>(C.stmt)); |
| 837 | assert(OME && "clang_getCursorLine(): Missing message expr"); |
Ted Kremenek | 4b333d2 | 2010-01-12 00:36:38 +0000 | [diff] [blame] | 838 | return CIndexer::createCXString(OME->getSelector().getAsString().c_str(), |
| 839 | true); |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 840 | } |
| 841 | case CXCursor_VarRef: |
| 842 | case CXCursor_FunctionRef: |
| 843 | case CXCursor_EnumConstantRef: { |
| 844 | DeclRefExpr *DRE = dyn_cast<DeclRefExpr>( |
| 845 | static_cast<Stmt *>(C.stmt)); |
| 846 | assert(DRE && "clang_getCursorLine(): Missing decl ref expr"); |
Ted Kremenek | 4b333d2 | 2010-01-12 00:36:38 +0000 | [diff] [blame] | 847 | return CIndexer::createCXString(DRE->getDecl()->getIdentifier() |
| 848 | ->getNameStart()); |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 849 | } |
| 850 | default: |
Ted Kremenek | 4b333d2 | 2010-01-12 00:36:38 +0000 | [diff] [blame] | 851 | return CIndexer::createCXString("<not implemented>"); |
Steve Naroff | f334b4e | 2009-09-02 18:26:48 +0000 | [diff] [blame] | 852 | } |
| 853 | } |
| 854 | return clang_getDeclSpelling(C.decl); |
| 855 | } |
| 856 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 857 | const char *clang_getCursorKindSpelling(enum CXCursorKind Kind) { |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 858 | switch (Kind) { |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 859 | case CXCursor_FunctionDecl: return "FunctionDecl"; |
| 860 | case CXCursor_TypedefDecl: return "TypedefDecl"; |
| 861 | case CXCursor_EnumDecl: return "EnumDecl"; |
| 862 | case CXCursor_EnumConstantDecl: return "EnumConstantDecl"; |
| 863 | case CXCursor_StructDecl: return "StructDecl"; |
| 864 | case CXCursor_UnionDecl: return "UnionDecl"; |
| 865 | case CXCursor_ClassDecl: return "ClassDecl"; |
| 866 | case CXCursor_FieldDecl: return "FieldDecl"; |
| 867 | case CXCursor_VarDecl: return "VarDecl"; |
| 868 | case CXCursor_ParmDecl: return "ParmDecl"; |
| 869 | case CXCursor_ObjCInterfaceDecl: return "ObjCInterfaceDecl"; |
| 870 | case CXCursor_ObjCCategoryDecl: return "ObjCCategoryDecl"; |
| 871 | case CXCursor_ObjCProtocolDecl: return "ObjCProtocolDecl"; |
| 872 | case CXCursor_ObjCPropertyDecl: return "ObjCPropertyDecl"; |
| 873 | case CXCursor_ObjCIvarDecl: return "ObjCIvarDecl"; |
| 874 | case CXCursor_ObjCInstanceMethodDecl: return "ObjCInstanceMethodDecl"; |
| 875 | case CXCursor_ObjCClassMethodDecl: return "ObjCClassMethodDecl"; |
| 876 | case CXCursor_FunctionDefn: return "FunctionDefn"; |
| 877 | case CXCursor_ObjCInstanceMethodDefn: return "ObjCInstanceMethodDefn"; |
| 878 | case CXCursor_ObjCClassMethodDefn: return "ObjCClassMethodDefn"; |
| 879 | case CXCursor_ObjCClassDefn: return "ObjCClassDefn"; |
| 880 | case CXCursor_ObjCCategoryDefn: return "ObjCCategoryDefn"; |
| 881 | case CXCursor_ObjCSuperClassRef: return "ObjCSuperClassRef"; |
| 882 | case CXCursor_ObjCProtocolRef: return "ObjCProtocolRef"; |
| 883 | case CXCursor_ObjCClassRef: return "ObjCClassRef"; |
| 884 | case CXCursor_ObjCSelectorRef: return "ObjCSelectorRef"; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 885 | |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 886 | case CXCursor_VarRef: return "VarRef"; |
| 887 | case CXCursor_FunctionRef: return "FunctionRef"; |
| 888 | case CXCursor_EnumConstantRef: return "EnumConstantRef"; |
| 889 | case CXCursor_MemberRef: return "MemberRef"; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 890 | |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 891 | case CXCursor_InvalidFile: return "InvalidFile"; |
| 892 | case CXCursor_NoDeclFound: return "NoDeclFound"; |
| 893 | case CXCursor_NotImplemented: return "NotImplemented"; |
| 894 | default: return "<not implemented>"; |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 895 | } |
Steve Naroff | 600866c | 2009-08-27 19:51:58 +0000 | [diff] [blame] | 896 | } |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 897 | |
Steve Naroff | 9efa767 | 2009-09-04 15:44:05 +0000 | [diff] [blame] | 898 | static enum CXCursorKind TranslateKind(Decl *D) { |
| 899 | switch (D->getKind()) { |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 900 | case Decl::Function: return CXCursor_FunctionDecl; |
| 901 | case Decl::Typedef: return CXCursor_TypedefDecl; |
| 902 | case Decl::Enum: return CXCursor_EnumDecl; |
| 903 | case Decl::EnumConstant: return CXCursor_EnumConstantDecl; |
| 904 | case Decl::Record: return CXCursor_StructDecl; // FIXME: union/class |
| 905 | case Decl::Field: return CXCursor_FieldDecl; |
| 906 | case Decl::Var: return CXCursor_VarDecl; |
| 907 | case Decl::ParmVar: return CXCursor_ParmDecl; |
| 908 | case Decl::ObjCInterface: return CXCursor_ObjCInterfaceDecl; |
| 909 | case Decl::ObjCCategory: return CXCursor_ObjCCategoryDecl; |
| 910 | case Decl::ObjCProtocol: return CXCursor_ObjCProtocolDecl; |
| 911 | case Decl::ObjCMethod: { |
| 912 | ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D); |
| 913 | if (MD->isInstanceMethod()) |
| 914 | return CXCursor_ObjCInstanceMethodDecl; |
| 915 | return CXCursor_ObjCClassMethodDecl; |
| 916 | } |
| 917 | default: break; |
Steve Naroff | 9efa767 | 2009-09-04 15:44:05 +0000 | [diff] [blame] | 918 | } |
Steve Naroff | 77128dd | 2009-09-15 20:25:34 +0000 | [diff] [blame] | 919 | return CXCursor_NotImplemented; |
Steve Naroff | 9efa767 | 2009-09-04 15:44:05 +0000 | [diff] [blame] | 920 | } |
Steve Naroff | 600866c | 2009-08-27 19:51:58 +0000 | [diff] [blame] | 921 | // |
| 922 | // CXCursor Operations. |
| 923 | // |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 924 | |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 925 | CXCursor clang_getCursor(CXTranslationUnit CTUnit, const char *source_name, |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 926 | unsigned line, unsigned column) { |
Steve Naroff | 9efa767 | 2009-09-04 15:44:05 +0000 | [diff] [blame] | 927 | assert(CTUnit && "Passed null CXTranslationUnit"); |
| 928 | ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 929 | |
Steve Naroff | 9efa767 | 2009-09-04 15:44:05 +0000 | [diff] [blame] | 930 | FileManager &FMgr = CXXUnit->getFileManager(); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 931 | const FileEntry *File = FMgr.getFile(source_name, |
| 932 | source_name+strlen(source_name)); |
Steve Naroff | 77128dd | 2009-09-15 20:25:34 +0000 | [diff] [blame] | 933 | if (!File) { |
Steve Naroff | fb57042 | 2009-09-22 19:25:29 +0000 | [diff] [blame] | 934 | CXCursor C = { CXCursor_InvalidFile, 0, 0 }; |
Steve Naroff | 77128dd | 2009-09-15 20:25:34 +0000 | [diff] [blame] | 935 | return C; |
| 936 | } |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 937 | SourceLocation SLoc = |
Steve Naroff | 9efa767 | 2009-09-04 15:44:05 +0000 | [diff] [blame] | 938 | CXXUnit->getSourceManager().getLocation(File, line, column); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 939 | |
Steve Naroff | f96b524 | 2009-10-28 20:44:47 +0000 | [diff] [blame] | 940 | ASTLocation LastLoc = CXXUnit->getLastASTLocation(); |
| 941 | |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 942 | ASTLocation ALoc = ResolveLocationInAST(CXXUnit->getASTContext(), SLoc, |
Steve Naroff | f96b524 | 2009-10-28 20:44:47 +0000 | [diff] [blame] | 943 | &LastLoc); |
| 944 | if (ALoc.isValid()) |
| 945 | CXXUnit->setLastASTLocation(ALoc); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 946 | |
Argyrios Kyrtzidis | f4526e3 | 2009-09-29 19:44:27 +0000 | [diff] [blame] | 947 | Decl *Dcl = ALoc.getParentDecl(); |
Argyrios Kyrtzidis | 05a7651 | 2009-09-29 19:45:58 +0000 | [diff] [blame] | 948 | if (ALoc.isNamedRef()) |
| 949 | Dcl = ALoc.AsNamedRef().ND; |
Argyrios Kyrtzidis | f4526e3 | 2009-09-29 19:44:27 +0000 | [diff] [blame] | 950 | Stmt *Stm = ALoc.dyn_AsStmt(); |
Steve Naroff | 4ade6d6 | 2009-09-23 17:52:52 +0000 | [diff] [blame] | 951 | if (Dcl) { |
| 952 | if (Stm) { |
| 953 | if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Stm)) { |
| 954 | CXCursor C = { TranslateDeclRefExpr(DRE), Dcl, Stm }; |
| 955 | return C; |
| 956 | } else if (ObjCMessageExpr *MExp = dyn_cast<ObjCMessageExpr>(Stm)) { |
| 957 | CXCursor C = { CXCursor_ObjCSelectorRef, Dcl, MExp }; |
| 958 | return C; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 959 | } |
Steve Naroff | 4ade6d6 | 2009-09-23 17:52:52 +0000 | [diff] [blame] | 960 | // Fall through...treat as a decl, not a ref. |
| 961 | } |
Steve Naroff | 85e2db7 | 2009-10-01 00:31:07 +0000 | [diff] [blame] | 962 | if (ALoc.isNamedRef()) { |
| 963 | if (isa<ObjCInterfaceDecl>(Dcl)) { |
| 964 | CXCursor C = { CXCursor_ObjCClassRef, Dcl, ALoc.getParentDecl() }; |
| 965 | return C; |
| 966 | } |
| 967 | if (isa<ObjCProtocolDecl>(Dcl)) { |
| 968 | CXCursor C = { CXCursor_ObjCProtocolRef, Dcl, ALoc.getParentDecl() }; |
| 969 | return C; |
| 970 | } |
| 971 | } |
Daniel Dunbar | acca725 | 2009-11-30 20:42:49 +0000 | [diff] [blame] | 972 | CXCursor C = { TranslateKind(Dcl), Dcl, 0 }; |
Steve Naroff | 77128dd | 2009-09-15 20:25:34 +0000 | [diff] [blame] | 973 | return C; |
| 974 | } |
Steve Naroff | fb57042 | 2009-09-22 19:25:29 +0000 | [diff] [blame] | 975 | CXCursor C = { CXCursor_NoDeclFound, 0, 0 }; |
Steve Naroff | 9efa767 | 2009-09-04 15:44:05 +0000 | [diff] [blame] | 976 | return C; |
Steve Naroff | 600866c | 2009-08-27 19:51:58 +0000 | [diff] [blame] | 977 | } |
| 978 | |
Ted Kremenek | 7388555 | 2009-11-17 19:28:59 +0000 | [diff] [blame] | 979 | CXCursor clang_getNullCursor(void) { |
| 980 | CXCursor C; |
| 981 | C.kind = CXCursor_InvalidFile; |
| 982 | C.decl = NULL; |
| 983 | C.stmt = NULL; |
| 984 | return C; |
| 985 | } |
| 986 | |
| 987 | unsigned clang_equalCursors(CXCursor X, CXCursor Y) { |
| 988 | return X.kind == Y.kind && X.decl == Y.decl && X.stmt == Y.stmt; |
| 989 | } |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 990 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 991 | CXCursor clang_getCursorFromDecl(CXDecl AnonDecl) { |
Steve Naroff | 77128dd | 2009-09-15 20:25:34 +0000 | [diff] [blame] | 992 | assert(AnonDecl && "Passed null CXDecl"); |
| 993 | NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 994 | |
Steve Naroff | fb57042 | 2009-09-22 19:25:29 +0000 | [diff] [blame] | 995 | CXCursor C = { TranslateKind(ND), ND, 0 }; |
Steve Naroff | 77128dd | 2009-09-15 20:25:34 +0000 | [diff] [blame] | 996 | return C; |
| 997 | } |
| 998 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 999 | unsigned clang_isInvalid(enum CXCursorKind K) { |
Steve Naroff | 77128dd | 2009-09-15 20:25:34 +0000 | [diff] [blame] | 1000 | return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid; |
| 1001 | } |
| 1002 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 1003 | unsigned clang_isDeclaration(enum CXCursorKind K) { |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 1004 | return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl; |
| 1005 | } |
Steve Naroff | 2d4d629 | 2009-08-31 14:26:51 +0000 | [diff] [blame] | 1006 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 1007 | unsigned clang_isReference(enum CXCursorKind K) { |
Steve Naroff | f334b4e | 2009-09-02 18:26:48 +0000 | [diff] [blame] | 1008 | return K >= CXCursor_FirstRef && K <= CXCursor_LastRef; |
| 1009 | } |
| 1010 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 1011 | unsigned clang_isDefinition(enum CXCursorKind K) { |
Steve Naroff | f334b4e | 2009-09-02 18:26:48 +0000 | [diff] [blame] | 1012 | return K >= CXCursor_FirstDefn && K <= CXCursor_LastDefn; |
| 1013 | } |
| 1014 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 1015 | CXCursorKind clang_getCursorKind(CXCursor C) { |
Steve Naroff | 9efa767 | 2009-09-04 15:44:05 +0000 | [diff] [blame] | 1016 | return C.kind; |
| 1017 | } |
| 1018 | |
Steve Naroff | 699a07d | 2009-09-25 21:32:34 +0000 | [diff] [blame] | 1019 | static Decl *getDeclFromExpr(Stmt *E) { |
| 1020 | if (DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E)) |
| 1021 | return RefExpr->getDecl(); |
| 1022 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) |
| 1023 | return ME->getMemberDecl(); |
| 1024 | if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E)) |
| 1025 | return RE->getDecl(); |
| 1026 | |
| 1027 | if (CallExpr *CE = dyn_cast<CallExpr>(E)) |
| 1028 | return getDeclFromExpr(CE->getCallee()); |
| 1029 | if (CastExpr *CE = dyn_cast<CastExpr>(E)) |
| 1030 | return getDeclFromExpr(CE->getSubExpr()); |
| 1031 | if (ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E)) |
| 1032 | return OME->getMethodDecl(); |
| 1033 | |
| 1034 | return 0; |
| 1035 | } |
| 1036 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 1037 | CXDecl clang_getCursorDecl(CXCursor C) { |
Steve Naroff | 699a07d | 2009-09-25 21:32:34 +0000 | [diff] [blame] | 1038 | if (clang_isDeclaration(C.kind)) |
| 1039 | return C.decl; |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 1040 | |
Steve Naroff | 699a07d | 2009-09-25 21:32:34 +0000 | [diff] [blame] | 1041 | if (clang_isReference(C.kind)) { |
Steve Naroff | 85e2db7 | 2009-10-01 00:31:07 +0000 | [diff] [blame] | 1042 | if (C.stmt) { |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 1043 | if (C.kind == CXCursor_ObjCClassRef || |
Steve Naroff | f9adf8f | 2009-10-05 17:58:19 +0000 | [diff] [blame] | 1044 | C.kind == CXCursor_ObjCProtocolRef) |
Steve Naroff | 85e2db7 | 2009-10-01 00:31:07 +0000 | [diff] [blame] | 1045 | return static_cast<Stmt *>(C.stmt); |
| 1046 | else |
| 1047 | return getDeclFromExpr(static_cast<Stmt *>(C.stmt)); |
| 1048 | } else |
Steve Naroff | 699a07d | 2009-09-25 21:32:34 +0000 | [diff] [blame] | 1049 | return C.decl; |
| 1050 | } |
| 1051 | return 0; |
Steve Naroff | 9efa767 | 2009-09-04 15:44:05 +0000 | [diff] [blame] | 1052 | } |
| 1053 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 1054 | unsigned clang_getCursorLine(CXCursor C) { |
Steve Naroff | 2d4d629 | 2009-08-31 14:26:51 +0000 | [diff] [blame] | 1055 | assert(C.decl && "CXCursor has null decl"); |
| 1056 | NamedDecl *ND = static_cast<NamedDecl *>(C.decl); |
Steve Naroff | 2d4d629 | 2009-08-31 14:26:51 +0000 | [diff] [blame] | 1057 | SourceManager &SourceMgr = ND->getASTContext().getSourceManager(); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 1058 | |
Steve Naroff | f334b4e | 2009-09-02 18:26:48 +0000 | [diff] [blame] | 1059 | SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND); |
Steve Naroff | 2d4d629 | 2009-08-31 14:26:51 +0000 | [diff] [blame] | 1060 | return SourceMgr.getSpellingLineNumber(SLoc); |
Steve Naroff | 600866c | 2009-08-27 19:51:58 +0000 | [diff] [blame] | 1061 | } |
Steve Naroff | f334b4e | 2009-09-02 18:26:48 +0000 | [diff] [blame] | 1062 | |
Steve Naroff | ef0cef6 | 2009-11-09 17:45:52 +0000 | [diff] [blame] | 1063 | const char *clang_getCString(CXString string) { |
| 1064 | return string.Spelling; |
| 1065 | } |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 1066 | |
Steve Naroff | ef0cef6 | 2009-11-09 17:45:52 +0000 | [diff] [blame] | 1067 | void clang_disposeString(CXString string) { |
Benjamin Kramer | 858e5de | 2009-11-09 18:24:53 +0000 | [diff] [blame] | 1068 | if (string.MustFreeString) |
| 1069 | free((void*)string.Spelling); |
Steve Naroff | ef0cef6 | 2009-11-09 17:45:52 +0000 | [diff] [blame] | 1070 | } |
| 1071 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 1072 | unsigned clang_getCursorColumn(CXCursor C) { |
Steve Naroff | 2d4d629 | 2009-08-31 14:26:51 +0000 | [diff] [blame] | 1073 | assert(C.decl && "CXCursor has null decl"); |
| 1074 | NamedDecl *ND = static_cast<NamedDecl *>(C.decl); |
Steve Naroff | 2d4d629 | 2009-08-31 14:26:51 +0000 | [diff] [blame] | 1075 | SourceManager &SourceMgr = ND->getASTContext().getSourceManager(); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 1076 | |
Steve Naroff | f334b4e | 2009-09-02 18:26:48 +0000 | [diff] [blame] | 1077 | SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND); |
Steve Naroff | 2d4d629 | 2009-08-31 14:26:51 +0000 | [diff] [blame] | 1078 | return SourceMgr.getSpellingColumnNumber(SLoc); |
Steve Naroff | 600866c | 2009-08-27 19:51:58 +0000 | [diff] [blame] | 1079 | } |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 1080 | |
| 1081 | const char *clang_getCursorSource(CXCursor C) { |
Steve Naroff | 2d4d629 | 2009-08-31 14:26:51 +0000 | [diff] [blame] | 1082 | assert(C.decl && "CXCursor has null decl"); |
| 1083 | NamedDecl *ND = static_cast<NamedDecl *>(C.decl); |
Steve Naroff | 2d4d629 | 2009-08-31 14:26:51 +0000 | [diff] [blame] | 1084 | SourceManager &SourceMgr = ND->getASTContext().getSourceManager(); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 1085 | |
Steve Naroff | f334b4e | 2009-09-02 18:26:48 +0000 | [diff] [blame] | 1086 | SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 1087 | |
Ted Kremenek | 9298cfc | 2009-11-17 05:31:58 +0000 | [diff] [blame] | 1088 | if (SLoc.isFileID()) { |
| 1089 | const char *bufferName = SourceMgr.getBufferName(SLoc); |
| 1090 | return bufferName[0] == '<' ? NULL : bufferName; |
| 1091 | } |
Douglas Gregor | 0246575 | 2009-10-16 21:24:31 +0000 | [diff] [blame] | 1092 | |
| 1093 | // Retrieve the file in which the macro was instantiated, then provide that |
| 1094 | // buffer name. |
| 1095 | // FIXME: Do we want to give specific macro-instantiation information? |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 1096 | const llvm::MemoryBuffer *Buffer |
Douglas Gregor | 0246575 | 2009-10-16 21:24:31 +0000 | [diff] [blame] | 1097 | = SourceMgr.getBuffer(SourceMgr.getDecomposedSpellingLoc(SLoc).first); |
| 1098 | if (!Buffer) |
| 1099 | return 0; |
| 1100 | |
| 1101 | return Buffer->getBufferIdentifier(); |
Steve Naroff | 600866c | 2009-08-27 19:51:58 +0000 | [diff] [blame] | 1102 | } |
| 1103 | |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 1104 | CXFile clang_getCursorSourceFile(CXCursor C) { |
Steve Naroff | 8814503 | 2009-10-27 14:35:18 +0000 | [diff] [blame] | 1105 | assert(C.decl && "CXCursor has null decl"); |
| 1106 | NamedDecl *ND = static_cast<NamedDecl *>(C.decl); |
| 1107 | SourceManager &SourceMgr = ND->getASTContext().getSourceManager(); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 1108 | |
Ted Kremenek | 4b333d2 | 2010-01-12 00:36:38 +0000 | [diff] [blame] | 1109 | return (void *) |
| 1110 | getFileEntryFromSourceLocation(SourceMgr, getLocationFromCursor(C,SourceMgr, |
| 1111 | ND)); |
Steve Naroff | 8814503 | 2009-10-27 14:35:18 +0000 | [diff] [blame] | 1112 | } |
| 1113 | |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 1114 | void clang_getDefinitionSpellingAndExtent(CXCursor C, |
Steve Naroff | 4ade6d6 | 2009-09-23 17:52:52 +0000 | [diff] [blame] | 1115 | const char **startBuf, |
| 1116 | const char **endBuf, |
| 1117 | unsigned *startLine, |
| 1118 | unsigned *startColumn, |
| 1119 | unsigned *endLine, |
Daniel Dunbar | 9ebfa31 | 2009-12-01 03:14:51 +0000 | [diff] [blame] | 1120 | unsigned *endColumn) { |
Steve Naroff | 4ade6d6 | 2009-09-23 17:52:52 +0000 | [diff] [blame] | 1121 | assert(C.decl && "CXCursor has null decl"); |
| 1122 | NamedDecl *ND = static_cast<NamedDecl *>(C.decl); |
| 1123 | FunctionDecl *FD = dyn_cast<FunctionDecl>(ND); |
| 1124 | CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody()); |
Daniel Dunbar | 0d7dd22 | 2009-11-30 20:42:43 +0000 | [diff] [blame] | 1125 | |
Steve Naroff | 4ade6d6 | 2009-09-23 17:52:52 +0000 | [diff] [blame] | 1126 | SourceManager &SM = FD->getASTContext().getSourceManager(); |
| 1127 | *startBuf = SM.getCharacterData(Body->getLBracLoc()); |
| 1128 | *endBuf = SM.getCharacterData(Body->getRBracLoc()); |
| 1129 | *startLine = SM.getSpellingLineNumber(Body->getLBracLoc()); |
| 1130 | *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc()); |
| 1131 | *endLine = SM.getSpellingLineNumber(Body->getRBracLoc()); |
| 1132 | *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc()); |
| 1133 | } |
| 1134 | |
Steve Naroff | 600866c | 2009-08-27 19:51:58 +0000 | [diff] [blame] | 1135 | } // end extern "C" |