2019-01-28 22:01:55 +08:00
|
|
|
//===--- IncludeFixer.cpp ----------------------------------------*- C++-*-===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "IncludeFixer.h"
|
|
|
|
#include "AST.h"
|
|
|
|
#include "Diagnostics.h"
|
|
|
|
#include "SourceCode.h"
|
|
|
|
#include "index/Index.h"
|
2019-02-28 21:23:03 +08:00
|
|
|
#include "index/Symbol.h"
|
[clangd] Move non-clang base pieces into separate support/ lib. NFCI
Summary:
This enforces layering, reduces a sprawling clangd/ directory, and makes life
easier for embedders.
Reviewers: kbobyrev
Subscribers: mgorny, ilya-biryukov, javed.absar, MaskRay, jkorous, arphaman, jfb, kadircet, usaxena95, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D79014
2020-04-28 23:49:17 +08:00
|
|
|
#include "support/Logger.h"
|
|
|
|
#include "support/Trace.h"
|
2019-01-28 22:01:55 +08:00
|
|
|
#include "clang/AST/Decl.h"
|
2019-02-07 17:23:22 +08:00
|
|
|
#include "clang/AST/DeclBase.h"
|
[clangd] Compute scopes eagerly in IncludeFixer
Summary:
Computing lazily leads to crashes. In particular, computing scopes may
produce diagnostics (from inside template instantiations) and we
currently do it when processing another diagnostic, which leads to
crashes.
Moreover, we remember and access 'Scope*' when computing scopes. This
might lead to invalid memory access if the Scope is deleted by the time
we run the delayed computation. We did not actually construct an example
when this happens, though.
From the VCS and review history, it seems the optimization was
introduced in the initial version without a mention of any performance
benchmarks justifying the performance gains. This led me to a
conclusion that the optimization was premature, so removing it to avoid
crashes seems like the right trade-off at that point.
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: MaskRay, jkorous, arphaman, kadircet, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D65796
llvm-svn: 368019
2019-08-06 19:37:50 +08:00
|
|
|
#include "clang/AST/DeclarationName.h"
|
2019-02-07 17:23:22 +08:00
|
|
|
#include "clang/AST/NestedNameSpecifier.h"
|
2019-01-28 22:01:55 +08:00
|
|
|
#include "clang/AST/Type.h"
|
|
|
|
#include "clang/Basic/Diagnostic.h"
|
2022-02-26 22:35:01 +08:00
|
|
|
#include "clang/Basic/DiagnosticParse.h"
|
2019-01-28 22:01:55 +08:00
|
|
|
#include "clang/Basic/DiagnosticSema.h"
|
[clangd] Handle unresolved scope specifier when fixing includes.
Summary:
In the following examples, "clangd" is unresolved, and the fixer will try to fix
include for `clang::clangd`; however, clang::clangd::X is usually intended. So
when handling a qualifier that is unresolved, we change the unresolved name and
scopes so that the fixer will fix "clang::clangd::X" in the following example.
```
namespace clang {
clangd::X
~~~~~~
}
// or
clang::clangd::X
~~~~~~
```
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, jdoerfert, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D58185
llvm-svn: 354330
2019-02-19 22:32:22 +08:00
|
|
|
#include "clang/Basic/LangOptions.h"
|
|
|
|
#include "clang/Basic/SourceLocation.h"
|
|
|
|
#include "clang/Basic/SourceManager.h"
|
|
|
|
#include "clang/Basic/TokenKinds.h"
|
2019-02-28 21:49:25 +08:00
|
|
|
#include "clang/Lex/Lexer.h"
|
2019-02-07 17:23:22 +08:00
|
|
|
#include "clang/Sema/DeclSpec.h"
|
|
|
|
#include "clang/Sema/Lookup.h"
|
|
|
|
#include "clang/Sema/Scope.h"
|
|
|
|
#include "clang/Sema/Sema.h"
|
|
|
|
#include "clang/Sema/TypoCorrection.h"
|
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2019-01-28 22:01:55 +08:00
|
|
|
#include "llvm/ADT/None.h"
|
2019-02-18 21:12:10 +08:00
|
|
|
#include "llvm/ADT/Optional.h"
|
2022-07-23 21:14:14 +08:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
[clangd] Compute scopes eagerly in IncludeFixer
Summary:
Computing lazily leads to crashes. In particular, computing scopes may
produce diagnostics (from inside template instantiations) and we
currently do it when processing another diagnostic, which leads to
crashes.
Moreover, we remember and access 'Scope*' when computing scopes. This
might lead to invalid memory access if the Scope is deleted by the time
we run the delayed computation. We did not actually construct an example
when this happens, though.
From the VCS and review history, it seems the optimization was
introduced in the initial version without a mention of any performance
benchmarks justifying the performance gains. This led me to a
conclusion that the optimization was premature, so removing it to avoid
crashes seems like the right trade-off at that point.
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: MaskRay, jkorous, arphaman, kadircet, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D65796
llvm-svn: 368019
2019-08-06 19:37:50 +08:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
[clangd] Handle unresolved scope specifier when fixing includes.
Summary:
In the following examples, "clangd" is unresolved, and the fixer will try to fix
include for `clang::clangd`; however, clang::clangd::X is usually intended. So
when handling a qualifier that is unresolved, we change the unresolved name and
scopes so that the fixer will fix "clang::clangd::X" in the following example.
```
namespace clang {
clangd::X
~~~~~~
}
// or
clang::clangd::X
~~~~~~
```
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, jdoerfert, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D58185
llvm-svn: 354330
2019-02-19 22:32:22 +08:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2019-02-07 17:23:22 +08:00
|
|
|
#include "llvm/ADT/StringSet.h"
|
2019-01-28 22:01:55 +08:00
|
|
|
#include "llvm/Support/Error.h"
|
|
|
|
#include "llvm/Support/FormatVariadic.h"
|
2021-02-03 21:09:05 +08:00
|
|
|
#include <algorithm>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
2019-02-07 17:23:22 +08:00
|
|
|
#include <vector>
|
2019-01-28 22:01:55 +08:00
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace clangd {
|
2021-11-28 07:33:11 +08:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
llvm::Optional<llvm::StringRef> getArgStr(const clang::Diagnostic &Info,
|
|
|
|
unsigned Index) {
|
|
|
|
switch (Info.getArgKind(Index)) {
|
|
|
|
case DiagnosticsEngine::ak_c_string:
|
|
|
|
return llvm::StringRef(Info.getArgCStr(Index));
|
|
|
|
case DiagnosticsEngine::ak_std_string:
|
|
|
|
return llvm::StringRef(Info.getArgStdStr(Index));
|
|
|
|
default:
|
|
|
|
return llvm::None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<Fix> only(llvm::Optional<Fix> F) {
|
|
|
|
if (F)
|
|
|
|
return {std::move(*F)};
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
2019-01-28 22:01:55 +08:00
|
|
|
|
|
|
|
std::vector<Fix> IncludeFixer::fix(DiagnosticsEngine::Level DiagLevel,
|
|
|
|
const clang::Diagnostic &Info) const {
|
|
|
|
switch (Info.getID()) {
|
2021-12-10 09:14:15 +08:00
|
|
|
/*
|
|
|
|
There are many "incomplete type" diagnostics!
|
|
|
|
They are almost all Sema diagnostics with "incomplete" in the name.
|
|
|
|
|
|
|
|
sed -n '/CLASS_NOTE/! s/DIAG(\\([^,]*\\).*)/ case diag::\\1:/p' \
|
|
|
|
tools/clang/include/clang/Basic/DiagnosticSemaKinds.inc | grep incomplete
|
|
|
|
*/
|
|
|
|
// clang-format off
|
|
|
|
//case diag::err_alignof_member_of_incomplete_type:
|
|
|
|
case diag::err_array_incomplete_or_sizeless_type:
|
|
|
|
case diag::err_array_size_incomplete_type:
|
|
|
|
case diag::err_asm_incomplete_type:
|
|
|
|
case diag::err_assoc_type_incomplete:
|
|
|
|
case diag::err_bad_cast_incomplete:
|
|
|
|
case diag::err_call_function_incomplete_return:
|
|
|
|
case diag::err_call_incomplete_argument:
|
|
|
|
case diag::err_call_incomplete_return:
|
|
|
|
case diag::err_capture_of_incomplete_or_sizeless_type:
|
|
|
|
case diag::err_catch_incomplete:
|
|
|
|
case diag::err_catch_incomplete_ptr:
|
|
|
|
case diag::err_catch_incomplete_ref:
|
|
|
|
case diag::err_cconv_incomplete_param_type:
|
|
|
|
case diag::err_coroutine_promise_type_incomplete:
|
|
|
|
case diag::err_covariant_return_incomplete:
|
|
|
|
//case diag::err_deduced_class_template_incomplete:
|
|
|
|
case diag::err_delete_incomplete_class_type:
|
|
|
|
case diag::err_dereference_incomplete_type:
|
|
|
|
case diag::err_exception_spec_incomplete_type:
|
|
|
|
case diag::err_field_incomplete_or_sizeless:
|
|
|
|
case diag::err_for_range_incomplete_type:
|
|
|
|
case diag::err_func_def_incomplete_result:
|
|
|
|
case diag::err_ice_incomplete_type:
|
|
|
|
case diag::err_illegal_message_expr_incomplete_type:
|
2020-10-08 19:33:07 +08:00
|
|
|
case diag::err_incomplete_base_class:
|
2021-12-10 09:14:15 +08:00
|
|
|
case diag::err_incomplete_enum:
|
|
|
|
case diag::err_incomplete_in_exception_spec:
|
2020-10-08 19:33:07 +08:00
|
|
|
case diag::err_incomplete_member_access:
|
2021-12-10 09:14:15 +08:00
|
|
|
case diag::err_incomplete_nested_name_spec:
|
|
|
|
case diag::err_incomplete_object_call:
|
|
|
|
case diag::err_incomplete_receiver_type:
|
|
|
|
case diag::err_incomplete_synthesized_property:
|
2020-10-08 19:33:07 +08:00
|
|
|
case diag::err_incomplete_type:
|
2021-12-10 09:14:15 +08:00
|
|
|
case diag::err_incomplete_type_objc_at_encode:
|
|
|
|
case diag::err_incomplete_type_used_in_type_trait_expr:
|
|
|
|
case diag::err_incomplete_typeid:
|
|
|
|
case diag::err_init_incomplete_type:
|
2020-10-09 14:51:17 +08:00
|
|
|
case diag::err_invalid_incomplete_type_use:
|
2021-12-10 09:14:15 +08:00
|
|
|
case diag::err_lambda_incomplete_result:
|
|
|
|
//case diag::err_matrix_incomplete_index:
|
|
|
|
//case diag::err_matrix_separate_incomplete_index:
|
|
|
|
case diag::err_memptr_incomplete:
|
|
|
|
case diag::err_new_incomplete_or_sizeless_type:
|
|
|
|
case diag::err_objc_incomplete_boxed_expression_type:
|
|
|
|
case diag::err_objc_index_incomplete_class_type:
|
|
|
|
case diag::err_offsetof_incomplete_type:
|
|
|
|
case diag::err_omp_firstprivate_incomplete_type:
|
|
|
|
case diag::err_omp_incomplete_type:
|
|
|
|
case diag::err_omp_lastprivate_incomplete_type:
|
|
|
|
case diag::err_omp_linear_incomplete_type:
|
|
|
|
case diag::err_omp_private_incomplete_type:
|
|
|
|
case diag::err_omp_reduction_incomplete_type:
|
|
|
|
case diag::err_omp_section_incomplete_type:
|
|
|
|
case diag::err_omp_threadprivate_incomplete_type:
|
|
|
|
case diag::err_second_parameter_to_va_arg_incomplete:
|
2020-10-09 14:51:17 +08:00
|
|
|
case diag::err_sizeof_alignof_incomplete_or_sizeless_type:
|
2021-12-10 09:14:15 +08:00
|
|
|
case diag::err_subscript_incomplete_or_sizeless_type:
|
|
|
|
case diag::err_switch_incomplete_class_type:
|
|
|
|
case diag::err_temp_copy_incomplete:
|
|
|
|
//case diag::err_template_arg_deduced_incomplete_pack:
|
|
|
|
case diag::err_template_nontype_parm_incomplete:
|
|
|
|
//case diag::err_tentative_def_incomplete_type:
|
|
|
|
case diag::err_throw_incomplete:
|
|
|
|
case diag::err_throw_incomplete_ptr:
|
|
|
|
case diag::err_typecheck_arithmetic_incomplete_or_sizeless_type:
|
|
|
|
case diag::err_typecheck_cast_to_incomplete:
|
|
|
|
case diag::err_typecheck_decl_incomplete_type:
|
|
|
|
//case diag::err_typecheck_incomplete_array_needs_initializer:
|
|
|
|
case diag::err_typecheck_incomplete_tag:
|
|
|
|
case diag::err_typecheck_incomplete_type_not_modifiable_lvalue:
|
|
|
|
case diag::err_typecheck_nonviable_condition_incomplete:
|
|
|
|
case diag::err_underlying_type_of_incomplete_enum:
|
|
|
|
case diag::ext_incomplete_in_exception_spec:
|
|
|
|
//case diag::ext_typecheck_compare_complete_incomplete_pointers:
|
|
|
|
case diag::ext_typecheck_decl_incomplete_type:
|
|
|
|
case diag::warn_delete_incomplete:
|
|
|
|
case diag::warn_incomplete_encoded_type:
|
|
|
|
//case diag::warn_printf_incomplete_specifier:
|
|
|
|
case diag::warn_return_value_udt_incomplete:
|
|
|
|
//case diag::warn_scanf_scanlist_incomplete:
|
|
|
|
//case diag::warn_tentative_incomplete_array:
|
|
|
|
// clang-format on
|
2019-01-28 22:01:55 +08:00
|
|
|
// Incomplete type diagnostics should have a QualType argument for the
|
|
|
|
// incomplete type.
|
|
|
|
for (unsigned Idx = 0; Idx < Info.getNumArgs(); ++Idx) {
|
|
|
|
if (Info.getArgKind(Idx) == DiagnosticsEngine::ak_qualtype) {
|
|
|
|
auto QT = QualType::getFromOpaquePtr((void *)Info.getRawArg(Idx));
|
2021-12-10 09:14:15 +08:00
|
|
|
if (const Type *T = QT.getTypePtrOrNull()) {
|
2019-01-28 22:01:55 +08:00
|
|
|
if (T->isIncompleteType())
|
|
|
|
return fixIncompleteType(*T);
|
2021-12-10 09:14:15 +08:00
|
|
|
// `enum x : int;' is not formally an incomplete type.
|
|
|
|
// We may need a full definition anyway.
|
|
|
|
if (auto * ET = llvm::dyn_cast<EnumType>(T))
|
|
|
|
if (!ET->getDecl()->getDefinition())
|
|
|
|
return fixIncompleteType(*T);
|
|
|
|
}
|
2019-01-28 22:01:55 +08:00
|
|
|
}
|
|
|
|
}
|
2019-02-07 17:23:22 +08:00
|
|
|
break;
|
2021-12-10 09:14:15 +08:00
|
|
|
|
2019-02-07 17:23:22 +08:00
|
|
|
case diag::err_unknown_typename:
|
|
|
|
case diag::err_unknown_typename_suggest:
|
2022-02-26 22:35:01 +08:00
|
|
|
case diag::err_unknown_type_or_class_name_suggest:
|
|
|
|
case diag::err_expected_class_name:
|
2019-02-07 17:23:22 +08:00
|
|
|
case diag::err_typename_nested_not_found:
|
|
|
|
case diag::err_no_template:
|
|
|
|
case diag::err_no_template_suggest:
|
2019-02-13 16:58:54 +08:00
|
|
|
case diag::err_undeclared_use:
|
|
|
|
case diag::err_undeclared_use_suggest:
|
|
|
|
case diag::err_undeclared_var_use:
|
|
|
|
case diag::err_undeclared_var_use_suggest:
|
|
|
|
case diag::err_no_member: // Could be no member in namespace.
|
|
|
|
case diag::err_no_member_suggest:
|
2021-01-25 23:26:17 +08:00
|
|
|
case diag::err_no_member_template:
|
|
|
|
case diag::err_no_member_template_suggest:
|
2021-12-10 11:17:50 +08:00
|
|
|
case diag::warn_implicit_function_decl:
|
[C11/C2x] Change the behavior of the implicit function declaration warning
C89 had a questionable feature where the compiler would implicitly
declare a function that the user called but was never previously
declared. The resulting function would be globally declared as
extern int func(); -- a function without a prototype which accepts zero
or more arguments.
C99 removed support for this questionable feature due to severe
security concerns. However, there was no deprecation period; C89 had
the feature, C99 didn't. So Clang (and GCC) both supported the
functionality as an extension in C99 and later modes.
C2x no longer supports that function signature as it now requires all
functions to have a prototype, and given the known security issues with
the feature, continuing to support it as an extension is not tenable.
This patch changes the diagnostic behavior for the
-Wimplicit-function-declaration warning group depending on the language
mode in effect. We continue to warn by default in C89 mode (due to the
feature being dangerous to use). However, because this feature will not
be supported in C2x mode, we've diagnosed it as being invalid for so
long, the security concerns with the feature, and the trivial
workaround for users (declare the function), we now default the
extension warning to an error in C99-C17 mode. This still gives users
an easy workaround if they are extensively using the extension in those
modes (they can disable the warning or use -Wno-error to downgrade the
error), but the new diagnostic makes it more clear that this feature is
not supported and should be avoided. In C2x mode, we no longer allow an
implicit function to be defined and treat the situation the same as any
other lookup failure.
Differential Revision: https://reviews.llvm.org/D122983
2022-04-20 23:25:35 +08:00
|
|
|
case diag::ext_implicit_function_decl_c99:
|
2021-12-10 11:17:50 +08:00
|
|
|
dlog("Unresolved name at {0}, last typo was {1}",
|
|
|
|
Info.getLocation().printToString(Info.getSourceManager()),
|
|
|
|
LastUnresolvedName
|
|
|
|
? LastUnresolvedName->Loc.printToString(Info.getSourceManager())
|
|
|
|
: "none");
|
2019-02-07 17:23:22 +08:00
|
|
|
if (LastUnresolvedName) {
|
2020-01-04 23:28:41 +08:00
|
|
|
// Try to fix unresolved name caused by missing declaration.
|
2019-02-07 17:23:22 +08:00
|
|
|
// E.g.
|
|
|
|
// clang::SourceManager SM;
|
|
|
|
// ~~~~~~~~~~~~~
|
|
|
|
// UnresolvedName
|
|
|
|
// or
|
|
|
|
// namespace clang { SourceManager SM; }
|
|
|
|
// ~~~~~~~~~~~~~
|
|
|
|
// UnresolvedName
|
|
|
|
// We only attempt to recover a diagnostic if it has the same location as
|
|
|
|
// the last seen unresolved name.
|
2021-12-10 11:17:50 +08:00
|
|
|
if (LastUnresolvedName->Loc == Info.getLocation())
|
2019-02-07 17:23:22 +08:00
|
|
|
return fixUnresolvedName();
|
|
|
|
}
|
2021-11-28 07:33:11 +08:00
|
|
|
break;
|
2021-12-10 09:14:15 +08:00
|
|
|
|
2021-11-28 07:33:11 +08:00
|
|
|
// Cases where clang explicitly knows which header to include.
|
|
|
|
// (There's no fix provided for boring formatting reasons).
|
|
|
|
case diag::err_implied_std_initializer_list_not_found:
|
|
|
|
return only(insertHeader("<initializer_list>"));
|
|
|
|
case diag::err_need_header_before_typeid:
|
|
|
|
return only(insertHeader("<typeid>"));
|
|
|
|
case diag::err_need_header_before_placement_new:
|
|
|
|
case diag::err_implicit_coroutine_std_nothrow_type_not_found:
|
|
|
|
return only(insertHeader("<new>"));
|
|
|
|
case diag::err_omp_implied_type_not_found:
|
|
|
|
case diag::err_omp_interop_type_not_found:
|
|
|
|
return only(insertHeader("<omp.h>"));
|
|
|
|
case diag::err_implied_coroutine_type_not_found:
|
|
|
|
return only(insertHeader("<coroutine>"));
|
|
|
|
case diag::err_implied_comparison_category_type_not_found:
|
|
|
|
return only(insertHeader("<compare>"));
|
|
|
|
case diag::note_include_header_or_declare:
|
|
|
|
if (Info.getNumArgs() > 0)
|
|
|
|
if (auto Header = getArgStr(Info, 0))
|
|
|
|
return only(insertHeader(("<" + *Header + ">").str(),
|
2022-06-19 15:13:38 +08:00
|
|
|
getArgStr(Info, 1).value_or("")));
|
2021-11-28 07:33:11 +08:00
|
|
|
break;
|
2019-01-28 22:01:55 +08:00
|
|
|
}
|
2021-11-28 07:33:11 +08:00
|
|
|
|
2019-01-28 22:01:55 +08:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2021-11-28 07:33:11 +08:00
|
|
|
llvm::Optional<Fix> IncludeFixer::insertHeader(llvm::StringRef Spelled,
|
|
|
|
llvm::StringRef Symbol) const {
|
|
|
|
Fix F;
|
|
|
|
|
|
|
|
if (auto Edit = Inserter->insert(Spelled))
|
|
|
|
F.Edits.push_back(std::move(*Edit));
|
|
|
|
else
|
|
|
|
return llvm::None;
|
|
|
|
|
|
|
|
if (Symbol.empty())
|
|
|
|
F.Message = llvm::formatv("Include {0}", Spelled);
|
|
|
|
else
|
|
|
|
F.Message = llvm::formatv("Include {0} for symbol {1}", Spelled, Symbol);
|
|
|
|
|
|
|
|
return F;
|
|
|
|
}
|
|
|
|
|
2019-01-28 22:01:55 +08:00
|
|
|
std::vector<Fix> IncludeFixer::fixIncompleteType(const Type &T) const {
|
|
|
|
// Only handle incomplete TagDecl type.
|
|
|
|
const TagDecl *TD = T.getAsTagDecl();
|
|
|
|
if (!TD)
|
|
|
|
return {};
|
|
|
|
std::string TypeName = printQualifiedName(*TD);
|
|
|
|
trace::Span Tracer("Fix include for incomplete type");
|
|
|
|
SPAN_ATTACH(Tracer, "type", TypeName);
|
|
|
|
vlog("Trying to fix include for incomplete type {0}", TypeName);
|
|
|
|
|
|
|
|
auto ID = getSymbolID(TD);
|
|
|
|
if (!ID)
|
|
|
|
return {};
|
2020-10-29 23:04:53 +08:00
|
|
|
llvm::Optional<const SymbolSlab *> Symbols = lookupCached(ID);
|
2019-02-18 21:12:10 +08:00
|
|
|
if (!Symbols)
|
2019-01-28 22:01:55 +08:00
|
|
|
return {};
|
2019-02-18 21:12:10 +08:00
|
|
|
const SymbolSlab &Syms = **Symbols;
|
|
|
|
std::vector<Fix> Fixes;
|
|
|
|
if (!Syms.empty()) {
|
|
|
|
auto &Matched = *Syms.begin();
|
|
|
|
if (!Matched.IncludeHeaders.empty() && Matched.Definition &&
|
|
|
|
Matched.CanonicalDeclaration.FileURI == Matched.Definition.FileURI)
|
|
|
|
Fixes = fixesForSymbols(Syms);
|
|
|
|
}
|
|
|
|
return Fixes;
|
2019-01-28 22:01:55 +08:00
|
|
|
}
|
|
|
|
|
2019-02-18 21:12:10 +08:00
|
|
|
std::vector<Fix> IncludeFixer::fixesForSymbols(const SymbolSlab &Syms) const {
|
2019-02-07 17:23:22 +08:00
|
|
|
auto Inserted = [&](const Symbol &Sym, llvm::StringRef Header)
|
2019-01-28 22:01:55 +08:00
|
|
|
-> llvm::Expected<std::pair<std::string, bool>> {
|
2019-09-23 22:39:37 +08:00
|
|
|
auto ResolvedDeclaring =
|
|
|
|
URI::resolve(Sym.CanonicalDeclaration.FileURI, File);
|
2019-01-28 22:01:55 +08:00
|
|
|
if (!ResolvedDeclaring)
|
|
|
|
return ResolvedDeclaring.takeError();
|
|
|
|
auto ResolvedInserted = toHeaderFile(Header, File);
|
|
|
|
if (!ResolvedInserted)
|
|
|
|
return ResolvedInserted.takeError();
|
2019-07-09 02:07:46 +08:00
|
|
|
auto Spelled = Inserter->calculateIncludePath(*ResolvedInserted, File);
|
|
|
|
if (!Spelled)
|
2020-09-14 17:33:12 +08:00
|
|
|
return error("Header not on include path");
|
2019-01-28 22:01:55 +08:00
|
|
|
return std::make_pair(
|
2019-07-09 02:07:46 +08:00
|
|
|
std::move(*Spelled),
|
2019-01-28 22:01:55 +08:00
|
|
|
Inserter->shouldInsertInclude(*ResolvedDeclaring, *ResolvedInserted));
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<Fix> Fixes;
|
2020-01-04 23:28:41 +08:00
|
|
|
// Deduplicate fixes by include headers. This doesn't distinguish symbols in
|
2019-02-07 17:23:22 +08:00
|
|
|
// different scopes from the same header, but this case should be rare and is
|
|
|
|
// thus ignored.
|
|
|
|
llvm::StringSet<> InsertedHeaders;
|
|
|
|
for (const auto &Sym : Syms) {
|
|
|
|
for (const auto &Inc : getRankedIncludes(Sym)) {
|
|
|
|
if (auto ToInclude = Inserted(Sym, Inc)) {
|
|
|
|
if (ToInclude->second) {
|
2021-11-28 07:33:11 +08:00
|
|
|
if (!InsertedHeaders.try_emplace(ToInclude->first).second)
|
2019-02-07 17:23:22 +08:00
|
|
|
continue;
|
2021-11-28 07:33:11 +08:00
|
|
|
if (auto Fix =
|
|
|
|
insertHeader(ToInclude->first, (Sym.Scope + Sym.Name).str()))
|
|
|
|
Fixes.push_back(std::move(*Fix));
|
2019-02-07 17:23:22 +08:00
|
|
|
}
|
|
|
|
} else {
|
2019-04-16 22:35:49 +08:00
|
|
|
vlog("Failed to calculate include insertion for {0} into {1}: {2}", Inc,
|
|
|
|
File, ToInclude.takeError());
|
2019-02-07 17:23:22 +08:00
|
|
|
}
|
2019-01-28 22:01:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return Fixes;
|
|
|
|
}
|
[clangd] Handle unresolved scope specifier when fixing includes.
Summary:
In the following examples, "clangd" is unresolved, and the fixer will try to fix
include for `clang::clangd`; however, clang::clangd::X is usually intended. So
when handling a qualifier that is unresolved, we change the unresolved name and
scopes so that the fixer will fix "clang::clangd::X" in the following example.
```
namespace clang {
clangd::X
~~~~~~
}
// or
clang::clangd::X
~~~~~~
```
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, jdoerfert, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D58185
llvm-svn: 354330
2019-02-19 22:32:22 +08:00
|
|
|
|
|
|
|
// Returns the identifiers qualified by an unresolved name. \p Loc is the
|
|
|
|
// start location of the unresolved name. For the example below, this returns
|
|
|
|
// "::X::Y" that is qualified by unresolved name "clangd":
|
|
|
|
// clang::clangd::X::Y
|
|
|
|
// ~
|
|
|
|
llvm::Optional<std::string> qualifiedByUnresolved(const SourceManager &SM,
|
|
|
|
SourceLocation Loc,
|
|
|
|
const LangOptions &LangOpts) {
|
|
|
|
std::string Result;
|
2022-02-27 01:35:14 +08:00
|
|
|
// Accept qualifier written within macro arguments, but not macro bodies.
|
|
|
|
SourceLocation NextLoc = SM.getTopMacroCallerLoc(Loc);
|
[clangd] Handle unresolved scope specifier when fixing includes.
Summary:
In the following examples, "clangd" is unresolved, and the fixer will try to fix
include for `clang::clangd`; however, clang::clangd::X is usually intended. So
when handling a qualifier that is unresolved, we change the unresolved name and
scopes so that the fixer will fix "clang::clangd::X" in the following example.
```
namespace clang {
clangd::X
~~~~~~
}
// or
clang::clangd::X
~~~~~~
```
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, jdoerfert, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D58185
llvm-svn: 354330
2019-02-19 22:32:22 +08:00
|
|
|
while (auto CCTok = Lexer::findNextToken(NextLoc, SM, LangOpts)) {
|
|
|
|
if (!CCTok->is(tok::coloncolon))
|
|
|
|
break;
|
|
|
|
auto IDTok = Lexer::findNextToken(CCTok->getLocation(), SM, LangOpts);
|
|
|
|
if (!IDTok || !IDTok->is(tok::raw_identifier))
|
|
|
|
break;
|
|
|
|
Result.append(("::" + IDTok->getRawIdentifier()).str());
|
|
|
|
NextLoc = IDTok->getLocation();
|
|
|
|
}
|
|
|
|
if (Result.empty())
|
|
|
|
return llvm::None;
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// An unresolved name and its scope information that can be extracted cheaply.
|
|
|
|
struct CheapUnresolvedName {
|
|
|
|
std::string Name;
|
|
|
|
// This is the part of what was typed that was resolved, and it's in its
|
|
|
|
// resolved form not its typed form (think `namespace clang { clangd::x }` -->
|
|
|
|
// `clang::clangd::`).
|
|
|
|
llvm::Optional<std::string> ResolvedScope;
|
|
|
|
|
|
|
|
// Unresolved part of the scope. When the unresolved name is a specifier, we
|
|
|
|
// use the name that comes after it as the alternative name to resolve and use
|
|
|
|
// the specifier as the extra scope in the accessible scopes.
|
|
|
|
llvm::Optional<std::string> UnresolvedScope;
|
|
|
|
};
|
|
|
|
|
2022-02-27 01:35:14 +08:00
|
|
|
llvm::Optional<std::string> getSpelledSpecifier(const CXXScopeSpec &SS,
|
|
|
|
const SourceManager &SM) {
|
|
|
|
// Support specifiers written within a single macro argument.
|
|
|
|
if (!SM.isWrittenInSameFile(SS.getBeginLoc(), SS.getEndLoc()))
|
|
|
|
return llvm::None;
|
|
|
|
SourceRange Range(SM.getTopMacroCallerLoc(SS.getBeginLoc()), SM.getTopMacroCallerLoc(SS.getEndLoc()));
|
|
|
|
if (Range.getBegin().isMacroID() || Range.getEnd().isMacroID())
|
|
|
|
return llvm::None;
|
|
|
|
|
|
|
|
return (toSourceCode(SM, Range) + "::").str();
|
|
|
|
}
|
|
|
|
|
[clangd] Handle unresolved scope specifier when fixing includes.
Summary:
In the following examples, "clangd" is unresolved, and the fixer will try to fix
include for `clang::clangd`; however, clang::clangd::X is usually intended. So
when handling a qualifier that is unresolved, we change the unresolved name and
scopes so that the fixer will fix "clang::clangd::X" in the following example.
```
namespace clang {
clangd::X
~~~~~~
}
// or
clang::clangd::X
~~~~~~
```
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, jdoerfert, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D58185
llvm-svn: 354330
2019-02-19 22:32:22 +08:00
|
|
|
// Extracts unresolved name and scope information around \p Unresolved.
|
|
|
|
// FIXME: try to merge this with the scope-wrangling code in CodeComplete.
|
|
|
|
llvm::Optional<CheapUnresolvedName> extractUnresolvedNameCheaply(
|
|
|
|
const SourceManager &SM, const DeclarationNameInfo &Unresolved,
|
|
|
|
CXXScopeSpec *SS, const LangOptions &LangOpts, bool UnresolvedIsSpecifier) {
|
|
|
|
CheapUnresolvedName Result;
|
|
|
|
Result.Name = Unresolved.getAsString();
|
|
|
|
if (SS && SS->isNotEmpty()) { // "::" or "ns::"
|
|
|
|
if (auto *Nested = SS->getScopeRep()) {
|
2022-02-27 01:35:14 +08:00
|
|
|
if (Nested->getKind() == NestedNameSpecifier::Global) {
|
[clangd] Handle unresolved scope specifier when fixing includes.
Summary:
In the following examples, "clangd" is unresolved, and the fixer will try to fix
include for `clang::clangd`; however, clang::clangd::X is usually intended. So
when handling a qualifier that is unresolved, we change the unresolved name and
scopes so that the fixer will fix "clang::clangd::X" in the following example.
```
namespace clang {
clangd::X
~~~~~~
}
// or
clang::clangd::X
~~~~~~
```
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, jdoerfert, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D58185
llvm-svn: 354330
2019-02-19 22:32:22 +08:00
|
|
|
Result.ResolvedScope = "";
|
2022-02-27 01:35:14 +08:00
|
|
|
} else if (const auto *NS = Nested->getAsNamespace()) {
|
|
|
|
std::string SpecifiedNS = printNamespaceScope(*NS);
|
|
|
|
llvm::Optional<std::string> Spelling = getSpelledSpecifier(*SS, SM);
|
[clangd] Handle unresolved scope specifier when fixing includes.
Summary:
In the following examples, "clangd" is unresolved, and the fixer will try to fix
include for `clang::clangd`; however, clang::clangd::X is usually intended. So
when handling a qualifier that is unresolved, we change the unresolved name and
scopes so that the fixer will fix "clang::clangd::X" in the following example.
```
namespace clang {
clangd::X
~~~~~~
}
// or
clang::clangd::X
~~~~~~
```
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, jdoerfert, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D58185
llvm-svn: 354330
2019-02-19 22:32:22 +08:00
|
|
|
|
|
|
|
// Check the specifier spelled in the source.
|
2022-02-27 01:35:14 +08:00
|
|
|
// If the resolved scope doesn't end with the spelled scope, the
|
|
|
|
// resolved scope may come from a sema typo correction. For example,
|
[clangd] Handle unresolved scope specifier when fixing includes.
Summary:
In the following examples, "clangd" is unresolved, and the fixer will try to fix
include for `clang::clangd`; however, clang::clangd::X is usually intended. So
when handling a qualifier that is unresolved, we change the unresolved name and
scopes so that the fixer will fix "clang::clangd::X" in the following example.
```
namespace clang {
clangd::X
~~~~~~
}
// or
clang::clangd::X
~~~~~~
```
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, jdoerfert, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D58185
llvm-svn: 354330
2019-02-19 22:32:22 +08:00
|
|
|
// sema assumes that "clangd::" is a typo of "clang::" and uses
|
|
|
|
// "clang::" as the specified scope in:
|
|
|
|
// namespace clang { clangd::X; }
|
|
|
|
// In this case, we use the "typo" specifier as extra scope instead
|
|
|
|
// of using the scope assumed by sema.
|
2022-02-27 01:35:14 +08:00
|
|
|
if (!Spelling || llvm::StringRef(SpecifiedNS).endswith(*Spelling)) {
|
|
|
|
Result.ResolvedScope = std::move(SpecifiedNS);
|
|
|
|
} else {
|
|
|
|
Result.UnresolvedScope = std::move(*Spelling);
|
|
|
|
}
|
[clangd] Handle unresolved scope specifier when fixing includes.
Summary:
In the following examples, "clangd" is unresolved, and the fixer will try to fix
include for `clang::clangd`; however, clang::clangd::X is usually intended. So
when handling a qualifier that is unresolved, we change the unresolved name and
scopes so that the fixer will fix "clang::clangd::X" in the following example.
```
namespace clang {
clangd::X
~~~~~~
}
// or
clang::clangd::X
~~~~~~
```
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, jdoerfert, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D58185
llvm-svn: 354330
2019-02-19 22:32:22 +08:00
|
|
|
} else if (const auto *ANS = Nested->getAsNamespaceAlias()) {
|
|
|
|
Result.ResolvedScope = printNamespaceScope(*ANS->getNamespace());
|
|
|
|
} else {
|
|
|
|
// We don't fix symbols in scopes that are not top-level e.g. class
|
|
|
|
// members, as we don't collect includes for them.
|
|
|
|
return llvm::None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (UnresolvedIsSpecifier) {
|
|
|
|
// If the unresolved name is a specifier e.g.
|
|
|
|
// clang::clangd::X
|
|
|
|
// ~~~~~~
|
|
|
|
// We try to resolve clang::clangd::X instead of clang::clangd.
|
|
|
|
// FIXME: We won't be able to fix include if the specifier is what we
|
|
|
|
// should resolve (e.g. it's a class scope specifier). Collecting include
|
|
|
|
// headers for nested types could make this work.
|
|
|
|
|
|
|
|
// Not using the end location as it doesn't always point to the end of
|
|
|
|
// identifier.
|
|
|
|
if (auto QualifiedByUnresolved =
|
|
|
|
qualifiedByUnresolved(SM, Unresolved.getBeginLoc(), LangOpts)) {
|
|
|
|
auto Split = splitQualifiedName(*QualifiedByUnresolved);
|
|
|
|
if (!Result.UnresolvedScope)
|
|
|
|
Result.UnresolvedScope.emplace();
|
|
|
|
// If UnresolvedSpecifiedScope is already set, we simply append the
|
|
|
|
// extra scope. Suppose the unresolved name is "index" in the following
|
|
|
|
// example:
|
|
|
|
// namespace clang { clangd::index::X; }
|
|
|
|
// ~~~~~~ ~~~~~
|
|
|
|
// "clangd::" is assumed to be clang:: by Sema, and we would have used
|
|
|
|
// it as extra scope. With "index" being a specifier, we append "index::"
|
|
|
|
// to the extra scope.
|
|
|
|
Result.UnresolvedScope->append((Result.Name + Split.first).str());
|
2020-01-29 03:23:46 +08:00
|
|
|
Result.Name = std::string(Split.second);
|
[clangd] Handle unresolved scope specifier when fixing includes.
Summary:
In the following examples, "clangd" is unresolved, and the fixer will try to fix
include for `clang::clangd`; however, clang::clangd::X is usually intended. So
when handling a qualifier that is unresolved, we change the unresolved name and
scopes so that the fixer will fix "clang::clangd::X" in the following example.
```
namespace clang {
clangd::X
~~~~~~
}
// or
clang::clangd::X
~~~~~~
```
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, jdoerfert, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D58185
llvm-svn: 354330
2019-02-19 22:32:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
[clangd] Compute scopes eagerly in IncludeFixer
Summary:
Computing lazily leads to crashes. In particular, computing scopes may
produce diagnostics (from inside template instantiations) and we
currently do it when processing another diagnostic, which leads to
crashes.
Moreover, we remember and access 'Scope*' when computing scopes. This
might lead to invalid memory access if the Scope is deleted by the time
we run the delayed computation. We did not actually construct an example
when this happens, though.
From the VCS and review history, it seems the optimization was
introduced in the initial version without a mention of any performance
benchmarks justifying the performance gains. This led me to a
conclusion that the optimization was premature, so removing it to avoid
crashes seems like the right trade-off at that point.
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: MaskRay, jkorous, arphaman, kadircet, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D65796
llvm-svn: 368019
2019-08-06 19:37:50 +08:00
|
|
|
/// Returns all namespace scopes that the unqualified lookup would visit.
|
|
|
|
std::vector<std::string>
|
|
|
|
collectAccessibleScopes(Sema &Sem, const DeclarationNameInfo &Typo, Scope *S,
|
|
|
|
Sema::LookupNameKind LookupKind) {
|
2021-02-03 21:09:05 +08:00
|
|
|
// Collects contexts visited during a Sema name lookup.
|
|
|
|
struct VisitedContextCollector : public VisibleDeclConsumer {
|
|
|
|
VisitedContextCollector(std::vector<std::string> &Out) : Out(Out) {}
|
|
|
|
void EnteredContext(DeclContext *Ctx) override {
|
|
|
|
if (llvm::isa<NamespaceDecl>(Ctx))
|
|
|
|
Out.push_back(printNamespaceScope(*Ctx));
|
|
|
|
}
|
|
|
|
void FoundDecl(NamedDecl *ND, NamedDecl *Hiding, DeclContext *Ctx,
|
|
|
|
bool InBaseClass) override {}
|
|
|
|
std::vector<std::string> &Out;
|
|
|
|
};
|
|
|
|
|
[clangd] Compute scopes eagerly in IncludeFixer
Summary:
Computing lazily leads to crashes. In particular, computing scopes may
produce diagnostics (from inside template instantiations) and we
currently do it when processing another diagnostic, which leads to
crashes.
Moreover, we remember and access 'Scope*' when computing scopes. This
might lead to invalid memory access if the Scope is deleted by the time
we run the delayed computation. We did not actually construct an example
when this happens, though.
From the VCS and review history, it seems the optimization was
introduced in the initial version without a mention of any performance
benchmarks justifying the performance gains. This led me to a
conclusion that the optimization was premature, so removing it to avoid
crashes seems like the right trade-off at that point.
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: MaskRay, jkorous, arphaman, kadircet, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D65796
llvm-svn: 368019
2019-08-06 19:37:50 +08:00
|
|
|
std::vector<std::string> Scopes;
|
2021-02-03 21:09:05 +08:00
|
|
|
Scopes.push_back("");
|
|
|
|
VisitedContextCollector Collector(Scopes);
|
[clangd] Compute scopes eagerly in IncludeFixer
Summary:
Computing lazily leads to crashes. In particular, computing scopes may
produce diagnostics (from inside template instantiations) and we
currently do it when processing another diagnostic, which leads to
crashes.
Moreover, we remember and access 'Scope*' when computing scopes. This
might lead to invalid memory access if the Scope is deleted by the time
we run the delayed computation. We did not actually construct an example
when this happens, though.
From the VCS and review history, it seems the optimization was
introduced in the initial version without a mention of any performance
benchmarks justifying the performance gains. This led me to a
conclusion that the optimization was premature, so removing it to avoid
crashes seems like the right trade-off at that point.
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: MaskRay, jkorous, arphaman, kadircet, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D65796
llvm-svn: 368019
2019-08-06 19:37:50 +08:00
|
|
|
Sem.LookupVisibleDecls(S, LookupKind, Collector,
|
|
|
|
/*IncludeGlobalScope=*/false,
|
|
|
|
/*LoadExternal=*/false);
|
2022-07-23 21:14:14 +08:00
|
|
|
llvm::sort(Scopes);
|
2021-02-03 21:09:05 +08:00
|
|
|
Scopes.erase(std::unique(Scopes.begin(), Scopes.end()), Scopes.end());
|
[clangd] Compute scopes eagerly in IncludeFixer
Summary:
Computing lazily leads to crashes. In particular, computing scopes may
produce diagnostics (from inside template instantiations) and we
currently do it when processing another diagnostic, which leads to
crashes.
Moreover, we remember and access 'Scope*' when computing scopes. This
might lead to invalid memory access if the Scope is deleted by the time
we run the delayed computation. We did not actually construct an example
when this happens, though.
From the VCS and review history, it seems the optimization was
introduced in the initial version without a mention of any performance
benchmarks justifying the performance gains. This led me to a
conclusion that the optimization was premature, so removing it to avoid
crashes seems like the right trade-off at that point.
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: MaskRay, jkorous, arphaman, kadircet, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D65796
llvm-svn: 368019
2019-08-06 19:37:50 +08:00
|
|
|
return Scopes;
|
|
|
|
}
|
|
|
|
|
2019-02-07 17:23:22 +08:00
|
|
|
class IncludeFixer::UnresolvedNameRecorder : public ExternalSemaSource {
|
|
|
|
public:
|
|
|
|
UnresolvedNameRecorder(llvm::Optional<UnresolvedName> &LastUnresolvedName)
|
|
|
|
: LastUnresolvedName(LastUnresolvedName) {}
|
|
|
|
|
|
|
|
void InitializeSema(Sema &S) override { this->SemaPtr = &S; }
|
|
|
|
|
|
|
|
// Captures the latest typo and treat it as an unresolved name that can
|
|
|
|
// potentially be fixed by adding #includes.
|
|
|
|
TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo, int LookupKind,
|
|
|
|
Scope *S, CXXScopeSpec *SS,
|
|
|
|
CorrectionCandidateCallback &CCC,
|
|
|
|
DeclContext *MemberContext, bool EnteringContext,
|
|
|
|
const ObjCObjectPointerType *OPT) override {
|
2021-12-10 11:17:50 +08:00
|
|
|
dlog("CorrectTypo: {0}", Typo.getAsString());
|
2019-02-07 17:23:22 +08:00
|
|
|
assert(SemaPtr && "Sema must have been set.");
|
|
|
|
if (SemaPtr->isSFINAEContext())
|
|
|
|
return TypoCorrection();
|
2019-07-19 16:33:39 +08:00
|
|
|
if (!isInsideMainFile(Typo.getLoc(), SemaPtr->SourceMgr))
|
2019-02-07 17:23:22 +08:00
|
|
|
return clang::TypoCorrection();
|
|
|
|
|
[clangd] Handle unresolved scope specifier when fixing includes.
Summary:
In the following examples, "clangd" is unresolved, and the fixer will try to fix
include for `clang::clangd`; however, clang::clangd::X is usually intended. So
when handling a qualifier that is unresolved, we change the unresolved name and
scopes so that the fixer will fix "clang::clangd::X" in the following example.
```
namespace clang {
clangd::X
~~~~~~
}
// or
clang::clangd::X
~~~~~~
```
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, jdoerfert, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D58185
llvm-svn: 354330
2019-02-19 22:32:22 +08:00
|
|
|
auto Extracted = extractUnresolvedNameCheaply(
|
|
|
|
SemaPtr->SourceMgr, Typo, SS, SemaPtr->LangOpts,
|
|
|
|
static_cast<Sema::LookupNameKind>(LookupKind) ==
|
|
|
|
Sema::LookupNameKind::LookupNestedNameSpecifierName);
|
|
|
|
if (!Extracted)
|
2019-02-08 21:27:47 +08:00
|
|
|
return TypoCorrection();
|
[clangd] Compute scopes eagerly in IncludeFixer
Summary:
Computing lazily leads to crashes. In particular, computing scopes may
produce diagnostics (from inside template instantiations) and we
currently do it when processing another diagnostic, which leads to
crashes.
Moreover, we remember and access 'Scope*' when computing scopes. This
might lead to invalid memory access if the Scope is deleted by the time
we run the delayed computation. We did not actually construct an example
when this happens, though.
From the VCS and review history, it seems the optimization was
introduced in the initial version without a mention of any performance
benchmarks justifying the performance gains. This led me to a
conclusion that the optimization was premature, so removing it to avoid
crashes seems like the right trade-off at that point.
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: MaskRay, jkorous, arphaman, kadircet, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D65796
llvm-svn: 368019
2019-08-06 19:37:50 +08:00
|
|
|
|
2019-02-08 21:27:47 +08:00
|
|
|
UnresolvedName Unresolved;
|
[clangd] Compute scopes eagerly in IncludeFixer
Summary:
Computing lazily leads to crashes. In particular, computing scopes may
produce diagnostics (from inside template instantiations) and we
currently do it when processing another diagnostic, which leads to
crashes.
Moreover, we remember and access 'Scope*' when computing scopes. This
might lead to invalid memory access if the Scope is deleted by the time
we run the delayed computation. We did not actually construct an example
when this happens, though.
From the VCS and review history, it seems the optimization was
introduced in the initial version without a mention of any performance
benchmarks justifying the performance gains. This led me to a
conclusion that the optimization was premature, so removing it to avoid
crashes seems like the right trade-off at that point.
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: MaskRay, jkorous, arphaman, kadircet, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D65796
llvm-svn: 368019
2019-08-06 19:37:50 +08:00
|
|
|
Unresolved.Name = Extracted->Name;
|
2019-02-08 21:27:47 +08:00
|
|
|
Unresolved.Loc = Typo.getBeginLoc();
|
[clangd] Compute scopes eagerly in IncludeFixer
Summary:
Computing lazily leads to crashes. In particular, computing scopes may
produce diagnostics (from inside template instantiations) and we
currently do it when processing another diagnostic, which leads to
crashes.
Moreover, we remember and access 'Scope*' when computing scopes. This
might lead to invalid memory access if the Scope is deleted by the time
we run the delayed computation. We did not actually construct an example
when this happens, though.
From the VCS and review history, it seems the optimization was
introduced in the initial version without a mention of any performance
benchmarks justifying the performance gains. This led me to a
conclusion that the optimization was premature, so removing it to avoid
crashes seems like the right trade-off at that point.
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: MaskRay, jkorous, arphaman, kadircet, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D65796
llvm-svn: 368019
2019-08-06 19:37:50 +08:00
|
|
|
if (!Extracted->ResolvedScope && !S) // Give up if no scope available.
|
[clangd] Handle unresolved scope specifier when fixing includes.
Summary:
In the following examples, "clangd" is unresolved, and the fixer will try to fix
include for `clang::clangd`; however, clang::clangd::X is usually intended. So
when handling a qualifier that is unresolved, we change the unresolved name and
scopes so that the fixer will fix "clang::clangd::X" in the following example.
```
namespace clang {
clangd::X
~~~~~~
}
// or
clang::clangd::X
~~~~~~
```
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, jdoerfert, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D58185
llvm-svn: 354330
2019-02-19 22:32:22 +08:00
|
|
|
return TypoCorrection();
|
|
|
|
|
[clangd] Compute scopes eagerly in IncludeFixer
Summary:
Computing lazily leads to crashes. In particular, computing scopes may
produce diagnostics (from inside template instantiations) and we
currently do it when processing another diagnostic, which leads to
crashes.
Moreover, we remember and access 'Scope*' when computing scopes. This
might lead to invalid memory access if the Scope is deleted by the time
we run the delayed computation. We did not actually construct an example
when this happens, though.
From the VCS and review history, it seems the optimization was
introduced in the initial version without a mention of any performance
benchmarks justifying the performance gains. This led me to a
conclusion that the optimization was premature, so removing it to avoid
crashes seems like the right trade-off at that point.
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: MaskRay, jkorous, arphaman, kadircet, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D65796
llvm-svn: 368019
2019-08-06 19:37:50 +08:00
|
|
|
if (Extracted->ResolvedScope)
|
|
|
|
Unresolved.Scopes.push_back(*Extracted->ResolvedScope);
|
|
|
|
else // no qualifier or qualifier is unresolved.
|
|
|
|
Unresolved.Scopes = collectAccessibleScopes(
|
|
|
|
*SemaPtr, Typo, S, static_cast<Sema::LookupNameKind>(LookupKind));
|
|
|
|
|
|
|
|
if (Extracted->UnresolvedScope) {
|
|
|
|
for (std::string &Scope : Unresolved.Scopes)
|
|
|
|
Scope += *Extracted->UnresolvedScope;
|
|
|
|
}
|
[clangd] Handle unresolved scope specifier when fixing includes.
Summary:
In the following examples, "clangd" is unresolved, and the fixer will try to fix
include for `clang::clangd`; however, clang::clangd::X is usually intended. So
when handling a qualifier that is unresolved, we change the unresolved name and
scopes so that the fixer will fix "clang::clangd::X" in the following example.
```
namespace clang {
clangd::X
~~~~~~
}
// or
clang::clangd::X
~~~~~~
```
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, jdoerfert, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D58185
llvm-svn: 354330
2019-02-19 22:32:22 +08:00
|
|
|
|
2019-02-07 17:23:22 +08:00
|
|
|
LastUnresolvedName = std::move(Unresolved);
|
|
|
|
|
|
|
|
// Never return a valid correction to try to recover. Our suggested fixes
|
|
|
|
// always require a rebuild.
|
|
|
|
return TypoCorrection();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Sema *SemaPtr = nullptr;
|
|
|
|
|
|
|
|
llvm::Optional<UnresolvedName> &LastUnresolvedName;
|
|
|
|
};
|
|
|
|
|
|
|
|
llvm::IntrusiveRefCntPtr<ExternalSemaSource>
|
|
|
|
IncludeFixer::unresolvedNameRecorder() {
|
|
|
|
return new UnresolvedNameRecorder(LastUnresolvedName);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<Fix> IncludeFixer::fixUnresolvedName() const {
|
2022-06-21 02:33:56 +08:00
|
|
|
assert(LastUnresolvedName);
|
2019-02-07 17:23:22 +08:00
|
|
|
auto &Unresolved = *LastUnresolvedName;
|
|
|
|
vlog("Trying to fix unresolved name \"{0}\" in scopes: [{1}]",
|
[clangd] Compute scopes eagerly in IncludeFixer
Summary:
Computing lazily leads to crashes. In particular, computing scopes may
produce diagnostics (from inside template instantiations) and we
currently do it when processing another diagnostic, which leads to
crashes.
Moreover, we remember and access 'Scope*' when computing scopes. This
might lead to invalid memory access if the Scope is deleted by the time
we run the delayed computation. We did not actually construct an example
when this happens, though.
From the VCS and review history, it seems the optimization was
introduced in the initial version without a mention of any performance
benchmarks justifying the performance gains. This led me to a
conclusion that the optimization was premature, so removing it to avoid
crashes seems like the right trade-off at that point.
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: MaskRay, jkorous, arphaman, kadircet, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D65796
llvm-svn: 368019
2019-08-06 19:37:50 +08:00
|
|
|
Unresolved.Name, llvm::join(Unresolved.Scopes, ", "));
|
2019-02-07 17:23:22 +08:00
|
|
|
|
|
|
|
FuzzyFindRequest Req;
|
|
|
|
Req.AnyScope = false;
|
|
|
|
Req.Query = Unresolved.Name;
|
[clangd] Compute scopes eagerly in IncludeFixer
Summary:
Computing lazily leads to crashes. In particular, computing scopes may
produce diagnostics (from inside template instantiations) and we
currently do it when processing another diagnostic, which leads to
crashes.
Moreover, we remember and access 'Scope*' when computing scopes. This
might lead to invalid memory access if the Scope is deleted by the time
we run the delayed computation. We did not actually construct an example
when this happens, though.
From the VCS and review history, it seems the optimization was
introduced in the initial version without a mention of any performance
benchmarks justifying the performance gains. This led me to a
conclusion that the optimization was premature, so removing it to avoid
crashes seems like the right trade-off at that point.
Reviewers: sammccall
Reviewed By: sammccall
Subscribers: MaskRay, jkorous, arphaman, kadircet, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D65796
llvm-svn: 368019
2019-08-06 19:37:50 +08:00
|
|
|
Req.Scopes = Unresolved.Scopes;
|
2019-02-07 17:23:22 +08:00
|
|
|
Req.RestrictForCodeCompletion = true;
|
|
|
|
Req.Limit = 100;
|
|
|
|
|
2019-02-18 21:12:10 +08:00
|
|
|
if (llvm::Optional<const SymbolSlab *> Syms = fuzzyFindCached(Req))
|
|
|
|
return fixesForSymbols(**Syms);
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::Optional<const SymbolSlab *>
|
|
|
|
IncludeFixer::fuzzyFindCached(const FuzzyFindRequest &Req) const {
|
|
|
|
auto ReqStr = llvm::formatv("{0}", toJSON(Req)).str();
|
|
|
|
auto I = FuzzyFindCache.find(ReqStr);
|
|
|
|
if (I != FuzzyFindCache.end())
|
|
|
|
return &I->second;
|
|
|
|
|
|
|
|
if (IndexRequestCount >= IndexRequestLimit)
|
|
|
|
return llvm::None;
|
|
|
|
IndexRequestCount++;
|
|
|
|
|
2019-02-07 17:23:22 +08:00
|
|
|
SymbolSlab::Builder Matches;
|
|
|
|
Index.fuzzyFind(Req, [&](const Symbol &Sym) {
|
|
|
|
if (Sym.Name != Req.Query)
|
|
|
|
return;
|
|
|
|
if (!Sym.IncludeHeaders.empty())
|
|
|
|
Matches.insert(Sym);
|
|
|
|
});
|
|
|
|
auto Syms = std::move(Matches).build();
|
2019-02-18 21:12:10 +08:00
|
|
|
auto E = FuzzyFindCache.try_emplace(ReqStr, std::move(Syms));
|
|
|
|
return &E.first->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::Optional<const SymbolSlab *>
|
|
|
|
IncludeFixer::lookupCached(const SymbolID &ID) const {
|
|
|
|
LookupRequest Req;
|
|
|
|
Req.IDs.insert(ID);
|
|
|
|
|
|
|
|
auto I = LookupCache.find(ID);
|
|
|
|
if (I != LookupCache.end())
|
|
|
|
return &I->second;
|
|
|
|
|
|
|
|
if (IndexRequestCount >= IndexRequestLimit)
|
|
|
|
return llvm::None;
|
|
|
|
IndexRequestCount++;
|
|
|
|
|
|
|
|
// FIXME: consider batching the requests for all diagnostics.
|
|
|
|
SymbolSlab::Builder Matches;
|
|
|
|
Index.lookup(Req, [&](const Symbol &Sym) { Matches.insert(Sym); });
|
|
|
|
auto Syms = std::move(Matches).build();
|
|
|
|
|
|
|
|
std::vector<Fix> Fixes;
|
|
|
|
if (!Syms.empty()) {
|
|
|
|
auto &Matched = *Syms.begin();
|
|
|
|
if (!Matched.IncludeHeaders.empty() && Matched.Definition &&
|
|
|
|
Matched.CanonicalDeclaration.FileURI == Matched.Definition.FileURI)
|
|
|
|
Fixes = fixesForSymbols(Syms);
|
|
|
|
}
|
|
|
|
auto E = LookupCache.try_emplace(ID, std::move(Syms));
|
|
|
|
return &E.first->second;
|
2019-02-07 17:23:22 +08:00
|
|
|
}
|
2019-01-28 22:01:55 +08:00
|
|
|
|
|
|
|
} // namespace clangd
|
|
|
|
} // namespace clang
|