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