OSDN Git Service

Use the full path to output the .gcda file.
authorBill Wendling <isanbard@gmail.com>
Wed, 29 Aug 2012 20:30:44 +0000 (20:30 +0000)
committerBill Wendling <isanbard@gmail.com>
Wed, 29 Aug 2012 20:30:44 +0000 (20:30 +0000)
This lets the user run the program from a different directory and still have the
.gcda files show up in the correct place.
<rdar://problem/12179524>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162855 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Instrumentation/GCOVProfiling.cpp

index 293bad3..f01c6d5 100644 (file)
@@ -91,7 +91,7 @@ namespace {
     void insertCounterWriteout(ArrayRef<std::pair<GlobalVariable*, MDNode*> >);
     void insertIndirectCounterIncrement();
 
-    std::string mangleName(DICompileUnit CU, std::string NewStem);
+    std::string mangleName(DICompileUnit CU, const char *NewStem);
 
     bool EmitNotes;
     bool EmitData;
@@ -328,7 +328,10 @@ namespace {
   };
 }
 
-std::string GCOVProfiler::mangleName(DICompileUnit CU, std::string NewStem) {
+std::string GCOVProfiler::mangleName(DICompileUnit CU, const char *NewStem) {
+  SmallString<128> Filename = CU.getFilename();
+  bool AsString = false;
+
   if (NamedMDNode *GCov = M->getNamedMetadata("llvm.gcov")) {
     for (int i = 0, e = GCov->getNumOperands(); i != e; ++i) {
       MDNode *N = GCov->getOperand(i);
@@ -337,16 +340,25 @@ std::string GCOVProfiler::mangleName(DICompileUnit CU, std::string NewStem) {
       MDNode *CompileUnit = dyn_cast<MDNode>(N->getOperand(1));
       if (!GCovFile || !CompileUnit) continue;
       if (CompileUnit == CU) {
-        SmallString<128> Filename = GCovFile->getString();
-        sys::path::replace_extension(Filename, NewStem);
-        return Filename.str();
+        Filename = GCovFile->getString();
+        AsString = true;
+        break;
       }
     }
   }
 
-  SmallString<128> Filename = CU.getFilename();
+  if (sys::path::is_relative(Filename.c_str())) {
+    SmallString<128> FullPath = CU.getDirectory();
+    sys::path::append(FullPath, Filename.begin(), Filename.end());
+    Filename = FullPath;
+  }
+
   sys::path::replace_extension(Filename, NewStem);
-  return sys::path::filename(Filename.str());
+
+  if (!AsString)
+    return sys::path::filename(Filename.str());
+
+  return Filename.str();
 }
 
 bool GCOVProfiler::runOnModule(Module &M) {