Haojian Wu | 5f10026 | 2018-03-09 14:00:34 +0000 | [diff] [blame] | 1 | //===--- AST.cpp - Utility AST functions -----------------------*- C++ -*-===// |
| 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 | #include "AST.h" |
| 11 | |
| 12 | #include "clang/AST/ASTContext.h" |
| 13 | #include "clang/AST/Decl.h" |
| 14 | #include "clang/Basic/SourceManager.h" |
Haojian Wu | c6ddb46 | 2018-08-07 08:57:52 +0000 | [diff] [blame] | 15 | #include "clang/Index/USRGeneration.h" |
Haojian Wu | 5f10026 | 2018-03-09 14:00:34 +0000 | [diff] [blame] | 16 | |
| 17 | namespace clang { |
| 18 | namespace clangd { |
| 19 | using namespace llvm; |
| 20 | |
| 21 | SourceLocation findNameLoc(const clang::Decl* D) { |
| 22 | const auto& SM = D->getASTContext().getSourceManager(); |
| 23 | // FIXME: Revisit the strategy, the heuristic is limitted when handling |
| 24 | // macros, we should use the location where the whole definition occurs. |
| 25 | SourceLocation SpellingLoc = SM.getSpellingLoc(D->getLocation()); |
| 26 | if (D->getLocation().isMacroID()) { |
| 27 | std::string PrintLoc = SpellingLoc.printToString(SM); |
| 28 | if (llvm::StringRef(PrintLoc).startswith("<scratch") || |
| 29 | llvm::StringRef(PrintLoc).startswith("<command line>")) { |
| 30 | // We use the expansion location for the following symbols, as spelling |
| 31 | // locations of these symbols are not interesting to us: |
| 32 | // * symbols formed via macro concatenation, the spelling location will |
| 33 | // be "<scratch space>" |
| 34 | // * symbols controlled and defined by a compile command-line option |
| 35 | // `-DName=foo`, the spelling location will be "<command line>". |
Richard Smith | 4bb15ab | 2018-04-30 05:26:07 +0000 | [diff] [blame] | 36 | SpellingLoc = SM.getExpansionRange(D->getLocation()).getBegin(); |
Haojian Wu | 5f10026 | 2018-03-09 14:00:34 +0000 | [diff] [blame] | 37 | } |
| 38 | } |
| 39 | return SpellingLoc; |
| 40 | } |
| 41 | |
Eric Liu | 7ad1696 | 2018-06-22 10:46:59 +0000 | [diff] [blame] | 42 | std::string printQualifiedName(const NamedDecl &ND) { |
| 43 | std::string QName; |
| 44 | llvm::raw_string_ostream OS(QName); |
| 45 | PrintingPolicy Policy(ND.getASTContext().getLangOpts()); |
| 46 | // Note that inline namespaces are treated as transparent scopes. This |
| 47 | // reflects the way they're most commonly used for lookup. Ideally we'd |
| 48 | // include them, but at query time it's hard to find all the inline |
| 49 | // namespaces to query: the preamble doesn't have a dedicated list. |
| 50 | Policy.SuppressUnwrittenScope = true; |
| 51 | ND.printQualifiedName(OS, Policy); |
| 52 | OS.flush(); |
| 53 | assert(!StringRef(QName).startswith("::")); |
| 54 | return QName; |
| 55 | } |
| 56 | |
Haojian Wu | c6ddb46 | 2018-08-07 08:57:52 +0000 | [diff] [blame] | 57 | llvm::Optional<SymbolID> getSymbolID(const Decl *D) { |
| 58 | llvm::SmallString<128> USR; |
| 59 | if (index::generateUSRForDecl(D, USR)) |
| 60 | return None; |
| 61 | return SymbolID(USR); |
| 62 | } |
| 63 | |
Eric Liu | d25f121 | 2018-09-06 09:59:37 +0000 | [diff] [blame^] | 64 | llvm::Optional<SymbolID> getSymbolID(const IdentifierInfo &II, |
| 65 | const MacroInfo *MI, |
| 66 | const SourceManager &SM) { |
| 67 | if (MI == nullptr) |
| 68 | return None; |
| 69 | llvm::SmallString<128> USR; |
| 70 | if (index::generateUSRForMacro(II.getName(), MI->getDefinitionLoc(), SM, USR)) |
| 71 | return None; |
| 72 | return SymbolID(USR); |
| 73 | } |
| 74 | |
Haojian Wu | 5f10026 | 2018-03-09 14:00:34 +0000 | [diff] [blame] | 75 | } // namespace clangd |
| 76 | } // namespace clang |