]> granicus.if.org Git - llvm/commitdiff
GCOV: Move GCOV from IR & Support into ProfileData to fix layering
authorDavid Blaikie <dblaikie@gmail.com>
Fri, 3 Nov 2017 20:57:10 +0000 (20:57 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Fri, 3 Nov 2017 20:57:10 +0000 (20:57 +0000)
This class was split between libIR and libSupport, which breaks under
modular code generation. Move it into the one library that uses it,
ProfileData, to resolve this issue.

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

include/llvm/ProfileData/GCOV.h [moved from include/llvm/Support/GCOV.h with 99% similarity]
include/llvm/ProfileData/SampleProfReader.h
lib/IR/CMakeLists.txt
lib/ProfileData/CMakeLists.txt
lib/ProfileData/GCOV.cpp [moved from lib/IR/GCOV.cpp with 99% similarity]
tools/llvm-cov/gcov.cpp

similarity index 99%
rename from include/llvm/Support/GCOV.h
rename to include/llvm/ProfileData/GCOV.h
index 02016e7dbd6242f48550ebec36ee093d649a6ada..497f80b87b2671e21bf49d506d3f3038086c05f7 100644 (file)
@@ -12,8 +12,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef LLVM_SUPPORT_GCOV_H
-#define LLVM_SUPPORT_GCOV_H
+#ifndef LLVM_PROFILEDATA_GCOV_H
+#define LLVM_PROFILEDATA_GCOV_H
 
 #include "llvm/ADT/DenseMap.h"
 #include "llvm/ADT/MapVector.h"
index 9c1f357cbbd16275851a2fc7cbde0ec2c7981826..0e9ab2dc60ee1172369278ac9729c9b86d431f49 100644 (file)
 #include "llvm/IR/Function.h"
 #include "llvm/IR/LLVMContext.h"
 #include "llvm/IR/ProfileSummary.h"
+#include "llvm/ProfileData/GCOV.h"
 #include "llvm/ProfileData/SampleProf.h"
 #include "llvm/Support/Debug.h"
 #include "llvm/Support/ErrorOr.h"
-#include "llvm/Support/GCOV.h"
 #include "llvm/Support/MemoryBuffer.h"
 #include <algorithm>
 #include <cstdint>
index eb4b9143090cfc7764bb1b0eabd8dc7d1f4b94ae..17822bbbb5cb06f58caae20311d0edea6f47b931 100644 (file)
@@ -22,7 +22,6 @@ add_llvm_library(LLVMCore
   DiagnosticPrinter.cpp
   Dominators.cpp
   Function.cpp
-  GCOV.cpp
   GVMaterializer.cpp
   Globals.cpp
   IRBuilder.cpp
index cd65762ae6a005fd1c2b3b6d61ced4fb2ac05a6c..3a981d8acf425c1dc921448855001a4469294e39 100644 (file)
@@ -1,4 +1,5 @@
 add_llvm_library(LLVMProfileData
+  GCOV.cpp
   InstrProf.cpp
   InstrProfReader.cpp
   InstrProfWriter.cpp
similarity index 99%
rename from lib/IR/GCOV.cpp
rename to lib/ProfileData/GCOV.cpp
index d4b4552282252f37b00120fbe647435432c25a4e..d6e44389f2bef75c4746c0b5e001352683ea1c8e 100644 (file)
@@ -12,7 +12,7 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "llvm/Support/GCOV.h"
+#include "llvm/ProfileData/GCOV.h"
 #include "llvm/ADT/STLExtras.h"
 #include "llvm/Support/Debug.h"
 #include "llvm/Support/FileSystem.h"
index 4df7f015fd188c8d5e0add159deb716f7c3073c7..7776f2aa9a6844efe0ae52112a53bad704d60ce3 100644 (file)
 //
 //===----------------------------------------------------------------------===//
 
+#include "llvm/ProfileData/GCOV.h"
 #include "llvm/ADT/SmallString.h"
 #include "llvm/Support/CommandLine.h"
 #include "llvm/Support/Errc.h"
 #include "llvm/Support/FileSystem.h"
-#include "llvm/Support/GCOV.h"
 #include "llvm/Support/Path.h"
 #include <system_error>
 using namespace llvm;