Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 1 | //===- CIndexInclusionStack.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 defines a callback mechanism for clients to get the inclusion |
| 11 | // stack from a translation unit. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "CIndexer.h" |
Ted Kremenek | 0a90d32 | 2010-11-17 23:24:11 +0000 | [diff] [blame] | 16 | #include "CXTranslationUnit.h" |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 17 | #include "CXSourceLocation.h" |
| 18 | #include "clang/AST/DeclVisitor.h" |
Benjamin Kramer | b846deb | 2010-04-12 19:45:50 +0000 | [diff] [blame] | 19 | #include "clang/Frontend/ASTUnit.h" |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SmallString.h" |
| 21 | #include "llvm/Support/raw_ostream.h" |
Benjamin Kramer | b846deb | 2010-04-12 19:45:50 +0000 | [diff] [blame] | 22 | using namespace clang; |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 23 | |
| 24 | extern "C" { |
| 25 | void clang_getInclusions(CXTranslationUnit TU, CXInclusionVisitor CB, |
| 26 | CXClientData clientData) { |
| 27 | |
Ted Kremenek | a60ed47 | 2010-11-16 08:15:36 +0000 | [diff] [blame] | 28 | ASTUnit *CXXUnit = static_cast<ASTUnit *>(TU->TUData); |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 29 | SourceManager &SM = CXXUnit->getSourceManager(); |
| 30 | ASTContext &Ctx = CXXUnit->getASTContext(); |
| 31 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 32 | SmallVector<CXSourceLocation, 10> InclusionStack; |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 33 | unsigned n = SM.local_sloc_entry_size(); |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 34 | |
| 35 | // In the case where all the SLocEntries are in an external source, traverse |
| 36 | // those SLocEntries as well. This is the case where we are looking |
| 37 | // at the inclusion stack of an AST/PCH file. |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 38 | const SrcMgr::SLocEntry &(SourceManager::*Getter)(unsigned, bool*) const; |
| 39 | if (n == 1) { |
| 40 | Getter = &SourceManager::getLoadedSLocEntry; |
| 41 | n = SM.loaded_sloc_entry_size(); |
| 42 | } else |
| 43 | Getter = &SourceManager::getLocalSLocEntry; |
| 44 | |
| 45 | for (unsigned i = 0 ; i < n ; ++i) { |
Douglas Gregor | e23ac65 | 2011-04-20 00:21:03 +0000 | [diff] [blame] | 46 | bool Invalid = false; |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 47 | const SrcMgr::SLocEntry &SL = (SM.*Getter)(i, &Invalid); |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 48 | |
Douglas Gregor | e23ac65 | 2011-04-20 00:21:03 +0000 | [diff] [blame] | 49 | if (!SL.isFile() || Invalid) |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 50 | continue; |
| 51 | |
| 52 | const SrcMgr::FileInfo &FI = SL.getFile(); |
Argyrios Kyrtzidis | b1c8649 | 2011-03-05 01:03:53 +0000 | [diff] [blame] | 53 | if (!FI.getContentCache()->OrigEntry) |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 54 | continue; |
| 55 | |
| 56 | // Build the inclusion stack. |
| 57 | SourceLocation L = FI.getIncludeLoc(); |
| 58 | InclusionStack.clear(); |
| 59 | while (L.isValid()) { |
| 60 | PresumedLoc PLoc = SM.getPresumedLoc(L); |
| 61 | InclusionStack.push_back(cxloc::translateSourceLocation(Ctx, L)); |
Douglas Gregor | cb7b1e1 | 2010-11-12 07:15:47 +0000 | [diff] [blame] | 62 | L = PLoc.isValid()? PLoc.getIncludeLoc() : SourceLocation(); |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | // Callback to the client. |
| 66 | // FIXME: We should have a function to construct CXFiles. |
Argyrios Kyrtzidis | b1c8649 | 2011-03-05 01:03:53 +0000 | [diff] [blame] | 67 | CB((CXFile) FI.getContentCache()->OrigEntry, |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 68 | InclusionStack.data(), InclusionStack.size(), clientData); |
| 69 | } |
| 70 | } |
| 71 | } // end extern C |