Summary: Add usage count to find-all-symbols. FindAllSymbols now finds (most!) main-file usages of the discovered symbols. The per-TU map output has NumUses=0 or 1 (only one use per file is counted). The reducer aggregates these to find the number of files that use a symbol. The NumOccurrences is now set to 1 in the mapper rather than being inferred by the reducer, for consistency. The idea here is to use NumUses for ranking: intuitively number of files that use a symbol is more meaningful than number of files that include the header. Reviewers: hokein, bkramer Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D30210 llvm-svn: 296446
33 lines
912 B
C++
33 lines
912 B
C++
//===-- InMemorySymbolIndex.cpp--------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "InMemorySymbolIndex.h"
|
|
|
|
using clang::find_all_symbols::SymbolAndSignals;
|
|
|
|
namespace clang {
|
|
namespace include_fixer {
|
|
|
|
InMemorySymbolIndex::InMemorySymbolIndex(
|
|
const std::vector<SymbolAndSignals> &Symbols) {
|
|
for (const auto &Symbol : Symbols)
|
|
LookupTable[Symbol.Symbol.getName()].push_back(Symbol);
|
|
}
|
|
|
|
std::vector<SymbolAndSignals>
|
|
InMemorySymbolIndex::search(llvm::StringRef Identifier) {
|
|
auto I = LookupTable.find(Identifier);
|
|
if (I != LookupTable.end())
|
|
return I->second;
|
|
return {};
|
|
}
|
|
|
|
} // namespace include_fixer
|
|
} // namespace clang
|