diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-01-20 00:23:15 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-01-20 00:23:15 +0000 |
commit | d2fc7277be6aff4056db2b3e1ce9da73037ffc1d (patch) | |
tree | 4fdec740da084cf999cb6bede430416080aaa530 /clang/tools/CIndex/CIndex.cpp | |
parent | 91970b4ea2fc6747de5f37b25ce0f5f044b1d224 (diff) | |
download | bcm5719-llvm-d2fc7277be6aff4056db2b3e1ce9da73037ffc1d.tar.gz bcm5719-llvm-d2fc7277be6aff4056db2b3e1ce9da73037ffc1d.zip |
Introduce a special cursor kind for the translation unit, to serve as
the root of the conceptual cursor hierarchy (just like we do with
declarations). This will be used when we get to unify
clang_loadTranslationUnit() and clang_loadDeclaration() into something
more generally useful.
llvm-svn: 93954
Diffstat (limited to 'clang/tools/CIndex/CIndex.cpp')
-rw-r--r-- | clang/tools/CIndex/CIndex.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/clang/tools/CIndex/CIndex.cpp b/clang/tools/CIndex/CIndex.cpp index 032dd126f69..8dfaa4cbe12 100644 --- a/clang/tools/CIndex/CIndex.cpp +++ b/clang/tools/CIndex/CIndex.cpp @@ -565,6 +565,11 @@ CXString clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit) { true); } +CXCursor clang_getTranslationUnitCursor(CXTranslationUnit TU) { + CXCursor Result = { CXCursor_TranslationUnit, { TU, 0, 0 } }; + return Result; +} + void clang_loadTranslationUnit(CXTranslationUnit CTUnit, CXTranslationUnitIterator callback, CXClientData CData) { @@ -803,6 +808,9 @@ static Decl *getDeclFromExpr(Stmt *E) { extern "C" { CXString clang_getCursorSpelling(CXCursor C) { assert(getCursorDecl(C) && "CXCursor has null decl"); + if (clang_isTranslationUnit(C.kind)) + return clang_getTranslationUnitSpelling(C.data[0]); + if (clang_isReference(C.kind)) { switch (C.kind) { case CXCursor_ObjCSuperClassRef: { @@ -867,6 +875,7 @@ const char *clang_getCursorKindSpelling(enum CXCursorKind Kind) { case CXCursor_InvalidFile: return "InvalidFile"; case CXCursor_NoDeclFound: return "NoDeclFound"; case CXCursor_NotImplemented: return "NotImplemented"; + case CXCursor_TranslationUnit: return "TranslationUnit"; } llvm_unreachable("Unhandled CXCursorKind"); @@ -947,6 +956,10 @@ unsigned clang_isStatement(enum CXCursorKind K) { return K >= CXCursor_FirstStmt && K <= CXCursor_LastStmt; } +unsigned clang_isTranslationUnit(enum CXCursorKind K) { + return K == CXCursor_TranslationUnit; +} + CXCursorKind clang_getCursorKind(CXCursor C) { return C.kind; } |