Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 1 | //===- GCOVProfiling.cpp - Insert edge counters for gcov profiling --------===// |
| 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 pass implements GCOV-style profiling. When this pass is run it emits |
| 11 | // "gcno" files next to the existing source, and instruments the code that runs |
| 12 | // to records the edges between blocks that run and emit a complementary "gcda" |
| 13 | // file on exit. |
| 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/DenseMap.h" |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/Hashing.h" |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/STLExtras.h" |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/Sequence.h" |
Chandler Carruth | aafe091 | 2012-06-29 12:38:19 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/Statistic.h" |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/StringExtras.h" |
| 23 | #include "llvm/ADT/StringMap.h" |
Marco Castelluccio | 0dcf64a | 2017-10-13 13:49:15 +0000 | [diff] [blame] | 24 | #include "llvm/Analysis/EHPersonalities.h" |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 25 | #include "llvm/Analysis/TargetLibraryInfo.h" |
Vedant Kumar | 727d895 | 2018-09-11 18:38:34 +0000 | [diff] [blame] | 26 | #include "llvm/IR/CFG.h" |
Chandler Carruth | 9a4c9e5 | 2014-03-06 00:46:21 +0000 | [diff] [blame] | 27 | #include "llvm/IR/DebugInfo.h" |
Chandler Carruth | 9205140 | 2014-03-05 10:30:38 +0000 | [diff] [blame] | 28 | #include "llvm/IR/DebugLoc.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 29 | #include "llvm/IR/IRBuilder.h" |
Chandler Carruth | 8394857 | 2014-03-04 10:30:26 +0000 | [diff] [blame] | 30 | #include "llvm/IR/InstIterator.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 31 | #include "llvm/IR/Instructions.h" |
Bob Wilson | 055a0b4 | 2014-01-31 05:24:01 +0000 | [diff] [blame] | 32 | #include "llvm/IR/IntrinsicInst.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 33 | #include "llvm/IR/Module.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 34 | #include "llvm/Pass.h" |
Nick Lewycky | fdfed3e | 2013-03-14 05:13:26 +0000 | [diff] [blame] | 35 | #include "llvm/Support/CommandLine.h" |
Chandler Carruth | aafe091 | 2012-06-29 12:38:19 +0000 | [diff] [blame] | 36 | #include "llvm/Support/Debug.h" |
Bill Wendling | 5aa8239 | 2013-03-26 22:47:50 +0000 | [diff] [blame] | 37 | #include "llvm/Support/FileSystem.h" |
Rafael Espindola | 3bc8e71 | 2013-06-11 22:21:28 +0000 | [diff] [blame] | 38 | #include "llvm/Support/Path.h" |
Calixte Denizet | c6fabea | 2018-11-12 09:01:43 +0000 | [diff] [blame] | 39 | #include "llvm/Support/Regex.h" |
Chandler Carruth | aafe091 | 2012-06-29 12:38:19 +0000 | [diff] [blame] | 40 | #include "llvm/Support/raw_ostream.h" |
Xinliang David Li | 64dbb29 | 2016-06-05 05:12:23 +0000 | [diff] [blame] | 41 | #include "llvm/Transforms/Instrumentation.h" |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 42 | #include "llvm/Transforms/Instrumentation/GCOVProfiler.h" |
Chandler Carruth | aafe091 | 2012-06-29 12:38:19 +0000 | [diff] [blame] | 43 | #include "llvm/Transforms/Utils/ModuleUtils.h" |
Nick Lewycky | 0fdd019 | 2013-06-18 06:38:21 +0000 | [diff] [blame] | 44 | #include <algorithm> |
David Blaikie | 229de50 | 2014-04-21 20:41:55 +0000 | [diff] [blame] | 45 | #include <memory> |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 46 | #include <string> |
| 47 | #include <utility> |
| 48 | using namespace llvm; |
| 49 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 50 | #define DEBUG_TYPE "insert-gcov-profiling" |
| 51 | |
Nick Lewycky | fdfed3e | 2013-03-14 05:13:26 +0000 | [diff] [blame] | 52 | static cl::opt<std::string> |
| 53 | DefaultGCOVVersion("default-gcov-version", cl::init("402*"), cl::Hidden, |
| 54 | cl::ValueRequired); |
Justin Bogner | 3faa76b | 2015-03-16 23:52:03 +0000 | [diff] [blame] | 55 | static cl::opt<bool> DefaultExitBlockBeforeBody("gcov-exit-block-before-body", |
| 56 | cl::init(false), cl::Hidden); |
Nick Lewycky | fdfed3e | 2013-03-14 05:13:26 +0000 | [diff] [blame] | 57 | |
| 58 | GCOVOptions GCOVOptions::getDefault() { |
| 59 | GCOVOptions Options; |
| 60 | Options.EmitNotes = true; |
| 61 | Options.EmitData = true; |
| 62 | Options.UseCfgChecksum = false; |
| 63 | Options.NoRedZone = false; |
| 64 | Options.FunctionNamesInData = true; |
Justin Bogner | 3faa76b | 2015-03-16 23:52:03 +0000 | [diff] [blame] | 65 | Options.ExitBlockBeforeBody = DefaultExitBlockBeforeBody; |
Nick Lewycky | fdfed3e | 2013-03-14 05:13:26 +0000 | [diff] [blame] | 66 | |
| 67 | if (DefaultGCOVVersion.size() != 4) { |
| 68 | llvm::report_fatal_error(std::string("Invalid -default-gcov-version: ") + |
| 69 | DefaultGCOVVersion); |
| 70 | } |
| 71 | memcpy(Options.Version, DefaultGCOVVersion.c_str(), 4); |
| 72 | return Options; |
| 73 | } |
| 74 | |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 75 | namespace { |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 76 | class GCOVFunction; |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 77 | |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 78 | class GCOVProfiler { |
| 79 | public: |
| 80 | GCOVProfiler() : GCOVProfiler(GCOVOptions::getDefault()) {} |
| 81 | GCOVProfiler(const GCOVOptions &Opts) : Options(Opts) { |
| 82 | assert((Options.EmitNotes || Options.EmitData) && |
| 83 | "GCOVProfiler asked to do nothing?"); |
| 84 | ReversedVersion[0] = Options.Version[3]; |
| 85 | ReversedVersion[1] = Options.Version[2]; |
| 86 | ReversedVersion[2] = Options.Version[1]; |
| 87 | ReversedVersion[3] = Options.Version[0]; |
| 88 | ReversedVersion[4] = '\0'; |
| 89 | } |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 90 | bool runOnModule(Module &M, const TargetLibraryInfo &TLI); |
Benjamin Kramer | 298a3a0 | 2015-03-06 16:21:15 +0000 | [diff] [blame] | 91 | |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 92 | private: |
| 93 | // Create the .gcno files for the Module based on DebugInfo. |
| 94 | void emitProfileNotes(); |
Nick Lewycky | 6d9f061 | 2011-05-04 04:03:04 +0000 | [diff] [blame] | 95 | |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 96 | // Modify the program to track transitions along edges and call into the |
| 97 | // profiling runtime to emit .gcda files when run. |
| 98 | bool emitProfileArcs(); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 99 | |
Calixte Denizet | c6fabea | 2018-11-12 09:01:43 +0000 | [diff] [blame] | 100 | bool isFunctionInstrumented(const Function &F); |
| 101 | std::vector<Regex> createRegexesFromString(StringRef RegexesStr); |
| 102 | static bool doesFilenameMatchARegex(StringRef Filename, |
| 103 | std::vector<Regex> &Regexes); |
| 104 | |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 105 | // Get pointers to the functions in the runtime library. |
| 106 | Constant *getStartFileFunc(); |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 107 | Constant *getEmitFunctionFunc(); |
| 108 | Constant *getEmitArcsFunc(); |
| 109 | Constant *getSummaryInfoFunc(); |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 110 | Constant *getEndFileFunc(); |
Nick Lewycky | c5ea852 | 2011-04-16 02:05:18 +0000 | [diff] [blame] | 111 | |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 112 | // Add the function to write out all our counters to the global destructor |
| 113 | // list. |
| 114 | Function * |
| 115 | insertCounterWriteout(ArrayRef<std::pair<GlobalVariable *, MDNode *>>); |
| 116 | Function *insertFlush(ArrayRef<std::pair<GlobalVariable *, MDNode *>>); |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 117 | |
Calixte Denizet | c3bed1e | 2018-11-07 13:49:17 +0000 | [diff] [blame] | 118 | void AddFlushBeforeForkAndExec(); |
| 119 | |
Nick Lewycky | 97e49ac | 2016-08-31 23:04:32 +0000 | [diff] [blame] | 120 | enum class GCovFileType { GCNO, GCDA }; |
| 121 | std::string mangleName(const DICompileUnit *CU, GCovFileType FileType); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 122 | |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 123 | GCOVOptions Options; |
Nick Lewycky | 6d9f061 | 2011-05-04 04:03:04 +0000 | [diff] [blame] | 124 | |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 125 | // Reversed, NUL-terminated copy of Options.Version. |
| 126 | char ReversedVersion[5]; |
| 127 | // Checksum, produced by hash of EdgeDestinations |
| 128 | SmallVector<uint32_t, 4> FileChecksums; |
Nick Lewycky | fdfed3e | 2013-03-14 05:13:26 +0000 | [diff] [blame] | 129 | |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 130 | Module *M; |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 131 | const TargetLibraryInfo *TLI; |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 132 | LLVMContext *Ctx; |
| 133 | SmallVector<std::unique_ptr<GCOVFunction>, 16> Funcs; |
Calixte Denizet | c6fabea | 2018-11-12 09:01:43 +0000 | [diff] [blame] | 134 | std::vector<Regex> FilterRe; |
| 135 | std::vector<Regex> ExcludeRe; |
| 136 | StringMap<bool> InstrumentedFiles; |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 137 | }; |
Nick Lewycky | 8e0a38f | 2011-04-21 01:56:25 +0000 | [diff] [blame] | 138 | |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 139 | class GCOVProfilerLegacyPass : public ModulePass { |
| 140 | public: |
| 141 | static char ID; |
| 142 | GCOVProfilerLegacyPass() |
| 143 | : GCOVProfilerLegacyPass(GCOVOptions::getDefault()) {} |
| 144 | GCOVProfilerLegacyPass(const GCOVOptions &Opts) |
| 145 | : ModulePass(ID), Profiler(Opts) { |
| 146 | initializeGCOVProfilerLegacyPassPass(*PassRegistry::getPassRegistry()); |
| 147 | } |
Mehdi Amini | 117296c | 2016-10-01 02:56:57 +0000 | [diff] [blame] | 148 | StringRef getPassName() const override { return "GCOV Profiler"; } |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 149 | |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 150 | bool runOnModule(Module &M) override { |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 151 | auto &TLI = getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(); |
| 152 | return Profiler.runOnModule(M, TLI); |
| 153 | } |
| 154 | |
| 155 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
| 156 | AU.addRequired<TargetLibraryInfoWrapperPass>(); |
| 157 | } |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 158 | |
| 159 | private: |
| 160 | GCOVProfiler Profiler; |
| 161 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 162 | } |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 163 | |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 164 | char GCOVProfilerLegacyPass::ID = 0; |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 165 | INITIALIZE_PASS_BEGIN( |
| 166 | GCOVProfilerLegacyPass, "insert-gcov-profiling", |
| 167 | "Insert instrumentation for GCOV profiling", false, false) |
| 168 | INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) |
| 169 | INITIALIZE_PASS_END( |
| 170 | GCOVProfilerLegacyPass, "insert-gcov-profiling", |
| 171 | "Insert instrumentation for GCOV profiling", false, false) |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 172 | |
Nick Lewycky | fdfed3e | 2013-03-14 05:13:26 +0000 | [diff] [blame] | 173 | ModulePass *llvm::createGCOVProfilerPass(const GCOVOptions &Options) { |
Xinliang David Li | fb3137c | 2016-06-05 03:40:03 +0000 | [diff] [blame] | 174 | return new GCOVProfilerLegacyPass(Options); |
Nick Lewycky | 8e0a38f | 2011-04-21 01:56:25 +0000 | [diff] [blame] | 175 | } |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 176 | |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 177 | static StringRef getFunctionName(const DISubprogram *SP) { |
Duncan P. N. Exon Smith | 537b4a8 | 2015-04-14 03:40:37 +0000 | [diff] [blame] | 178 | if (!SP->getLinkageName().empty()) |
| 179 | return SP->getLinkageName(); |
| 180 | return SP->getName(); |
Nick Lewycky | d671863 | 2013-03-19 01:37:55 +0000 | [diff] [blame] | 181 | } |
| 182 | |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 183 | namespace { |
| 184 | class GCOVRecord { |
| 185 | protected: |
Craig Topper | 1c4d667 | 2013-07-17 03:43:10 +0000 | [diff] [blame] | 186 | static const char *const LinesTag; |
| 187 | static const char *const FunctionTag; |
| 188 | static const char *const BlockTag; |
| 189 | static const char *const EdgeTag; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 190 | |
Benjamin Kramer | 79de6e6 | 2015-04-11 18:57:14 +0000 | [diff] [blame] | 191 | GCOVRecord() = default; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 192 | |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 193 | void writeBytes(const char *Bytes, int Size) { |
| 194 | os->write(Bytes, Size); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 195 | } |
| 196 | |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 197 | void write(uint32_t i) { |
| 198 | writeBytes(reinterpret_cast<char*>(&i), 4); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | // Returns the length measured in 4-byte blocks that will be used to |
| 202 | // represent this string in a GCOV file |
Craig Topper | 24048c9 | 2013-07-17 03:54:53 +0000 | [diff] [blame] | 203 | static unsigned lengthOfGCOVString(StringRef s) { |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 204 | // A GCOV string is a length, followed by a NUL, then between 0 and 3 NULs |
Nick Lewycky | ed749d8 | 2011-04-21 02:48:39 +0000 | [diff] [blame] | 205 | // padding out to the next 4-byte word. The length is measured in 4-byte |
| 206 | // words including padding, not bytes of actual string. |
Nick Lewycky | a702884 | 2011-05-05 23:52:18 +0000 | [diff] [blame] | 207 | return (s.size() / 4) + 1; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 208 | } |
| 209 | |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 210 | void writeGCOVString(StringRef s) { |
| 211 | uint32_t Len = lengthOfGCOVString(s); |
| 212 | write(Len); |
| 213 | writeBytes(s.data(), s.size()); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 214 | |
| 215 | // Write 1 to 4 bytes of NUL padding. |
Nick Lewycky | 6aa7949 | 2011-04-28 21:35:49 +0000 | [diff] [blame] | 216 | assert((unsigned)(4 - (s.size() % 4)) > 0); |
| 217 | assert((unsigned)(4 - (s.size() % 4)) <= 4); |
| 218 | writeBytes("\0\0\0\0", 4 - (s.size() % 4)); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | raw_ostream *os; |
| 222 | }; |
Craig Topper | 1c4d667 | 2013-07-17 03:43:10 +0000 | [diff] [blame] | 223 | const char *const GCOVRecord::LinesTag = "\0\0\x45\x01"; |
| 224 | const char *const GCOVRecord::FunctionTag = "\0\0\0\1"; |
| 225 | const char *const GCOVRecord::BlockTag = "\0\0\x41\x01"; |
| 226 | const char *const GCOVRecord::EdgeTag = "\0\0\x43\x01"; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 227 | |
| 228 | class GCOVFunction; |
| 229 | class GCOVBlock; |
| 230 | |
| 231 | // Constructed only by requesting it from a GCOVBlock, this object stores a |
Devang Patel | add1f17 | 2011-09-20 18:35:00 +0000 | [diff] [blame] | 232 | // list of line numbers and a single filename, representing lines that belong |
| 233 | // to the block. |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 234 | class GCOVLines : public GCOVRecord { |
| 235 | public: |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 236 | void addLine(uint32_t Line) { |
Nick Lewycky | 5f53ddd | 2014-06-03 04:25:36 +0000 | [diff] [blame] | 237 | assert(Line != 0 && "Line zero is not a valid real line number."); |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 238 | Lines.push_back(Line); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 239 | } |
| 240 | |
Craig Topper | 24048c9 | 2013-07-17 03:54:53 +0000 | [diff] [blame] | 241 | uint32_t length() const { |
Nick Lewycky | 6404d97 | 2011-11-27 23:22:20 +0000 | [diff] [blame] | 242 | // Here 2 = 1 for string length + 1 for '0' id#. |
Devang Patel | add1f17 | 2011-09-20 18:35:00 +0000 | [diff] [blame] | 243 | return lengthOfGCOVString(Filename) + 2 + Lines.size(); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 244 | } |
| 245 | |
Devang Patel | add1f17 | 2011-09-20 18:35:00 +0000 | [diff] [blame] | 246 | void writeOut() { |
| 247 | write(0); |
| 248 | writeGCOVString(Filename); |
| 249 | for (int i = 0, e = Lines.size(); i != e; ++i) |
| 250 | write(Lines[i]); |
| 251 | } |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 252 | |
Duncan P. N. Exon Smith | cec1c24 | 2014-03-11 02:44:45 +0000 | [diff] [blame] | 253 | GCOVLines(StringRef F, raw_ostream *os) |
Devang Patel | add1f17 | 2011-09-20 18:35:00 +0000 | [diff] [blame] | 254 | : Filename(F) { |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 255 | this->os = os; |
| 256 | } |
| 257 | |
Devang Patel | 7d06f5c | 2011-09-20 18:48:56 +0000 | [diff] [blame] | 258 | private: |
Ilya Biryukov | 449a7f0 | 2018-12-04 16:30:31 +0000 | [diff] [blame^] | 259 | StringRef Filename; |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 260 | SmallVector<uint32_t, 32> Lines; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 261 | }; |
| 262 | |
Nick Lewycky | 0fdd019 | 2013-06-18 06:38:21 +0000 | [diff] [blame] | 263 | |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 264 | // Represent a basic block in GCOV. Each block has a unique number in the |
| 265 | // function, number of lines belonging to each block, and a set of edges to |
| 266 | // other blocks. |
| 267 | class GCOVBlock : public GCOVRecord { |
| 268 | public: |
Devang Patel | 9cb1fc0 | 2011-09-20 17:55:19 +0000 | [diff] [blame] | 269 | GCOVLines &getFile(StringRef Filename) { |
Benjamin Kramer | eab3d36 | 2016-07-21 13:37:48 +0000 | [diff] [blame] | 270 | return LinesByFile.try_emplace(Filename, Filename, os).first->second; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 271 | } |
| 272 | |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 273 | void addEdge(GCOVBlock &Successor) { |
| 274 | OutEdges.push_back(&Successor); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 275 | } |
| 276 | |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 277 | void writeOut() { |
| 278 | uint32_t Len = 3; |
Benjamin Kramer | 2a185a2 | 2016-07-21 12:06:31 +0000 | [diff] [blame] | 279 | SmallVector<StringMapEntry<GCOVLines> *, 32> SortedLinesByFile; |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 280 | for (auto &I : LinesByFile) { |
Benjamin Kramer | 2a185a2 | 2016-07-21 12:06:31 +0000 | [diff] [blame] | 281 | Len += I.second.length(); |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 282 | SortedLinesByFile.push_back(&I); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 283 | } |
| 284 | |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 285 | writeBytes(LinesTag, 4); |
| 286 | write(Len); |
| 287 | write(Number); |
Nick Lewycky | 0fdd019 | 2013-06-18 06:38:21 +0000 | [diff] [blame] | 288 | |
Fangrui Song | 3507c6e | 2018-09-30 22:31:29 +0000 | [diff] [blame] | 289 | llvm::sort(SortedLinesByFile, [](StringMapEntry<GCOVLines> *LHS, |
| 290 | StringMapEntry<GCOVLines> *RHS) { |
| 291 | return LHS->getKey() < RHS->getKey(); |
| 292 | }); |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 293 | for (auto &I : SortedLinesByFile) |
Benjamin Kramer | 2a185a2 | 2016-07-21 12:06:31 +0000 | [diff] [blame] | 294 | I->getValue().writeOut(); |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 295 | write(0); |
| 296 | write(0); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 297 | } |
| 298 | |
David Blaikie | ea37c11 | 2014-12-22 23:12:42 +0000 | [diff] [blame] | 299 | GCOVBlock(const GCOVBlock &RHS) : GCOVRecord(RHS), Number(RHS.Number) { |
| 300 | // Only allow copy before edges and lines have been added. After that, |
| 301 | // there are inter-block pointers (eg: edges) that won't take kindly to |
| 302 | // blocks being copied or moved around. |
| 303 | assert(LinesByFile.empty()); |
| 304 | assert(OutEdges.empty()); |
| 305 | } |
| 306 | |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 307 | private: |
| 308 | friend class GCOVFunction; |
| 309 | |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 310 | GCOVBlock(uint32_t Number, raw_ostream *os) |
| 311 | : Number(Number) { |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 312 | this->os = os; |
| 313 | } |
| 314 | |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 315 | uint32_t Number; |
Benjamin Kramer | 2a185a2 | 2016-07-21 12:06:31 +0000 | [diff] [blame] | 316 | StringMap<GCOVLines> LinesByFile; |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 317 | SmallVector<GCOVBlock *, 4> OutEdges; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 318 | }; |
| 319 | |
| 320 | // A function has a unique identifier, a checksum (we leave as zero) and a |
| 321 | // set of blocks and a map of edges between blocks. This is the only GCOV |
| 322 | // object users can construct, the blocks and lines will be rooted here. |
| 323 | class GCOVFunction : public GCOVRecord { |
| 324 | public: |
Peter Collingbourne | d4bff30 | 2015-11-05 22:03:56 +0000 | [diff] [blame] | 325 | GCOVFunction(const DISubprogram *SP, Function *F, raw_ostream *os, |
| 326 | uint32_t Ident, bool UseCfgChecksum, bool ExitBlockBeforeBody) |
David Blaikie | ea37c11 | 2014-12-22 23:12:42 +0000 | [diff] [blame] | 327 | : SP(SP), Ident(Ident), UseCfgChecksum(UseCfgChecksum), CfgChecksum(0), |
| 328 | ReturnBlock(1, os) { |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 329 | this->os = os; |
| 330 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 331 | LLVM_DEBUG(dbgs() << "Function: " << getFunctionName(SP) << "\n"); |
Nick Lewycky | 2e8a621 | 2014-12-03 02:45:01 +0000 | [diff] [blame] | 332 | |
David Blaikie | ea37c11 | 2014-12-22 23:12:42 +0000 | [diff] [blame] | 333 | uint32_t i = 0; |
| 334 | for (auto &BB : *F) { |
Justin Bogner | 3faa76b | 2015-03-16 23:52:03 +0000 | [diff] [blame] | 335 | // Skip index 1 if it's assigned to the ReturnBlock. |
| 336 | if (i == 1 && ExitBlockBeforeBody) |
| 337 | ++i; |
| 338 | Blocks.insert(std::make_pair(&BB, GCOVBlock(i++, os))); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 339 | } |
Justin Bogner | 3faa76b | 2015-03-16 23:52:03 +0000 | [diff] [blame] | 340 | if (!ExitBlockBeforeBody) |
| 341 | ReturnBlock.Number = i; |
Daniel Jasper | 87a24d5 | 2013-12-04 08:57:17 +0000 | [diff] [blame] | 342 | |
Alp Toker | e69170a | 2014-06-26 22:52:05 +0000 | [diff] [blame] | 343 | std::string FunctionNameAndLine; |
| 344 | raw_string_ostream FNLOS(FunctionNameAndLine); |
Duncan P. N. Exon Smith | 537b4a8 | 2015-04-14 03:40:37 +0000 | [diff] [blame] | 345 | FNLOS << getFunctionName(SP) << SP->getLine(); |
Alp Toker | e69170a | 2014-06-26 22:52:05 +0000 | [diff] [blame] | 346 | FNLOS.flush(); |
| 347 | FuncChecksum = hash_value(FunctionNameAndLine); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 348 | } |
| 349 | |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 350 | GCOVBlock &getBlock(BasicBlock *BB) { |
David Blaikie | ea37c11 | 2014-12-22 23:12:42 +0000 | [diff] [blame] | 351 | return Blocks.find(BB)->second; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 352 | } |
| 353 | |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 354 | GCOVBlock &getReturnBlock() { |
David Blaikie | ea37c11 | 2014-12-22 23:12:42 +0000 | [diff] [blame] | 355 | return ReturnBlock; |
Nick Lewycky | 8411b55 | 2011-04-21 03:18:00 +0000 | [diff] [blame] | 356 | } |
| 357 | |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 358 | std::string getEdgeDestinations() { |
Alp Toker | e69170a | 2014-06-26 22:52:05 +0000 | [diff] [blame] | 359 | std::string EdgeDestinations; |
| 360 | raw_string_ostream EDOS(EdgeDestinations); |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 361 | Function *F = Blocks.begin()->first->getParent(); |
Duncan P. N. Exon Smith | e82c286 | 2015-10-13 17:39:10 +0000 | [diff] [blame] | 362 | for (BasicBlock &I : *F) { |
| 363 | GCOVBlock &Block = getBlock(&I); |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 364 | for (int i = 0, e = Block.OutEdges.size(); i != e; ++i) |
Alp Toker | e69170a | 2014-06-26 22:52:05 +0000 | [diff] [blame] | 365 | EDOS << Block.OutEdges[i]->Number; |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 366 | } |
Alp Toker | e69170a | 2014-06-26 22:52:05 +0000 | [diff] [blame] | 367 | return EdgeDestinations; |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 368 | } |
| 369 | |
Daniel Jasper | 87a24d5 | 2013-12-04 08:57:17 +0000 | [diff] [blame] | 370 | uint32_t getFuncChecksum() { |
| 371 | return FuncChecksum; |
| 372 | } |
| 373 | |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 374 | void setCfgChecksum(uint32_t Checksum) { |
| 375 | CfgChecksum = Checksum; |
| 376 | } |
| 377 | |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 378 | void writeOut() { |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 379 | writeBytes(FunctionTag, 4); |
| 380 | uint32_t BlockLen = 1 + 1 + 1 + lengthOfGCOVString(getFunctionName(SP)) + |
Ilya Biryukov | 449a7f0 | 2018-12-04 16:30:31 +0000 | [diff] [blame^] | 381 | 1 + lengthOfGCOVString(SP->getFilename()) + 1; |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 382 | if (UseCfgChecksum) |
| 383 | ++BlockLen; |
| 384 | write(BlockLen); |
| 385 | write(Ident); |
Daniel Jasper | 87a24d5 | 2013-12-04 08:57:17 +0000 | [diff] [blame] | 386 | write(FuncChecksum); |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 387 | if (UseCfgChecksum) |
| 388 | write(CfgChecksum); |
| 389 | writeGCOVString(getFunctionName(SP)); |
Ilya Biryukov | 449a7f0 | 2018-12-04 16:30:31 +0000 | [diff] [blame^] | 390 | writeGCOVString(SP->getFilename()); |
Duncan P. N. Exon Smith | 537b4a8 | 2015-04-14 03:40:37 +0000 | [diff] [blame] | 391 | write(SP->getLine()); |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 392 | |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 393 | // Emit count of blocks. |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 394 | writeBytes(BlockTag, 4); |
| 395 | write(Blocks.size() + 1); |
| 396 | for (int i = 0, e = Blocks.size() + 1; i != e; ++i) { |
| 397 | write(0); // No flags on our blocks. |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 398 | } |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 399 | LLVM_DEBUG(dbgs() << Blocks.size() << " blocks.\n"); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 400 | |
| 401 | // Emit edges between blocks. |
Nick Lewycky | 0fdd019 | 2013-06-18 06:38:21 +0000 | [diff] [blame] | 402 | if (Blocks.empty()) return; |
| 403 | Function *F = Blocks.begin()->first->getParent(); |
Duncan P. N. Exon Smith | e82c286 | 2015-10-13 17:39:10 +0000 | [diff] [blame] | 404 | for (BasicBlock &I : *F) { |
| 405 | GCOVBlock &Block = getBlock(&I); |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 406 | if (Block.OutEdges.empty()) continue; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 407 | |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 408 | writeBytes(EdgeTag, 4); |
| 409 | write(Block.OutEdges.size() * 2 + 1); |
| 410 | write(Block.Number); |
| 411 | for (int i = 0, e = Block.OutEdges.size(); i != e; ++i) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 412 | LLVM_DEBUG(dbgs() << Block.Number << " -> " |
| 413 | << Block.OutEdges[i]->Number << "\n"); |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 414 | write(Block.OutEdges[i]->Number); |
| 415 | write(0); // no flags |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 416 | } |
| 417 | } |
| 418 | |
| 419 | // Emit lines for each block. |
Duncan P. N. Exon Smith | e82c286 | 2015-10-13 17:39:10 +0000 | [diff] [blame] | 420 | for (BasicBlock &I : *F) |
| 421 | getBlock(&I).writeOut(); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | private: |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 425 | const DISubprogram *SP; |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 426 | uint32_t Ident; |
Daniel Jasper | 87a24d5 | 2013-12-04 08:57:17 +0000 | [diff] [blame] | 427 | uint32_t FuncChecksum; |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 428 | bool UseCfgChecksum; |
| 429 | uint32_t CfgChecksum; |
David Blaikie | ea37c11 | 2014-12-22 23:12:42 +0000 | [diff] [blame] | 430 | DenseMap<BasicBlock *, GCOVBlock> Blocks; |
| 431 | GCOVBlock ReturnBlock; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 432 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 433 | } |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 434 | |
Calixte Denizet | c6fabea | 2018-11-12 09:01:43 +0000 | [diff] [blame] | 435 | // RegexesStr is a string containing differents regex separated by a semi-colon. |
| 436 | // For example "foo\..*$;bar\..*$". |
| 437 | std::vector<Regex> GCOVProfiler::createRegexesFromString(StringRef RegexesStr) { |
| 438 | std::vector<Regex> Regexes; |
| 439 | while (!RegexesStr.empty()) { |
| 440 | std::pair<StringRef, StringRef> HeadTail = RegexesStr.split(';'); |
| 441 | if (!HeadTail.first.empty()) { |
| 442 | Regex Re(HeadTail.first); |
| 443 | std::string Err; |
| 444 | if (!Re.isValid(Err)) { |
| 445 | Ctx->emitError(Twine("Regex ") + HeadTail.first + |
| 446 | " is not valid: " + Err); |
| 447 | } |
| 448 | Regexes.emplace_back(std::move(Re)); |
| 449 | } |
| 450 | RegexesStr = HeadTail.second; |
| 451 | } |
| 452 | return Regexes; |
| 453 | } |
| 454 | |
| 455 | bool GCOVProfiler::doesFilenameMatchARegex(StringRef Filename, |
| 456 | std::vector<Regex> &Regexes) { |
| 457 | for (Regex &Re : Regexes) { |
| 458 | if (Re.match(Filename)) { |
| 459 | return true; |
| 460 | } |
| 461 | } |
| 462 | return false; |
| 463 | } |
| 464 | |
| 465 | bool GCOVProfiler::isFunctionInstrumented(const Function &F) { |
| 466 | if (FilterRe.empty() && ExcludeRe.empty()) { |
| 467 | return true; |
| 468 | } |
Ilya Biryukov | 449a7f0 | 2018-12-04 16:30:31 +0000 | [diff] [blame^] | 469 | const StringRef Filename = F.getSubprogram()->getFilename(); |
Calixte Denizet | c6fabea | 2018-11-12 09:01:43 +0000 | [diff] [blame] | 470 | auto It = InstrumentedFiles.find(Filename); |
| 471 | if (It != InstrumentedFiles.end()) { |
| 472 | return It->second; |
| 473 | } |
| 474 | |
| 475 | SmallString<256> RealPath; |
| 476 | StringRef RealFilename; |
| 477 | |
| 478 | // Path can be |
| 479 | // /usr/lib/gcc/x86_64-linux-gnu/8/../../../../include/c++/8/bits/*.h so for |
| 480 | // such a case we must get the real_path. |
| 481 | if (sys::fs::real_path(Filename, RealPath)) { |
| 482 | // real_path can fail with path like "foo.c". |
| 483 | RealFilename = Filename; |
| 484 | } else { |
| 485 | RealFilename = RealPath; |
| 486 | } |
| 487 | |
| 488 | bool ShouldInstrument; |
| 489 | if (FilterRe.empty()) { |
| 490 | ShouldInstrument = !doesFilenameMatchARegex(RealFilename, ExcludeRe); |
| 491 | } else if (ExcludeRe.empty()) { |
| 492 | ShouldInstrument = doesFilenameMatchARegex(RealFilename, FilterRe); |
| 493 | } else { |
| 494 | ShouldInstrument = doesFilenameMatchARegex(RealFilename, FilterRe) && |
| 495 | !doesFilenameMatchARegex(RealFilename, ExcludeRe); |
| 496 | } |
| 497 | InstrumentedFiles[Filename] = ShouldInstrument; |
| 498 | return ShouldInstrument; |
| 499 | } |
| 500 | |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 501 | std::string GCOVProfiler::mangleName(const DICompileUnit *CU, |
Nick Lewycky | 97e49ac | 2016-08-31 23:04:32 +0000 | [diff] [blame] | 502 | GCovFileType OutputType) { |
| 503 | bool Notes = OutputType == GCovFileType::GCNO; |
| 504 | |
Nick Lewycky | 6d9f061 | 2011-05-04 04:03:04 +0000 | [diff] [blame] | 505 | if (NamedMDNode *GCov = M->getNamedMetadata("llvm.gcov")) { |
| 506 | for (int i = 0, e = GCov->getNumOperands(); i != e; ++i) { |
Duncan P. N. Exon Smith | de36e80 | 2014-11-11 21:30:22 +0000 | [diff] [blame] | 507 | MDNode *N = GCov->getOperand(i); |
Nick Lewycky | 97e49ac | 2016-08-31 23:04:32 +0000 | [diff] [blame] | 508 | bool ThreeElement = N->getNumOperands() == 3; |
| 509 | if (!ThreeElement && N->getNumOperands() != 2) |
| 510 | continue; |
Nick Lewycky | 8dd4dad | 2016-08-31 23:24:43 +0000 | [diff] [blame] | 511 | if (dyn_cast<MDNode>(N->getOperand(ThreeElement ? 2 : 1)) != CU) |
Nick Lewycky | 97e49ac | 2016-08-31 23:04:32 +0000 | [diff] [blame] | 512 | continue; |
| 513 | |
| 514 | if (ThreeElement) { |
| 515 | // These nodes have no mangling to apply, it's stored mangled in the |
| 516 | // bitcode. |
| 517 | MDString *NotesFile = dyn_cast<MDString>(N->getOperand(0)); |
| 518 | MDString *DataFile = dyn_cast<MDString>(N->getOperand(1)); |
| 519 | if (!NotesFile || !DataFile) |
| 520 | continue; |
| 521 | return Notes ? NotesFile->getString() : DataFile->getString(); |
Nick Lewycky | a3d5d16 | 2011-05-05 00:03:30 +0000 | [diff] [blame] | 522 | } |
Nick Lewycky | 97e49ac | 2016-08-31 23:04:32 +0000 | [diff] [blame] | 523 | |
| 524 | MDString *GCovFile = dyn_cast<MDString>(N->getOperand(0)); |
| 525 | if (!GCovFile) |
| 526 | continue; |
| 527 | |
| 528 | SmallString<128> Filename = GCovFile->getString(); |
| 529 | sys::path::replace_extension(Filename, Notes ? "gcno" : "gcda"); |
| 530 | return Filename.str(); |
Nick Lewycky | 6d9f061 | 2011-05-04 04:03:04 +0000 | [diff] [blame] | 531 | } |
| 532 | } |
Nick Lewycky | a3d5d16 | 2011-05-05 00:03:30 +0000 | [diff] [blame] | 533 | |
Ilya Biryukov | 449a7f0 | 2018-12-04 16:30:31 +0000 | [diff] [blame^] | 534 | SmallString<128> Filename = CU->getFilename(); |
Nick Lewycky | 97e49ac | 2016-08-31 23:04:32 +0000 | [diff] [blame] | 535 | sys::path::replace_extension(Filename, Notes ? "gcno" : "gcda"); |
Bill Wendling | 5aa8239 | 2013-03-26 22:47:50 +0000 | [diff] [blame] | 536 | StringRef FName = sys::path::filename(Filename); |
Bill Wendling | 5aa8239 | 2013-03-26 22:47:50 +0000 | [diff] [blame] | 537 | SmallString<128> CurPath; |
| 538 | if (sys::fs::current_path(CurPath)) return FName; |
Yaron Keren | 75e0c4b | 2015-03-27 17:51:30 +0000 | [diff] [blame] | 539 | sys::path::append(CurPath, FName); |
Bill Wendling | 5aa8239 | 2013-03-26 22:47:50 +0000 | [diff] [blame] | 540 | return CurPath.str(); |
Nick Lewycky | 6d9f061 | 2011-05-04 04:03:04 +0000 | [diff] [blame] | 541 | } |
| 542 | |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 543 | bool GCOVProfiler::runOnModule(Module &M, const TargetLibraryInfo &TLI) { |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 544 | this->M = &M; |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 545 | this->TLI = &TLI; |
Nick Lewycky | c5ea852 | 2011-04-16 02:05:18 +0000 | [diff] [blame] | 546 | Ctx = &M.getContext(); |
| 547 | |
Calixte Denizet | c3bed1e | 2018-11-07 13:49:17 +0000 | [diff] [blame] | 548 | AddFlushBeforeForkAndExec(); |
| 549 | |
Calixte Denizet | c6fabea | 2018-11-12 09:01:43 +0000 | [diff] [blame] | 550 | FilterRe = createRegexesFromString(Options.Filter); |
| 551 | ExcludeRe = createRegexesFromString(Options.Exclude); |
| 552 | |
Nick Lewycky | fdfed3e | 2013-03-14 05:13:26 +0000 | [diff] [blame] | 553 | if (Options.EmitNotes) emitProfileNotes(); |
| 554 | if (Options.EmitData) return emitProfileArcs(); |
Nick Lewycky | 8e0a38f | 2011-04-21 01:56:25 +0000 | [diff] [blame] | 555 | return false; |
Nick Lewycky | c5ea852 | 2011-04-16 02:05:18 +0000 | [diff] [blame] | 556 | } |
| 557 | |
Xinliang David Li | 64dbb29 | 2016-06-05 05:12:23 +0000 | [diff] [blame] | 558 | PreservedAnalyses GCOVProfilerPass::run(Module &M, |
Sean Silva | fd03ac6 | 2016-08-09 00:28:38 +0000 | [diff] [blame] | 559 | ModuleAnalysisManager &AM) { |
Xinliang David Li | 64dbb29 | 2016-06-05 05:12:23 +0000 | [diff] [blame] | 560 | |
| 561 | GCOVProfiler Profiler(GCOVOpts); |
| 562 | |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 563 | auto &TLI = AM.getResult<TargetLibraryAnalysis>(M); |
| 564 | if (!Profiler.runOnModule(M, TLI)) |
Xinliang David Li | 64dbb29 | 2016-06-05 05:12:23 +0000 | [diff] [blame] | 565 | return PreservedAnalyses::all(); |
| 566 | |
| 567 | return PreservedAnalyses::none(); |
| 568 | } |
| 569 | |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 570 | static bool functionHasLines(Function &F) { |
Nick Lewycky | 05e0f1c | 2014-04-18 23:32:28 +0000 | [diff] [blame] | 571 | // Check whether this function actually has any source lines. Not only |
| 572 | // do these waste space, they also can crash gcov. |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 573 | for (auto &BB : F) { |
| 574 | for (auto &I : BB) { |
Nick Lewycky | ce98b43 | 2014-06-04 21:47:19 +0000 | [diff] [blame] | 575 | // Debug intrinsic locations correspond to the location of the |
| 576 | // declaration, not necessarily any statements or expressions. |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 577 | if (isa<DbgInfoIntrinsic>(&I)) continue; |
Nick Lewycky | ff114da | 2014-06-05 04:31:43 +0000 | [diff] [blame] | 578 | |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 579 | const DebugLoc &Loc = I.getDebugLoc(); |
Duncan P. N. Exon Smith | ec819c0 | 2015-03-30 19:49:49 +0000 | [diff] [blame] | 580 | if (!Loc) |
| 581 | continue; |
Nick Lewycky | ff114da | 2014-06-05 04:31:43 +0000 | [diff] [blame] | 582 | |
| 583 | // Artificial lines such as calls to the global constructors. |
Justin Bogner | 3faa76b | 2015-03-16 23:52:03 +0000 | [diff] [blame] | 584 | if (Loc.getLine() == 0) continue; |
Nick Lewycky | ff114da | 2014-06-05 04:31:43 +0000 | [diff] [blame] | 585 | |
Nick Lewycky | 5f53ddd | 2014-06-03 04:25:36 +0000 | [diff] [blame] | 586 | return true; |
Nick Lewycky | 05e0f1c | 2014-04-18 23:32:28 +0000 | [diff] [blame] | 587 | } |
| 588 | } |
| 589 | return false; |
| 590 | } |
| 591 | |
Heejin Ahn | b4be38f | 2018-05-17 20:52:03 +0000 | [diff] [blame] | 592 | static bool isUsingScopeBasedEH(Function &F) { |
Marco Castelluccio | 0dcf64a | 2017-10-13 13:49:15 +0000 | [diff] [blame] | 593 | if (!F.hasPersonalityFn()) return false; |
| 594 | |
| 595 | EHPersonality Personality = classifyEHPersonality(F.getPersonalityFn()); |
Heejin Ahn | b4be38f | 2018-05-17 20:52:03 +0000 | [diff] [blame] | 596 | return isScopedEHPersonality(Personality); |
Marco Castelluccio | 0dcf64a | 2017-10-13 13:49:15 +0000 | [diff] [blame] | 597 | } |
| 598 | |
Sylvestre Ledru | e7d4cd6 | 2017-09-26 11:56:43 +0000 | [diff] [blame] | 599 | static bool shouldKeepInEntry(BasicBlock::iterator It) { |
| 600 | if (isa<AllocaInst>(*It)) return true; |
| 601 | if (isa<DbgInfoIntrinsic>(*It)) return true; |
| 602 | if (auto *II = dyn_cast<IntrinsicInst>(It)) { |
| 603 | if (II->getIntrinsicID() == llvm::Intrinsic::localescape) return true; |
| 604 | } |
| 605 | |
| 606 | return false; |
| 607 | } |
| 608 | |
Calixte Denizet | c3bed1e | 2018-11-07 13:49:17 +0000 | [diff] [blame] | 609 | void GCOVProfiler::AddFlushBeforeForkAndExec() { |
| 610 | SmallVector<Instruction *, 2> ForkAndExecs; |
| 611 | for (auto &F : M->functions()) { |
| 612 | for (auto &I : instructions(F)) { |
| 613 | if (CallInst *CI = dyn_cast<CallInst>(&I)) { |
| 614 | if (Function *Callee = CI->getCalledFunction()) { |
| 615 | LibFunc LF; |
| 616 | if (TLI->getLibFunc(*Callee, LF) && |
| 617 | (LF == LibFunc_fork || LF == LibFunc_execl || |
| 618 | LF == LibFunc_execle || LF == LibFunc_execlp || |
| 619 | LF == LibFunc_execv || LF == LibFunc_execvp || |
| 620 | LF == LibFunc_execve || LF == LibFunc_execvpe || |
| 621 | LF == LibFunc_execvP)) { |
| 622 | ForkAndExecs.push_back(&I); |
| 623 | } |
| 624 | } |
| 625 | } |
| 626 | } |
| 627 | } |
| 628 | |
| 629 | // We need to split the block after the fork/exec call |
| 630 | // because else the counters for the lines after will be |
| 631 | // the same as before the call. |
| 632 | for (auto I : ForkAndExecs) { |
| 633 | IRBuilder<> Builder(I); |
| 634 | FunctionType *FTy = FunctionType::get(Builder.getVoidTy(), {}, false); |
| 635 | Constant *GCOVFlush = M->getOrInsertFunction("__gcov_flush", FTy); |
| 636 | Builder.CreateCall(GCOVFlush); |
| 637 | I->getParent()->splitBasicBlock(I); |
| 638 | } |
| 639 | } |
| 640 | |
Nick Lewycky | ad14550 | 2013-03-13 22:55:42 +0000 | [diff] [blame] | 641 | void GCOVProfiler::emitProfileNotes() { |
Devang Patel | 2b21d86 | 2011-08-17 22:49:38 +0000 | [diff] [blame] | 642 | NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu"); |
Nick Lewycky | 6404d97 | 2011-11-27 23:22:20 +0000 | [diff] [blame] | 643 | if (!CU_Nodes) return; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 644 | |
Nick Lewycky | 6404d97 | 2011-11-27 23:22:20 +0000 | [diff] [blame] | 645 | for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) { |
| 646 | // Each compile unit gets its own .gcno file. This means that whether we run |
| 647 | // this pass over the original .o's as they're produced, or run it after |
| 648 | // LTO, we'll generate the same .gcno files. |
| 649 | |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 650 | auto *CU = cast<DICompileUnit>(CU_Nodes->getOperand(i)); |
Vedant Kumar | 61035fa | 2016-01-21 17:04:42 +0000 | [diff] [blame] | 651 | |
| 652 | // Skip module skeleton (and module) CUs. |
| 653 | if (CU->getDWOId()) |
| 654 | continue; |
| 655 | |
Rafael Espindola | 3fd1e99 | 2014-08-25 18:16:47 +0000 | [diff] [blame] | 656 | std::error_code EC; |
Nick Lewycky | 97e49ac | 2016-08-31 23:04:32 +0000 | [diff] [blame] | 657 | raw_fd_ostream out(mangleName(CU, GCovFileType::GCNO), EC, sys::fs::F_None); |
Reid Kleckner | 1aa4ea8 | 2017-09-18 21:31:48 +0000 | [diff] [blame] | 658 | if (EC) { |
| 659 | Ctx->emitError(Twine("failed to open coverage notes file for writing: ") + |
| 660 | EC.message()); |
| 661 | continue; |
| 662 | } |
| 663 | |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 664 | std::string EdgeDestinations; |
Nick Lewycky | 6404d97 | 2011-11-27 23:22:20 +0000 | [diff] [blame] | 665 | |
Justin Bogner | 58e4134 | 2014-11-06 06:55:02 +0000 | [diff] [blame] | 666 | unsigned FunctionIdent = 0; |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 667 | for (auto &F : M->functions()) { |
| 668 | DISubprogram *SP = F.getSubprogram(); |
| 669 | if (!SP) continue; |
Calixte Denizet | c6fabea | 2018-11-12 09:01:43 +0000 | [diff] [blame] | 670 | if (!functionHasLines(F) || !isFunctionInstrumented(F)) |
| 671 | continue; |
Heejin Ahn | b4be38f | 2018-05-17 20:52:03 +0000 | [diff] [blame] | 672 | // TODO: Functions using scope-based EH are currently not supported. |
| 673 | if (isUsingScopeBasedEH(F)) continue; |
Bob Wilson | 055a0b4 | 2014-01-31 05:24:01 +0000 | [diff] [blame] | 674 | |
| 675 | // gcov expects every function to start with an entry block that has a |
| 676 | // single successor, so split the entry block to make sure of that. |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 677 | BasicBlock &EntryBlock = F.getEntryBlock(); |
Bob Wilson | 055a0b4 | 2014-01-31 05:24:01 +0000 | [diff] [blame] | 678 | BasicBlock::iterator It = EntryBlock.begin(); |
Sylvestre Ledru | e7d4cd6 | 2017-09-26 11:56:43 +0000 | [diff] [blame] | 679 | while (shouldKeepInEntry(It)) |
Bob Wilson | 055a0b4 | 2014-01-31 05:24:01 +0000 | [diff] [blame] | 680 | ++It; |
| 681 | EntryBlock.splitBasicBlock(It); |
Yuchen Wu | c87ca32 | 2013-11-22 23:07:45 +0000 | [diff] [blame] | 682 | |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 683 | Funcs.push_back(make_unique<GCOVFunction>(SP, &F, &out, FunctionIdent++, |
Justin Bogner | 3faa76b | 2015-03-16 23:52:03 +0000 | [diff] [blame] | 684 | Options.UseCfgChecksum, |
| 685 | Options.ExitBlockBeforeBody)); |
David Blaikie | 229de50 | 2014-04-21 20:41:55 +0000 | [diff] [blame] | 686 | GCOVFunction &Func = *Funcs.back(); |
Nick Lewycky | 6404d97 | 2011-11-27 23:22:20 +0000 | [diff] [blame] | 687 | |
Calixte Denizet | d2f290b | 2018-10-11 08:53:43 +0000 | [diff] [blame] | 688 | // Add the function line number to the lines of the entry block |
| 689 | // to have a counter for the function definition. |
Calixte Denizet | 38d5054 | 2018-10-30 18:41:31 +0000 | [diff] [blame] | 690 | uint32_t Line = SP->getLine(); |
Ilya Biryukov | 449a7f0 | 2018-12-04 16:30:31 +0000 | [diff] [blame^] | 691 | Func.getBlock(&EntryBlock).getFile(SP->getFilename()).addLine(Line); |
Calixte Denizet | d2f290b | 2018-10-11 08:53:43 +0000 | [diff] [blame] | 692 | |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 693 | for (auto &BB : F) { |
| 694 | GCOVBlock &Block = Func.getBlock(&BB); |
Chandler Carruth | edb12a8 | 2018-10-15 10:04:59 +0000 | [diff] [blame] | 695 | Instruction *TI = BB.getTerminator(); |
Nick Lewycky | 6404d97 | 2011-11-27 23:22:20 +0000 | [diff] [blame] | 696 | if (int successors = TI->getNumSuccessors()) { |
| 697 | for (int i = 0; i != successors; ++i) { |
David Blaikie | 229de50 | 2014-04-21 20:41:55 +0000 | [diff] [blame] | 698 | Block.addEdge(Func.getBlock(TI->getSuccessor(i))); |
Nick Lewycky | 6404d97 | 2011-11-27 23:22:20 +0000 | [diff] [blame] | 699 | } |
| 700 | } else if (isa<ReturnInst>(TI)) { |
David Blaikie | 229de50 | 2014-04-21 20:41:55 +0000 | [diff] [blame] | 701 | Block.addEdge(Func.getReturnBlock()); |
Nick Lewycky | 6404d97 | 2011-11-27 23:22:20 +0000 | [diff] [blame] | 702 | } |
| 703 | |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 704 | for (auto &I : BB) { |
Nick Lewycky | ce98b43 | 2014-06-04 21:47:19 +0000 | [diff] [blame] | 705 | // Debug intrinsic locations correspond to the location of the |
| 706 | // declaration, not necessarily any statements or expressions. |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 707 | if (isa<DbgInfoIntrinsic>(&I)) continue; |
Nick Lewycky | ff114da | 2014-06-05 04:31:43 +0000 | [diff] [blame] | 708 | |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 709 | const DebugLoc &Loc = I.getDebugLoc(); |
Duncan P. N. Exon Smith | ec819c0 | 2015-03-30 19:49:49 +0000 | [diff] [blame] | 710 | if (!Loc) |
| 711 | continue; |
Nick Lewycky | ff114da | 2014-06-05 04:31:43 +0000 | [diff] [blame] | 712 | |
| 713 | // Artificial lines such as calls to the global constructors. |
Calixte Denizet | eb7f602 | 2018-09-20 08:53:06 +0000 | [diff] [blame] | 714 | if (Loc.getLine() == 0 || Loc.isImplicitCode()) |
| 715 | continue; |
Nick Lewycky | ff114da | 2014-06-05 04:31:43 +0000 | [diff] [blame] | 716 | |
Nick Lewycky | 6404d97 | 2011-11-27 23:22:20 +0000 | [diff] [blame] | 717 | if (Line == Loc.getLine()) continue; |
| 718 | Line = Loc.getLine(); |
Duncan P. N. Exon Smith | ec819c0 | 2015-03-30 19:49:49 +0000 | [diff] [blame] | 719 | if (SP != getDISubprogram(Loc.getScope())) |
| 720 | continue; |
Nick Lewycky | 6404d97 | 2011-11-27 23:22:20 +0000 | [diff] [blame] | 721 | |
Ilya Biryukov | 449a7f0 | 2018-12-04 16:30:31 +0000 | [diff] [blame^] | 722 | GCOVLines &Lines = Block.getFile(SP->getFilename()); |
Nick Lewycky | 6404d97 | 2011-11-27 23:22:20 +0000 | [diff] [blame] | 723 | Lines.addLine(Loc.getLine()); |
| 724 | } |
Calixte Denizet | 38d5054 | 2018-10-30 18:41:31 +0000 | [diff] [blame] | 725 | Line = 0; |
Nick Lewycky | 6404d97 | 2011-11-27 23:22:20 +0000 | [diff] [blame] | 726 | } |
David Blaikie | 229de50 | 2014-04-21 20:41:55 +0000 | [diff] [blame] | 727 | EdgeDestinations += Func.getEdgeDestinations(); |
Nick Lewycky | 6404d97 | 2011-11-27 23:22:20 +0000 | [diff] [blame] | 728 | } |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 729 | |
Yuchen Wu | 664dc76 | 2013-11-21 04:01:05 +0000 | [diff] [blame] | 730 | FileChecksums.push_back(hash_value(EdgeDestinations)); |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 731 | out.write("oncg", 4); |
| 732 | out.write(ReversedVersion, 4); |
Yuchen Wu | 664dc76 | 2013-11-21 04:01:05 +0000 | [diff] [blame] | 733 | out.write(reinterpret_cast<char*>(&FileChecksums.back()), 4); |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 734 | |
David Blaikie | 229de50 | 2014-04-21 20:41:55 +0000 | [diff] [blame] | 735 | for (auto &Func : Funcs) { |
Yuchen Wu | 664dc76 | 2013-11-21 04:01:05 +0000 | [diff] [blame] | 736 | Func->setCfgChecksum(FileChecksums.back()); |
| 737 | Func->writeOut(); |
| 738 | } |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 739 | |
Nick Lewycky | 6404d97 | 2011-11-27 23:22:20 +0000 | [diff] [blame] | 740 | out.write("\0\0\0\0\0\0\0\0", 8); // EOF |
| 741 | out.close(); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 742 | } |
| 743 | } |
| 744 | |
Devang Patel | 2b21d86 | 2011-08-17 22:49:38 +0000 | [diff] [blame] | 745 | bool GCOVProfiler::emitProfileArcs() { |
| 746 | NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu"); |
| 747 | if (!CU_Nodes) return false; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 748 | |
Duncan P. N. Exon Smith | cec1c24 | 2014-03-11 02:44:45 +0000 | [diff] [blame] | 749 | bool Result = false; |
Devang Patel | 2b21d86 | 2011-08-17 22:49:38 +0000 | [diff] [blame] | 750 | for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) { |
Devang Patel | 2b21d86 | 2011-08-17 22:49:38 +0000 | [diff] [blame] | 751 | SmallVector<std::pair<GlobalVariable *, MDNode *>, 8> CountersBySP; |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 752 | for (auto &F : M->functions()) { |
| 753 | DISubprogram *SP = F.getSubprogram(); |
| 754 | if (!SP) continue; |
Calixte Denizet | c6fabea | 2018-11-12 09:01:43 +0000 | [diff] [blame] | 755 | if (!functionHasLines(F) || !isFunctionInstrumented(F)) |
| 756 | continue; |
Heejin Ahn | b4be38f | 2018-05-17 20:52:03 +0000 | [diff] [blame] | 757 | // TODO: Functions using scope-based EH are currently not supported. |
| 758 | if (isUsingScopeBasedEH(F)) continue; |
Devang Patel | 2b21d86 | 2011-08-17 22:49:38 +0000 | [diff] [blame] | 759 | if (!Result) Result = true; |
Marco Castelluccio | 0dcf64a | 2017-10-13 13:49:15 +0000 | [diff] [blame] | 760 | |
Vedant Kumar | 727d895 | 2018-09-11 18:38:34 +0000 | [diff] [blame] | 761 | DenseMap<std::pair<BasicBlock *, BasicBlock *>, unsigned> EdgeToCounter; |
Devang Patel | 2b21d86 | 2011-08-17 22:49:38 +0000 | [diff] [blame] | 762 | unsigned Edges = 0; |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 763 | for (auto &BB : F) { |
Chandler Carruth | edb12a8 | 2018-10-15 10:04:59 +0000 | [diff] [blame] | 764 | Instruction *TI = BB.getTerminator(); |
Vedant Kumar | 727d895 | 2018-09-11 18:38:34 +0000 | [diff] [blame] | 765 | if (isa<ReturnInst>(TI)) { |
| 766 | EdgeToCounter[{&BB, nullptr}] = Edges++; |
| 767 | } else { |
| 768 | for (BasicBlock *Succ : successors(TI)) { |
| 769 | EdgeToCounter[{&BB, Succ}] = Edges++; |
| 770 | } |
| 771 | } |
Devang Patel | 2b21d86 | 2011-08-17 22:49:38 +0000 | [diff] [blame] | 772 | } |
Duncan P. N. Exon Smith | cec1c24 | 2014-03-11 02:44:45 +0000 | [diff] [blame] | 773 | |
Devang Patel | 2b21d86 | 2011-08-17 22:49:38 +0000 | [diff] [blame] | 774 | ArrayType *CounterTy = |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 775 | ArrayType::get(Type::getInt64Ty(*Ctx), Edges); |
Devang Patel | 2b21d86 | 2011-08-17 22:49:38 +0000 | [diff] [blame] | 776 | GlobalVariable *Counters = |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 777 | new GlobalVariable(*M, CounterTy, false, |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 778 | GlobalValue::InternalLinkage, |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 779 | Constant::getNullValue(CounterTy), |
Hans Wennborg | cbe34b4 | 2012-06-23 11:37:03 +0000 | [diff] [blame] | 780 | "__llvm_gcov_ctr"); |
Duncan P. N. Exon Smith | 537b4a8 | 2015-04-14 03:40:37 +0000 | [diff] [blame] | 781 | CountersBySP.push_back(std::make_pair(Counters, SP)); |
Duncan P. N. Exon Smith | cec1c24 | 2014-03-11 02:44:45 +0000 | [diff] [blame] | 782 | |
Vedant Kumar | 727d895 | 2018-09-11 18:38:34 +0000 | [diff] [blame] | 783 | // If a BB has several predecessors, use a PHINode to select |
| 784 | // the correct counter. |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 785 | for (auto &BB : F) { |
Vedant Kumar | 727d895 | 2018-09-11 18:38:34 +0000 | [diff] [blame] | 786 | const unsigned EdgeCount = |
| 787 | std::distance(pred_begin(&BB), pred_end(&BB)); |
| 788 | if (EdgeCount) { |
| 789 | // The phi node must be at the begin of the BB. |
| 790 | IRBuilder<> BuilderForPhi(&*BB.begin()); |
| 791 | Type *Int64PtrTy = Type::getInt64PtrTy(*Ctx); |
| 792 | PHINode *Phi = BuilderForPhi.CreatePHI(Int64PtrTy, EdgeCount); |
| 793 | for (BasicBlock *Pred : predecessors(&BB)) { |
| 794 | auto It = EdgeToCounter.find({Pred, &BB}); |
| 795 | assert(It != EdgeToCounter.end()); |
| 796 | const unsigned Edge = It->second; |
| 797 | Value *EdgeCounter = |
| 798 | BuilderForPhi.CreateConstInBoundsGEP2_64(Counters, 0, Edge); |
| 799 | Phi->addIncoming(EdgeCounter, Pred); |
Devang Patel | 2b21d86 | 2011-08-17 22:49:38 +0000 | [diff] [blame] | 800 | } |
Bill Wendling | 707f601 | 2013-08-20 23:52:00 +0000 | [diff] [blame] | 801 | |
Vedant Kumar | 727d895 | 2018-09-11 18:38:34 +0000 | [diff] [blame] | 802 | // Skip phis, landingpads. |
| 803 | IRBuilder<> Builder(&*BB.getFirstInsertionPt()); |
| 804 | Value *Count = Builder.CreateLoad(Phi); |
| 805 | Count = Builder.CreateAdd(Count, Builder.getInt64(1)); |
| 806 | Builder.CreateStore(Count, Phi); |
Duncan P. N. Exon Smith | cec1c24 | 2014-03-11 02:44:45 +0000 | [diff] [blame] | 807 | |
Chandler Carruth | edb12a8 | 2018-10-15 10:04:59 +0000 | [diff] [blame] | 808 | Instruction *TI = BB.getTerminator(); |
Vedant Kumar | 727d895 | 2018-09-11 18:38:34 +0000 | [diff] [blame] | 809 | if (isa<ReturnInst>(TI)) { |
| 810 | auto It = EdgeToCounter.find({&BB, nullptr}); |
| 811 | assert(It != EdgeToCounter.end()); |
| 812 | const unsigned Edge = It->second; |
| 813 | Value *Counter = |
| 814 | Builder.CreateConstInBoundsGEP2_64(Counters, 0, Edge); |
| 815 | Value *Count = Builder.CreateLoad(Counter); |
| 816 | Count = Builder.CreateAdd(Count, Builder.getInt64(1)); |
| 817 | Builder.CreateStore(Count, Counter); |
| 818 | } |
Devang Patel | 2b21d86 | 2011-08-17 22:49:38 +0000 | [diff] [blame] | 819 | } |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 820 | } |
| 821 | } |
Bill Wendling | e85f349 | 2012-06-01 23:14:32 +0000 | [diff] [blame] | 822 | |
Bill Wendling | c3cab81 | 2013-03-18 23:04:39 +0000 | [diff] [blame] | 823 | Function *WriteoutF = insertCounterWriteout(CountersBySP); |
| 824 | Function *FlushF = insertFlush(CountersBySP); |
| 825 | |
| 826 | // Create a small bit of code that registers the "__llvm_gcov_writeout" to |
Bill Wendling | 04d57c7 | 2013-03-19 21:03:22 +0000 | [diff] [blame] | 827 | // be executed at exit and the "__llvm_gcov_flush" function to be executed |
| 828 | // when "__gcov_flush" is called. |
Bill Wendling | c3cab81 | 2013-03-18 23:04:39 +0000 | [diff] [blame] | 829 | FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false); |
| 830 | Function *F = Function::Create(FTy, GlobalValue::InternalLinkage, |
| 831 | "__llvm_gcov_init", M); |
Peter Collingbourne | 96efdd6 | 2016-06-14 21:01:22 +0000 | [diff] [blame] | 832 | F->setUnnamedAddr(GlobalValue::UnnamedAddr::Global); |
Bill Wendling | c3cab81 | 2013-03-18 23:04:39 +0000 | [diff] [blame] | 833 | F->setLinkage(GlobalValue::InternalLinkage); |
| 834 | F->addFnAttr(Attribute::NoInline); |
| 835 | if (Options.NoRedZone) |
| 836 | F->addFnAttr(Attribute::NoRedZone); |
| 837 | |
| 838 | BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", F); |
| 839 | IRBuilder<> Builder(BB); |
| 840 | |
Bill Wendling | c3cab81 | 2013-03-18 23:04:39 +0000 | [diff] [blame] | 841 | FTy = FunctionType::get(Type::getVoidTy(*Ctx), false); |
Bill Wendling | c77e944 | 2013-03-20 21:13:59 +0000 | [diff] [blame] | 842 | Type *Params[] = { |
| 843 | PointerType::get(FTy, 0), |
| 844 | PointerType::get(FTy, 0) |
| 845 | }; |
| 846 | FTy = FunctionType::get(Builder.getVoidTy(), Params, false); |
Bill Wendling | 04d57c7 | 2013-03-19 21:03:22 +0000 | [diff] [blame] | 847 | |
Yuchen Wu | 3197b25 | 2013-10-23 20:35:00 +0000 | [diff] [blame] | 848 | // Initialize the environment and register the local writeout and flush |
Bill Wendling | c77e944 | 2013-03-20 21:13:59 +0000 | [diff] [blame] | 849 | // functions. |
| 850 | Constant *GCOVInit = M->getOrInsertFunction("llvm_gcov_init", FTy); |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 851 | Builder.CreateCall(GCOVInit, {WriteoutF, FlushF}); |
Bill Wendling | c3cab81 | 2013-03-18 23:04:39 +0000 | [diff] [blame] | 852 | Builder.CreateRetVoid(); |
| 853 | |
| 854 | appendToGlobalCtors(*M, F, 0); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 855 | } |
Bill Wendling | 1560517 | 2012-05-28 06:10:56 +0000 | [diff] [blame] | 856 | |
Devang Patel | 2b21d86 | 2011-08-17 22:49:38 +0000 | [diff] [blame] | 857 | return Result; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 858 | } |
| 859 | |
| 860 | Constant *GCOVProfiler::getStartFileFunc() { |
Nick Lewycky | 492afe8 | 2013-03-07 08:28:49 +0000 | [diff] [blame] | 861 | Type *Args[] = { |
| 862 | Type::getInt8PtrTy(*Ctx), // const char *orig_filename |
| 863 | Type::getInt8PtrTy(*Ctx), // const char version[4] |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 864 | Type::getInt32Ty(*Ctx), // uint32_t checksum |
Nick Lewycky | 492afe8 | 2013-03-07 08:28:49 +0000 | [diff] [blame] | 865 | }; |
| 866 | FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false); |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 867 | auto *Res = M->getOrInsertFunction("llvm_gcda_start_file", FTy); |
| 868 | if (Function *FunRes = dyn_cast<Function>(Res)) |
| 869 | if (auto AK = TLI->getExtAttrForI32Param(false)) |
| 870 | FunRes->addParamAttr(2, AK); |
| 871 | return Res; |
| 872 | |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 873 | } |
| 874 | |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 875 | Constant *GCOVProfiler::getEmitFunctionFunc() { |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 876 | Type *Args[] = { |
Nick Lewycky | 4f9c367 | 2011-05-05 02:46:38 +0000 | [diff] [blame] | 877 | Type::getInt32Ty(*Ctx), // uint32_t ident |
| 878 | Type::getInt8PtrTy(*Ctx), // const char *function_name |
Daniel Jasper | 87a24d5 | 2013-12-04 08:57:17 +0000 | [diff] [blame] | 879 | Type::getInt32Ty(*Ctx), // uint32_t func_checksum |
Nick Lewycky | 88f1d0d | 2013-03-09 01:33:06 +0000 | [diff] [blame] | 880 | Type::getInt8Ty(*Ctx), // uint8_t use_extra_checksum |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 881 | Type::getInt32Ty(*Ctx), // uint32_t cfg_checksum |
Nick Lewycky | 4f9c367 | 2011-05-05 02:46:38 +0000 | [diff] [blame] | 882 | }; |
Bill Wendling | 8ed0749 | 2012-05-25 23:55:00 +0000 | [diff] [blame] | 883 | FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false); |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 884 | auto *Res = M->getOrInsertFunction("llvm_gcda_emit_function", FTy); |
| 885 | if (Function *FunRes = dyn_cast<Function>(Res)) |
| 886 | if (auto AK = TLI->getExtAttrForI32Param(false)) { |
| 887 | FunRes->addParamAttr(0, AK); |
| 888 | FunRes->addParamAttr(2, AK); |
| 889 | FunRes->addParamAttr(3, AK); |
| 890 | FunRes->addParamAttr(4, AK); |
| 891 | } |
| 892 | return Res; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 893 | } |
| 894 | |
| 895 | Constant *GCOVProfiler::getEmitArcsFunc() { |
Jay Foad | b804a2b | 2011-07-12 14:06:48 +0000 | [diff] [blame] | 896 | Type *Args[] = { |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 897 | Type::getInt32Ty(*Ctx), // uint32_t num_counters |
| 898 | Type::getInt64PtrTy(*Ctx), // uint64_t *counters |
| 899 | }; |
Nick Lewycky | 492afe8 | 2013-03-07 08:28:49 +0000 | [diff] [blame] | 900 | FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false); |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 901 | auto *Res = M->getOrInsertFunction("llvm_gcda_emit_arcs", FTy); |
| 902 | if (Function *FunRes = dyn_cast<Function>(Res)) |
| 903 | if (auto AK = TLI->getExtAttrForI32Param(false)) |
| 904 | FunRes->addParamAttr(0, AK); |
| 905 | return Res; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 906 | } |
| 907 | |
Yuchen Wu | 062f24c | 2013-11-12 04:59:08 +0000 | [diff] [blame] | 908 | Constant *GCOVProfiler::getSummaryInfoFunc() { |
| 909 | FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false); |
| 910 | return M->getOrInsertFunction("llvm_gcda_summary_info", FTy); |
| 911 | } |
| 912 | |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 913 | Constant *GCOVProfiler::getEndFileFunc() { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 914 | FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false); |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 915 | return M->getOrInsertFunction("llvm_gcda_end_file", FTy); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 916 | } |
| 917 | |
Bill Wendling | c3cab81 | 2013-03-18 23:04:39 +0000 | [diff] [blame] | 918 | Function *GCOVProfiler::insertCounterWriteout( |
Bill Wendling | e8aee6b | 2012-08-29 18:45:41 +0000 | [diff] [blame] | 919 | ArrayRef<std::pair<GlobalVariable *, MDNode *> > CountersBySP) { |
Bill Wendling | 2e6e866 | 2012-09-13 00:09:55 +0000 | [diff] [blame] | 920 | FunctionType *WriteoutFTy = FunctionType::get(Type::getVoidTy(*Ctx), false); |
| 921 | Function *WriteoutF = M->getFunction("__llvm_gcov_writeout"); |
| 922 | if (!WriteoutF) |
| 923 | WriteoutF = Function::Create(WriteoutFTy, GlobalValue::InternalLinkage, |
| 924 | "__llvm_gcov_writeout", M); |
Peter Collingbourne | 96efdd6 | 2016-06-14 21:01:22 +0000 | [diff] [blame] | 925 | WriteoutF->setUnnamedAddr(GlobalValue::UnnamedAddr::Global); |
Bill Wendling | 3d7b0b8 | 2012-12-19 07:18:57 +0000 | [diff] [blame] | 926 | WriteoutF->addFnAttr(Attribute::NoInline); |
Nick Lewycky | fdfed3e | 2013-03-14 05:13:26 +0000 | [diff] [blame] | 927 | if (Options.NoRedZone) |
Bill Wendling | 3d7b0b8 | 2012-12-19 07:18:57 +0000 | [diff] [blame] | 928 | WriteoutF->addFnAttr(Attribute::NoRedZone); |
Bill Wendling | 2e6e866 | 2012-09-13 00:09:55 +0000 | [diff] [blame] | 929 | |
| 930 | BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", WriteoutF); |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 931 | IRBuilder<> Builder(BB); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 932 | |
| 933 | Constant *StartFile = getStartFileFunc(); |
| 934 | Constant *EmitFunction = getEmitFunctionFunc(); |
| 935 | Constant *EmitArcs = getEmitArcsFunc(); |
Yuchen Wu | 062f24c | 2013-11-12 04:59:08 +0000 | [diff] [blame] | 936 | Constant *SummaryInfo = getSummaryInfoFunc(); |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 937 | Constant *EndFile = getEndFileFunc(); |
| 938 | |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 939 | NamedMDNode *CUNodes = M->getNamedMetadata("llvm.dbg.cu"); |
| 940 | if (!CUNodes) { |
| 941 | Builder.CreateRetVoid(); |
| 942 | return WriteoutF; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 943 | } |
Bill Wendling | c3cab81 | 2013-03-18 23:04:39 +0000 | [diff] [blame] | 944 | |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 945 | // Collect the relevant data into a large constant data structure that we can |
| 946 | // walk to write out everything. |
| 947 | StructType *StartFileCallArgsTy = StructType::create( |
| 948 | {Builder.getInt8PtrTy(), Builder.getInt8PtrTy(), Builder.getInt32Ty()}); |
| 949 | StructType *EmitFunctionCallArgsTy = StructType::create( |
| 950 | {Builder.getInt32Ty(), Builder.getInt8PtrTy(), Builder.getInt32Ty(), |
| 951 | Builder.getInt8Ty(), Builder.getInt32Ty()}); |
| 952 | StructType *EmitArcsCallArgsTy = StructType::create( |
| 953 | {Builder.getInt32Ty(), Builder.getInt64Ty()->getPointerTo()}); |
| 954 | StructType *FileInfoTy = |
| 955 | StructType::create({StartFileCallArgsTy, Builder.getInt32Ty(), |
| 956 | EmitFunctionCallArgsTy->getPointerTo(), |
| 957 | EmitArcsCallArgsTy->getPointerTo()}); |
| 958 | |
| 959 | Constant *Zero32 = Builder.getInt32(0); |
Chandler Carruth | e74c354 | 2018-05-03 00:11:03 +0000 | [diff] [blame] | 960 | // Build an explicit array of two zeros for use in ConstantExpr GEP building. |
| 961 | Constant *TwoZero32s[] = {Zero32, Zero32}; |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 962 | |
| 963 | SmallVector<Constant *, 8> FileInfos; |
| 964 | for (int i : llvm::seq<int>(0, CUNodes->getNumOperands())) { |
| 965 | auto *CU = cast<DICompileUnit>(CUNodes->getOperand(i)); |
| 966 | |
| 967 | // Skip module skeleton (and module) CUs. |
| 968 | if (CU->getDWOId()) |
| 969 | continue; |
| 970 | |
| 971 | std::string FilenameGcda = mangleName(CU, GCovFileType::GCDA); |
| 972 | uint32_t CfgChecksum = FileChecksums.empty() ? 0 : FileChecksums[i]; |
| 973 | auto *StartFileCallArgs = ConstantStruct::get( |
| 974 | StartFileCallArgsTy, {Builder.CreateGlobalStringPtr(FilenameGcda), |
| 975 | Builder.CreateGlobalStringPtr(ReversedVersion), |
| 976 | Builder.getInt32(CfgChecksum)}); |
| 977 | |
| 978 | SmallVector<Constant *, 8> EmitFunctionCallArgsArray; |
| 979 | SmallVector<Constant *, 8> EmitArcsCallArgsArray; |
| 980 | for (int j : llvm::seq<int>(0, CountersBySP.size())) { |
| 981 | auto *SP = cast_or_null<DISubprogram>(CountersBySP[j].second); |
| 982 | uint32_t FuncChecksum = Funcs.empty() ? 0 : Funcs[j]->getFuncChecksum(); |
| 983 | EmitFunctionCallArgsArray.push_back(ConstantStruct::get( |
| 984 | EmitFunctionCallArgsTy, |
| 985 | {Builder.getInt32(j), |
| 986 | Options.FunctionNamesInData |
| 987 | ? Builder.CreateGlobalStringPtr(getFunctionName(SP)) |
| 988 | : Constant::getNullValue(Builder.getInt8PtrTy()), |
| 989 | Builder.getInt32(FuncChecksum), |
| 990 | Builder.getInt8(Options.UseCfgChecksum), |
| 991 | Builder.getInt32(CfgChecksum)})); |
| 992 | |
| 993 | GlobalVariable *GV = CountersBySP[j].first; |
| 994 | unsigned Arcs = cast<ArrayType>(GV->getValueType())->getNumElements(); |
| 995 | EmitArcsCallArgsArray.push_back(ConstantStruct::get( |
| 996 | EmitArcsCallArgsTy, |
Chandler Carruth | e74c354 | 2018-05-03 00:11:03 +0000 | [diff] [blame] | 997 | {Builder.getInt32(Arcs), ConstantExpr::getInBoundsGetElementPtr( |
| 998 | GV->getValueType(), GV, TwoZero32s)})); |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 999 | } |
| 1000 | // Create global arrays for the two emit calls. |
| 1001 | int CountersSize = CountersBySP.size(); |
| 1002 | assert(CountersSize == (int)EmitFunctionCallArgsArray.size() && |
| 1003 | "Mismatched array size!"); |
| 1004 | assert(CountersSize == (int)EmitArcsCallArgsArray.size() && |
| 1005 | "Mismatched array size!"); |
| 1006 | auto *EmitFunctionCallArgsArrayTy = |
| 1007 | ArrayType::get(EmitFunctionCallArgsTy, CountersSize); |
| 1008 | auto *EmitFunctionCallArgsArrayGV = new GlobalVariable( |
| 1009 | *M, EmitFunctionCallArgsArrayTy, /*isConstant*/ true, |
| 1010 | GlobalValue::InternalLinkage, |
| 1011 | ConstantArray::get(EmitFunctionCallArgsArrayTy, |
| 1012 | EmitFunctionCallArgsArray), |
| 1013 | Twine("__llvm_internal_gcov_emit_function_args.") + Twine(i)); |
| 1014 | auto *EmitArcsCallArgsArrayTy = |
| 1015 | ArrayType::get(EmitArcsCallArgsTy, CountersSize); |
| 1016 | EmitFunctionCallArgsArrayGV->setUnnamedAddr( |
| 1017 | GlobalValue::UnnamedAddr::Global); |
| 1018 | auto *EmitArcsCallArgsArrayGV = new GlobalVariable( |
| 1019 | *M, EmitArcsCallArgsArrayTy, /*isConstant*/ true, |
| 1020 | GlobalValue::InternalLinkage, |
| 1021 | ConstantArray::get(EmitArcsCallArgsArrayTy, EmitArcsCallArgsArray), |
| 1022 | Twine("__llvm_internal_gcov_emit_arcs_args.") + Twine(i)); |
| 1023 | EmitArcsCallArgsArrayGV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global); |
| 1024 | |
| 1025 | FileInfos.push_back(ConstantStruct::get( |
| 1026 | FileInfoTy, |
| 1027 | {StartFileCallArgs, Builder.getInt32(CountersSize), |
Chandler Carruth | e74c354 | 2018-05-03 00:11:03 +0000 | [diff] [blame] | 1028 | ConstantExpr::getInBoundsGetElementPtr(EmitFunctionCallArgsArrayTy, |
| 1029 | EmitFunctionCallArgsArrayGV, |
| 1030 | TwoZero32s), |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 1031 | ConstantExpr::getInBoundsGetElementPtr( |
Chandler Carruth | e74c354 | 2018-05-03 00:11:03 +0000 | [diff] [blame] | 1032 | EmitArcsCallArgsArrayTy, EmitArcsCallArgsArrayGV, TwoZero32s)})); |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 1033 | } |
| 1034 | |
| 1035 | // If we didn't find anything to actually emit, bail on out. |
| 1036 | if (FileInfos.empty()) { |
| 1037 | Builder.CreateRetVoid(); |
| 1038 | return WriteoutF; |
| 1039 | } |
| 1040 | |
| 1041 | // To simplify code, we cap the number of file infos we write out to fit |
| 1042 | // easily in a 32-bit signed integer. This gives consistent behavior between |
| 1043 | // 32-bit and 64-bit systems without requiring (potentially very slow) 64-bit |
| 1044 | // operations on 32-bit systems. It also seems unreasonable to try to handle |
| 1045 | // more than 2 billion files. |
| 1046 | if ((int64_t)FileInfos.size() > (int64_t)INT_MAX) |
| 1047 | FileInfos.resize(INT_MAX); |
| 1048 | |
| 1049 | // Create a global for the entire data structure so we can walk it more |
| 1050 | // easily. |
| 1051 | auto *FileInfoArrayTy = ArrayType::get(FileInfoTy, FileInfos.size()); |
| 1052 | auto *FileInfoArrayGV = new GlobalVariable( |
| 1053 | *M, FileInfoArrayTy, /*isConstant*/ true, GlobalValue::InternalLinkage, |
| 1054 | ConstantArray::get(FileInfoArrayTy, FileInfos), |
| 1055 | "__llvm_internal_gcov_emit_file_info"); |
| 1056 | FileInfoArrayGV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global); |
| 1057 | |
| 1058 | // Create the CFG for walking this data structure. |
| 1059 | auto *FileLoopHeader = |
| 1060 | BasicBlock::Create(*Ctx, "file.loop.header", WriteoutF); |
| 1061 | auto *CounterLoopHeader = |
| 1062 | BasicBlock::Create(*Ctx, "counter.loop.header", WriteoutF); |
| 1063 | auto *FileLoopLatch = BasicBlock::Create(*Ctx, "file.loop.latch", WriteoutF); |
| 1064 | auto *ExitBB = BasicBlock::Create(*Ctx, "exit", WriteoutF); |
| 1065 | |
| 1066 | // We always have at least one file, so just branch to the header. |
| 1067 | Builder.CreateBr(FileLoopHeader); |
| 1068 | |
| 1069 | // The index into the files structure is our loop induction variable. |
| 1070 | Builder.SetInsertPoint(FileLoopHeader); |
| 1071 | PHINode *IV = |
| 1072 | Builder.CreatePHI(Builder.getInt32Ty(), /*NumReservedValues*/ 2); |
| 1073 | IV->addIncoming(Builder.getInt32(0), BB); |
| 1074 | auto *FileInfoPtr = |
| 1075 | Builder.CreateInBoundsGEP(FileInfoArrayGV, {Builder.getInt32(0), IV}); |
| 1076 | auto *StartFileCallArgsPtr = Builder.CreateStructGEP(FileInfoPtr, 0); |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 1077 | auto *StartFileCall = Builder.CreateCall( |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 1078 | StartFile, |
| 1079 | {Builder.CreateLoad(Builder.CreateStructGEP(StartFileCallArgsPtr, 0)), |
| 1080 | Builder.CreateLoad(Builder.CreateStructGEP(StartFileCallArgsPtr, 1)), |
| 1081 | Builder.CreateLoad(Builder.CreateStructGEP(StartFileCallArgsPtr, 2))}); |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 1082 | if (auto AK = TLI->getExtAttrForI32Param(false)) |
| 1083 | StartFileCall->addParamAttr(2, AK); |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 1084 | auto *NumCounters = |
| 1085 | Builder.CreateLoad(Builder.CreateStructGEP(FileInfoPtr, 1)); |
| 1086 | auto *EmitFunctionCallArgsArray = |
| 1087 | Builder.CreateLoad(Builder.CreateStructGEP(FileInfoPtr, 2)); |
| 1088 | auto *EmitArcsCallArgsArray = |
| 1089 | Builder.CreateLoad(Builder.CreateStructGEP(FileInfoPtr, 3)); |
| 1090 | auto *EnterCounterLoopCond = |
| 1091 | Builder.CreateICmpSLT(Builder.getInt32(0), NumCounters); |
| 1092 | Builder.CreateCondBr(EnterCounterLoopCond, CounterLoopHeader, FileLoopLatch); |
| 1093 | |
| 1094 | Builder.SetInsertPoint(CounterLoopHeader); |
| 1095 | auto *JV = Builder.CreatePHI(Builder.getInt32Ty(), /*NumReservedValues*/ 2); |
| 1096 | JV->addIncoming(Builder.getInt32(0), FileLoopHeader); |
| 1097 | auto *EmitFunctionCallArgsPtr = |
| 1098 | Builder.CreateInBoundsGEP(EmitFunctionCallArgsArray, {JV}); |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 1099 | auto *EmitFunctionCall = Builder.CreateCall( |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 1100 | EmitFunction, |
| 1101 | {Builder.CreateLoad(Builder.CreateStructGEP(EmitFunctionCallArgsPtr, 0)), |
| 1102 | Builder.CreateLoad(Builder.CreateStructGEP(EmitFunctionCallArgsPtr, 1)), |
| 1103 | Builder.CreateLoad(Builder.CreateStructGEP(EmitFunctionCallArgsPtr, 2)), |
| 1104 | Builder.CreateLoad(Builder.CreateStructGEP(EmitFunctionCallArgsPtr, 3)), |
| 1105 | Builder.CreateLoad( |
| 1106 | Builder.CreateStructGEP(EmitFunctionCallArgsPtr, 4))}); |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 1107 | if (auto AK = TLI->getExtAttrForI32Param(false)) { |
| 1108 | EmitFunctionCall->addParamAttr(0, AK); |
| 1109 | EmitFunctionCall->addParamAttr(2, AK); |
| 1110 | EmitFunctionCall->addParamAttr(3, AK); |
| 1111 | EmitFunctionCall->addParamAttr(4, AK); |
| 1112 | } |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 1113 | auto *EmitArcsCallArgsPtr = |
| 1114 | Builder.CreateInBoundsGEP(EmitArcsCallArgsArray, {JV}); |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 1115 | auto *EmitArcsCall = Builder.CreateCall( |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 1116 | EmitArcs, |
| 1117 | {Builder.CreateLoad(Builder.CreateStructGEP(EmitArcsCallArgsPtr, 0)), |
| 1118 | Builder.CreateLoad(Builder.CreateStructGEP(EmitArcsCallArgsPtr, 1))}); |
Ulrich Weigand | b961fdc | 2018-07-10 16:05:47 +0000 | [diff] [blame] | 1119 | if (auto AK = TLI->getExtAttrForI32Param(false)) |
| 1120 | EmitArcsCall->addParamAttr(0, AK); |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 1121 | auto *NextJV = Builder.CreateAdd(JV, Builder.getInt32(1)); |
| 1122 | auto *CounterLoopCond = Builder.CreateICmpSLT(NextJV, NumCounters); |
| 1123 | Builder.CreateCondBr(CounterLoopCond, CounterLoopHeader, FileLoopLatch); |
| 1124 | JV->addIncoming(NextJV, CounterLoopHeader); |
| 1125 | |
| 1126 | Builder.SetInsertPoint(FileLoopLatch); |
| 1127 | Builder.CreateCall(SummaryInfo, {}); |
| 1128 | Builder.CreateCall(EndFile, {}); |
| 1129 | auto *NextIV = Builder.CreateAdd(IV, Builder.getInt32(1)); |
| 1130 | auto *FileLoopCond = |
| 1131 | Builder.CreateICmpSLT(NextIV, Builder.getInt32(FileInfos.size())); |
| 1132 | Builder.CreateCondBr(FileLoopCond, FileLoopHeader, ExitBB); |
| 1133 | IV->addIncoming(NextIV, FileLoopLatch); |
| 1134 | |
| 1135 | Builder.SetInsertPoint(ExitBB); |
Nick Lewycky | c58d293 | 2011-04-26 03:54:16 +0000 | [diff] [blame] | 1136 | Builder.CreateRetVoid(); |
Chandler Carruth | 71c3a3f | 2018-05-02 22:24:39 +0000 | [diff] [blame] | 1137 | |
Bill Wendling | c3cab81 | 2013-03-18 23:04:39 +0000 | [diff] [blame] | 1138 | return WriteoutF; |
Nick Lewycky | 966edd0 | 2011-04-16 01:20:23 +0000 | [diff] [blame] | 1139 | } |
Bill Wendling | 1560517 | 2012-05-28 06:10:56 +0000 | [diff] [blame] | 1140 | |
Bill Wendling | c3cab81 | 2013-03-18 23:04:39 +0000 | [diff] [blame] | 1141 | Function *GCOVProfiler:: |
Bill Wendling | 2e6e866 | 2012-09-13 00:09:55 +0000 | [diff] [blame] | 1142 | insertFlush(ArrayRef<std::pair<GlobalVariable*, MDNode*> > CountersBySP) { |
| 1143 | FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false); |
Bill Wendling | c3cab81 | 2013-03-18 23:04:39 +0000 | [diff] [blame] | 1144 | Function *FlushF = M->getFunction("__llvm_gcov_flush"); |
Bill Wendling | 2e6e866 | 2012-09-13 00:09:55 +0000 | [diff] [blame] | 1145 | if (!FlushF) |
| 1146 | FlushF = Function::Create(FTy, GlobalValue::InternalLinkage, |
Bill Wendling | c3cab81 | 2013-03-18 23:04:39 +0000 | [diff] [blame] | 1147 | "__llvm_gcov_flush", M); |
Bill Wendling | 2e6e866 | 2012-09-13 00:09:55 +0000 | [diff] [blame] | 1148 | else |
| 1149 | FlushF->setLinkage(GlobalValue::InternalLinkage); |
Peter Collingbourne | 96efdd6 | 2016-06-14 21:01:22 +0000 | [diff] [blame] | 1150 | FlushF->setUnnamedAddr(GlobalValue::UnnamedAddr::Global); |
Bill Wendling | 3d7b0b8 | 2012-12-19 07:18:57 +0000 | [diff] [blame] | 1151 | FlushF->addFnAttr(Attribute::NoInline); |
Nick Lewycky | fdfed3e | 2013-03-14 05:13:26 +0000 | [diff] [blame] | 1152 | if (Options.NoRedZone) |
Bill Wendling | 3d7b0b8 | 2012-12-19 07:18:57 +0000 | [diff] [blame] | 1153 | FlushF->addFnAttr(Attribute::NoRedZone); |
Bill Wendling | 2e6e866 | 2012-09-13 00:09:55 +0000 | [diff] [blame] | 1154 | |
Bill Wendling | 2e6e866 | 2012-09-13 00:09:55 +0000 | [diff] [blame] | 1155 | BasicBlock *Entry = BasicBlock::Create(*Ctx, "entry", FlushF); |
| 1156 | |
| 1157 | // Write out the current counters. |
| 1158 | Constant *WriteoutF = M->getFunction("__llvm_gcov_writeout"); |
| 1159 | assert(WriteoutF && "Need to create the writeout function first!"); |
| 1160 | |
| 1161 | IRBuilder<> Builder(Entry); |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 1162 | Builder.CreateCall(WriteoutF, {}); |
Bill Wendling | 2e6e866 | 2012-09-13 00:09:55 +0000 | [diff] [blame] | 1163 | |
Bill Wendling | fb1f668 | 2012-09-13 14:32:30 +0000 | [diff] [blame] | 1164 | // Zero out the counters. |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 1165 | for (const auto &I : CountersBySP) { |
| 1166 | GlobalVariable *GV = I.first; |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 1167 | Constant *Null = Constant::getNullValue(GV->getValueType()); |
Bill Wendling | 8d26bc3 | 2012-09-14 22:35:49 +0000 | [diff] [blame] | 1168 | Builder.CreateStore(Null, GV); |
Bill Wendling | fb1f668 | 2012-09-13 14:32:30 +0000 | [diff] [blame] | 1169 | } |
Bill Wendling | 2e6e866 | 2012-09-13 00:09:55 +0000 | [diff] [blame] | 1170 | |
| 1171 | Type *RetTy = FlushF->getReturnType(); |
| 1172 | if (RetTy == Type::getVoidTy(*Ctx)) |
| 1173 | Builder.CreateRetVoid(); |
| 1174 | else if (RetTy->isIntegerTy()) |
Bill Wendling | c3cab81 | 2013-03-18 23:04:39 +0000 | [diff] [blame] | 1175 | // Used if __llvm_gcov_flush was implicitly declared. |
Bill Wendling | 2e6e866 | 2012-09-13 00:09:55 +0000 | [diff] [blame] | 1176 | Builder.CreateRet(ConstantInt::get(RetTy, 0)); |
| 1177 | else |
Bill Wendling | c3cab81 | 2013-03-18 23:04:39 +0000 | [diff] [blame] | 1178 | report_fatal_error("invalid return type for __llvm_gcov_flush"); |
| 1179 | |
| 1180 | return FlushF; |
Bill Wendling | 2e6e866 | 2012-09-13 00:09:55 +0000 | [diff] [blame] | 1181 | } |