1 //===--- DependencyFile.cpp - Generate dependency file --------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This code generates dependency files.
11 //===----------------------------------------------------------------------===//
13 #include "clang/Frontend/Utils.h"
14 #include "clang/Basic/FileManager.h"
15 #include "clang/Basic/SourceManager.h"
16 #include "clang/Frontend/DependencyOutputOptions.h"
17 #include "clang/Frontend/FrontendDiagnostic.h"
18 #include "clang/Lex/DirectoryLookup.h"
19 #include "clang/Lex/ModuleMap.h"
20 #include "clang/Lex/PPCallbacks.h"
21 #include "clang/Lex/Preprocessor.h"
22 #include "clang/Serialization/ASTReader.h"
23 #include "llvm/ADT/StringSet.h"
24 #include "llvm/ADT/StringSwitch.h"
25 #include "llvm/Support/FileSystem.h"
26 #include "llvm/Support/Path.h"
27 #include "llvm/Support/raw_ostream.h"
29 using namespace clang
;
32 struct DepCollectorPPCallbacks
: public PPCallbacks
{
33 DependencyCollector
&DepCollector
;
35 DepCollectorPPCallbacks(DependencyCollector
&L
, Preprocessor
&PP
)
36 : DepCollector(L
), PP(PP
) {}
38 void LexedFileChanged(FileID FID
, LexedFileChangeReason Reason
,
39 SrcMgr::CharacteristicKind FileType
, FileID PrevFID
,
40 SourceLocation Loc
) override
{
41 if (Reason
!= PPCallbacks::LexedFileChangeReason::EnterFile
)
44 // Dependency generation really does want to go all the way to the
45 // file entry for a source location to find out what is depended on.
46 // We do not want #line markers to affect dependency generation!
47 if (Optional
<StringRef
> Filename
=
48 PP
.getSourceManager().getNonBuiltinFilenameForID(FID
))
49 DepCollector
.maybeAddDependency(
50 llvm::sys::path::remove_leading_dotslash(*Filename
),
51 /*FromModule*/ false, isSystem(FileType
), /*IsModuleFile*/ false,
55 void FileSkipped(const FileEntryRef
&SkippedFile
, const Token
&FilenameTok
,
56 SrcMgr::CharacteristicKind FileType
) override
{
58 llvm::sys::path::remove_leading_dotslash(SkippedFile
.getName());
59 DepCollector
.maybeAddDependency(Filename
, /*FromModule=*/false,
60 /*IsSystem=*/isSystem(FileType
),
61 /*IsModuleFile=*/false,
65 void InclusionDirective(SourceLocation HashLoc
, const Token
&IncludeTok
,
66 StringRef FileName
, bool IsAngled
,
67 CharSourceRange FilenameRange
,
68 Optional
<FileEntryRef
> File
, StringRef SearchPath
,
69 StringRef RelativePath
, const Module
*Imported
,
70 SrcMgr::CharacteristicKind FileType
) override
{
72 DepCollector
.maybeAddDependency(FileName
, /*FromModule*/false,
73 /*IsSystem*/false, /*IsModuleFile*/false,
75 // Files that actually exist are handled by FileChanged.
78 void HasInclude(SourceLocation Loc
, StringRef SpelledFilename
, bool IsAngled
,
79 Optional
<FileEntryRef
> File
,
80 SrcMgr::CharacteristicKind FileType
) override
{
84 llvm::sys::path::remove_leading_dotslash(File
->getName());
85 DepCollector
.maybeAddDependency(Filename
, /*FromModule=*/false,
86 /*IsSystem=*/isSystem(FileType
),
87 /*IsModuleFile=*/false,
91 void EndOfMainFile() override
{
92 DepCollector
.finishedMainFile(PP
.getDiagnostics());
96 struct DepCollectorMMCallbacks
: public ModuleMapCallbacks
{
97 DependencyCollector
&DepCollector
;
98 DepCollectorMMCallbacks(DependencyCollector
&DC
) : DepCollector(DC
) {}
100 void moduleMapFileRead(SourceLocation Loc
, const FileEntry
&Entry
,
101 bool IsSystem
) override
{
102 StringRef Filename
= Entry
.getName();
103 DepCollector
.maybeAddDependency(Filename
, /*FromModule*/false,
104 /*IsSystem*/IsSystem
,
105 /*IsModuleFile*/false,
110 struct DepCollectorASTListener
: public ASTReaderListener
{
111 DependencyCollector
&DepCollector
;
112 DepCollectorASTListener(DependencyCollector
&L
) : DepCollector(L
) { }
113 bool needsInputFileVisitation() override
{ return true; }
114 bool needsSystemInputFileVisitation() override
{
115 return DepCollector
.needSystemDependencies();
117 void visitModuleFile(StringRef Filename
,
118 serialization::ModuleKind Kind
) override
{
119 DepCollector
.maybeAddDependency(Filename
, /*FromModule*/true,
120 /*IsSystem*/false, /*IsModuleFile*/true,
123 bool visitInputFile(StringRef Filename
, bool IsSystem
,
124 bool IsOverridden
, bool IsExplicitModule
) override
{
125 if (IsOverridden
|| IsExplicitModule
)
128 DepCollector
.maybeAddDependency(Filename
, /*FromModule*/true, IsSystem
,
129 /*IsModuleFile*/false, /*IsMissing*/false);
133 } // end anonymous namespace
135 void DependencyCollector::maybeAddDependency(StringRef Filename
,
136 bool FromModule
, bool IsSystem
,
139 if (sawDependency(Filename
, FromModule
, IsSystem
, IsModuleFile
, IsMissing
))
140 addDependency(Filename
);
143 bool DependencyCollector::addDependency(StringRef Filename
) {
144 StringRef SearchPath
;
146 // Make the search insensitive to case and separators.
147 llvm::SmallString
<256> TmpPath
= Filename
;
148 llvm::sys::path::native(TmpPath
);
149 std::transform(TmpPath
.begin(), TmpPath
.end(), TmpPath
.begin(), ::tolower
);
150 SearchPath
= TmpPath
.str();
152 SearchPath
= Filename
;
155 if (Seen
.insert(SearchPath
).second
) {
156 Dependencies
.push_back(std::string(Filename
));
162 static bool isSpecialFilename(StringRef Filename
) {
163 return llvm::StringSwitch
<bool>(Filename
)
164 .Case("<built-in>", true)
165 .Case("<stdin>", true)
169 bool DependencyCollector::sawDependency(StringRef Filename
, bool FromModule
,
170 bool IsSystem
, bool IsModuleFile
,
172 return !isSpecialFilename(Filename
) &&
173 (needSystemDependencies() || !IsSystem
);
176 DependencyCollector::~DependencyCollector() { }
177 void DependencyCollector::attachToPreprocessor(Preprocessor
&PP
) {
178 PP
.addPPCallbacks(std::make_unique
<DepCollectorPPCallbacks
>(*this, PP
));
179 PP
.getHeaderSearchInfo().getModuleMap().addModuleMapCallbacks(
180 std::make_unique
<DepCollectorMMCallbacks
>(*this));
182 void DependencyCollector::attachToASTReader(ASTReader
&R
) {
183 R
.addListener(std::make_unique
<DepCollectorASTListener
>(*this));
186 DependencyFileGenerator::DependencyFileGenerator(
187 const DependencyOutputOptions
&Opts
)
188 : OutputFile(Opts
.OutputFile
), Targets(Opts
.Targets
),
189 IncludeSystemHeaders(Opts
.IncludeSystemHeaders
),
190 PhonyTarget(Opts
.UsePhonyTargets
),
191 AddMissingHeaderDeps(Opts
.AddMissingHeaderDeps
), SeenMissingHeader(false),
192 IncludeModuleFiles(Opts
.IncludeModuleFiles
),
193 OutputFormat(Opts
.OutputFormat
), InputFileIndex(0) {
194 for (const auto &ExtraDep
: Opts
.ExtraDeps
) {
195 if (addDependency(ExtraDep
.first
))
200 void DependencyFileGenerator::attachToPreprocessor(Preprocessor
&PP
) {
201 // Disable the "file not found" diagnostic if the -MG option was given.
202 if (AddMissingHeaderDeps
)
203 PP
.SetSuppressIncludeNotFoundError(true);
205 DependencyCollector::attachToPreprocessor(PP
);
208 bool DependencyFileGenerator::sawDependency(StringRef Filename
, bool FromModule
,
209 bool IsSystem
, bool IsModuleFile
,
212 // Handle the case of missing file from an inclusion directive.
213 if (AddMissingHeaderDeps
)
215 SeenMissingHeader
= true;
218 if (IsModuleFile
&& !IncludeModuleFiles
)
221 if (isSpecialFilename(Filename
))
224 if (IncludeSystemHeaders
)
230 void DependencyFileGenerator::finishedMainFile(DiagnosticsEngine
&Diags
) {
231 outputDependencyFile(Diags
);
234 /// Print the filename, with escaping or quoting that accommodates the three
235 /// most likely tools that use dependency files: GNU Make, BSD Make, and
238 /// BSD Make is the simplest case: It does no escaping at all. This means
239 /// characters that are normally delimiters, i.e. space and # (the comment
240 /// character) simply aren't supported in filenames.
242 /// GNU Make does allow space and # in filenames, but to avoid being treated
243 /// as a delimiter or comment, these must be escaped with a backslash. Because
244 /// backslash is itself the escape character, if a backslash appears in a
245 /// filename, it should be escaped as well. (As a special case, $ is escaped
246 /// as $$, which is the normal Make way to handle the $ character.)
247 /// For compatibility with BSD Make and historical practice, if GNU Make
248 /// un-escapes characters in a filename but doesn't find a match, it will
249 /// retry with the unmodified original string.
251 /// GCC tries to accommodate both Make formats by escaping any space or #
252 /// characters in the original filename, but not escaping backslashes. The
253 /// apparent intent is so that filenames with backslashes will be handled
254 /// correctly by BSD Make, and by GNU Make in its fallback mode of using the
255 /// unmodified original string; filenames with # or space characters aren't
256 /// supported by BSD Make at all, but will be handled correctly by GNU Make
257 /// due to the escaping.
259 /// A corner case that GCC gets only partly right is when the original filename
260 /// has a backslash immediately followed by space or #. GNU Make would expect
261 /// this backslash to be escaped; however GCC escapes the original backslash
262 /// only when followed by space, not #. It will therefore take a dependency
263 /// from a directive such as
264 /// #include "a\ b\#c.h"
267 /// which GNU Make will interpret as
269 /// followed by a comment. Failing to find this file, it will fall back to the
270 /// original string, which probably doesn't exist either; in any case it won't
273 /// which is the actual filename specified by the include directive.
275 /// Clang does what GCC does, rather than what GNU Make expects.
277 /// NMake/Jom has a different set of scary characters, but wraps filespecs in
278 /// double-quotes to avoid misinterpreting them; see
279 /// https://msdn.microsoft.com/en-us/library/dd9y37ha.aspx for NMake info,
280 /// https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx
281 /// for Windows file-naming info.
282 static void PrintFilename(raw_ostream
&OS
, StringRef Filename
,
283 DependencyOutputFormat OutputFormat
) {
284 // Convert filename to platform native path
285 llvm::SmallString
<256> NativePath
;
286 llvm::sys::path::native(Filename
.str(), NativePath
);
288 if (OutputFormat
== DependencyOutputFormat::NMake
) {
289 // Add quotes if needed. These are the characters listed as "special" to
290 // NMake, that are legal in a Windows filespec, and that could cause
291 // misinterpretation of the dependency string.
292 if (NativePath
.find_first_of(" #${}^!") != StringRef::npos
)
293 OS
<< '\"' << NativePath
<< '\"';
298 assert(OutputFormat
== DependencyOutputFormat::Make
);
299 for (unsigned i
= 0, e
= NativePath
.size(); i
!= e
; ++i
) {
300 if (NativePath
[i
] == '#') // Handle '#' the broken gcc way.
302 else if (NativePath
[i
] == ' ') { // Handle space correctly.
305 while (j
> 0 && NativePath
[--j
] == '\\')
307 } else if (NativePath
[i
] == '$') // $ is escaped by $$.
313 void DependencyFileGenerator::outputDependencyFile(DiagnosticsEngine
&Diags
) {
314 if (SeenMissingHeader
) {
315 llvm::sys::fs::remove(OutputFile
);
320 llvm::raw_fd_ostream
OS(OutputFile
, EC
, llvm::sys::fs::OF_TextWithCRLF
);
322 Diags
.Report(diag::err_fe_error_opening
) << OutputFile
<< EC
.message();
326 outputDependencyFile(OS
);
329 void DependencyFileGenerator::outputDependencyFile(llvm::raw_ostream
&OS
) {
330 // Write out the dependency targets, trying to avoid overly long
331 // lines when possible. We try our best to emit exactly the same
332 // dependency file as GCC (4.2), assuming the included files are the
334 const unsigned MaxColumns
= 75;
335 unsigned Columns
= 0;
337 for (StringRef Target
: Targets
) {
338 unsigned N
= Target
.size();
341 } else if (Columns
+ N
+ 2 > MaxColumns
) {
348 // Targets already quoted as needed.
355 // Now add each dependency in the order it was seen, but avoiding
357 ArrayRef
<std::string
> Files
= getDependencies();
358 for (StringRef File
: Files
) {
359 // Start a new line if this would exceed the column limit. Make
360 // sure to leave space for a trailing " \" in case we need to
361 // break the line on the next iteration.
362 unsigned N
= File
.size();
363 if (Columns
+ (N
+ 1) + 2 > MaxColumns
) {
368 PrintFilename(OS
, File
, OutputFormat
);
373 // Create phony targets if requested.
374 if (PhonyTarget
&& !Files
.empty()) {
376 for (auto I
= Files
.begin(), E
= Files
.end(); I
!= E
; ++I
) {
377 if (Index
++ == InputFileIndex
)
380 PrintFilename(OS
, *I
, OutputFormat
);