2021-08-18 16:08:08 +08:00
|
|
|
//===--- IncludeCleaner.h - Unused/Missing Headers Analysis -----*- 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
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// \file
|
|
|
|
/// Include Cleaner is clangd functionality for providing diagnostics for misuse
|
|
|
|
/// of transitive headers and unused includes. It is inspired by
|
|
|
|
/// Include-What-You-Use tool (https://include-what-you-use.org/). Our goal is
|
|
|
|
/// to provide useful warnings in most popular scenarios but not 1:1 exact
|
|
|
|
/// feature compatibility.
|
|
|
|
///
|
|
|
|
/// FIXME(kirillbobyrev): Add support for IWYU pragmas.
|
|
|
|
/// FIXME(kirillbobyrev): Add support for standard library headers.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_INCLUDE_CLEANER_H
|
|
|
|
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_INCLUDE_CLEANER_H
|
|
|
|
|
|
|
|
#include "Headers.h"
|
|
|
|
#include "ParsedAST.h"
|
|
|
|
#include "clang/Basic/SourceLocation.h"
|
|
|
|
#include "llvm/ADT/DenseSet.h"
|
2021-10-06 00:08:00 +08:00
|
|
|
#include <vector>
|
2021-08-18 16:08:08 +08:00
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace clangd {
|
|
|
|
|
|
|
|
using ReferencedLocations = llvm::DenseSet<SourceLocation>;
|
|
|
|
/// Finds locations of all symbols used in the main file.
|
|
|
|
///
|
2021-10-27 16:30:03 +08:00
|
|
|
/// - RecursiveASTVisitor finds references to symbols and records their
|
|
|
|
/// associated locations. These may be macro expansions, and are not resolved
|
|
|
|
/// to their spelling or expansion location. These locations are later used to
|
|
|
|
/// determine which headers should be marked as "used" and "directly used".
|
|
|
|
/// - We also examine all identifier tokens in the file in case they reference
|
|
|
|
/// macros.
|
2021-08-18 16:08:08 +08:00
|
|
|
///
|
|
|
|
/// We use this to compute unused headers, so we:
|
|
|
|
///
|
|
|
|
/// - cover the whole file in a single traversal for efficiency
|
|
|
|
/// - don't attempt to describe where symbols were referenced from in
|
|
|
|
/// ambiguous cases (e.g. implicitly used symbols, multiple declarations)
|
|
|
|
/// - err on the side of reporting all possible locations
|
|
|
|
ReferencedLocations findReferencedLocations(ParsedAST &AST);
|
|
|
|
|
2021-10-06 00:08:00 +08:00
|
|
|
/// Retrieves IDs of all files containing SourceLocations from \p Locs.
|
2021-10-28 03:13:32 +08:00
|
|
|
/// The output only includes things SourceManager sees as files (not macro IDs).
|
|
|
|
/// This can include <built-in>, <scratch space> etc that are not true files.
|
2021-10-06 00:08:00 +08:00
|
|
|
llvm::DenseSet<FileID> findReferencedFiles(const ReferencedLocations &Locs,
|
|
|
|
const SourceManager &SM);
|
|
|
|
|
|
|
|
/// Maps FileIDs to the internal IncludeStructure representation (HeaderIDs).
|
2021-10-28 03:13:32 +08:00
|
|
|
/// FileIDs that are not true files (<built-in> etc) are dropped.
|
2021-10-06 00:08:00 +08:00
|
|
|
llvm::DenseSet<IncludeStructure::HeaderID>
|
|
|
|
translateToHeaderIDs(const llvm::DenseSet<FileID> &Files,
|
|
|
|
const IncludeStructure &Includes, const SourceManager &SM);
|
|
|
|
|
|
|
|
/// Retrieves headers that are referenced from the main file but not used.
|
2021-10-29 23:57:29 +08:00
|
|
|
/// In unclear cases, headers are not marked as unused.
|
2021-10-06 00:08:00 +08:00
|
|
|
std::vector<const Inclusion *>
|
2021-10-29 23:57:29 +08:00
|
|
|
getUnused(ParsedAST &AST,
|
2021-10-06 00:08:00 +08:00
|
|
|
const llvm::DenseSet<IncludeStructure::HeaderID> &ReferencedFiles);
|
|
|
|
|
|
|
|
std::vector<const Inclusion *> computeUnusedIncludes(ParsedAST &AST);
|
|
|
|
|
2021-10-26 17:53:34 +08:00
|
|
|
std::vector<Diag> issueUnusedIncludesDiagnostics(ParsedAST &AST,
|
|
|
|
llvm::StringRef Code);
|
|
|
|
|
2021-08-18 16:08:08 +08:00
|
|
|
} // namespace clangd
|
|
|
|
} // namespace clang
|
|
|
|
|
|
|
|
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANGD_INCLUDE_CLEANER_H
|