9#ifndef LLVM_CLANG_TOOLING_DEPENDENCYSCANNING_DEPENDENCYSCANNINGTOOL_H
10#define LLVM_CLANG_TOOLING_DEPENDENCYSCANNING_DEPENDENCYSCANNINGTOOL_H
16#include "llvm/ADT/DenseSet.h"
17#include "llvm/ADT/MapVector.h"
25namespace dependencies {
84 llvm::vfs::createPhysicalFileSystem());
108 StringRef CWD, std::string &MakeformatOutput,
109 std::string &MakeformatOutputPath);
113 std::string MakeformatOutput;
114 std::string MakeformatOutputPath;
117 MakeformatOutputPath);
137 const llvm::DenseSet<ModuleID> &AlreadySeen,
144 StringRef ModuleName,
const std::vector<std::string> &CommandLine,
145 StringRef CWD,
const llvm::DenseSet<ModuleID> &AlreadySeen,
157 : AlreadySeen(AlreadySeen) {}
160 Commands.push_back(std::move(
Cmd));
166 Dependencies.push_back(std::string(
File));
170 PrebuiltModuleDeps.emplace_back(std::move(PMD));
174 ClangModuleDeps[MD.
ID] = std::move(MD);
178 DirectModuleDeps.push_back(
ID);
182 ContextHash = std::move(Hash);
189 std::vector<std::string> Dependencies;
190 std::vector<PrebuiltModuleDep> PrebuiltModuleDeps;
191 llvm::MapVector<ModuleID, ModuleDeps> ClangModuleDeps;
192 std::vector<ModuleID> DirectModuleDeps;
193 std::vector<Command> Commands;
194 std::string ContextHash;
195 std::vector<std::string> OutputPaths;
196 const llvm::DenseSet<ModuleID> &AlreadySeen;
206 : LookupModuleOutput(
std::move(LMO)) {
207 if (!LookupModuleOutput) {
208 LookupModuleOutput = [](
const ModuleID &,
210 llvm::report_fatal_error(
"unexpected call to lookupModuleOutput");
217 return LookupModuleOutput(
ID,
Kind);
enum clang::sema::@1724::IndirectLocalPathEntry::EntryKind Kind
DependencyOutputOptions - Options for controlling the compiler dependency file generation.
The JSON file list parser is used to communicate input to InstallAPI.