blob: 478c33939cd70f3b3f8e686163e0fd73bd79cf19 [file] [log] [blame]
Daniel Dunbar750c3582008-10-24 22:12:41 +00001//===--- DependencyFile.cpp - Generate dependency file --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This code generates dependency files.
11//
12//===----------------------------------------------------------------------===//
13
Eli Friedmanb09f6e12009-05-19 04:14:29 +000014#include "clang/Frontend/Utils.h"
Chris Lattnerb9c3f962009-01-27 07:57:44 +000015#include "clang/Basic/FileManager.h"
Daniel Dunbar750c3582008-10-24 22:12:41 +000016#include "clang/Basic/SourceLocation.h"
Daniel Dunbar0e0bae82009-11-11 21:43:12 +000017#include "clang/Basic/SourceManager.h"
18#include "clang/Frontend/DependencyOutputOptions.h"
19#include "clang/Frontend/FrontendDiagnostic.h"
20#include "clang/Lex/DirectoryLookup.h"
21#include "clang/Lex/PPCallbacks.h"
22#include "clang/Lex/Preprocessor.h"
Daniel Dunbar750c3582008-10-24 22:12:41 +000023#include "llvm/ADT/StringSet.h"
Daniel Dunbar7e9f1f72008-10-27 20:01:06 +000024#include "llvm/Support/raw_ostream.h"
Daniel Dunbar750c3582008-10-24 22:12:41 +000025#include <string>
26
27using namespace clang;
28
29namespace {
Benjamin Kramerbd218282009-11-28 10:07:24 +000030class DependencyFileCallback : public PPCallbacks {
Daniel Dunbar7e9f1f72008-10-27 20:01:06 +000031 std::vector<std::string> Files;
32 llvm::StringSet<> FilesSet;
Daniel Dunbar750c3582008-10-24 22:12:41 +000033 const Preprocessor *PP;
Chris Lattner02fbb252009-01-11 19:28:34 +000034 std::vector<std::string> Targets;
Daniel Dunbara5a7bd02009-03-30 00:34:04 +000035 llvm::raw_ostream *OS;
Eli Friedmanb5c8f8b2009-05-19 03:35:57 +000036 bool IncludeSystemHeaders;
37 bool PhonyTarget;
Daniel Dunbar750c3582008-10-24 22:12:41 +000038private:
39 bool FileMatchesDepCriteria(const char *Filename,
Chris Lattner9d728512008-10-27 01:19:25 +000040 SrcMgr::CharacteristicKind FileType);
Daniel Dunbar750c3582008-10-24 22:12:41 +000041 void OutputDependencyFile();
42
43public:
Mike Stump1eb44332009-09-09 15:08:12 +000044 DependencyFileCallback(const Preprocessor *_PP,
45 llvm::raw_ostream *_OS,
Daniel Dunbar0e0bae82009-11-11 21:43:12 +000046 const DependencyOutputOptions &Opts)
47 : PP(_PP), Targets(Opts.Targets), OS(_OS),
48 IncludeSystemHeaders(Opts.IncludeSystemHeaders),
49 PhonyTarget(Opts.UsePhonyTargets) {}
Daniel Dunbara5a7bd02009-03-30 00:34:04 +000050
51 ~DependencyFileCallback() {
52 OutputDependencyFile();
53 OS->flush();
54 delete OS;
55 }
56
Daniel Dunbar750c3582008-10-24 22:12:41 +000057 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason,
Chris Lattner9d728512008-10-27 01:19:25 +000058 SrcMgr::CharacteristicKind FileType);
Daniel Dunbar750c3582008-10-24 22:12:41 +000059};
60}
61
Daniel Dunbarca11f612009-11-11 21:44:00 +000062void clang::AttachDependencyFileGen(Preprocessor &PP,
Daniel Dunbar0e0bae82009-11-11 21:43:12 +000063 const DependencyOutputOptions &Opts) {
64 if (Opts.Targets.empty()) {
Daniel Dunbarca11f612009-11-11 21:44:00 +000065 PP.getDiagnostics().Report(diag::err_fe_dependency_file_requires_MT);
Daniel Dunbar0e0bae82009-11-11 21:43:12 +000066 return;
67 }
Daniel Dunbara5a7bd02009-03-30 00:34:04 +000068
Daniel Dunbar0e0bae82009-11-11 21:43:12 +000069 std::string Err;
70 llvm::raw_ostream *OS(new llvm::raw_fd_ostream(Opts.OutputFile.c_str(), Err));
71 if (!Err.empty()) {
Daniel Dunbarca11f612009-11-11 21:44:00 +000072 PP.getDiagnostics().Report(diag::err_fe_error_opening)
Daniel Dunbar0e0bae82009-11-11 21:43:12 +000073 << Opts.OutputFile << Err;
74 return;
75 }
Daniel Dunbar750c3582008-10-24 22:12:41 +000076
Daniel Dunbarca11f612009-11-11 21:44:00 +000077 assert(!PP.getPPCallbacks() && "Preprocessor callbacks already registered!");
78 PP.setPPCallbacks(new DependencyFileCallback(&PP, OS, Opts));
Daniel Dunbar750c3582008-10-24 22:12:41 +000079}
80
81/// FileMatchesDepCriteria - Determine whether the given Filename should be
82/// considered as a dependency.
83bool DependencyFileCallback::FileMatchesDepCriteria(const char *Filename,
Chris Lattner9d728512008-10-27 01:19:25 +000084 SrcMgr::CharacteristicKind FileType) {
Daniel Dunbara5a7bd02009-03-30 00:34:04 +000085 if (strcmp("<built-in>", Filename) == 0)
86 return false;
Daniel Dunbar750c3582008-10-24 22:12:41 +000087
Eli Friedmanb5c8f8b2009-05-19 03:35:57 +000088 if (IncludeSystemHeaders)
Daniel Dunbara5a7bd02009-03-30 00:34:04 +000089 return true;
90
91 return FileType == SrcMgr::C_User;
Daniel Dunbar750c3582008-10-24 22:12:41 +000092}
93
94void DependencyFileCallback::FileChanged(SourceLocation Loc,
95 FileChangeReason Reason,
Chris Lattner9d728512008-10-27 01:19:25 +000096 SrcMgr::CharacteristicKind FileType) {
Daniel Dunbar750c3582008-10-24 22:12:41 +000097 if (Reason != PPCallbacks::EnterFile)
98 return;
Mike Stump1eb44332009-09-09 15:08:12 +000099
Daniel Dunbara5a7bd02009-03-30 00:34:04 +0000100 // Dependency generation really does want to go all the way to the
101 // file entry for a source location to find out what is depended on.
102 // We do not want #line markers to affect dependency generation!
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000103 SourceManager &SM = PP->getSourceManager();
Mike Stump1eb44332009-09-09 15:08:12 +0000104
Chris Lattnere86e4cd02009-01-28 05:42:38 +0000105 const FileEntry *FE =
106 SM.getFileEntryForID(SM.getFileID(SM.getInstantiationLoc(Loc)));
107 if (FE == 0) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000108
Chris Lattnere86e4cd02009-01-28 05:42:38 +0000109 const char *Filename = FE->getName();
Daniel Dunbar750c3582008-10-24 22:12:41 +0000110 if (!FileMatchesDepCriteria(Filename, FileType))
111 return;
112
113 // Remove leading "./"
Daniel Dunbar7e9f1f72008-10-27 20:01:06 +0000114 if (Filename[0] == '.' && Filename[1] == '/')
Daniel Dunbar750c3582008-10-24 22:12:41 +0000115 Filename = &Filename[2];
116
Daniel Dunbar7e9f1f72008-10-27 20:01:06 +0000117 if (FilesSet.insert(Filename))
118 Files.push_back(Filename);
Daniel Dunbar750c3582008-10-24 22:12:41 +0000119}
120
121void DependencyFileCallback::OutputDependencyFile() {
Daniel Dunbar7e9f1f72008-10-27 20:01:06 +0000122 // Write out the dependency targets, trying to avoid overly long
123 // lines when possible. We try our best to emit exactly the same
124 // dependency file as GCC (4.2), assuming the included files are the
125 // same.
126 const unsigned MaxColumns = 75;
Chris Lattner02fbb252009-01-11 19:28:34 +0000127 unsigned Columns = 0;
128
129 for (std::vector<std::string>::iterator
130 I = Targets.begin(), E = Targets.end(); I != E; ++I) {
131 unsigned N = I->length();
132 if (Columns == 0) {
133 Columns += N;
Daniel Dunbara5a7bd02009-03-30 00:34:04 +0000134 *OS << *I;
Chris Lattner02fbb252009-01-11 19:28:34 +0000135 } else if (Columns + N + 2 > MaxColumns) {
136 Columns = N + 2;
Daniel Dunbara5a7bd02009-03-30 00:34:04 +0000137 *OS << " \\\n " << *I;
Chris Lattner02fbb252009-01-11 19:28:34 +0000138 } else {
139 Columns += N + 1;
Daniel Dunbara5a7bd02009-03-30 00:34:04 +0000140 *OS << ' ' << *I;
Chris Lattner02fbb252009-01-11 19:28:34 +0000141 }
142 }
143
Daniel Dunbara5a7bd02009-03-30 00:34:04 +0000144 *OS << ':';
Chris Lattner02fbb252009-01-11 19:28:34 +0000145 Columns += 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000146
Daniel Dunbar7e9f1f72008-10-27 20:01:06 +0000147 // Now add each dependency in the order it was seen, but avoiding
148 // duplicates.
149 for (std::vector<std::string>::iterator I = Files.begin(),
150 E = Files.end(); I != E; ++I) {
151 // Start a new line if this would exceed the column limit. Make
152 // sure to leave space for a trailing " \" in case we need to
153 // break the line on the next iteration.
154 unsigned N = I->length();
155 if (Columns + (N + 1) + 2 > MaxColumns) {
Daniel Dunbara5a7bd02009-03-30 00:34:04 +0000156 *OS << " \\\n ";
Daniel Dunbar7e9f1f72008-10-27 20:01:06 +0000157 Columns = 2;
158 }
Daniel Dunbara5a7bd02009-03-30 00:34:04 +0000159 *OS << ' ' << *I;
Daniel Dunbar7e9f1f72008-10-27 20:01:06 +0000160 Columns += N + 1;
Daniel Dunbar750c3582008-10-24 22:12:41 +0000161 }
Daniel Dunbara5a7bd02009-03-30 00:34:04 +0000162 *OS << '\n';
Daniel Dunbar750c3582008-10-24 22:12:41 +0000163
Daniel Dunbar7e9f1f72008-10-27 20:01:06 +0000164 // Create phony targets if requested.
Eli Friedmanb5c8f8b2009-05-19 03:35:57 +0000165 if (PhonyTarget) {
Daniel Dunbar7e9f1f72008-10-27 20:01:06 +0000166 // Skip the first entry, this is always the input file itself.
167 for (std::vector<std::string>::iterator I = Files.begin() + 1,
168 E = Files.end(); I != E; ++I) {
Daniel Dunbara5a7bd02009-03-30 00:34:04 +0000169 *OS << '\n';
170 *OS << *I << ":\n";
Daniel Dunbar7e9f1f72008-10-27 20:01:06 +0000171 }
172 }
Daniel Dunbar750c3582008-10-24 22:12:41 +0000173}
174