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