[cfe-commits] r58265 - /cfe/trunk/Driver/DependencyFile.cpp
Daniel Dunbar
daniel at zuster.org
Mon Oct 27 13:01:07 PDT 2008
Author: ddunbar
Date: Mon Oct 27 15:01:06 2008
New Revision: 58265
URL: http://llvm.org/viewvc/llvm-project?rev=58265&view=rev
Log:
Improve dependency file support.
- Add support for -MP (phony targets).
- Use raw_ostream for output instead of std::string concatenation.
- Break long lines in a GCC (4.2) compatible manner.
- Output dependents in #included order (to match GCC).
Modified:
cfe/trunk/Driver/DependencyFile.cpp
Modified: cfe/trunk/Driver/DependencyFile.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Driver/DependencyFile.cpp?rev=58265&r1=58264&r2=58265&view=diff
==============================================================================
--- cfe/trunk/Driver/DependencyFile.cpp (original)
+++ cfe/trunk/Driver/DependencyFile.cpp Mon Oct 27 15:01:06 2008
@@ -21,6 +21,7 @@
#include "llvm/System/Path.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Compiler.h"
+#include "llvm/Support/raw_ostream.h"
#include <fstream>
#include <string>
@@ -28,7 +29,8 @@
namespace {
class VISIBILITY_HIDDEN DependencyFileCallback : public PPCallbacks {
- llvm::StringSet<> Files;
+ std::vector<std::string> Files;
+ llvm::StringSet<> FilesSet;
const Preprocessor *PP;
std::ofstream OS;
const std::string &InputFile;
@@ -171,28 +173,49 @@
return;
// Remove leading "./"
- if(Filename[0] == '.' && Filename[1] == '/')
+ if (Filename[0] == '.' && Filename[1] == '/')
Filename = &Filename[2];
- Files.insert(Filename);
+ if (FilesSet.insert(Filename))
+ Files.push_back(Filename);
}
void DependencyFileCallback::OutputDependencyFile() {
- std::string Output;
- // Add "target: mainfile"
- Output += Target;
- Output += ": ";
- Output += InputFile;
-
- // Now add each dependency
- for (llvm::StringSet<>::iterator I = Files.begin(),
- E = Files.end(); I != E; ++I) {
- // FIXME: Wrap lines
- Output += " ";
- Output += I->getKeyData();
+ // Write out the dependency targets, trying to avoid overly long
+ // lines when possible. We try our best to emit exactly the same
+ // dependency file as GCC (4.2), assuming the included files are the
+ // same.
+ const unsigned MaxColumns = 75;
+
+ OS << Target << ":";
+ unsigned Columns = Target.length() + 1;
+
+ // Now add each dependency in the order it was seen, but avoiding
+ // duplicates.
+ for (std::vector<std::string>::iterator I = Files.begin(),
+ E = Files.end(); I != E; ++I) {
+ // Start a new line if this would exceed the column limit. Make
+ // sure to leave space for a trailing " \" in case we need to
+ // break the line on the next iteration.
+ unsigned N = I->length();
+ if (Columns + (N + 1) + 2 > MaxColumns) {
+ OS << " \\\n ";
+ Columns = 2;
+ }
+ OS << " " << *I;
+ Columns += N + 1;
+ }
+ OS << "\n";
+
+ // Create phony targets if requested.
+ if (PhonyDependencyTarget) {
+ // Skip the first entry, this is always the input file itself.
+ for (std::vector<std::string>::iterator I = Files.begin() + 1,
+ E = Files.end(); I != E; ++I) {
+ OS << "\n";
+ OS << *I << ":\n";
+ }
}
-
- OS << Output << "\n";
}
DependencyFileCallback::DependencyFileCallback(const Preprocessor *PP,
@@ -207,6 +230,8 @@
ErrStr = "Could not open dependency output file\n";
else
ErrStr = NULL;
+
+ Files.push_back(InputFile);
}
DependencyFileCallback::~DependencyFileCallback() {
More information about the cfe-commits
mailing list