1 //===--- CodeComplete.cpp ---------------------------------------*- 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 // AST-based completions are provided using the completion hooks in Sema. 11 // 12 // Signature help works in a similar way as code completion, but it is simpler 13 // as there are typically fewer candidates. 14 // 15 //===---------------------------------------------------------------------===// 16 17 #include "CodeComplete.h" 18 #include "CodeCompletionStrings.h" 19 #include "Compiler.h" 20 #include "FuzzyMatch.h" 21 #include "Logger.h" 22 #include "SourceCode.h" 23 #include "Trace.h" 24 #include "index/Index.h" 25 #include "clang/Format/Format.h" 26 #include "clang/Frontend/CompilerInstance.h" 27 #include "clang/Frontend/FrontendActions.h" 28 #include "clang/Index/USRGeneration.h" 29 #include "clang/Sema/CodeCompleteConsumer.h" 30 #include "clang/Sema/Sema.h" 31 #include "clang/Tooling/Core/Replacement.h" 32 #include "llvm/Support/Format.h" 33 #include <queue> 34 35 namespace clang { 36 namespace clangd { 37 namespace { 38 39 CompletionItemKind toCompletionItemKind(CXCursorKind CursorKind) { 40 switch (CursorKind) { 41 case CXCursor_MacroInstantiation: 42 case CXCursor_MacroDefinition: 43 return CompletionItemKind::Text; 44 case CXCursor_CXXMethod: 45 case CXCursor_Destructor: 46 return CompletionItemKind::Method; 47 case CXCursor_FunctionDecl: 48 case CXCursor_FunctionTemplate: 49 return CompletionItemKind::Function; 50 case CXCursor_Constructor: 51 return CompletionItemKind::Constructor; 52 case CXCursor_FieldDecl: 53 return CompletionItemKind::Field; 54 case CXCursor_VarDecl: 55 case CXCursor_ParmDecl: 56 return CompletionItemKind::Variable; 57 // FIXME(ioeric): use LSP struct instead of class when it is suppoted in the 58 // protocol. 59 case CXCursor_StructDecl: 60 case CXCursor_ClassDecl: 61 case CXCursor_UnionDecl: 62 case CXCursor_ClassTemplate: 63 case CXCursor_ClassTemplatePartialSpecialization: 64 return CompletionItemKind::Class; 65 case CXCursor_Namespace: 66 case CXCursor_NamespaceAlias: 67 case CXCursor_NamespaceRef: 68 return CompletionItemKind::Module; 69 case CXCursor_EnumConstantDecl: 70 return CompletionItemKind::Value; 71 case CXCursor_EnumDecl: 72 return CompletionItemKind::Enum; 73 // FIXME(ioeric): figure out whether reference is the right type for aliases. 74 case CXCursor_TypeAliasDecl: 75 case CXCursor_TypeAliasTemplateDecl: 76 case CXCursor_TypedefDecl: 77 case CXCursor_MemberRef: 78 case CXCursor_TypeRef: 79 return CompletionItemKind::Reference; 80 default: 81 return CompletionItemKind::Missing; 82 } 83 } 84 85 CompletionItemKind 86 toCompletionItemKind(CodeCompletionResult::ResultKind ResKind, 87 CXCursorKind CursorKind) { 88 switch (ResKind) { 89 case CodeCompletionResult::RK_Declaration: 90 return toCompletionItemKind(CursorKind); 91 case CodeCompletionResult::RK_Keyword: 92 return CompletionItemKind::Keyword; 93 case CodeCompletionResult::RK_Macro: 94 return CompletionItemKind::Text; // unfortunately, there's no 'Macro' 95 // completion items in LSP. 96 case CodeCompletionResult::RK_Pattern: 97 return CompletionItemKind::Snippet; 98 } 99 llvm_unreachable("Unhandled CodeCompletionResult::ResultKind."); 100 } 101 102 CompletionItemKind toCompletionItemKind(index::SymbolKind Kind) { 103 using SK = index::SymbolKind; 104 switch (Kind) { 105 case SK::Unknown: 106 return CompletionItemKind::Missing; 107 case SK::Module: 108 case SK::Namespace: 109 case SK::NamespaceAlias: 110 return CompletionItemKind::Module; 111 case SK::Macro: 112 return CompletionItemKind::Text; 113 case SK::Enum: 114 return CompletionItemKind::Enum; 115 // FIXME(ioeric): use LSP struct instead of class when it is suppoted in the 116 // protocol. 117 case SK::Struct: 118 case SK::Class: 119 case SK::Protocol: 120 case SK::Extension: 121 case SK::Union: 122 return CompletionItemKind::Class; 123 // FIXME(ioeric): figure out whether reference is the right type for aliases. 124 case SK::TypeAlias: 125 case SK::Using: 126 return CompletionItemKind::Reference; 127 case SK::Function: 128 // FIXME(ioeric): this should probably be an operator. This should be fixed 129 // when `Operator` is support type in the protocol. 130 case SK::ConversionFunction: 131 return CompletionItemKind::Function; 132 case SK::Variable: 133 case SK::Parameter: 134 return CompletionItemKind::Variable; 135 case SK::Field: 136 return CompletionItemKind::Field; 137 // FIXME(ioeric): use LSP enum constant when it is supported in the protocol. 138 case SK::EnumConstant: 139 return CompletionItemKind::Value; 140 case SK::InstanceMethod: 141 case SK::ClassMethod: 142 case SK::StaticMethod: 143 case SK::Destructor: 144 return CompletionItemKind::Method; 145 case SK::InstanceProperty: 146 case SK::ClassProperty: 147 case SK::StaticProperty: 148 return CompletionItemKind::Property; 149 case SK::Constructor: 150 return CompletionItemKind::Constructor; 151 } 152 llvm_unreachable("Unhandled clang::index::SymbolKind."); 153 } 154 155 /// Get the optional chunk as a string. This function is possibly recursive. 156 /// 157 /// The parameter info for each parameter is appended to the Parameters. 158 std::string 159 getOptionalParameters(const CodeCompletionString &CCS, 160 std::vector<ParameterInformation> &Parameters) { 161 std::string Result; 162 for (const auto &Chunk : CCS) { 163 switch (Chunk.Kind) { 164 case CodeCompletionString::CK_Optional: 165 assert(Chunk.Optional && 166 "Expected the optional code completion string to be non-null."); 167 Result += getOptionalParameters(*Chunk.Optional, Parameters); 168 break; 169 case CodeCompletionString::CK_VerticalSpace: 170 break; 171 case CodeCompletionString::CK_Placeholder: 172 // A string that acts as a placeholder for, e.g., a function call 173 // argument. 174 // Intentional fallthrough here. 175 case CodeCompletionString::CK_CurrentParameter: { 176 // A piece of text that describes the parameter that corresponds to 177 // the code-completion location within a function call, message send, 178 // macro invocation, etc. 179 Result += Chunk.Text; 180 ParameterInformation Info; 181 Info.label = Chunk.Text; 182 Parameters.push_back(std::move(Info)); 183 break; 184 } 185 default: 186 Result += Chunk.Text; 187 break; 188 } 189 } 190 return Result; 191 } 192 193 // Produces an integer that sorts in the same order as F. 194 // That is: a < b <==> encodeFloat(a) < encodeFloat(b). 195 uint32_t encodeFloat(float F) { 196 static_assert(std::numeric_limits<float>::is_iec559, ""); 197 static_assert(sizeof(float) == sizeof(uint32_t), ""); 198 constexpr uint32_t TopBit = ~(~uint32_t{0} >> 1); 199 200 // Get the bits of the float. Endianness is the same as for integers. 201 uint32_t U; 202 memcpy(&U, &F, sizeof(float)); 203 // IEEE 754 floats compare like sign-magnitude integers. 204 if (U & TopBit) // Negative float. 205 return 0 - U; // Map onto the low half of integers, order reversed. 206 return U + TopBit; // Positive floats map onto the high half of integers. 207 } 208 209 // Returns a string that sorts in the same order as (-Score, Name), for LSP. 210 std::string sortText(float Score, llvm::StringRef Name) { 211 // We convert -Score to an integer, and hex-encode for readability. 212 // Example: [0.5, "foo"] -> "41000000foo" 213 std::string S; 214 llvm::raw_string_ostream OS(S); 215 write_hex(OS, encodeFloat(-Score), llvm::HexPrintStyle::Lower, 216 /*Width=*/2 * sizeof(Score)); 217 OS << Name; 218 OS.flush(); 219 return S; 220 } 221 222 /// A code completion result, in clang-native form. 223 /// It may be promoted to a CompletionItem if it's among the top-ranked results. 224 struct CompletionCandidate { 225 llvm::StringRef Name; // Used for filtering and sorting. 226 // We may have a result from Sema, from the index, or both. 227 const CodeCompletionResult *SemaResult = nullptr; 228 const Symbol *IndexResult = nullptr; 229 230 // Computes the "symbol quality" score for this completion. Higher is better. 231 float score() const { 232 // For now we just use the Sema priority, mapping it onto a 0-1 interval. 233 if (!SemaResult) // FIXME(sammccall): better scoring for index results. 234 return 0.3f; // fixed mediocre score for index-only results. 235 236 // Priority 80 is a really bad score. 237 float Score = 1 - std::min<float>(80, SemaResult->Priority) / 80; 238 239 switch (static_cast<CXAvailabilityKind>(SemaResult->Availability)) { 240 case CXAvailability_Available: 241 // No penalty. 242 break; 243 case CXAvailability_Deprecated: 244 Score *= 0.1f; 245 break; 246 case CXAvailability_NotAccessible: 247 case CXAvailability_NotAvailable: 248 Score = 0; 249 break; 250 } 251 return Score; 252 } 253 254 // Builds an LSP completion item. 255 CompletionItem build(llvm::StringRef FileName, 256 const CompletionItemScores &Scores, 257 const CodeCompleteOptions &Opts, 258 CodeCompletionString *SemaCCS) const { 259 assert(bool(SemaResult) == bool(SemaCCS)); 260 CompletionItem I; 261 if (SemaResult) { 262 I.kind = toCompletionItemKind(SemaResult->Kind, SemaResult->CursorKind); 263 getLabelAndInsertText(*SemaCCS, &I.label, &I.insertText, 264 Opts.EnableSnippets); 265 I.filterText = getFilterText(*SemaCCS); 266 I.documentation = getDocumentation(*SemaCCS); 267 I.detail = getDetail(*SemaCCS); 268 } 269 if (IndexResult) { 270 if (I.kind == CompletionItemKind::Missing) 271 I.kind = toCompletionItemKind(IndexResult->SymInfo.Kind); 272 // FIXME: reintroduce a way to show the index source for debugging. 273 if (I.label.empty()) 274 I.label = IndexResult->CompletionLabel; 275 if (I.filterText.empty()) 276 I.filterText = IndexResult->Name; 277 278 // FIXME(ioeric): support inserting/replacing scope qualifiers. 279 if (I.insertText.empty()) 280 I.insertText = Opts.EnableSnippets 281 ? IndexResult->CompletionSnippetInsertText 282 : IndexResult->CompletionPlainInsertText; 283 284 if (auto *D = IndexResult->Detail) { 285 if (I.documentation.empty()) 286 I.documentation = D->Documentation; 287 if (I.detail.empty()) 288 I.detail = D->CompletionDetail; 289 // FIXME: delay creating include insertion command to 290 // "completionItem/resolve", when it is supported 291 if (!D->IncludeHeader.empty()) { 292 // LSP favors additionalTextEdits over command. But we are still using 293 // command here because it would be expensive to calculate #include 294 // insertion edits for all candidates, and the include insertion edit 295 // is unlikely to conflict with the code completion edits. 296 Command Cmd; 297 // Command title is not added since this is not a user-facing command. 298 Cmd.command = ExecuteCommandParams::CLANGD_INSERT_HEADER_INCLUDE; 299 IncludeInsertion Insertion; 300 // Fallback to canonical header if declaration location is invalid. 301 Insertion.declaringHeader = 302 IndexResult->CanonicalDeclaration.FileURI.empty() 303 ? D->IncludeHeader 304 : IndexResult->CanonicalDeclaration.FileURI; 305 Insertion.preferredHeader = D->IncludeHeader; 306 Insertion.textDocument.uri = URIForFile(FileName); 307 Cmd.includeInsertion = std::move(Insertion); 308 I.command = std::move(Cmd); 309 } 310 } 311 } 312 I.scoreInfo = Scores; 313 I.sortText = sortText(Scores.finalScore, Name); 314 I.insertTextFormat = Opts.EnableSnippets ? InsertTextFormat::Snippet 315 : InsertTextFormat::PlainText; 316 return I; 317 } 318 }; 319 320 // Determine the symbol ID for a Sema code completion result, if possible. 321 llvm::Optional<SymbolID> getSymbolID(const CodeCompletionResult &R) { 322 switch (R.Kind) { 323 case CodeCompletionResult::RK_Declaration: 324 case CodeCompletionResult::RK_Pattern: { 325 llvm::SmallString<128> USR; 326 if (/*Ignore=*/clang::index::generateUSRForDecl(R.Declaration, USR)) 327 return None; 328 return SymbolID(USR); 329 } 330 case CodeCompletionResult::RK_Macro: 331 // FIXME: Macros do have USRs, but the CCR doesn't contain enough info. 332 case CodeCompletionResult::RK_Keyword: 333 return None; 334 } 335 llvm_unreachable("unknown CodeCompletionResult kind"); 336 } 337 338 // Scopes of the paritial identifier we're trying to complete. 339 // It is used when we query the index for more completion results. 340 struct SpecifiedScope { 341 // The scopes we should look in, determined by Sema. 342 // 343 // If the qualifier was fully resolved, we look for completions in these 344 // scopes; if there is an unresolved part of the qualifier, it should be 345 // resolved within these scopes. 346 // 347 // Examples of qualified completion: 348 // 349 // "::vec" => {""} 350 // "using namespace std; ::vec^" => {"", "std::"} 351 // "namespace ns {using namespace std;} ns::^" => {"ns::", "std::"} 352 // "std::vec^" => {""} // "std" unresolved 353 // 354 // Examples of unqualified completion: 355 // 356 // "vec^" => {""} 357 // "using namespace std; vec^" => {"", "std::"} 358 // "using namespace std; namespace ns { vec^ }" => {"ns::", "std::", ""} 359 // 360 // "" for global namespace, "ns::" for normal namespace. 361 std::vector<std::string> AccessibleScopes; 362 // The full scope qualifier as typed by the user (without the leading "::"). 363 // Set if the qualifier is not fully resolved by Sema. 364 llvm::Optional<std::string> UnresolvedQualifier; 365 366 // Construct scopes being queried in indexes. 367 // This method format the scopes to match the index request representation. 368 std::vector<std::string> scopesForIndexQuery() { 369 std::vector<std::string> Results; 370 for (llvm::StringRef AS : AccessibleScopes) { 371 Results.push_back(AS); 372 if (UnresolvedQualifier) 373 Results.back() += *UnresolvedQualifier; 374 } 375 return Results; 376 } 377 }; 378 379 // Get all scopes that will be queried in indexes. 380 std::vector<std::string> getQueryScopes(CodeCompletionContext &CCContext, 381 const SourceManager& SM) { 382 auto GetAllAccessibleScopes = [](CodeCompletionContext& CCContext) { 383 SpecifiedScope Info; 384 for (auto* Context : CCContext.getVisitedContexts()) { 385 if (isa<TranslationUnitDecl>(Context)) 386 Info.AccessibleScopes.push_back(""); // global namespace 387 else if (const auto*NS = dyn_cast<NamespaceDecl>(Context)) 388 Info.AccessibleScopes.push_back(NS->getQualifiedNameAsString() + "::"); 389 } 390 return Info; 391 }; 392 393 auto SS = CCContext.getCXXScopeSpecifier(); 394 395 // Unqualified completion (e.g. "vec^"). 396 if (!SS) { 397 // FIXME: Once we can insert namespace qualifiers and use the in-scope 398 // namespaces for scoring, search in all namespaces. 399 // FIXME: Capture scopes and use for scoring, for example, 400 // "using namespace std; namespace foo {v^}" => 401 // foo::value > std::vector > boost::variant 402 return GetAllAccessibleScopes(CCContext).scopesForIndexQuery(); 403 } 404 405 // Qualified completion ("std::vec^"), we have two cases depending on whether 406 // the qualifier can be resolved by Sema. 407 if ((*SS)->isValid()) { // Resolved qualifier. 408 return GetAllAccessibleScopes(CCContext).scopesForIndexQuery(); 409 } 410 411 // Unresolved qualifier. 412 // FIXME: When Sema can resolve part of a scope chain (e.g. 413 // "known::unknown::id"), we should expand the known part ("known::") rather 414 // than treating the whole thing as unknown. 415 SpecifiedScope Info; 416 Info.AccessibleScopes.push_back(""); // global namespace 417 418 Info.UnresolvedQualifier = 419 Lexer::getSourceText(CharSourceRange::getCharRange((*SS)->getRange()), 420 SM, clang::LangOptions()).ltrim("::"); 421 // Sema excludes the trailing "::". 422 if (!Info.UnresolvedQualifier->empty()) 423 *Info.UnresolvedQualifier += "::"; 424 425 return Info.scopesForIndexQuery(); 426 } 427 428 // The CompletionRecorder captures Sema code-complete output, including context. 429 // It filters out ignored results (but doesn't apply fuzzy-filtering yet). 430 // It doesn't do scoring or conversion to CompletionItem yet, as we want to 431 // merge with index results first. 432 // Generally the fields and methods of this object should only be used from 433 // within the callback. 434 struct CompletionRecorder : public CodeCompleteConsumer { 435 CompletionRecorder(const CodeCompleteOptions &Opts, 436 UniqueFunction<void()> ResultsCallback) 437 : CodeCompleteConsumer(Opts.getClangCompleteOpts(), 438 /*OutputIsBinary=*/false), 439 CCContext(CodeCompletionContext::CCC_Other), Opts(Opts), 440 CCAllocator(std::make_shared<GlobalCodeCompletionAllocator>()), 441 CCTUInfo(CCAllocator), ResultsCallback(std::move(ResultsCallback)) { 442 assert(this->ResultsCallback); 443 } 444 445 std::vector<CodeCompletionResult> Results; 446 CodeCompletionContext CCContext; 447 Sema *CCSema = nullptr; // Sema that created the results. 448 // FIXME: Sema is scary. Can we store ASTContext and Preprocessor, instead? 449 450 void ProcessCodeCompleteResults(class Sema &S, CodeCompletionContext Context, 451 CodeCompletionResult *InResults, 452 unsigned NumResults) override final { 453 // Record the completion context. 454 assert(!CCSema && "ProcessCodeCompleteResults called multiple times!"); 455 CCSema = &S; 456 CCContext = Context; 457 458 // Retain the results we might want. 459 for (unsigned I = 0; I < NumResults; ++I) { 460 auto &Result = InResults[I]; 461 // Drop hidden items which cannot be found by lookup after completion. 462 // Exception: some items can be named by using a qualifier. 463 if (Result.Hidden && (!Result.Qualifier || Result.QualifierIsInformative)) 464 continue; 465 if (!Opts.IncludeIneligibleResults && 466 (Result.Availability == CXAvailability_NotAvailable || 467 Result.Availability == CXAvailability_NotAccessible)) 468 continue; 469 // Destructor completion is rarely useful, and works inconsistently. 470 // (s.^ completes ~string, but s.~st^ is an error). 471 if (dyn_cast_or_null<CXXDestructorDecl>(Result.Declaration)) 472 continue; 473 // We choose to never append '::' to completion results in clangd. 474 Result.StartsNestedNameSpecifier = false; 475 Results.push_back(Result); 476 } 477 ResultsCallback(); 478 } 479 480 CodeCompletionAllocator &getAllocator() override { return *CCAllocator; } 481 CodeCompletionTUInfo &getCodeCompletionTUInfo() override { return CCTUInfo; } 482 483 // Returns the filtering/sorting name for Result, which must be from Results. 484 // Returned string is owned by this recorder (or the AST). 485 llvm::StringRef getName(const CodeCompletionResult &Result) { 486 switch (Result.Kind) { 487 case CodeCompletionResult::RK_Declaration: 488 if (auto *ID = Result.Declaration->getIdentifier()) 489 return ID->getName(); 490 break; 491 case CodeCompletionResult::RK_Keyword: 492 return Result.Keyword; 493 case CodeCompletionResult::RK_Macro: 494 return Result.Macro->getName(); 495 case CodeCompletionResult::RK_Pattern: 496 return Result.Pattern->getTypedText(); 497 } 498 auto *CCS = codeCompletionString(Result, /*IncludeBriefComments=*/false); 499 return CCS->getTypedText(); 500 } 501 502 // Build a CodeCompletion string for R, which must be from Results. 503 // The CCS will be owned by this recorder. 504 CodeCompletionString *codeCompletionString(const CodeCompletionResult &R, 505 bool IncludeBriefComments) { 506 // CodeCompletionResult doesn't seem to be const-correct. We own it, anyway. 507 return const_cast<CodeCompletionResult &>(R).CreateCodeCompletionString( 508 *CCSema, CCContext, *CCAllocator, CCTUInfo, IncludeBriefComments); 509 } 510 511 private: 512 CodeCompleteOptions Opts; 513 std::shared_ptr<GlobalCodeCompletionAllocator> CCAllocator; 514 CodeCompletionTUInfo CCTUInfo; 515 UniqueFunction<void()> ResultsCallback; 516 }; 517 518 // Tracks a bounded number of candidates with the best scores. 519 class TopN { 520 public: 521 using value_type = std::pair<CompletionCandidate, CompletionItemScores>; 522 static constexpr size_t Unbounded = std::numeric_limits<size_t>::max(); 523 524 TopN(size_t N) : N(N) {} 525 526 // Adds a candidate to the set. 527 // Returns true if a candidate was dropped to get back under N. 528 bool push(value_type &&V) { 529 bool Dropped = false; 530 if (Heap.size() >= N) { 531 Dropped = true; 532 if (N > 0 && greater(V, Heap.front())) { 533 std::pop_heap(Heap.begin(), Heap.end(), greater); 534 Heap.back() = std::move(V); 535 std::push_heap(Heap.begin(), Heap.end(), greater); 536 } 537 } else { 538 Heap.push_back(std::move(V)); 539 std::push_heap(Heap.begin(), Heap.end(), greater); 540 } 541 assert(Heap.size() <= N); 542 assert(std::is_heap(Heap.begin(), Heap.end(), greater)); 543 return Dropped; 544 } 545 546 // Returns candidates from best to worst. 547 std::vector<value_type> items() && { 548 std::sort_heap(Heap.begin(), Heap.end(), greater); 549 assert(Heap.size() <= N); 550 return std::move(Heap); 551 } 552 553 private: 554 static bool greater(const value_type &L, const value_type &R) { 555 if (L.second.finalScore != R.second.finalScore) 556 return L.second.finalScore > R.second.finalScore; 557 return L.first.Name < R.first.Name; // Earlier name is better. 558 } 559 560 const size_t N; 561 std::vector<value_type> Heap; // Min-heap, comparator is greater(). 562 }; 563 564 class SignatureHelpCollector final : public CodeCompleteConsumer { 565 566 public: 567 SignatureHelpCollector(const clang::CodeCompleteOptions &CodeCompleteOpts, 568 SignatureHelp &SigHelp) 569 : CodeCompleteConsumer(CodeCompleteOpts, /*OutputIsBinary=*/false), 570 SigHelp(SigHelp), 571 Allocator(std::make_shared<clang::GlobalCodeCompletionAllocator>()), 572 CCTUInfo(Allocator) {} 573 574 void ProcessOverloadCandidates(Sema &S, unsigned CurrentArg, 575 OverloadCandidate *Candidates, 576 unsigned NumCandidates) override { 577 SigHelp.signatures.reserve(NumCandidates); 578 // FIXME(rwols): How can we determine the "active overload candidate"? 579 // Right now the overloaded candidates seem to be provided in a "best fit" 580 // order, so I'm not too worried about this. 581 SigHelp.activeSignature = 0; 582 assert(CurrentArg <= (unsigned)std::numeric_limits<int>::max() && 583 "too many arguments"); 584 SigHelp.activeParameter = static_cast<int>(CurrentArg); 585 for (unsigned I = 0; I < NumCandidates; ++I) { 586 const auto &Candidate = Candidates[I]; 587 const auto *CCS = Candidate.CreateSignatureString( 588 CurrentArg, S, *Allocator, CCTUInfo, true); 589 assert(CCS && "Expected the CodeCompletionString to be non-null"); 590 SigHelp.signatures.push_back(ProcessOverloadCandidate(Candidate, *CCS)); 591 } 592 } 593 594 GlobalCodeCompletionAllocator &getAllocator() override { return *Allocator; } 595 596 CodeCompletionTUInfo &getCodeCompletionTUInfo() override { return CCTUInfo; } 597 598 private: 599 // FIXME(ioeric): consider moving CodeCompletionString logic here to 600 // CompletionString.h. 601 SignatureInformation 602 ProcessOverloadCandidate(const OverloadCandidate &Candidate, 603 const CodeCompletionString &CCS) const { 604 SignatureInformation Result; 605 const char *ReturnType = nullptr; 606 607 Result.documentation = getDocumentation(CCS); 608 609 for (const auto &Chunk : CCS) { 610 switch (Chunk.Kind) { 611 case CodeCompletionString::CK_ResultType: 612 // A piece of text that describes the type of an entity or, 613 // for functions and methods, the return type. 614 assert(!ReturnType && "Unexpected CK_ResultType"); 615 ReturnType = Chunk.Text; 616 break; 617 case CodeCompletionString::CK_Placeholder: 618 // A string that acts as a placeholder for, e.g., a function call 619 // argument. 620 // Intentional fallthrough here. 621 case CodeCompletionString::CK_CurrentParameter: { 622 // A piece of text that describes the parameter that corresponds to 623 // the code-completion location within a function call, message send, 624 // macro invocation, etc. 625 Result.label += Chunk.Text; 626 ParameterInformation Info; 627 Info.label = Chunk.Text; 628 Result.parameters.push_back(std::move(Info)); 629 break; 630 } 631 case CodeCompletionString::CK_Optional: { 632 // The rest of the parameters are defaulted/optional. 633 assert(Chunk.Optional && 634 "Expected the optional code completion string to be non-null."); 635 Result.label += 636 getOptionalParameters(*Chunk.Optional, Result.parameters); 637 break; 638 } 639 case CodeCompletionString::CK_VerticalSpace: 640 break; 641 default: 642 Result.label += Chunk.Text; 643 break; 644 } 645 } 646 if (ReturnType) { 647 Result.label += " -> "; 648 Result.label += ReturnType; 649 } 650 return Result; 651 } 652 653 SignatureHelp &SigHelp; 654 std::shared_ptr<clang::GlobalCodeCompletionAllocator> Allocator; 655 CodeCompletionTUInfo CCTUInfo; 656 657 }; // SignatureHelpCollector 658 659 struct SemaCompleteInput { 660 PathRef FileName; 661 const tooling::CompileCommand &Command; 662 PrecompiledPreamble const *Preamble; 663 StringRef Contents; 664 Position Pos; 665 IntrusiveRefCntPtr<vfs::FileSystem> VFS; 666 std::shared_ptr<PCHContainerOperations> PCHs; 667 }; 668 669 // Invokes Sema code completion on a file. 670 bool semaCodeComplete(std::unique_ptr<CodeCompleteConsumer> Consumer, 671 const clang::CodeCompleteOptions &Options, 672 const SemaCompleteInput &Input) { 673 trace::Span Tracer("Sema completion"); 674 std::vector<const char *> ArgStrs; 675 for (const auto &S : Input.Command.CommandLine) 676 ArgStrs.push_back(S.c_str()); 677 678 if (Input.VFS->setCurrentWorkingDirectory(Input.Command.Directory)) { 679 log("Couldn't set working directory"); 680 // We run parsing anyway, our lit-tests rely on results for non-existing 681 // working dirs. 682 } 683 684 IgnoreDiagnostics DummyDiagsConsumer; 685 auto CI = createInvocationFromCommandLine( 686 ArgStrs, 687 CompilerInstance::createDiagnostics(new DiagnosticOptions, 688 &DummyDiagsConsumer, false), 689 Input.VFS); 690 if (!CI) { 691 log("Couldn't create CompilerInvocation");; 692 return false; 693 } 694 CI->getFrontendOpts().DisableFree = false; 695 696 std::unique_ptr<llvm::MemoryBuffer> ContentsBuffer = 697 llvm::MemoryBuffer::getMemBufferCopy(Input.Contents, Input.FileName); 698 699 // We reuse the preamble whether it's valid or not. This is a 700 // correctness/performance tradeoff: building without a preamble is slow, and 701 // completion is latency-sensitive. 702 if (Input.Preamble) { 703 auto Bounds = 704 ComputePreambleBounds(*CI->getLangOpts(), ContentsBuffer.get(), 0); 705 // FIXME(ibiryukov): Remove this call to CanReuse() after we'll fix 706 // clients relying on getting stats for preamble files during code 707 // completion. 708 // Note that results of CanReuse() are ignored, see the comment above. 709 Input.Preamble->CanReuse(*CI, ContentsBuffer.get(), Bounds, 710 Input.VFS.get()); 711 } 712 // The diagnostic options must be set before creating a CompilerInstance. 713 CI->getDiagnosticOpts().IgnoreWarnings = true; 714 auto Clang = prepareCompilerInstance( 715 std::move(CI), Input.Preamble, std::move(ContentsBuffer), 716 std::move(Input.PCHs), std::move(Input.VFS), DummyDiagsConsumer); 717 718 // Disable typo correction in Sema. 719 Clang->getLangOpts().SpellChecking = false; 720 721 auto &FrontendOpts = Clang->getFrontendOpts(); 722 FrontendOpts.SkipFunctionBodies = true; 723 FrontendOpts.CodeCompleteOpts = Options; 724 FrontendOpts.CodeCompletionAt.FileName = Input.FileName; 725 FrontendOpts.CodeCompletionAt.Line = Input.Pos.line + 1; 726 FrontendOpts.CodeCompletionAt.Column = Input.Pos.character + 1; 727 728 Clang->setCodeCompletionConsumer(Consumer.release()); 729 730 SyntaxOnlyAction Action; 731 if (!Action.BeginSourceFile(*Clang, Clang->getFrontendOpts().Inputs[0])) { 732 log("BeginSourceFile() failed when running codeComplete for " + 733 Input.FileName); 734 return false; 735 } 736 if (!Action.Execute()) { 737 log("Execute() failed when running codeComplete for " + Input.FileName); 738 return false; 739 } 740 Action.EndSourceFile(); 741 742 return true; 743 } 744 745 // Should we perform index-based completion in this context? 746 // FIXME: consider allowing completion, but restricting the result types. 747 bool allowIndex(enum CodeCompletionContext::Kind K) { 748 switch (K) { 749 case CodeCompletionContext::CCC_TopLevel: 750 case CodeCompletionContext::CCC_ObjCInterface: 751 case CodeCompletionContext::CCC_ObjCImplementation: 752 case CodeCompletionContext::CCC_ObjCIvarList: 753 case CodeCompletionContext::CCC_ClassStructUnion: 754 case CodeCompletionContext::CCC_Statement: 755 case CodeCompletionContext::CCC_Expression: 756 case CodeCompletionContext::CCC_ObjCMessageReceiver: 757 case CodeCompletionContext::CCC_EnumTag: 758 case CodeCompletionContext::CCC_UnionTag: 759 case CodeCompletionContext::CCC_ClassOrStructTag: 760 case CodeCompletionContext::CCC_ObjCProtocolName: 761 case CodeCompletionContext::CCC_Namespace: 762 case CodeCompletionContext::CCC_Type: 763 case CodeCompletionContext::CCC_Name: // FIXME: why does ns::^ give this? 764 case CodeCompletionContext::CCC_PotentiallyQualifiedName: 765 case CodeCompletionContext::CCC_ParenthesizedExpression: 766 case CodeCompletionContext::CCC_ObjCInterfaceName: 767 case CodeCompletionContext::CCC_ObjCCategoryName: 768 return true; 769 case CodeCompletionContext::CCC_Other: // Be conservative. 770 case CodeCompletionContext::CCC_OtherWithMacros: 771 case CodeCompletionContext::CCC_DotMemberAccess: 772 case CodeCompletionContext::CCC_ArrowMemberAccess: 773 case CodeCompletionContext::CCC_ObjCPropertyAccess: 774 case CodeCompletionContext::CCC_MacroName: 775 case CodeCompletionContext::CCC_MacroNameUse: 776 case CodeCompletionContext::CCC_PreprocessorExpression: 777 case CodeCompletionContext::CCC_PreprocessorDirective: 778 case CodeCompletionContext::CCC_NaturalLanguage: 779 case CodeCompletionContext::CCC_SelectorName: 780 case CodeCompletionContext::CCC_TypeQualifiers: 781 case CodeCompletionContext::CCC_ObjCInstanceMessage: 782 case CodeCompletionContext::CCC_ObjCClassMessage: 783 case CodeCompletionContext::CCC_Recovery: 784 return false; 785 } 786 llvm_unreachable("unknown code completion context"); 787 } 788 789 } // namespace 790 791 clang::CodeCompleteOptions CodeCompleteOptions::getClangCompleteOpts() const { 792 clang::CodeCompleteOptions Result; 793 Result.IncludeCodePatterns = EnableSnippets && IncludeCodePatterns; 794 Result.IncludeMacros = IncludeMacros; 795 Result.IncludeGlobals = true; 796 Result.IncludeBriefComments = IncludeBriefComments; 797 798 // When an is used, Sema is responsible for completing the main file, 799 // the index can provide results from the preamble. 800 // Tell Sema not to deserialize the preamble to look for results. 801 Result.LoadExternal = !Index; 802 803 return Result; 804 } 805 806 // Runs Sema-based (AST) and Index-based completion, returns merged results. 807 // 808 // There are a few tricky considerations: 809 // - the AST provides information needed for the index query (e.g. which 810 // namespaces to search in). So Sema must start first. 811 // - we only want to return the top results (Opts.Limit). 812 // Building CompletionItems for everything else is wasteful, so we want to 813 // preserve the "native" format until we're done with scoring. 814 // - the data underlying Sema completion items is owned by the AST and various 815 // other arenas, which must stay alive for us to build CompletionItems. 816 // - we may get duplicate results from Sema and the Index, we need to merge. 817 // 818 // So we start Sema completion first, and do all our work in its callback. 819 // We use the Sema context information to query the index. 820 // Then we merge the two result sets, producing items that are Sema/Index/Both. 821 // These items are scored, and the top N are synthesized into the LSP response. 822 // Finally, we can clean up the data structures created by Sema completion. 823 // 824 // Main collaborators are: 825 // - semaCodeComplete sets up the compiler machinery to run code completion. 826 // - CompletionRecorder captures Sema completion results, including context. 827 // - SymbolIndex (Opts.Index) provides index completion results as Symbols 828 // - CompletionCandidates are the result of merging Sema and Index results. 829 // Each candidate points to an underlying CodeCompletionResult (Sema), a 830 // Symbol (Index), or both. It computes the result quality score. 831 // CompletionCandidate also does conversion to CompletionItem (at the end). 832 // - FuzzyMatcher scores how the candidate matches the partial identifier. 833 // This score is combined with the result quality score for the final score. 834 // - TopN determines the results with the best score. 835 class CodeCompleteFlow { 836 PathRef FileName; 837 const CodeCompleteOptions &Opts; 838 // Sema takes ownership of Recorder. Recorder is valid until Sema cleanup. 839 CompletionRecorder *Recorder = nullptr; 840 int NSema = 0, NIndex = 0, NBoth = 0; // Counters for logging. 841 bool Incomplete = false; // Would more be available with a higher limit? 842 llvm::Optional<FuzzyMatcher> Filter; // Initialized once Sema runs. 843 844 public: 845 // A CodeCompleteFlow object is only useful for calling run() exactly once. 846 CodeCompleteFlow(PathRef FileName, const CodeCompleteOptions &Opts) 847 : FileName(FileName), Opts(Opts) {} 848 849 CompletionList run(const SemaCompleteInput &SemaCCInput) && { 850 trace::Span Tracer("CodeCompleteFlow"); 851 // We run Sema code completion first. It builds an AST and calculates: 852 // - completion results based on the AST. 853 // - partial identifier and context. We need these for the index query. 854 CompletionList Output; 855 auto RecorderOwner = llvm::make_unique<CompletionRecorder>(Opts, [&]() { 856 assert(Recorder && "Recorder is not set"); 857 Output = runWithSema(); 858 SPAN_ATTACH(Tracer, "sema_completion_kind", 859 getCompletionKindString(Recorder->CCContext.getKind())); 860 }); 861 862 Recorder = RecorderOwner.get(); 863 semaCodeComplete(std::move(RecorderOwner), Opts.getClangCompleteOpts(), 864 SemaCCInput); 865 866 SPAN_ATTACH(Tracer, "sema_results", NSema); 867 SPAN_ATTACH(Tracer, "index_results", NIndex); 868 SPAN_ATTACH(Tracer, "merged_results", NBoth); 869 SPAN_ATTACH(Tracer, "returned_results", Output.items.size()); 870 SPAN_ATTACH(Tracer, "incomplete", Output.isIncomplete); 871 log(llvm::formatv("Code complete: {0} results from Sema, {1} from Index, " 872 "{2} matched, {3} returned{4}.", 873 NSema, NIndex, NBoth, Output.items.size(), 874 Output.isIncomplete ? " (incomplete)" : "")); 875 assert(!Opts.Limit || Output.items.size() <= Opts.Limit); 876 // We don't assert that isIncomplete means we hit a limit. 877 // Indexes may choose to impose their own limits even if we don't have one. 878 return Output; 879 } 880 881 private: 882 // This is called by run() once Sema code completion is done, but before the 883 // Sema data structures are torn down. It does all the real work. 884 CompletionList runWithSema() { 885 Filter = FuzzyMatcher( 886 Recorder->CCSema->getPreprocessor().getCodeCompletionFilter()); 887 // Sema provides the needed context to query the index. 888 // FIXME: in addition to querying for extra/overlapping symbols, we should 889 // explicitly request symbols corresponding to Sema results. 890 // We can use their signals even if the index can't suggest them. 891 // We must copy index results to preserve them, but there are at most Limit. 892 auto IndexResults = queryIndex(); 893 // Merge Sema and Index results, score them, and pick the winners. 894 auto Top = mergeResults(Recorder->Results, IndexResults); 895 // Convert the results to the desired LSP structs. 896 CompletionList Output; 897 for (auto &C : Top) 898 Output.items.push_back(toCompletionItem(C.first, C.second)); 899 Output.isIncomplete = Incomplete; 900 return Output; 901 } 902 903 SymbolSlab queryIndex() { 904 if (!Opts.Index || !allowIndex(Recorder->CCContext.getKind())) 905 return SymbolSlab(); 906 trace::Span Tracer("Query index"); 907 SPAN_ATTACH(Tracer, "limit", Opts.Limit); 908 909 SymbolSlab::Builder ResultsBuilder; 910 // Build the query. 911 FuzzyFindRequest Req; 912 if (Opts.Limit) 913 Req.MaxCandidateCount = Opts.Limit; 914 Req.Query = Filter->pattern(); 915 Req.Scopes = getQueryScopes(Recorder->CCContext, 916 Recorder->CCSema->getSourceManager()); 917 log(llvm::formatv("Code complete: fuzzyFind(\"{0}\", scopes=[{1}])", 918 Req.Query, 919 llvm::join(Req.Scopes.begin(), Req.Scopes.end(), ","))); 920 // Run the query against the index. 921 if (Opts.Index->fuzzyFind( 922 Req, [&](const Symbol &Sym) { ResultsBuilder.insert(Sym); })) 923 Incomplete = true; 924 return std::move(ResultsBuilder).build(); 925 } 926 927 // Merges the Sema and Index results where possible, scores them, and 928 // returns the top results from best to worst. 929 std::vector<std::pair<CompletionCandidate, CompletionItemScores>> 930 mergeResults(const std::vector<CodeCompletionResult> &SemaResults, 931 const SymbolSlab &IndexResults) { 932 trace::Span Tracer("Merge and score results"); 933 // We only keep the best N results at any time, in "native" format. 934 TopN Top(Opts.Limit == 0 ? TopN::Unbounded : Opts.Limit); 935 llvm::DenseSet<const Symbol *> UsedIndexResults; 936 auto CorrespondingIndexResult = 937 [&](const CodeCompletionResult &SemaResult) -> const Symbol * { 938 if (auto SymID = getSymbolID(SemaResult)) { 939 auto I = IndexResults.find(*SymID); 940 if (I != IndexResults.end()) { 941 UsedIndexResults.insert(&*I); 942 return &*I; 943 } 944 } 945 return nullptr; 946 }; 947 // Emit all Sema results, merging them with Index results if possible. 948 for (auto &SemaResult : Recorder->Results) 949 addCandidate(Top, &SemaResult, CorrespondingIndexResult(SemaResult)); 950 // Now emit any Index-only results. 951 for (const auto &IndexResult : IndexResults) { 952 if (UsedIndexResults.count(&IndexResult)) 953 continue; 954 addCandidate(Top, /*SemaResult=*/nullptr, &IndexResult); 955 } 956 return std::move(Top).items(); 957 } 958 959 // Scores a candidate and adds it to the TopN structure. 960 void addCandidate(TopN &Candidates, const CodeCompletionResult *SemaResult, 961 const Symbol *IndexResult) { 962 CompletionCandidate C; 963 C.SemaResult = SemaResult; 964 C.IndexResult = IndexResult; 965 C.Name = IndexResult ? IndexResult->Name : Recorder->getName(*SemaResult); 966 967 CompletionItemScores Scores; 968 if (auto FuzzyScore = Filter->match(C.Name)) 969 Scores.filterScore = *FuzzyScore; 970 else 971 return; 972 Scores.symbolScore = C.score(); 973 // We score candidates by multiplying symbolScore ("quality" of the result) 974 // with filterScore (how well it matched the query). 975 // This is sensitive to the distribution of both component scores! 976 Scores.finalScore = Scores.filterScore * Scores.symbolScore; 977 978 NSema += bool(SemaResult); 979 NIndex += bool(IndexResult); 980 NBoth += SemaResult && IndexResult; 981 if (Candidates.push({C, Scores})) 982 Incomplete = true; 983 } 984 985 CompletionItem toCompletionItem(const CompletionCandidate &Candidate, 986 const CompletionItemScores &Scores) { 987 CodeCompletionString *SemaCCS = nullptr; 988 if (auto *SR = Candidate.SemaResult) 989 SemaCCS = Recorder->codeCompletionString(*SR, Opts.IncludeBriefComments); 990 return Candidate.build(FileName, Scores, Opts, SemaCCS); 991 } 992 }; 993 994 CompletionList codeComplete(PathRef FileName, 995 const tooling::CompileCommand &Command, 996 PrecompiledPreamble const *Preamble, 997 StringRef Contents, Position Pos, 998 IntrusiveRefCntPtr<vfs::FileSystem> VFS, 999 std::shared_ptr<PCHContainerOperations> PCHs, 1000 CodeCompleteOptions Opts) { 1001 return CodeCompleteFlow(FileName, Opts) 1002 .run({FileName, Command, Preamble, Contents, Pos, VFS, PCHs}); 1003 } 1004 1005 SignatureHelp signatureHelp(PathRef FileName, 1006 const tooling::CompileCommand &Command, 1007 PrecompiledPreamble const *Preamble, 1008 StringRef Contents, Position Pos, 1009 IntrusiveRefCntPtr<vfs::FileSystem> VFS, 1010 std::shared_ptr<PCHContainerOperations> PCHs) { 1011 SignatureHelp Result; 1012 clang::CodeCompleteOptions Options; 1013 Options.IncludeGlobals = false; 1014 Options.IncludeMacros = false; 1015 Options.IncludeCodePatterns = false; 1016 Options.IncludeBriefComments = true; 1017 semaCodeComplete(llvm::make_unique<SignatureHelpCollector>(Options, Result), 1018 Options, 1019 {FileName, Command, Preamble, Contents, Pos, std::move(VFS), 1020 std::move(PCHs)}); 1021 return Result; 1022 } 1023 1024 } // namespace clangd 1025 } // namespace clang 1026