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/Support/FileSystem.h"
25 #include "llvm/Support/Path.h"
26 #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 (std::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 EmbedDirective(SourceLocation
, StringRef
, bool,
66 OptionalFileEntryRef File
,
67 const LexEmbedParametersResult
&) override
{
68 assert(File
&& "expected to only be called when the file is found");
70 llvm::sys::path::remove_leading_dotslash(File
->getName());
71 DepCollector
.maybeAddDependency(FileName
,
74 /*IsModuleFile*/ false,
78 void InclusionDirective(SourceLocation HashLoc
, const Token
&IncludeTok
,
79 StringRef FileName
, bool IsAngled
,
80 CharSourceRange FilenameRange
,
81 OptionalFileEntryRef File
, StringRef SearchPath
,
82 StringRef RelativePath
, const Module
*SuggestedModule
,
84 SrcMgr::CharacteristicKind FileType
) override
{
86 DepCollector
.maybeAddDependency(FileName
, /*FromModule*/ false,
88 /*IsModuleFile*/ false,
90 // Files that actually exist are handled by FileChanged.
93 void HasEmbed(SourceLocation
, StringRef
, bool,
94 OptionalFileEntryRef File
) override
{
98 llvm::sys::path::remove_leading_dotslash(File
->getName());
99 DepCollector
.maybeAddDependency(Filename
,
100 /*FromModule=*/false, false,
101 /*IsModuleFile=*/false,
102 /*IsMissing=*/false);
105 void HasInclude(SourceLocation Loc
, StringRef SpelledFilename
, bool IsAngled
,
106 OptionalFileEntryRef File
,
107 SrcMgr::CharacteristicKind FileType
) override
{
111 llvm::sys::path::remove_leading_dotslash(File
->getName());
112 DepCollector
.maybeAddDependency(Filename
, /*FromModule=*/false,
113 /*IsSystem=*/isSystem(FileType
),
114 /*IsModuleFile=*/false,
115 /*IsMissing=*/false);
118 void EndOfMainFile() override
{
119 DepCollector
.finishedMainFile(PP
.getDiagnostics());
123 struct DepCollectorMMCallbacks
: public ModuleMapCallbacks
{
124 DependencyCollector
&DepCollector
;
125 DepCollectorMMCallbacks(DependencyCollector
&DC
) : DepCollector(DC
) {}
127 void moduleMapFileRead(SourceLocation Loc
, FileEntryRef Entry
,
128 bool IsSystem
) override
{
129 StringRef Filename
= Entry
.getName();
130 DepCollector
.maybeAddDependency(Filename
, /*FromModule*/ false,
131 /*IsSystem*/ IsSystem
,
132 /*IsModuleFile*/ false,
133 /*IsMissing*/ false);
137 struct DepCollectorASTListener
: public ASTReaderListener
{
138 DependencyCollector
&DepCollector
;
139 FileManager
&FileMgr
;
140 DepCollectorASTListener(DependencyCollector
&L
, FileManager
&FileMgr
)
141 : DepCollector(L
), FileMgr(FileMgr
) {}
142 bool needsInputFileVisitation() override
{ return true; }
143 bool needsSystemInputFileVisitation() override
{
144 return DepCollector
.needSystemDependencies();
146 void visitModuleFile(StringRef Filename
,
147 serialization::ModuleKind Kind
) override
{
148 DepCollector
.maybeAddDependency(Filename
, /*FromModule*/ true,
149 /*IsSystem*/ false, /*IsModuleFile*/ true,
150 /*IsMissing*/ false);
152 bool visitInputFile(StringRef Filename
, bool IsSystem
,
153 bool IsOverridden
, bool IsExplicitModule
) override
{
154 if (IsOverridden
|| IsExplicitModule
)
157 // Run this through the FileManager in order to respect 'use-external-name'
158 // in case we have a VFS overlay.
159 if (auto FE
= FileMgr
.getOptionalFileRef(Filename
))
160 Filename
= FE
->getName();
162 DepCollector
.maybeAddDependency(Filename
, /*FromModule*/ true, IsSystem
,
163 /*IsModuleFile*/ false,
164 /*IsMissing*/ false);
168 } // end anonymous namespace
170 void DependencyCollector::maybeAddDependency(StringRef Filename
,
171 bool FromModule
, bool IsSystem
,
174 if (sawDependency(Filename
, FromModule
, IsSystem
, IsModuleFile
, IsMissing
))
175 addDependency(Filename
);
178 bool DependencyCollector::addDependency(StringRef Filename
) {
179 StringRef SearchPath
;
181 // Make the search insensitive to case and separators.
182 llvm::SmallString
<256> TmpPath
= Filename
;
183 llvm::sys::path::native(TmpPath
);
184 std::transform(TmpPath
.begin(), TmpPath
.end(), TmpPath
.begin(), ::tolower
);
185 SearchPath
= TmpPath
.str();
187 SearchPath
= Filename
;
190 if (Seen
.insert(SearchPath
).second
) {
191 Dependencies
.push_back(std::string(Filename
));
197 static bool isSpecialFilename(StringRef Filename
) {
198 return Filename
== "<built-in>";
201 bool DependencyCollector::sawDependency(StringRef Filename
, bool FromModule
,
202 bool IsSystem
, bool IsModuleFile
,
204 return !isSpecialFilename(Filename
) &&
205 (needSystemDependencies() || !IsSystem
);
208 DependencyCollector::~DependencyCollector() { }
209 void DependencyCollector::attachToPreprocessor(Preprocessor
&PP
) {
210 PP
.addPPCallbacks(std::make_unique
<DepCollectorPPCallbacks
>(*this, PP
));
211 PP
.getHeaderSearchInfo().getModuleMap().addModuleMapCallbacks(
212 std::make_unique
<DepCollectorMMCallbacks
>(*this));
214 void DependencyCollector::attachToASTReader(ASTReader
&R
) {
216 std::make_unique
<DepCollectorASTListener
>(*this, R
.getFileManager()));
219 DependencyFileGenerator::DependencyFileGenerator(
220 const DependencyOutputOptions
&Opts
)
221 : OutputFile(Opts
.OutputFile
), Targets(Opts
.Targets
),
222 IncludeSystemHeaders(Opts
.IncludeSystemHeaders
),
223 PhonyTarget(Opts
.UsePhonyTargets
),
224 AddMissingHeaderDeps(Opts
.AddMissingHeaderDeps
), SeenMissingHeader(false),
225 IncludeModuleFiles(Opts
.IncludeModuleFiles
),
226 OutputFormat(Opts
.OutputFormat
), InputFileIndex(0) {
227 for (const auto &ExtraDep
: Opts
.ExtraDeps
) {
228 if (addDependency(ExtraDep
.first
))
233 void DependencyFileGenerator::attachToPreprocessor(Preprocessor
&PP
) {
234 // Disable the "file not found" diagnostic if the -MG option was given.
235 if (AddMissingHeaderDeps
)
236 PP
.SetSuppressIncludeNotFoundError(true);
238 DependencyCollector::attachToPreprocessor(PP
);
241 bool DependencyFileGenerator::sawDependency(StringRef Filename
, bool FromModule
,
242 bool IsSystem
, bool IsModuleFile
,
245 // Handle the case of missing file from an inclusion directive.
246 if (AddMissingHeaderDeps
)
248 SeenMissingHeader
= true;
251 if (IsModuleFile
&& !IncludeModuleFiles
)
254 if (isSpecialFilename(Filename
))
257 if (IncludeSystemHeaders
)
263 void DependencyFileGenerator::finishedMainFile(DiagnosticsEngine
&Diags
) {
264 outputDependencyFile(Diags
);
267 /// Print the filename, with escaping or quoting that accommodates the three
268 /// most likely tools that use dependency files: GNU Make, BSD Make, and
271 /// BSD Make is the simplest case: It does no escaping at all. This means
272 /// characters that are normally delimiters, i.e. space and # (the comment
273 /// character) simply aren't supported in filenames.
275 /// GNU Make does allow space and # in filenames, but to avoid being treated
276 /// as a delimiter or comment, these must be escaped with a backslash. Because
277 /// backslash is itself the escape character, if a backslash appears in a
278 /// filename, it should be escaped as well. (As a special case, $ is escaped
279 /// as $$, which is the normal Make way to handle the $ character.)
280 /// For compatibility with BSD Make and historical practice, if GNU Make
281 /// un-escapes characters in a filename but doesn't find a match, it will
282 /// retry with the unmodified original string.
284 /// GCC tries to accommodate both Make formats by escaping any space or #
285 /// characters in the original filename, but not escaping backslashes. The
286 /// apparent intent is so that filenames with backslashes will be handled
287 /// correctly by BSD Make, and by GNU Make in its fallback mode of using the
288 /// unmodified original string; filenames with # or space characters aren't
289 /// supported by BSD Make at all, but will be handled correctly by GNU Make
290 /// due to the escaping.
292 /// A corner case that GCC gets only partly right is when the original filename
293 /// has a backslash immediately followed by space or #. GNU Make would expect
294 /// this backslash to be escaped; however GCC escapes the original backslash
295 /// only when followed by space, not #. It will therefore take a dependency
296 /// from a directive such as
297 /// #include "a\ b\#c.h"
300 /// which GNU Make will interpret as
302 /// followed by a comment. Failing to find this file, it will fall back to the
303 /// original string, which probably doesn't exist either; in any case it won't
306 /// which is the actual filename specified by the include directive.
308 /// Clang does what GCC does, rather than what GNU Make expects.
310 /// NMake/Jom has a different set of scary characters, but wraps filespecs in
311 /// double-quotes to avoid misinterpreting them; see
312 /// https://msdn.microsoft.com/en-us/library/dd9y37ha.aspx for NMake info,
313 /// https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx
314 /// for Windows file-naming info.
315 static void PrintFilename(raw_ostream
&OS
, StringRef Filename
,
316 DependencyOutputFormat OutputFormat
) {
317 // Convert filename to platform native path
318 llvm::SmallString
<256> NativePath
;
319 llvm::sys::path::native(Filename
.str(), NativePath
);
321 if (OutputFormat
== DependencyOutputFormat::NMake
) {
322 // Add quotes if needed. These are the characters listed as "special" to
323 // NMake, that are legal in a Windows filespec, and that could cause
324 // misinterpretation of the dependency string.
325 if (NativePath
.find_first_of(" #${}^!") != StringRef::npos
)
326 OS
<< '\"' << NativePath
<< '\"';
331 assert(OutputFormat
== DependencyOutputFormat::Make
);
332 for (unsigned i
= 0, e
= NativePath
.size(); i
!= e
; ++i
) {
333 if (NativePath
[i
] == '#') // Handle '#' the broken gcc way.
335 else if (NativePath
[i
] == ' ') { // Handle space correctly.
338 while (j
> 0 && NativePath
[--j
] == '\\')
340 } else if (NativePath
[i
] == '$') // $ is escaped by $$.
346 void DependencyFileGenerator::outputDependencyFile(DiagnosticsEngine
&Diags
) {
347 if (SeenMissingHeader
) {
348 llvm::sys::fs::remove(OutputFile
);
353 llvm::raw_fd_ostream
OS(OutputFile
, EC
, llvm::sys::fs::OF_TextWithCRLF
);
355 Diags
.Report(diag::err_fe_error_opening
) << OutputFile
<< EC
.message();
359 outputDependencyFile(OS
);
362 void DependencyFileGenerator::outputDependencyFile(llvm::raw_ostream
&OS
) {
363 // Write out the dependency targets, trying to avoid overly long
364 // lines when possible. We try our best to emit exactly the same
365 // dependency file as GCC>=10, assuming the included files are the
367 const unsigned MaxColumns
= 75;
368 unsigned Columns
= 0;
370 for (StringRef Target
: Targets
) {
371 unsigned N
= Target
.size();
374 } else if (Columns
+ N
+ 2 > MaxColumns
) {
381 // Targets already quoted as needed.
388 // Now add each dependency in the order it was seen, but avoiding
390 ArrayRef
<std::string
> Files
= getDependencies();
391 for (StringRef File
: Files
) {
392 if (File
== "<stdin>")
394 // Start a new line if this would exceed the column limit. Make
395 // sure to leave space for a trailing " \" in case we need to
396 // break the line on the next iteration.
397 unsigned N
= File
.size();
398 if (Columns
+ (N
+ 1) + 2 > MaxColumns
) {
403 PrintFilename(OS
, File
, OutputFormat
);
408 // Create phony targets if requested.
409 if (PhonyTarget
&& !Files
.empty()) {
411 for (auto I
= Files
.begin(), E
= Files
.end(); I
!= E
; ++I
) {
412 if (Index
++ == InputFileIndex
)
414 PrintFilename(OS
, *I
, OutputFormat
);