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