clang-tools 20.0.0git
Hover.cpp
Go to the documentation of this file.
1//===--- Hover.cpp - Information about code at the cursor location --------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "Hover.h"
10
11#include "AST.h"
13#include "Config.h"
14#include "FindTarget.h"
15#include "Headers.h"
16#include "IncludeCleaner.h"
17#include "ParsedAST.h"
18#include "Selection.h"
19#include "SourceCode.h"
20#include "clang-include-cleaner/Analysis.h"
21#include "clang-include-cleaner/IncludeSpeller.h"
22#include "clang-include-cleaner/Types.h"
24#include "support/Markup.h"
25#include "support/Trace.h"
26#include "clang/AST/ASTContext.h"
27#include "clang/AST/ASTDiagnostic.h"
28#include "clang/AST/ASTTypeTraits.h"
29#include "clang/AST/Attr.h"
30#include "clang/AST/Decl.h"
31#include "clang/AST/DeclBase.h"
32#include "clang/AST/DeclCXX.h"
33#include "clang/AST/DeclObjC.h"
34#include "clang/AST/DeclTemplate.h"
35#include "clang/AST/Expr.h"
36#include "clang/AST/ExprCXX.h"
37#include "clang/AST/OperationKinds.h"
38#include "clang/AST/PrettyPrinter.h"
39#include "clang/AST/RecordLayout.h"
40#include "clang/AST/Type.h"
41#include "clang/Basic/CharInfo.h"
42#include "clang/Basic/LLVM.h"
43#include "clang/Basic/SourceLocation.h"
44#include "clang/Basic/SourceManager.h"
45#include "clang/Basic/Specifiers.h"
46#include "clang/Basic/TokenKinds.h"
47#include "clang/Index/IndexSymbol.h"
48#include "clang/Tooling/Syntax/Tokens.h"
49#include "llvm/ADT/ArrayRef.h"
50#include "llvm/ADT/DenseSet.h"
51#include "llvm/ADT/STLExtras.h"
52#include "llvm/ADT/SmallVector.h"
53#include "llvm/ADT/StringExtras.h"
54#include "llvm/ADT/StringRef.h"
55#include "llvm/Support/Casting.h"
56#include "llvm/Support/Error.h"
57#include "llvm/Support/Format.h"
58#include "llvm/Support/ScopedPrinter.h"
59#include "llvm/Support/raw_ostream.h"
60#include <algorithm>
61#include <optional>
62#include <string>
63#include <vector>
64
65namespace clang {
66namespace clangd {
67namespace {
68
69PrintingPolicy getPrintingPolicy(PrintingPolicy Base) {
70 Base.AnonymousTagLocations = false;
71 Base.TerseOutput = true;
72 Base.PolishForDeclaration = true;
73 Base.ConstantsAsWritten = true;
74 Base.SuppressTemplateArgsInCXXConstructors = true;
75 return Base;
76}
77
78/// Given a declaration \p D, return a human-readable string representing the
79/// local scope in which it is declared, i.e. class(es) and method name. Returns
80/// an empty string if it is not local.
81std::string getLocalScope(const Decl *D) {
82 std::vector<std::string> Scopes;
83 const DeclContext *DC = D->getDeclContext();
84
85 // ObjC scopes won't have multiple components for us to join, instead:
86 // - Methods: "-[Class methodParam1:methodParam2]"
87 // - Classes, categories, and protocols: "MyClass(Category)"
88 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(DC))
89 return printObjCMethod(*MD);
90 if (const ObjCContainerDecl *CD = dyn_cast<ObjCContainerDecl>(DC))
91 return printObjCContainer(*CD);
92
93 auto GetName = [](const TypeDecl *D) {
94 if (!D->getDeclName().isEmpty()) {
95 PrintingPolicy Policy = D->getASTContext().getPrintingPolicy();
96 Policy.SuppressScope = true;
97 return declaredType(D).getAsString(Policy);
98 }
99 if (auto *RD = dyn_cast<RecordDecl>(D))
100 return ("(anonymous " + RD->getKindName() + ")").str();
101 return std::string("");
102 };
103 while (DC) {
104 if (const TypeDecl *TD = dyn_cast<TypeDecl>(DC))
105 Scopes.push_back(GetName(TD));
106 else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DC))
107 Scopes.push_back(FD->getNameAsString());
108 DC = DC->getParent();
109 }
110
111 return llvm::join(llvm::reverse(Scopes), "::");
112}
113
114/// Returns the human-readable representation for namespace containing the
115/// declaration \p D. Returns empty if it is contained global namespace.
116std::string getNamespaceScope(const Decl *D) {
117 const DeclContext *DC = D->getDeclContext();
118
119 // ObjC does not have the concept of namespaces, so instead we support
120 // local scopes.
121 if (isa<ObjCMethodDecl, ObjCContainerDecl>(DC))
122 return "";
123
124 if (const TagDecl *TD = dyn_cast<TagDecl>(DC))
125 return getNamespaceScope(TD);
126 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DC))
127 return getNamespaceScope(FD);
128 if (const NamespaceDecl *NSD = dyn_cast<NamespaceDecl>(DC)) {
129 // Skip inline/anon namespaces.
130 if (NSD->isInline() || NSD->isAnonymousNamespace())
131 return getNamespaceScope(NSD);
132 }
133 if (const NamedDecl *ND = dyn_cast<NamedDecl>(DC))
134 return printQualifiedName(*ND);
135
136 return "";
137}
138
139std::string printDefinition(const Decl *D, PrintingPolicy PP,
140 const syntax::TokenBuffer &TB) {
141 if (auto *VD = llvm::dyn_cast<VarDecl>(D)) {
142 if (auto *IE = VD->getInit()) {
143 // Initializers might be huge and result in lots of memory allocations in
144 // some catostrophic cases. Such long lists are not useful in hover cards
145 // anyway.
146 if (200 < TB.expandedTokens(IE->getSourceRange()).size())
147 PP.SuppressInitializers = true;
148 }
149 }
150 std::string Definition;
151 llvm::raw_string_ostream OS(Definition);
152 D->print(OS, PP);
153 return Definition;
154}
155
156const char *getMarkdownLanguage(const ASTContext &Ctx) {
157 const auto &LangOpts = Ctx.getLangOpts();
158 if (LangOpts.ObjC && LangOpts.CPlusPlus)
159 return "objective-cpp";
160 return LangOpts.ObjC ? "objective-c" : "cpp";
161}
162
163HoverInfo::PrintedType printType(QualType QT, ASTContext &ASTCtx,
164 const PrintingPolicy &PP) {
165 // TypePrinter doesn't resolve decltypes, so resolve them here.
166 // FIXME: This doesn't handle composite types that contain a decltype in them.
167 // We should rather have a printing policy for that.
168 while (!QT.isNull() && QT->isDecltypeType())
169 QT = QT->castAs<DecltypeType>()->getUnderlyingType();
170 HoverInfo::PrintedType Result;
171 llvm::raw_string_ostream OS(Result.Type);
172 // Special case: if the outer type is a tag type without qualifiers, then
173 // include the tag for extra clarity.
174 // This isn't very idiomatic, so don't attempt it for complex cases, including
175 // pointers/references, template specializations, etc.
176 if (!QT.isNull() && !QT.hasQualifiers() && PP.SuppressTagKeyword) {
177 if (auto *TT = llvm::dyn_cast<TagType>(QT.getTypePtr()))
178 OS << TT->getDecl()->getKindName() << " ";
179 }
180 QT.print(OS, PP);
181
182 const Config &Cfg = Config::current();
183 if (!QT.isNull() && Cfg.Hover.ShowAKA) {
184 bool ShouldAKA = false;
185 QualType DesugaredTy = clang::desugarForDiagnostic(ASTCtx, QT, ShouldAKA);
186 if (ShouldAKA)
187 Result.AKA = DesugaredTy.getAsString(PP);
188 }
189 return Result;
190}
191
192HoverInfo::PrintedType printType(const TemplateTypeParmDecl *TTP) {
193 HoverInfo::PrintedType Result;
194 Result.Type = TTP->wasDeclaredWithTypename() ? "typename" : "class";
195 if (TTP->isParameterPack())
196 Result.Type += "...";
197 return Result;
198}
199
200HoverInfo::PrintedType printType(const NonTypeTemplateParmDecl *NTTP,
201 const PrintingPolicy &PP) {
202 auto PrintedType = printType(NTTP->getType(), NTTP->getASTContext(), PP);
203 if (NTTP->isParameterPack()) {
204 PrintedType.Type += "...";
205 if (PrintedType.AKA)
206 *PrintedType.AKA += "...";
207 }
208 return PrintedType;
209}
210
211HoverInfo::PrintedType printType(const TemplateTemplateParmDecl *TTP,
212 const PrintingPolicy &PP) {
213 HoverInfo::PrintedType Result;
214 llvm::raw_string_ostream OS(Result.Type);
215 OS << "template <";
216 llvm::StringRef Sep = "";
217 for (const Decl *Param : *TTP->getTemplateParameters()) {
218 OS << Sep;
219 Sep = ", ";
220 if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
221 OS << printType(TTP).Type;
222 else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Param))
223 OS << printType(NTTP, PP).Type;
224 else if (const auto *TTPD = dyn_cast<TemplateTemplateParmDecl>(Param))
225 OS << printType(TTPD, PP).Type;
226 }
227 // FIXME: TemplateTemplateParameter doesn't store the info on whether this
228 // param was a "typename" or "class".
229 OS << "> class";
230 return Result;
231}
232
233std::vector<HoverInfo::Param>
234fetchTemplateParameters(const TemplateParameterList *Params,
235 const PrintingPolicy &PP) {
236 assert(Params);
237 std::vector<HoverInfo::Param> TempParameters;
238
239 for (const Decl *Param : *Params) {
240 HoverInfo::Param P;
241 if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) {
242 P.Type = printType(TTP);
243
244 if (!TTP->getName().empty())
245 P.Name = TTP->getNameAsString();
246
247 if (TTP->hasDefaultArgument()) {
248 P.Default.emplace();
249 llvm::raw_string_ostream Out(*P.Default);
250 TTP->getDefaultArgument().getArgument().print(PP, Out,
251 /*IncludeType=*/false);
252 }
253 } else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
254 P.Type = printType(NTTP, PP);
255
256 if (IdentifierInfo *II = NTTP->getIdentifier())
257 P.Name = II->getName().str();
258
259 if (NTTP->hasDefaultArgument()) {
260 P.Default.emplace();
261 llvm::raw_string_ostream Out(*P.Default);
262 NTTP->getDefaultArgument().getArgument().print(PP, Out,
263 /*IncludeType=*/false);
264 }
265 } else if (const auto *TTPD = dyn_cast<TemplateTemplateParmDecl>(Param)) {
266 P.Type = printType(TTPD, PP);
267
268 if (!TTPD->getName().empty())
269 P.Name = TTPD->getNameAsString();
270
271 if (TTPD->hasDefaultArgument()) {
272 P.Default.emplace();
273 llvm::raw_string_ostream Out(*P.Default);
274 TTPD->getDefaultArgument().getArgument().print(PP, Out,
275 /*IncludeType*/ false);
276 }
277 }
278 TempParameters.push_back(std::move(P));
279 }
280
281 return TempParameters;
282}
283
284const FunctionDecl *getUnderlyingFunction(const Decl *D) {
285 // Extract lambda from variables.
286 if (const VarDecl *VD = llvm::dyn_cast<VarDecl>(D)) {
287 auto QT = VD->getType();
288 if (!QT.isNull()) {
289 while (!QT->getPointeeType().isNull())
290 QT = QT->getPointeeType();
291
292 if (const auto *CD = QT->getAsCXXRecordDecl())
293 return CD->getLambdaCallOperator();
294 }
295 }
296
297 // Non-lambda functions.
298 return D->getAsFunction();
299}
300
301// Returns the decl that should be used for querying comments, either from index
302// or AST.
303const NamedDecl *getDeclForComment(const NamedDecl *D) {
304 const NamedDecl *DeclForComment = D;
305 if (const auto *TSD = llvm::dyn_cast<ClassTemplateSpecializationDecl>(D)) {
306 // Template may not be instantiated e.g. if the type didn't need to be
307 // complete; fallback to primary template.
308 if (TSD->getTemplateSpecializationKind() == TSK_Undeclared)
309 DeclForComment = TSD->getSpecializedTemplate();
310 else if (const auto *TIP = TSD->getTemplateInstantiationPattern())
311 DeclForComment = TIP;
312 } else if (const auto *TSD =
313 llvm::dyn_cast<VarTemplateSpecializationDecl>(D)) {
314 if (TSD->getTemplateSpecializationKind() == TSK_Undeclared)
315 DeclForComment = TSD->getSpecializedTemplate();
316 else if (const auto *TIP = TSD->getTemplateInstantiationPattern())
317 DeclForComment = TIP;
318 } else if (const auto *FD = D->getAsFunction())
319 if (const auto *TIP = FD->getTemplateInstantiationPattern())
320 DeclForComment = TIP;
321 // Ensure that getDeclForComment(getDeclForComment(X)) = getDeclForComment(X).
322 // This is usually not needed, but in strange cases of comparision operators
323 // being instantiated from spasceship operater, which itself is a template
324 // instantiation the recursrive call is necessary.
325 if (D != DeclForComment)
326 DeclForComment = getDeclForComment(DeclForComment);
327 return DeclForComment;
328}
329
330// Look up information about D from the index, and add it to Hover.
331void enhanceFromIndex(HoverInfo &Hover, const NamedDecl &ND,
332 const SymbolIndex *Index) {
333 assert(&ND == getDeclForComment(&ND));
334 // We only add documentation, so don't bother if we already have some.
335 if (!Hover.Documentation.empty() || !Index)
336 return;
337
338 // Skip querying for non-indexable symbols, there's no point.
339 // We're searching for symbols that might be indexed outside this main file.
340 if (!SymbolCollector::shouldCollectSymbol(ND, ND.getASTContext(),
341 SymbolCollector::Options(),
342 /*IsMainFileOnly=*/false))
343 return;
344 auto ID = getSymbolID(&ND);
345 if (!ID)
346 return;
347 LookupRequest Req;
348 Req.IDs.insert(ID);
349 Index->lookup(Req, [&](const Symbol &S) {
350 Hover.Documentation = std::string(S.Documentation);
351 });
352}
353
354// Default argument might exist but be unavailable, in the case of unparsed
355// arguments for example. This function returns the default argument if it is
356// available.
357const Expr *getDefaultArg(const ParmVarDecl *PVD) {
358 // Default argument can be unparsed or uninstantiated. For the former we
359 // can't do much, as token information is only stored in Sema and not
360 // attached to the AST node. For the latter though, it is safe to proceed as
361 // the expression is still valid.
362 if (!PVD->hasDefaultArg() || PVD->hasUnparsedDefaultArg())
363 return nullptr;
364 return PVD->hasUninstantiatedDefaultArg() ? PVD->getUninstantiatedDefaultArg()
365 : PVD->getDefaultArg();
366}
367
368HoverInfo::Param toHoverInfoParam(const ParmVarDecl *PVD,
369 const PrintingPolicy &PP) {
370 HoverInfo::Param Out;
371 Out.Type = printType(PVD->getType(), PVD->getASTContext(), PP);
372 if (!PVD->getName().empty())
373 Out.Name = PVD->getNameAsString();
374 if (const Expr *DefArg = getDefaultArg(PVD)) {
375 Out.Default.emplace();
376 llvm::raw_string_ostream OS(*Out.Default);
377 DefArg->printPretty(OS, nullptr, PP);
378 }
379 return Out;
380}
381
382// Populates Type, ReturnType, and Parameters for function-like decls.
383void fillFunctionTypeAndParams(HoverInfo &HI, const Decl *D,
384 const FunctionDecl *FD,
385 const PrintingPolicy &PP) {
386 HI.Parameters.emplace();
387 for (const ParmVarDecl *PVD : FD->parameters())
388 HI.Parameters->emplace_back(toHoverInfoParam(PVD, PP));
389
390 // We don't want any type info, if name already contains it. This is true for
391 // constructors/destructors and conversion operators.
392 const auto NK = FD->getDeclName().getNameKind();
393 if (NK == DeclarationName::CXXConstructorName ||
394 NK == DeclarationName::CXXDestructorName ||
395 NK == DeclarationName::CXXConversionFunctionName)
396 return;
397
398 HI.ReturnType = printType(FD->getReturnType(), FD->getASTContext(), PP);
399 QualType QT = FD->getType();
400 if (const VarDecl *VD = llvm::dyn_cast<VarDecl>(D)) // Lambdas
401 QT = VD->getType().getDesugaredType(D->getASTContext());
402 HI.Type = printType(QT, D->getASTContext(), PP);
403 // FIXME: handle variadics.
404}
405
406// Non-negative numbers are printed using min digits
407// 0 => 0x0
408// 100 => 0x64
409// Negative numbers are sign-extended to 32/64 bits
410// -2 => 0xfffffffe
411// -2^32 => 0xffffffff00000000
412static llvm::FormattedNumber printHex(const llvm::APSInt &V) {
413 assert(V.getSignificantBits() <= 64 && "Can't print more than 64 bits.");
414 uint64_t Bits =
415 V.getBitWidth() > 64 ? V.trunc(64).getZExtValue() : V.getZExtValue();
416 if (V.isNegative() && V.getSignificantBits() <= 32)
417 return llvm::format_hex(uint32_t(Bits), 0);
418 return llvm::format_hex(Bits, 0);
419}
420
421std::optional<std::string> printExprValue(const Expr *E,
422 const ASTContext &Ctx) {
423 // InitListExpr has two forms, syntactic and semantic. They are the same thing
424 // (refer to a same AST node) in most cases.
425 // When they are different, RAV returns the syntactic form, and we should feed
426 // the semantic form to EvaluateAsRValue.
427 if (const auto *ILE = llvm::dyn_cast<InitListExpr>(E)) {
428 if (!ILE->isSemanticForm())
429 E = ILE->getSemanticForm();
430 }
431
432 // Evaluating [[foo]]() as "&foo" isn't useful, and prevents us walking up
433 // to the enclosing call. Evaluating an expression of void type doesn't
434 // produce a meaningful result.
435 QualType T = E->getType();
436 if (T.isNull() || T->isFunctionType() || T->isFunctionPointerType() ||
437 T->isFunctionReferenceType() || T->isVoidType())
438 return std::nullopt;
439
440 Expr::EvalResult Constant;
441 // Attempt to evaluate. If expr is dependent, evaluation crashes!
442 if (E->isValueDependent() || !E->EvaluateAsRValue(Constant, Ctx) ||
443 // Disable printing for record-types, as they are usually confusing and
444 // might make clang crash while printing the expressions.
445 Constant.Val.isStruct() || Constant.Val.isUnion())
446 return std::nullopt;
447
448 // Show enums symbolically, not numerically like APValue::printPretty().
449 if (T->isEnumeralType() && Constant.Val.isInt() &&
450 Constant.Val.getInt().getSignificantBits() <= 64) {
451 // Compare to int64_t to avoid bit-width match requirements.
452 int64_t Val = Constant.Val.getInt().getExtValue();
453 for (const EnumConstantDecl *ECD :
454 T->castAs<EnumType>()->getDecl()->enumerators())
455 if (ECD->getInitVal() == Val)
456 return llvm::formatv("{0} ({1})", ECD->getNameAsString(),
457 printHex(Constant.Val.getInt()))
458 .str();
459 }
460 // Show hex value of integers if they're at least 10 (or negative!)
461 if (T->isIntegralOrEnumerationType() && Constant.Val.isInt() &&
462 Constant.Val.getInt().getSignificantBits() <= 64 &&
463 Constant.Val.getInt().uge(10))
464 return llvm::formatv("{0} ({1})", Constant.Val.getAsString(Ctx, T),
465 printHex(Constant.Val.getInt()))
466 .str();
467 return Constant.Val.getAsString(Ctx, T);
468}
469
470struct PrintExprResult {
471 /// The evaluation result on expression `Expr`.
472 std::optional<std::string> PrintedValue;
473 /// The Expr object that represents the closest evaluable
474 /// expression.
475 const clang::Expr *TheExpr;
476 /// The node of selection tree where the traversal stops.
477 const SelectionTree::Node *TheNode;
478};
479
480// Seek the closest evaluable expression along the ancestors of node N
481// in a selection tree. If a node in the path can be converted to an evaluable
482// Expr, a possible evaluation would happen and the associated context
483// is returned.
484// If evaluation couldn't be done, return the node where the traversal ends.
485PrintExprResult printExprValue(const SelectionTree::Node *N,
486 const ASTContext &Ctx) {
487 for (; N; N = N->Parent) {
488 // Try to evaluate the first evaluatable enclosing expression.
489 if (const Expr *E = N->ASTNode.get<Expr>()) {
490 // Once we cross an expression of type 'cv void', the evaluated result
491 // has nothing to do with our original cursor position.
492 if (!E->getType().isNull() && E->getType()->isVoidType())
493 break;
494 if (auto Val = printExprValue(E, Ctx))
495 return PrintExprResult{/*PrintedValue=*/std::move(Val), /*Expr=*/E,
496 /*Node=*/N};
497 } else if (N->ASTNode.get<Decl>() || N->ASTNode.get<Stmt>()) {
498 // Refuse to cross certain non-exprs. (TypeLoc are OK as part of Exprs).
499 // This tries to ensure we're showing a value related to the cursor.
500 break;
501 }
502 }
503 return PrintExprResult{/*PrintedValue=*/std::nullopt, /*Expr=*/nullptr,
504 /*Node=*/N};
505}
506
507std::optional<StringRef> fieldName(const Expr *E) {
508 const auto *ME = llvm::dyn_cast<MemberExpr>(E->IgnoreCasts());
509 if (!ME || !llvm::isa<CXXThisExpr>(ME->getBase()->IgnoreCasts()))
510 return std::nullopt;
511 const auto *Field = llvm::dyn_cast<FieldDecl>(ME->getMemberDecl());
512 if (!Field || !Field->getDeclName().isIdentifier())
513 return std::nullopt;
514 return Field->getDeclName().getAsIdentifierInfo()->getName();
515}
516
517// If CMD is of the form T foo() { return FieldName; } then returns "FieldName".
518std::optional<StringRef> getterVariableName(const CXXMethodDecl *CMD) {
519 assert(CMD->hasBody());
520 if (CMD->getNumParams() != 0 || CMD->isVariadic())
521 return std::nullopt;
522 const auto *Body = llvm::dyn_cast<CompoundStmt>(CMD->getBody());
523 const auto *OnlyReturn = (Body && Body->size() == 1)
524 ? llvm::dyn_cast<ReturnStmt>(Body->body_front())
525 : nullptr;
526 if (!OnlyReturn || !OnlyReturn->getRetValue())
527 return std::nullopt;
528 return fieldName(OnlyReturn->getRetValue());
529}
530
531// If CMD is one of the forms:
532// void foo(T arg) { FieldName = arg; }
533// R foo(T arg) { FieldName = arg; return *this; }
534// void foo(T arg) { FieldName = std::move(arg); }
535// R foo(T arg) { FieldName = std::move(arg); return *this; }
536// then returns "FieldName"
537std::optional<StringRef> setterVariableName(const CXXMethodDecl *CMD) {
538 assert(CMD->hasBody());
539 if (CMD->isConst() || CMD->getNumParams() != 1 || CMD->isVariadic())
540 return std::nullopt;
541 const ParmVarDecl *Arg = CMD->getParamDecl(0);
542 if (Arg->isParameterPack())
543 return std::nullopt;
544
545 const auto *Body = llvm::dyn_cast<CompoundStmt>(CMD->getBody());
546 if (!Body || Body->size() == 0 || Body->size() > 2)
547 return std::nullopt;
548 // If the second statement exists, it must be `return this` or `return *this`.
549 if (Body->size() == 2) {
550 auto *Ret = llvm::dyn_cast<ReturnStmt>(Body->body_back());
551 if (!Ret || !Ret->getRetValue())
552 return std::nullopt;
553 const Expr *RetVal = Ret->getRetValue()->IgnoreCasts();
554 if (const auto *UO = llvm::dyn_cast<UnaryOperator>(RetVal)) {
555 if (UO->getOpcode() != UO_Deref)
556 return std::nullopt;
557 RetVal = UO->getSubExpr()->IgnoreCasts();
558 }
559 if (!llvm::isa<CXXThisExpr>(RetVal))
560 return std::nullopt;
561 }
562 // The first statement must be an assignment of the arg to a field.
563 const Expr *LHS, *RHS;
564 if (const auto *BO = llvm::dyn_cast<BinaryOperator>(Body->body_front())) {
565 if (BO->getOpcode() != BO_Assign)
566 return std::nullopt;
567 LHS = BO->getLHS();
568 RHS = BO->getRHS();
569 } else if (const auto *COCE =
570 llvm::dyn_cast<CXXOperatorCallExpr>(Body->body_front())) {
571 if (COCE->getOperator() != OO_Equal || COCE->getNumArgs() != 2)
572 return std::nullopt;
573 LHS = COCE->getArg(0);
574 RHS = COCE->getArg(1);
575 } else {
576 return std::nullopt;
577 }
578
579 // Detect the case when the item is moved into the field.
580 if (auto *CE = llvm::dyn_cast<CallExpr>(RHS->IgnoreCasts())) {
581 if (CE->getNumArgs() != 1)
582 return std::nullopt;
583 auto *ND = llvm::dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl());
584 if (!ND || !ND->getIdentifier() || ND->getName() != "move" ||
585 !ND->isInStdNamespace())
586 return std::nullopt;
587 RHS = CE->getArg(0);
588 }
589
590 auto *DRE = llvm::dyn_cast<DeclRefExpr>(RHS->IgnoreCasts());
591 if (!DRE || DRE->getDecl() != Arg)
592 return std::nullopt;
593 return fieldName(LHS);
594}
595
596std::string synthesizeDocumentation(const NamedDecl *ND) {
597 if (const auto *CMD = llvm::dyn_cast<CXXMethodDecl>(ND)) {
598 // Is this an ordinary, non-static method whose definition is visible?
599 if (CMD->getDeclName().isIdentifier() && !CMD->isStatic() &&
600 (CMD = llvm::dyn_cast_or_null<CXXMethodDecl>(CMD->getDefinition())) &&
601 CMD->hasBody()) {
602 if (const auto GetterField = getterVariableName(CMD))
603 return llvm::formatv("Trivial accessor for `{0}`.", *GetterField);
604 if (const auto SetterField = setterVariableName(CMD))
605 return llvm::formatv("Trivial setter for `{0}`.", *SetterField);
606 }
607 }
608 return "";
609}
610
611/// Generate a \p Hover object given the declaration \p D.
612HoverInfo getHoverContents(const NamedDecl *D, const PrintingPolicy &PP,
613 const SymbolIndex *Index,
614 const syntax::TokenBuffer &TB) {
615 HoverInfo HI;
616 auto &Ctx = D->getASTContext();
617
618 HI.AccessSpecifier = getAccessSpelling(D->getAccess()).str();
619 HI.NamespaceScope = getNamespaceScope(D);
620 if (!HI.NamespaceScope->empty())
621 HI.NamespaceScope->append("::");
622 HI.LocalScope = getLocalScope(D);
623 if (!HI.LocalScope.empty())
624 HI.LocalScope.append("::");
625
626 HI.Name = printName(Ctx, *D);
627 const auto *CommentD = getDeclForComment(D);
628 HI.Documentation = getDeclComment(Ctx, *CommentD);
629 enhanceFromIndex(HI, *CommentD, Index);
630 if (HI.Documentation.empty())
631 HI.Documentation = synthesizeDocumentation(D);
632
633 HI.Kind = index::getSymbolInfo(D).Kind;
634
635 // Fill in template params.
636 if (const TemplateDecl *TD = D->getDescribedTemplate()) {
637 HI.TemplateParameters =
638 fetchTemplateParameters(TD->getTemplateParameters(), PP);
639 D = TD;
640 } else if (const FunctionDecl *FD = D->getAsFunction()) {
641 if (const auto *FTD = FD->getDescribedTemplate()) {
642 HI.TemplateParameters =
643 fetchTemplateParameters(FTD->getTemplateParameters(), PP);
644 D = FTD;
645 }
646 }
647
648 // Fill in types and params.
649 if (const FunctionDecl *FD = getUnderlyingFunction(D))
650 fillFunctionTypeAndParams(HI, D, FD, PP);
651 else if (const auto *VD = dyn_cast<ValueDecl>(D))
652 HI.Type = printType(VD->getType(), Ctx, PP);
653 else if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(D))
654 HI.Type = TTP->wasDeclaredWithTypename() ? "typename" : "class";
655 else if (const auto *TTP = dyn_cast<TemplateTemplateParmDecl>(D))
656 HI.Type = printType(TTP, PP);
657 else if (const auto *VT = dyn_cast<VarTemplateDecl>(D))
658 HI.Type = printType(VT->getTemplatedDecl()->getType(), Ctx, PP);
659 else if (const auto *TN = dyn_cast<TypedefNameDecl>(D))
660 HI.Type = printType(TN->getUnderlyingType().getDesugaredType(Ctx), Ctx, PP);
661 else if (const auto *TAT = dyn_cast<TypeAliasTemplateDecl>(D))
662 HI.Type = printType(TAT->getTemplatedDecl()->getUnderlyingType(), Ctx, PP);
663
664 // Fill in value with evaluated initializer if possible.
665 if (const auto *Var = dyn_cast<VarDecl>(D); Var && !Var->isInvalidDecl()) {
666 if (const Expr *Init = Var->getInit())
667 HI.Value = printExprValue(Init, Ctx);
668 } else if (const auto *ECD = dyn_cast<EnumConstantDecl>(D)) {
669 // Dependent enums (e.g. nested in template classes) don't have values yet.
670 if (!ECD->getType()->isDependentType())
671 HI.Value = toString(ECD->getInitVal(), 10);
672 }
673
674 HI.Definition = printDefinition(D, PP, TB);
675 return HI;
676}
677
678/// The standard defines __func__ as a "predefined variable".
679std::optional<HoverInfo>
680getPredefinedExprHoverContents(const PredefinedExpr &PE, ASTContext &Ctx,
681 const PrintingPolicy &PP) {
682 HoverInfo HI;
683 HI.Name = PE.getIdentKindName();
684 HI.Kind = index::SymbolKind::Variable;
685 HI.Documentation = "Name of the current function (predefined variable)";
686 if (const StringLiteral *Name = PE.getFunctionName()) {
687 HI.Value.emplace();
688 llvm::raw_string_ostream OS(*HI.Value);
689 Name->outputString(OS);
690 HI.Type = printType(Name->getType(), Ctx, PP);
691 } else {
692 // Inside templates, the approximate type `const char[]` is still useful.
693 QualType StringType = Ctx.getIncompleteArrayType(Ctx.CharTy.withConst(),
694 ArraySizeModifier::Normal,
695 /*IndexTypeQuals=*/0);
696 HI.Type = printType(StringType, Ctx, PP);
697 }
698 return HI;
699}
700
701HoverInfo evaluateMacroExpansion(unsigned int SpellingBeginOffset,
702 unsigned int SpellingEndOffset,
703 llvm::ArrayRef<syntax::Token> Expanded,
704 ParsedAST &AST) {
705 auto &Context = AST.getASTContext();
706 auto &Tokens = AST.getTokens();
707 auto PP = getPrintingPolicy(Context.getPrintingPolicy());
708 auto Tree = SelectionTree::createRight(Context, Tokens, SpellingBeginOffset,
709 SpellingEndOffset);
710
711 // If macro expands to one single token, rule out punctuator or digraph.
712 // E.g., for the case `array L_BRACKET 42 R_BRACKET;` where L_BRACKET and
713 // R_BRACKET expand to
714 // '[' and ']' respectively, we don't want the type of
715 // 'array[42]' when user hovers on L_BRACKET.
716 if (Expanded.size() == 1)
717 if (tok::getPunctuatorSpelling(Expanded[0].kind()))
718 return {};
719
720 auto *StartNode = Tree.commonAncestor();
721 if (!StartNode)
722 return {};
723 // If the common ancestor is partially selected, do evaluate if it has no
724 // children, thus we can disallow evaluation on incomplete expression.
725 // For example,
726 // #define PLUS_2 +2
727 // 40 PL^US_2
728 // In this case we don't want to present 'value: 2' as PLUS_2 actually expands
729 // to a non-value rather than a binary operand.
730 if (StartNode->Selected == SelectionTree::Selection::Partial)
731 if (!StartNode->Children.empty())
732 return {};
733
734 HoverInfo HI;
735 // Attempt to evaluate it from Expr first.
736 auto ExprResult = printExprValue(StartNode, Context);
737 HI.Value = std::move(ExprResult.PrintedValue);
738 if (auto *E = ExprResult.TheExpr)
739 HI.Type = printType(E->getType(), Context, PP);
740
741 // If failed, extract the type from Decl if possible.
742 if (!HI.Value && !HI.Type && ExprResult.TheNode)
743 if (auto *VD = ExprResult.TheNode->ASTNode.get<VarDecl>())
744 HI.Type = printType(VD->getType(), Context, PP);
745
746 return HI;
747}
748
749/// Generate a \p Hover object given the macro \p MacroDecl.
750HoverInfo getHoverContents(const DefinedMacro &Macro, const syntax::Token &Tok,
751 ParsedAST &AST) {
752 HoverInfo HI;
753 SourceManager &SM = AST.getSourceManager();
754 HI.Name = std::string(Macro.Name);
755 HI.Kind = index::SymbolKind::Macro;
756 // FIXME: Populate documentation
757 // FIXME: Populate parameters
758
759 // Try to get the full definition, not just the name
760 SourceLocation StartLoc = Macro.Info->getDefinitionLoc();
761 SourceLocation EndLoc = Macro.Info->getDefinitionEndLoc();
762 // Ensure that EndLoc is a valid offset. For example it might come from
763 // preamble, and source file might've changed, in such a scenario EndLoc still
764 // stays valid, but getLocForEndOfToken will fail as it is no longer a valid
765 // offset.
766 // Note that this check is just to ensure there's text data inside the range.
767 // It will still succeed even when the data inside the range is irrelevant to
768 // macro definition.
769 if (SM.getPresumedLoc(EndLoc, /*UseLineDirectives=*/false).isValid()) {
770 EndLoc = Lexer::getLocForEndOfToken(EndLoc, 0, SM, AST.getLangOpts());
771 bool Invalid;
772 StringRef Buffer = SM.getBufferData(SM.getFileID(StartLoc), &Invalid);
773 if (!Invalid) {
774 unsigned StartOffset = SM.getFileOffset(StartLoc);
775 unsigned EndOffset = SM.getFileOffset(EndLoc);
776 if (EndOffset <= Buffer.size() && StartOffset < EndOffset)
777 HI.Definition =
778 ("#define " + Buffer.substr(StartOffset, EndOffset - StartOffset))
779 .str();
780 }
781 }
782
783 if (auto Expansion = AST.getTokens().expansionStartingAt(&Tok)) {
784 // We drop expansion that's longer than the threshold.
785 // For extremely long expansion text, it's not readable from hover card
786 // anyway.
787 std::string ExpansionText;
788 for (const auto &ExpandedTok : Expansion->Expanded) {
789 ExpansionText += ExpandedTok.text(SM);
790 ExpansionText += " ";
791 if (ExpansionText.size() > 2048) {
792 ExpansionText.clear();
793 break;
794 }
795 }
796
797 if (!ExpansionText.empty()) {
798 if (!HI.Definition.empty()) {
799 HI.Definition += "\n\n";
800 }
801 HI.Definition += "// Expands to\n";
802 HI.Definition += ExpansionText;
803 }
804
805 auto Evaluated = evaluateMacroExpansion(
806 /*SpellingBeginOffset=*/SM.getFileOffset(Tok.location()),
807 /*SpellingEndOffset=*/SM.getFileOffset(Tok.endLocation()),
808 /*Expanded=*/Expansion->Expanded, AST);
809 HI.Value = std::move(Evaluated.Value);
810 HI.Type = std::move(Evaluated.Type);
811 }
812 return HI;
813}
814
815std::string typeAsDefinition(const HoverInfo::PrintedType &PType) {
816 std::string Result;
817 llvm::raw_string_ostream OS(Result);
818 OS << PType.Type;
819 if (PType.AKA)
820 OS << " // aka: " << *PType.AKA;
821 return Result;
822}
823
824std::optional<HoverInfo> getThisExprHoverContents(const CXXThisExpr *CTE,
825 ASTContext &ASTCtx,
826 const PrintingPolicy &PP) {
827 QualType OriginThisType = CTE->getType()->getPointeeType();
828 QualType ClassType = declaredType(OriginThisType->getAsTagDecl());
829 // For partial specialization class, origin `this` pointee type will be
830 // parsed as `InjectedClassNameType`, which will ouput template arguments
831 // like "type-parameter-0-0". So we retrieve user written class type in this
832 // case.
833 QualType PrettyThisType = ASTCtx.getPointerType(
834 QualType(ClassType.getTypePtr(), OriginThisType.getCVRQualifiers()));
835
836 HoverInfo HI;
837 HI.Name = "this";
838 HI.Definition = typeAsDefinition(printType(PrettyThisType, ASTCtx, PP));
839 return HI;
840}
841
842/// Generate a HoverInfo object given the deduced type \p QT
843HoverInfo getDeducedTypeHoverContents(QualType QT, const syntax::Token &Tok,
844 ASTContext &ASTCtx,
845 const PrintingPolicy &PP,
846 const SymbolIndex *Index) {
847 HoverInfo HI;
848 // FIXME: distinguish decltype(auto) vs decltype(expr)
849 HI.Name = tok::getTokenName(Tok.kind());
850 HI.Kind = index::SymbolKind::TypeAlias;
851
852 if (QT->isUndeducedAutoType()) {
853 HI.Definition = "/* not deduced */";
854 } else {
855 HI.Definition = typeAsDefinition(printType(QT, ASTCtx, PP));
856
857 if (const auto *D = QT->getAsTagDecl()) {
858 const auto *CommentD = getDeclForComment(D);
859 HI.Documentation = getDeclComment(ASTCtx, *CommentD);
860 enhanceFromIndex(HI, *CommentD, Index);
861 }
862 }
863
864 return HI;
865}
866
867HoverInfo getStringLiteralContents(const StringLiteral *SL,
868 const PrintingPolicy &PP) {
869 HoverInfo HI;
870
871 HI.Name = "string-literal";
872 HI.Size = (SL->getLength() + 1) * SL->getCharByteWidth() * 8;
873 HI.Type = SL->getType().getAsString(PP).c_str();
874
875 return HI;
876}
877
878bool isLiteral(const Expr *E) {
879 // Unfortunately there's no common base Literal classes inherits from
880 // (apart from Expr), therefore these exclusions.
881 return llvm::isa<CompoundLiteralExpr>(E) ||
882 llvm::isa<CXXBoolLiteralExpr>(E) ||
883 llvm::isa<CXXNullPtrLiteralExpr>(E) ||
884 llvm::isa<FixedPointLiteral>(E) || llvm::isa<FloatingLiteral>(E) ||
885 llvm::isa<ImaginaryLiteral>(E) || llvm::isa<IntegerLiteral>(E) ||
886 llvm::isa<StringLiteral>(E) || llvm::isa<UserDefinedLiteral>(E);
887}
888
889llvm::StringLiteral getNameForExpr(const Expr *E) {
890 // FIXME: Come up with names for `special` expressions.
891 //
892 // It's an known issue for GCC5, https://godbolt.org/z/Z_tbgi. Work around
893 // that by using explicit conversion constructor.
894 //
895 // TODO: Once GCC5 is fully retired and not the minimal requirement as stated
896 // in `GettingStarted`, please remove the explicit conversion constructor.
897 return llvm::StringLiteral("expression");
898}
899
900void maybeAddCalleeArgInfo(const SelectionTree::Node *N, HoverInfo &HI,
901 const PrintingPolicy &PP);
902
903// Generates hover info for `this` and evaluatable expressions.
904// FIXME: Support hover for literals (esp user-defined)
905std::optional<HoverInfo> getHoverContents(const SelectionTree::Node *N,
906 const Expr *E, ParsedAST &AST,
907 const PrintingPolicy &PP,
908 const SymbolIndex *Index) {
909 std::optional<HoverInfo> HI;
910
911 if (const StringLiteral *SL = dyn_cast<StringLiteral>(E)) {
912 // Print the type and the size for string literals
913 HI = getStringLiteralContents(SL, PP);
914 } else if (isLiteral(E)) {
915 // There's not much value in hovering over "42" and getting a hover card
916 // saying "42 is an int", similar for most other literals.
917 // However, if we have CalleeArgInfo, it's still useful to show it.
918 maybeAddCalleeArgInfo(N, HI.emplace(), PP);
919 if (HI->CalleeArgInfo) {
920 // FIXME Might want to show the expression's value here instead?
921 // E.g. if the literal is in hex it might be useful to show the decimal
922 // value here.
923 HI->Name = "literal";
924 return HI;
925 }
926 return std::nullopt;
927 }
928
929 // For `this` expr we currently generate hover with pointee type.
930 if (const CXXThisExpr *CTE = dyn_cast<CXXThisExpr>(E))
931 HI = getThisExprHoverContents(CTE, AST.getASTContext(), PP);
932 if (const PredefinedExpr *PE = dyn_cast<PredefinedExpr>(E))
933 HI = getPredefinedExprHoverContents(*PE, AST.getASTContext(), PP);
934 // For expressions we currently print the type and the value, iff it is
935 // evaluatable.
936 if (auto Val = printExprValue(E, AST.getASTContext())) {
937 HI.emplace();
938 HI->Type = printType(E->getType(), AST.getASTContext(), PP);
939 HI->Value = *Val;
940 HI->Name = std::string(getNameForExpr(E));
941 }
942
943 if (HI)
944 maybeAddCalleeArgInfo(N, *HI, PP);
945
946 return HI;
947}
948
949// Generates hover info for attributes.
950std::optional<HoverInfo> getHoverContents(const Attr *A, ParsedAST &AST) {
951 HoverInfo HI;
952 HI.Name = A->getSpelling();
953 if (A->hasScope())
954 HI.LocalScope = A->getScopeName()->getName().str();
955 {
956 llvm::raw_string_ostream OS(HI.Definition);
957 A->printPretty(OS, AST.getASTContext().getPrintingPolicy());
958 }
959 HI.Documentation = Attr::getDocumentation(A->getKind()).str();
960 return HI;
961}
962
963bool isParagraphBreak(llvm::StringRef Rest) {
964 return Rest.ltrim(" \t").starts_with("\n");
965}
966
967bool punctuationIndicatesLineBreak(llvm::StringRef Line) {
968 constexpr llvm::StringLiteral Punctuation = R"txt(.:,;!?)txt";
969
970 Line = Line.rtrim();
971 return !Line.empty() && Punctuation.contains(Line.back());
972}
973
974bool isHardLineBreakIndicator(llvm::StringRef Rest) {
975 // '-'/'*' md list, '@'/'\' documentation command, '>' md blockquote,
976 // '#' headings, '`' code blocks
977 constexpr llvm::StringLiteral LinebreakIndicators = R"txt(-*@>#`)txt";
978
979 Rest = Rest.ltrim(" \t");
980 if (Rest.empty())
981 return false;
982
983 if (LinebreakIndicators.contains(Rest.front()))
984 return true;
985
986 if (llvm::isDigit(Rest.front())) {
987 llvm::StringRef AfterDigit = Rest.drop_while(llvm::isDigit);
988 if (AfterDigit.starts_with(".") || AfterDigit.starts_with(")"))
989 return true;
990 }
991 return false;
992}
993
994bool isHardLineBreakAfter(llvm::StringRef Line, llvm::StringRef Rest) {
995 // Should we also consider whether Line is short?
996 return punctuationIndicatesLineBreak(Line) || isHardLineBreakIndicator(Rest);
997}
998
999void addLayoutInfo(const NamedDecl &ND, HoverInfo &HI) {
1000 if (ND.isInvalidDecl())
1001 return;
1002
1003 const auto &Ctx = ND.getASTContext();
1004 if (auto *RD = llvm::dyn_cast<RecordDecl>(&ND)) {
1005 if (auto Size = Ctx.getTypeSizeInCharsIfKnown(RD->getTypeForDecl()))
1006 HI.Size = Size->getQuantity() * 8;
1007 if (!RD->isDependentType() && RD->isCompleteDefinition())
1008 HI.Align = Ctx.getTypeAlign(RD->getTypeForDecl());
1009 return;
1010 }
1011
1012 if (const auto *FD = llvm::dyn_cast<FieldDecl>(&ND)) {
1013 const auto *Record = FD->getParent();
1014 if (Record)
1015 Record = Record->getDefinition();
1016 if (Record && !Record->isInvalidDecl() && !Record->isDependentType()) {
1017 HI.Align = Ctx.getTypeAlign(FD->getType());
1018 const ASTRecordLayout &Layout = Ctx.getASTRecordLayout(Record);
1019 HI.Offset = Layout.getFieldOffset(FD->getFieldIndex());
1020 if (FD->isBitField())
1021 HI.Size = FD->getBitWidthValue(Ctx);
1022 else if (auto Size = Ctx.getTypeSizeInCharsIfKnown(FD->getType()))
1023 HI.Size = FD->isZeroSize(Ctx) ? 0 : Size->getQuantity() * 8;
1024 if (HI.Size) {
1025 unsigned EndOfField = *HI.Offset + *HI.Size;
1026
1027 // Calculate padding following the field.
1028 if (!Record->isUnion() &&
1029 FD->getFieldIndex() + 1 < Layout.getFieldCount()) {
1030 // Measure padding up to the next class field.
1031 unsigned NextOffset = Layout.getFieldOffset(FD->getFieldIndex() + 1);
1032 if (NextOffset >= EndOfField) // next field could be a bitfield!
1033 HI.Padding = NextOffset - EndOfField;
1034 } else {
1035 // Measure padding up to the end of the object.
1036 HI.Padding = Layout.getSize().getQuantity() * 8 - EndOfField;
1037 }
1038 }
1039 // Offset in a union is always zero, so not really useful to report.
1040 if (Record->isUnion())
1041 HI.Offset.reset();
1042 }
1043 return;
1044 }
1045}
1046
1047HoverInfo::PassType::PassMode getPassMode(QualType ParmType) {
1048 if (ParmType->isReferenceType()) {
1049 if (ParmType->getPointeeType().isConstQualified())
1052 }
1054}
1055
1056// If N is passed as argument to a function, fill HI.CalleeArgInfo with
1057// information about that argument.
1058void maybeAddCalleeArgInfo(const SelectionTree::Node *N, HoverInfo &HI,
1059 const PrintingPolicy &PP) {
1060 const auto &OuterNode = N->outerImplicit();
1061 if (!OuterNode.Parent)
1062 return;
1063
1064 const FunctionDecl *FD = nullptr;
1065 llvm::ArrayRef<const Expr *> Args;
1066
1067 if (const auto *CE = OuterNode.Parent->ASTNode.get<CallExpr>()) {
1068 FD = CE->getDirectCallee();
1069 Args = {CE->getArgs(), CE->getNumArgs()};
1070 } else if (const auto *CE =
1071 OuterNode.Parent->ASTNode.get<CXXConstructExpr>()) {
1072 FD = CE->getConstructor();
1073 Args = {CE->getArgs(), CE->getNumArgs()};
1074 }
1075 if (!FD)
1076 return;
1077
1078 // For non-function-call-like operators (e.g. operator+, operator<<) it's
1079 // not immediately obvious what the "passed as" would refer to and, given
1080 // fixed function signature, the value would be very low anyway, so we choose
1081 // to not support that.
1082 // Both variadic functions and operator() (especially relevant for lambdas)
1083 // should be supported in the future.
1084 if (!FD || FD->isOverloadedOperator() || FD->isVariadic())
1085 return;
1086
1087 HoverInfo::PassType PassType;
1088
1090
1091 // Find argument index for N.
1092 for (unsigned I = 0; I < Args.size() && I < Parameters.size(); ++I) {
1093 if (Args[I] != OuterNode.ASTNode.get<Expr>())
1094 continue;
1095
1096 // Extract matching argument from function declaration.
1097 if (const ParmVarDecl *PVD = Parameters[I]) {
1098 HI.CalleeArgInfo.emplace(toHoverInfoParam(PVD, PP));
1099 if (N == &OuterNode)
1100 PassType.PassBy = getPassMode(PVD->getType());
1101 }
1102 break;
1103 }
1104 if (!HI.CalleeArgInfo)
1105 return;
1106
1107 // If we found a matching argument, also figure out if it's a
1108 // [const-]reference. For this we need to walk up the AST from the arg itself
1109 // to CallExpr and check all implicit casts, constructor calls, etc.
1110 if (const auto *E = N->ASTNode.get<Expr>()) {
1111 if (E->getType().isConstQualified())
1112 PassType.PassBy = HoverInfo::PassType::ConstRef;
1113 }
1114
1115 for (auto *CastNode = N->Parent;
1116 CastNode != OuterNode.Parent && !PassType.Converted;
1117 CastNode = CastNode->Parent) {
1118 if (const auto *ImplicitCast = CastNode->ASTNode.get<ImplicitCastExpr>()) {
1119 switch (ImplicitCast->getCastKind()) {
1120 case CK_NoOp:
1121 case CK_DerivedToBase:
1122 case CK_UncheckedDerivedToBase:
1123 // If it was a reference before, it's still a reference.
1124 if (PassType.PassBy != HoverInfo::PassType::Value)
1125 PassType.PassBy = ImplicitCast->getType().isConstQualified()
1128 break;
1129 case CK_LValueToRValue:
1130 case CK_ArrayToPointerDecay:
1131 case CK_FunctionToPointerDecay:
1132 case CK_NullToPointer:
1133 case CK_NullToMemberPointer:
1134 // No longer a reference, but we do not show this as type conversion.
1135 PassType.PassBy = HoverInfo::PassType::Value;
1136 break;
1137 default:
1138 PassType.PassBy = HoverInfo::PassType::Value;
1139 PassType.Converted = true;
1140 break;
1141 }
1142 } else if (const auto *CtorCall =
1143 CastNode->ASTNode.get<CXXConstructExpr>()) {
1144 // We want to be smart about copy constructors. They should not show up as
1145 // type conversion, but instead as passing by value.
1146 if (CtorCall->getConstructor()->isCopyConstructor())
1147 PassType.PassBy = HoverInfo::PassType::Value;
1148 else
1149 PassType.Converted = true;
1150 } else if (CastNode->ASTNode.get<MaterializeTemporaryExpr>()) {
1151 // Can't bind a non-const-ref to a temporary, so has to be const-ref
1152 PassType.PassBy = HoverInfo::PassType::ConstRef;
1153 } else { // Unknown implicit node, assume type conversion.
1154 PassType.PassBy = HoverInfo::PassType::Value;
1155 PassType.Converted = true;
1156 }
1157 }
1158
1159 HI.CallPassType.emplace(PassType);
1160}
1161
1162const NamedDecl *pickDeclToUse(llvm::ArrayRef<const NamedDecl *> Candidates) {
1163 if (Candidates.empty())
1164 return nullptr;
1165
1166 // This is e.g the case for
1167 // namespace ns { void foo(); }
1168 // void bar() { using ns::foo; f^oo(); }
1169 // One declaration in Candidates will refer to the using declaration,
1170 // which isn't really useful for Hover. So use the other one,
1171 // which in this example would be the actual declaration of foo.
1172 if (Candidates.size() <= 2) {
1173 if (llvm::isa<UsingDecl>(Candidates.front()))
1174 return Candidates.back();
1175 return Candidates.front();
1176 }
1177
1178 // For something like
1179 // namespace ns { void foo(int); void foo(char); }
1180 // using ns::foo;
1181 // template <typename T> void bar() { fo^o(T{}); }
1182 // we actually want to show the using declaration,
1183 // it's not clear which declaration to pick otherwise.
1184 auto BaseDecls = llvm::make_filter_range(
1185 Candidates, [](const NamedDecl *D) { return llvm::isa<UsingDecl>(D); });
1186 if (std::distance(BaseDecls.begin(), BaseDecls.end()) == 1)
1187 return *BaseDecls.begin();
1188
1189 return Candidates.front();
1190}
1191
1192void maybeAddSymbolProviders(ParsedAST &AST, HoverInfo &HI,
1193 include_cleaner::Symbol Sym) {
1194 trace::Span Tracer("Hover::maybeAddSymbolProviders");
1195
1196 const SourceManager &SM = AST.getSourceManager();
1197 llvm::SmallVector<include_cleaner::Header> RankedProviders =
1198 include_cleaner::headersForSymbol(Sym, SM, &AST.getPragmaIncludes());
1199 if (RankedProviders.empty())
1200 return;
1201
1202 std::string Result;
1203 include_cleaner::Includes ConvertedIncludes = convertIncludes(AST);
1204 for (const auto &P : RankedProviders) {
1205 if (P.kind() == include_cleaner::Header::Physical &&
1206 P.physical() == SM.getFileEntryForID(SM.getMainFileID()))
1207 // Main file ranked higher than any #include'd file
1208 break;
1209
1210 // Pick the best-ranked #include'd provider
1211 auto Matches = ConvertedIncludes.match(P);
1212 if (!Matches.empty()) {
1213 Result = Matches[0]->quote();
1214 break;
1215 }
1216 }
1217
1218 if (!Result.empty()) {
1219 HI.Provider = std::move(Result);
1220 return;
1221 }
1222
1223 // Pick the best-ranked non-#include'd provider
1224 const auto &H = RankedProviders.front();
1225 if (H.kind() == include_cleaner::Header::Physical &&
1226 H.physical() == SM.getFileEntryForID(SM.getMainFileID()))
1227 // Do not show main file as provider, otherwise we'll show provider info
1228 // on local variables, etc.
1229 return;
1230
1231 HI.Provider = include_cleaner::spellHeader(
1232 {H, AST.getPreprocessor().getHeaderSearchInfo(),
1233 SM.getFileEntryForID(SM.getMainFileID())});
1234}
1235
1236// FIXME: similar functions are present in FindHeaders.cpp (symbolName)
1237// and IncludeCleaner.cpp (getSymbolName). Introduce a name() method into
1238// include_cleaner::Symbol instead.
1239std::string getSymbolName(include_cleaner::Symbol Sym) {
1240 std::string Name;
1241 switch (Sym.kind()) {
1242 case include_cleaner::Symbol::Declaration:
1243 if (const auto *ND = llvm::dyn_cast<NamedDecl>(&Sym.declaration()))
1244 Name = ND->getDeclName().getAsString();
1245 break;
1246 case include_cleaner::Symbol::Macro:
1247 Name = Sym.macro().Name->getName();
1248 break;
1249 }
1250 return Name;
1251}
1252
1253void maybeAddUsedSymbols(ParsedAST &AST, HoverInfo &HI, const Inclusion &Inc) {
1254 auto Converted = convertIncludes(AST);
1255 llvm::DenseSet<include_cleaner::Symbol> UsedSymbols;
1256 include_cleaner::walkUsed(
1257 AST.getLocalTopLevelDecls(), collectMacroReferences(AST),
1258 &AST.getPragmaIncludes(), AST.getPreprocessor(),
1259 [&](const include_cleaner::SymbolReference &Ref,
1260 llvm::ArrayRef<include_cleaner::Header> Providers) {
1261 if (Ref.RT != include_cleaner::RefType::Explicit ||
1262 UsedSymbols.contains(Ref.Target))
1263 return;
1264
1265 if (isPreferredProvider(Inc, Converted, Providers))
1266 UsedSymbols.insert(Ref.Target);
1267 });
1268
1269 for (const auto &UsedSymbolDecl : UsedSymbols)
1270 HI.UsedSymbolNames.push_back(getSymbolName(UsedSymbolDecl));
1271 llvm::sort(HI.UsedSymbolNames);
1272 HI.UsedSymbolNames.erase(
1273 std::unique(HI.UsedSymbolNames.begin(), HI.UsedSymbolNames.end()),
1274 HI.UsedSymbolNames.end());
1275}
1276
1277} // namespace
1278
1279std::optional<HoverInfo> getHover(ParsedAST &AST, Position Pos,
1280 const format::FormatStyle &Style,
1281 const SymbolIndex *Index) {
1282 static constexpr trace::Metric HoverCountMetric(
1283 "hover", trace::Metric::Counter, "case");
1284 PrintingPolicy PP =
1285 getPrintingPolicy(AST.getASTContext().getPrintingPolicy());
1286 const SourceManager &SM = AST.getSourceManager();
1287 auto CurLoc = sourceLocationInMainFile(SM, Pos);
1288 if (!CurLoc) {
1289 llvm::consumeError(CurLoc.takeError());
1290 return std::nullopt;
1291 }
1292 const auto &TB = AST.getTokens();
1293 auto TokensTouchingCursor = syntax::spelledTokensTouching(*CurLoc, TB);
1294 // Early exit if there were no tokens around the cursor.
1295 if (TokensTouchingCursor.empty())
1296 return std::nullopt;
1297
1298 // Show full header file path if cursor is on include directive.
1299 for (const auto &Inc : AST.getIncludeStructure().MainFileIncludes) {
1300 if (Inc.Resolved.empty() || Inc.HashLine != Pos.line)
1301 continue;
1302 HoverCountMetric.record(1, "include");
1303 HoverInfo HI;
1304 HI.Name = std::string(llvm::sys::path::filename(Inc.Resolved));
1305 // FIXME: We don't have a fitting value for Kind.
1306 HI.Definition =
1307 URIForFile::canonicalize(Inc.Resolved, AST.tuPath()).file().str();
1308 HI.DefinitionLanguage = "";
1309 maybeAddUsedSymbols(AST, HI, Inc);
1310 return HI;
1311 }
1312
1313 // To be used as a backup for highlighting the selected token, we use back as
1314 // it aligns better with biases elsewhere (editors tend to send the position
1315 // for the left of the hovered token).
1316 CharSourceRange HighlightRange =
1317 TokensTouchingCursor.back().range(SM).toCharRange(SM);
1318 std::optional<HoverInfo> HI;
1319 // Macros and deducedtype only works on identifiers and auto/decltype keywords
1320 // respectively. Therefore they are only trggered on whichever works for them,
1321 // similar to SelectionTree::create().
1322 for (const auto &Tok : TokensTouchingCursor) {
1323 if (Tok.kind() == tok::identifier) {
1324 // Prefer the identifier token as a fallback highlighting range.
1325 HighlightRange = Tok.range(SM).toCharRange(SM);
1326 if (auto M = locateMacroAt(Tok, AST.getPreprocessor())) {
1327 HoverCountMetric.record(1, "macro");
1328 HI = getHoverContents(*M, Tok, AST);
1329 if (auto DefLoc = M->Info->getDefinitionLoc(); DefLoc.isValid()) {
1330 include_cleaner::Macro IncludeCleanerMacro{
1331 AST.getPreprocessor().getIdentifierInfo(Tok.text(SM)), DefLoc};
1332 maybeAddSymbolProviders(AST, *HI,
1333 include_cleaner::Symbol{IncludeCleanerMacro});
1334 }
1335 break;
1336 }
1337 } else if (Tok.kind() == tok::kw_auto || Tok.kind() == tok::kw_decltype) {
1338 HoverCountMetric.record(1, "keyword");
1339 if (auto Deduced = getDeducedType(AST.getASTContext(), Tok.location())) {
1340 HI = getDeducedTypeHoverContents(*Deduced, Tok, AST.getASTContext(), PP,
1341 Index);
1342 HighlightRange = Tok.range(SM).toCharRange(SM);
1343 break;
1344 }
1345
1346 // If we can't find interesting hover information for this
1347 // auto/decltype keyword, return nothing to avoid showing
1348 // irrelevant or incorrect informations.
1349 return std::nullopt;
1350 }
1351 }
1352
1353 // If it wasn't auto/decltype or macro, look for decls and expressions.
1354 if (!HI) {
1355 auto Offset = SM.getFileOffset(*CurLoc);
1356 // Editors send the position on the left of the hovered character.
1357 // So our selection tree should be biased right. (Tested with VSCode).
1358 SelectionTree ST =
1359 SelectionTree::createRight(AST.getASTContext(), TB, Offset, Offset);
1360 if (const SelectionTree::Node *N = ST.commonAncestor()) {
1361 // FIXME: Fill in HighlightRange with range coming from N->ASTNode.
1362 auto Decls = explicitReferenceTargets(N->ASTNode, DeclRelation::Alias,
1363 AST.getHeuristicResolver());
1364 if (const auto *DeclToUse = pickDeclToUse(Decls)) {
1365 HoverCountMetric.record(1, "decl");
1366 HI = getHoverContents(DeclToUse, PP, Index, TB);
1367 // Layout info only shown when hovering on the field/class itself.
1368 if (DeclToUse == N->ASTNode.get<Decl>())
1369 addLayoutInfo(*DeclToUse, *HI);
1370 // Look for a close enclosing expression to show the value of.
1371 if (!HI->Value)
1372 HI->Value = printExprValue(N, AST.getASTContext()).PrintedValue;
1373 maybeAddCalleeArgInfo(N, *HI, PP);
1374
1375 if (!isa<NamespaceDecl>(DeclToUse))
1376 maybeAddSymbolProviders(AST, *HI,
1377 include_cleaner::Symbol{*DeclToUse});
1378 } else if (const Expr *E = N->ASTNode.get<Expr>()) {
1379 HoverCountMetric.record(1, "expr");
1380 HI = getHoverContents(N, E, AST, PP, Index);
1381 } else if (const Attr *A = N->ASTNode.get<Attr>()) {
1382 HoverCountMetric.record(1, "attribute");
1383 HI = getHoverContents(A, AST);
1384 }
1385 // FIXME: support hovers for other nodes?
1386 // - built-in types
1387 }
1388 }
1389
1390 if (!HI)
1391 return std::nullopt;
1392
1393 // Reformat Definition
1394 if (!HI->Definition.empty()) {
1395 auto Replacements = format::reformat(
1396 Style, HI->Definition, tooling::Range(0, HI->Definition.size()));
1397 if (auto Formatted =
1398 tooling::applyAllReplacements(HI->Definition, Replacements))
1399 HI->Definition = *Formatted;
1400 }
1401
1402 HI->DefinitionLanguage = getMarkdownLanguage(AST.getASTContext());
1403 HI->SymRange = halfOpenToRange(SM, HighlightRange);
1404
1405 return HI;
1406}
1407
1408// Sizes (and padding) are shown in bytes if possible, otherwise in bits.
1409static std::string formatSize(uint64_t SizeInBits) {
1410 uint64_t Value = SizeInBits % 8 == 0 ? SizeInBits / 8 : SizeInBits;
1411 const char *Unit = Value != 0 && Value == SizeInBits ? "bit" : "byte";
1412 return llvm::formatv("{0} {1}{2}", Value, Unit, Value == 1 ? "" : "s").str();
1413}
1414
1415// Offsets are shown in bytes + bits, so offsets of different fields
1416// can always be easily compared.
1417static std::string formatOffset(uint64_t OffsetInBits) {
1418 const auto Bytes = OffsetInBits / 8;
1419 const auto Bits = OffsetInBits % 8;
1420 auto Offset = formatSize(Bytes * 8);
1421 if (Bits != 0)
1422 Offset += " and " + formatSize(Bits);
1423 return Offset;
1424}
1425
1428
1429 // Header contains a text of the form:
1430 // variable `var`
1431 //
1432 // class `X`
1433 //
1434 // function `foo`
1435 //
1436 // expression
1437 //
1438 // Note that we are making use of a level-3 heading because VSCode renders
1439 // level 1 and 2 headers in a huge font, see
1440 // https://github.com/microsoft/vscode/issues/88417 for details.
1441 markup::Paragraph &Header = Output.addHeading(3);
1442 if (Kind != index::SymbolKind::Unknown)
1443 Header.appendText(index::getSymbolKindString(Kind)).appendSpace();
1444 assert(!Name.empty() && "hover triggered on a nameless symbol");
1445 Header.appendCode(Name);
1446
1447 if (!Provider.empty()) {
1448 markup::Paragraph &DI = Output.addParagraph();
1449 DI.appendText("provided by");
1450 DI.appendSpace();
1451 DI.appendCode(Provider);
1452 Output.addRuler();
1453 }
1454
1455 // Put a linebreak after header to increase readability.
1456 Output.addRuler();
1457 // Print Types on their own lines to reduce chances of getting line-wrapped by
1458 // editor, as they might be long.
1459 if (ReturnType) {
1460 // For functions we display signature in a list form, e.g.:
1461 // → `x`
1462 // Parameters:
1463 // - `bool param1`
1464 // - `int param2 = 5`
1465 Output.addParagraph().appendText("→ ").appendCode(
1466 llvm::to_string(*ReturnType));
1467 }
1468
1469 if (Parameters && !Parameters->empty()) {
1470 Output.addParagraph().appendText("Parameters: ");
1471 markup::BulletList &L = Output.addBulletList();
1472 for (const auto &Param : *Parameters)
1473 L.addItem().addParagraph().appendCode(llvm::to_string(Param));
1474 }
1475
1476 // Don't print Type after Parameters or ReturnType as this will just duplicate
1477 // the information
1478 if (Type && !ReturnType && !Parameters)
1479 Output.addParagraph().appendText("Type: ").appendCode(
1480 llvm::to_string(*Type));
1481
1482 if (Value) {
1483 markup::Paragraph &P = Output.addParagraph();
1484 P.appendText("Value = ");
1485 P.appendCode(*Value);
1486 }
1487
1488 if (Offset)
1489 Output.addParagraph().appendText("Offset: " + formatOffset(*Offset));
1490 if (Size) {
1491 auto &P = Output.addParagraph().appendText("Size: " + formatSize(*Size));
1492 if (Padding && *Padding != 0) {
1493 P.appendText(
1494 llvm::formatv(" (+{0} padding)", formatSize(*Padding)).str());
1495 }
1496 if (Align)
1497 P.appendText(", alignment " + formatSize(*Align));
1498 }
1499
1500 if (CalleeArgInfo) {
1501 assert(CallPassType);
1502 std::string Buffer;
1503 llvm::raw_string_ostream OS(Buffer);
1504 OS << "Passed ";
1506 OS << "by ";
1508 OS << "const ";
1509 OS << "reference ";
1510 }
1511 if (CalleeArgInfo->Name)
1512 OS << "as " << CalleeArgInfo->Name;
1513 else if (CallPassType->PassBy == HoverInfo::PassType::Value)
1514 OS << "by value";
1515 if (CallPassType->Converted && CalleeArgInfo->Type)
1516 OS << " (converted to " << CalleeArgInfo->Type->Type << ")";
1517 Output.addParagraph().appendText(OS.str());
1518 }
1519
1520 if (!Documentation.empty())
1522
1523 if (!Definition.empty()) {
1524 Output.addRuler();
1525 std::string Buffer;
1526
1527 if (!Definition.empty()) {
1528 // Append scope comment, dropping trailing "::".
1529 // Note that we don't print anything for global namespace, to not annoy
1530 // non-c++ projects or projects that are not making use of namespaces.
1531 if (!LocalScope.empty()) {
1532 // Container name, e.g. class, method, function.
1533 // We might want to propagate some info about container type to print
1534 // function foo, class X, method X::bar, etc.
1535 Buffer +=
1536 "// In " + llvm::StringRef(LocalScope).rtrim(':').str() + '\n';
1537 } else if (NamespaceScope && !NamespaceScope->empty()) {
1538 Buffer += "// In namespace " +
1539 llvm::StringRef(*NamespaceScope).rtrim(':').str() + '\n';
1540 }
1541
1542 if (!AccessSpecifier.empty()) {
1543 Buffer += AccessSpecifier + ": ";
1544 }
1545
1546 Buffer += Definition;
1547 }
1548
1549 Output.addCodeBlock(Buffer, DefinitionLanguage);
1550 }
1551
1552 if (!UsedSymbolNames.empty()) {
1553 Output.addRuler();
1554 markup::Paragraph &P = Output.addParagraph();
1555 P.appendText("provides ");
1556
1557 const std::vector<std::string>::size_type SymbolNamesLimit = 5;
1558 auto Front = llvm::ArrayRef(UsedSymbolNames).take_front(SymbolNamesLimit);
1559
1560 llvm::interleave(
1561 Front, [&](llvm::StringRef Sym) { P.appendCode(Sym); },
1562 [&] { P.appendText(", "); });
1563 if (UsedSymbolNames.size() > Front.size()) {
1564 P.appendText(" and ");
1565 P.appendText(std::to_string(UsedSymbolNames.size() - Front.size()));
1566 P.appendText(" more");
1567 }
1568 }
1569
1570 return Output;
1571}
1572
1573// If the backtick at `Offset` starts a probable quoted range, return the range
1574// (including the quotes).
1575std::optional<llvm::StringRef> getBacktickQuoteRange(llvm::StringRef Line,
1576 unsigned Offset) {
1577 assert(Line[Offset] == '`');
1578
1579 // The open-quote is usually preceded by whitespace.
1580 llvm::StringRef Prefix = Line.substr(0, Offset);
1581 constexpr llvm::StringLiteral BeforeStartChars = " \t(=";
1582 if (!Prefix.empty() && !BeforeStartChars.contains(Prefix.back()))
1583 return std::nullopt;
1584
1585 // The quoted string must be nonempty and usually has no leading/trailing ws.
1586 auto Next = Line.find('`', Offset + 1);
1587 if (Next == llvm::StringRef::npos)
1588 return std::nullopt;
1589 llvm::StringRef Contents = Line.slice(Offset + 1, Next);
1590 if (Contents.empty() || isWhitespace(Contents.front()) ||
1591 isWhitespace(Contents.back()))
1592 return std::nullopt;
1593
1594 // The close-quote is usually followed by whitespace or punctuation.
1595 llvm::StringRef Suffix = Line.substr(Next + 1);
1596 constexpr llvm::StringLiteral AfterEndChars = " \t)=.,;:";
1597 if (!Suffix.empty() && !AfterEndChars.contains(Suffix.front()))
1598 return std::nullopt;
1599
1600 return Line.slice(Offset, Next + 1);
1601}
1602
1603void parseDocumentationLine(llvm::StringRef Line, markup::Paragraph &Out) {
1604 // Probably this is appendText(Line), but scan for something interesting.
1605 for (unsigned I = 0; I < Line.size(); ++I) {
1606 switch (Line[I]) {
1607 case '`':
1608 if (auto Range = getBacktickQuoteRange(Line, I)) {
1609 Out.appendText(Line.substr(0, I));
1610 Out.appendCode(Range->trim("`"), /*Preserve=*/true);
1611 return parseDocumentationLine(Line.substr(I + Range->size()), Out);
1612 }
1613 break;
1614 }
1615 }
1616 Out.appendText(Line).appendSpace();
1617}
1618
1619void parseDocumentation(llvm::StringRef Input, markup::Document &Output) {
1620 std::vector<llvm::StringRef> ParagraphLines;
1621 auto FlushParagraph = [&] {
1622 if (ParagraphLines.empty())
1623 return;
1624 auto &P = Output.addParagraph();
1625 for (llvm::StringRef Line : ParagraphLines)
1627 ParagraphLines.clear();
1628 };
1629
1630 llvm::StringRef Line, Rest;
1631 for (std::tie(Line, Rest) = Input.split('\n');
1632 !(Line.empty() && Rest.empty());
1633 std::tie(Line, Rest) = Rest.split('\n')) {
1634
1635 // After a linebreak remove spaces to avoid 4 space markdown code blocks.
1636 // FIXME: make FlushParagraph handle this.
1637 Line = Line.ltrim();
1638 if (!Line.empty())
1639 ParagraphLines.push_back(Line);
1640
1641 if (isParagraphBreak(Rest) || isHardLineBreakAfter(Line, Rest)) {
1642 FlushParagraph();
1643 }
1644 }
1645 FlushParagraph();
1646}
1647
1648llvm::raw_ostream &operator<<(llvm::raw_ostream &OS,
1649 const HoverInfo::PrintedType &T) {
1650 OS << T.Type;
1651 if (T.AKA)
1652 OS << " (aka " << *T.AKA << ")";
1653 return OS;
1654}
1655
1656llvm::raw_ostream &operator<<(llvm::raw_ostream &OS,
1657 const HoverInfo::Param &P) {
1658 if (P.Type)
1659 OS << P.Type->Type;
1660 if (P.Name)
1661 OS << " " << *P.Name;
1662 if (P.Default)
1663 OS << " = " << *P.Default;
1664 if (P.Type && P.Type->AKA)
1665 OS << " (aka " << *P.Type->AKA << ")";
1666 return OS;
1667}
1668
1669} // namespace clangd
1670} // namespace clang
ArrayRef< const ParmVarDecl * > Parameters
Definition: AST.cpp:801
std::string Suffix
Definition: AddUsing.cpp:132
const Expr * E
const FunctionDecl * Decl
CaptureExpr CE
unsigned Line
Definition: Bracket.cpp:77
llvm::SmallString< 256U > Name
size_t Offset
CompiledFragmentImpl & Out
llvm::raw_ostream & OS
std::optional< std::string > PrintedValue
The evaluation result on expression Expr.
Definition: Hover.cpp:472
const SelectionTree::Node * TheNode
The node of selection tree where the traversal stops.
Definition: Hover.cpp:477
const clang::Expr * TheExpr
The Expr object that represents the closest evaluable expression.
Definition: Hover.cpp:475
Include Cleaner is clangd functionality for providing diagnostics for misuse of transitive headers an...
size_t Pos
const google::protobuf::Message & M
Definition: Server.cpp:356
std::string Output
Definition: TraceTests.cpp:159
llvm::json::Object Args
Definition: Trace.cpp:138
Stores and provides access to parsed AST.
Definition: ParsedAST.h:46
static SelectionTree createRight(ASTContext &AST, const syntax::TokenBuffer &Tokens, unsigned Begin, unsigned End)
Definition: Selection.cpp:1067
const Node * commonAncestor() const
Definition: Selection.cpp:1097
static bool shouldCollectSymbol(const NamedDecl &ND, const ASTContext &ASTCtx, const Options &Opts, bool IsMainFileSymbol)
Returns true is ND should be collected.
Interface for symbol indexes that can be used for searching or matching symbols among a set of symbol...
Definition: Index.h:134
Represents a sequence of one or more documents.
Definition: Markup.h:80
A format-agnostic representation for structured text.
Definition: Markup.h:97
Represents parts of the markup that can contain strings, like inline code, code block or plain text.
Definition: Markup.h:43
Paragraph & appendText(llvm::StringRef Text)
Append plain text to the end of the string.
Definition: Markup.cpp:423
Paragraph & appendSpace()
Ensure there is space between the surrounding chunks.
Definition: Markup.cpp:417
Paragraph & appendCode(llvm::StringRef Code, bool Preserve=false)
Append inline code, this translates to the ` block in markdown.
Definition: Markup.cpp:436
SmallVector< const ParmVarDecl * > resolveForwardingParameters(const FunctionDecl *D, unsigned MaxDepth)
Recursively resolves the parameters of a FunctionDecl that forwards its parameters to another functio...
Definition: AST.cpp:946
std::string printObjCMethod(const ObjCMethodDecl &Method)
Print the Objective-C method name, including the full container name, e.g.
Definition: AST.cpp:293
SymbolID getSymbolID(const Decl *D)
Gets the symbol ID for a declaration. Returned SymbolID might be null.
Definition: AST.cpp:331
Range halfOpenToRange(const SourceManager &SM, CharSourceRange R)
Definition: SourceCode.cpp:472
std::string printType(const QualType QT, const DeclContext &CurContext, const llvm::StringRef Placeholder)
Returns a QualType as string.
Definition: AST.cpp:394
std::string printName(const ASTContext &Ctx, const NamedDecl &ND)
Prints unqualified name of the decl for the purpose of displaying it to the user.
Definition: AST.cpp:223
std::string getDeclComment(const ASTContext &Ctx, const NamedDecl &Decl)
Similar to getDocComment, but returns the comment for a NamedDecl.
std::string printObjCContainer(const ObjCContainerDecl &C)
Print the Objective-C container name including categories, e.g. MyClass,.
Definition: AST.cpp:312
void parseDocumentationLine(llvm::StringRef Line, markup::Paragraph &Out)
Definition: Hover.cpp:1603
std::optional< llvm::StringRef > getBacktickQuoteRange(llvm::StringRef Line, unsigned Offset)
Definition: Hover.cpp:1575
llvm::SmallVector< const NamedDecl *, 1 > explicitReferenceTargets(DynTypedNode N, DeclRelationSet Mask, const HeuristicResolver *Resolver)
Find declarations explicitly referenced in the source code defined by N.
Definition: FindTarget.cpp:593
std::vector< include_cleaner::SymbolReference > collectMacroReferences(ParsedAST &AST)
include_cleaner::Includes convertIncludes(const ParsedAST &AST)
Converts the clangd include representation to include-cleaner include representation.
static const char * toString(OffsetEncoding OE)
Definition: Protocol.cpp:1595
llvm::raw_ostream & operator<<(llvm::raw_ostream &OS, const CodeCompletion &C)
std::optional< DefinedMacro > locateMacroAt(const syntax::Token &SpelledTok, Preprocessor &PP)
Gets the macro referenced by SpelledTok.
Definition: SourceCode.cpp:999
std::optional< HoverInfo > getHover(ParsedAST &AST, Position Pos, const format::FormatStyle &Style, const SymbolIndex *Index)
Get the hover information when hovering at Pos.
Definition: Hover.cpp:1279
static std::string formatOffset(uint64_t OffsetInBits)
Definition: Hover.cpp:1417
static std::string formatSize(uint64_t SizeInBits)
Definition: Hover.cpp:1409
llvm::Expected< SourceLocation > sourceLocationInMainFile(const SourceManager &SM, Position P)
Return the file location, corresponding to P.
Definition: SourceCode.cpp:462
QualType declaredType(const TypeDecl *D)
Definition: AST.cpp:438
void parseDocumentation(llvm::StringRef Input, markup::Document &Output)
Definition: Hover.cpp:1619
std::string printQualifiedName(const NamedDecl &ND)
Returns the qualified name of ND.
Definition: AST.cpp:182
@ Alias
This declaration is an alias that was referred to.
std::optional< QualType > getDeducedType(ASTContext &ASTCtx, SourceLocation Loc)
Retrieves the deduced type at a given location (auto, decltype).
Definition: AST.cpp:587
llvm::SmallVector< uint64_t, 1024 > Record
@ Invalid
Sentinel bit pattern. DO NOT USE!
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
static const Config & current()
Returns the Config of the current Context, or an empty configuration.
Definition: Config.cpp:17
bool ShowAKA
Whether hover show a.k.a type.
Definition: Config.h:153
struct clang::clangd::Config::@7 Hover
Configures hover feature.
Represents parameters of a function, a template or a macro.
Definition: Hover.h:46
std::optional< PrintedType > Type
The printable parameter type, e.g.
Definition: Hover.h:49
std::optional< std::string > Default
std::nullopt if no default is provided.
Definition: Hover.h:53
std::optional< std::string > Name
std::nullopt for unnamed parameters.
Definition: Hover.h:51
Contains pretty-printed type and desugared type.
Definition: Hover.h:29
Contains detailed information about a Symbol.
Definition: Hover.h:27
std::optional< PrintedType > ReturnType
Set for functions and lambdas.
Definition: Hover.h:87
std::optional< uint64_t > Padding
Contains the padding following a field within the enclosing class.
Definition: Hover.h:99
std::optional< uint64_t > Offset
Contains the offset of fields within the enclosing class.
Definition: Hover.h:97
std::string Provider
Header providing the symbol (best match). Contains ""<>.
Definition: Hover.h:73
std::optional< PassType > CallPassType
Definition: Hover.h:115
std::optional< std::vector< Param > > Parameters
Set for functions, lambdas and macros with parameters.
Definition: Hover.h:89
const char * DefinitionLanguage
Definition: Hover.h:79
std::string Name
Name of the symbol, does not contain any "::".
Definition: Hover.h:71
std::optional< PrintedType > Type
Printable variable type.
Definition: Hover.h:85
markup::Document present() const
Produce a user-readable information.
Definition: Hover.cpp:1426
std::optional< uint64_t > Align
Contains the alignment of fields and types where it's interesting.
Definition: Hover.h:101
index::SymbolKind Kind
Definition: Hover.h:75
std::optional< uint64_t > Size
Contains the bit-size of fields and types where it's interesting.
Definition: Hover.h:95
std::vector< std::string > UsedSymbolNames
Definition: Hover.h:119
std::optional< std::string > Value
Contains the evaluated value of the symbol if available.
Definition: Hover.h:93
std::string Definition
Source code containing the definition of the symbol.
Definition: Hover.h:78
std::optional< std::string > NamespaceScope
For a variable named Bar, declared in clang::clangd::Foo::getFoo the following fields will hold:
Definition: Hover.h:66
std::string Documentation
Definition: Hover.h:76
std::string AccessSpecifier
Access specifier for declarations inside class/struct/unions, empty for others.
Definition: Hover.h:82
std::optional< Param > CalleeArgInfo
Definition: Hover.h:104
std::string LocalScope
Remaining named contexts in symbol's qualified name, empty string means symbol is not local.
Definition: Hover.h:69
StringRef text() const
The token text.
Definition: support/Token.h:60
static URIForFile canonicalize(llvm::StringRef AbsPath, llvm::StringRef TUPath)
Canonicalizes AbsPath via URI.
Definition: Protocol.cpp:46
llvm::StringRef file() const
Retrieves absolute path to the file.
Definition: Protocol.h:104
Represents measurements of clangd events, e.g.
Definition: Trace.h:38
@ Counter
An aggregate number whose rate of change over time is meaningful.
Definition: Trace.h:46
void record(double Value, llvm::StringRef Label="") const
Records a measurement for this metric to active tracer.
Definition: Trace.cpp:329