blob: 67ca8172b0d56710e14c7a98683c8acd2d135edb [file] [log] [blame]
Nick Lewycky966edd02011-04-16 01:20:23 +00001//===- 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 Lewycky966edd02011-04-16 01:20:23 +000017#include "llvm/ADT/DenseMap.h"
Yuchen Wubabe7492013-11-20 04:15:05 +000018#include "llvm/ADT/Hashing.h"
Nick Lewycky966edd02011-04-16 01:20:23 +000019#include "llvm/ADT/STLExtras.h"
Chandler Carruthaafe0912012-06-29 12:38:19 +000020#include "llvm/ADT/Statistic.h"
Nick Lewycky966edd02011-04-16 01:20:23 +000021#include "llvm/ADT/StringExtras.h"
22#include "llvm/ADT/StringMap.h"
23#include "llvm/ADT/UniqueVector.h"
Marco Castelluccio0dcf64a2017-10-13 13:49:15 +000024#include "llvm/Analysis/EHPersonalities.h"
Chandler Carruth9a4c9e52014-03-06 00:46:21 +000025#include "llvm/IR/DebugInfo.h"
Chandler Carruth92051402014-03-05 10:30:38 +000026#include "llvm/IR/DebugLoc.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/IRBuilder.h"
Chandler Carruth83948572014-03-04 10:30:26 +000028#include "llvm/IR/InstIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/Instructions.h"
Bob Wilson055a0b42014-01-31 05:24:01 +000030#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000031#include "llvm/IR/Module.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000032#include "llvm/Pass.h"
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000033#include "llvm/Support/CommandLine.h"
Chandler Carruthaafe0912012-06-29 12:38:19 +000034#include "llvm/Support/Debug.h"
Bill Wendling5aa82392013-03-26 22:47:50 +000035#include "llvm/Support/FileSystem.h"
Rafael Espindola3bc8e712013-06-11 22:21:28 +000036#include "llvm/Support/Path.h"
Chandler Carruthaafe0912012-06-29 12:38:19 +000037#include "llvm/Support/raw_ostream.h"
Xinliang David Li64dbb292016-06-05 05:12:23 +000038#include "llvm/Transforms/GCOVProfiler.h"
39#include "llvm/Transforms/Instrumentation.h"
Chandler Carruthaafe0912012-06-29 12:38:19 +000040#include "llvm/Transforms/Utils/ModuleUtils.h"
Nick Lewycky0fdd0192013-06-18 06:38:21 +000041#include <algorithm>
David Blaikie229de502014-04-21 20:41:55 +000042#include <memory>
Nick Lewycky966edd02011-04-16 01:20:23 +000043#include <string>
44#include <utility>
45using namespace llvm;
46
Chandler Carruth964daaa2014-04-22 02:55:47 +000047#define DEBUG_TYPE "insert-gcov-profiling"
48
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000049static cl::opt<std::string>
50DefaultGCOVVersion("default-gcov-version", cl::init("402*"), cl::Hidden,
51 cl::ValueRequired);
Justin Bogner3faa76b2015-03-16 23:52:03 +000052static cl::opt<bool> DefaultExitBlockBeforeBody("gcov-exit-block-before-body",
53 cl::init(false), cl::Hidden);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000054
55GCOVOptions GCOVOptions::getDefault() {
56 GCOVOptions Options;
57 Options.EmitNotes = true;
58 Options.EmitData = true;
59 Options.UseCfgChecksum = false;
60 Options.NoRedZone = false;
61 Options.FunctionNamesInData = true;
Justin Bogner3faa76b2015-03-16 23:52:03 +000062 Options.ExitBlockBeforeBody = DefaultExitBlockBeforeBody;
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000063
64 if (DefaultGCOVVersion.size() != 4) {
65 llvm::report_fatal_error(std::string("Invalid -default-gcov-version: ") +
66 DefaultGCOVVersion);
67 }
68 memcpy(Options.Version, DefaultGCOVVersion.c_str(), 4);
69 return Options;
70}
71
Nick Lewycky966edd02011-04-16 01:20:23 +000072namespace {
Xinliang David Lifb3137c2016-06-05 03:40:03 +000073class GCOVFunction;
Yuchen Wubabe7492013-11-20 04:15:05 +000074
Xinliang David Lifb3137c2016-06-05 03:40:03 +000075class GCOVProfiler {
76public:
77 GCOVProfiler() : GCOVProfiler(GCOVOptions::getDefault()) {}
78 GCOVProfiler(const GCOVOptions &Opts) : Options(Opts) {
79 assert((Options.EmitNotes || Options.EmitData) &&
80 "GCOVProfiler asked to do nothing?");
81 ReversedVersion[0] = Options.Version[3];
82 ReversedVersion[1] = Options.Version[2];
83 ReversedVersion[2] = Options.Version[1];
84 ReversedVersion[3] = Options.Version[0];
85 ReversedVersion[4] = '\0';
86 }
87 bool runOnModule(Module &M);
Benjamin Kramer298a3a02015-03-06 16:21:15 +000088
Xinliang David Lifb3137c2016-06-05 03:40:03 +000089private:
90 // Create the .gcno files for the Module based on DebugInfo.
91 void emitProfileNotes();
Nick Lewycky6d9f0612011-05-04 04:03:04 +000092
Xinliang David Lifb3137c2016-06-05 03:40:03 +000093 // Modify the program to track transitions along edges and call into the
94 // profiling runtime to emit .gcda files when run.
95 bool emitProfileArcs();
Nick Lewycky966edd02011-04-16 01:20:23 +000096
Xinliang David Lifb3137c2016-06-05 03:40:03 +000097 // Get pointers to the functions in the runtime library.
98 Constant *getStartFileFunc();
99 Constant *getIncrementIndirectCounterFunc();
100 Constant *getEmitFunctionFunc();
101 Constant *getEmitArcsFunc();
102 Constant *getSummaryInfoFunc();
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000103 Constant *getEndFileFunc();
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000104
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000105 // Create or retrieve an i32 state value that is used to represent the
106 // pred block number for certain non-trivial edges.
107 GlobalVariable *getEdgeStateValue();
Nick Lewycky966edd02011-04-16 01:20:23 +0000108
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000109 // Produce a table of pointers to counters, by predecessor and successor
110 // block number.
111 GlobalVariable *buildEdgeLookupTable(Function *F, GlobalVariable *Counter,
112 const UniqueVector<BasicBlock *> &Preds,
113 const UniqueVector<BasicBlock *> &Succs);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000114
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000115 // Add the function to write out all our counters to the global destructor
116 // list.
117 Function *
118 insertCounterWriteout(ArrayRef<std::pair<GlobalVariable *, MDNode *>>);
119 Function *insertFlush(ArrayRef<std::pair<GlobalVariable *, MDNode *>>);
120 void insertIndirectCounterIncrement();
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000121
Nick Lewycky97e49ac2016-08-31 23:04:32 +0000122 enum class GCovFileType { GCNO, GCDA };
123 std::string mangleName(const DICompileUnit *CU, GCovFileType FileType);
Nick Lewycky966edd02011-04-16 01:20:23 +0000124
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000125 GCOVOptions Options;
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000126
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000127 // Reversed, NUL-terminated copy of Options.Version.
128 char ReversedVersion[5];
129 // Checksum, produced by hash of EdgeDestinations
130 SmallVector<uint32_t, 4> FileChecksums;
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000131
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000132 Module *M;
133 LLVMContext *Ctx;
134 SmallVector<std::unique_ptr<GCOVFunction>, 16> Funcs;
135};
Nick Lewycky8e0a38f2011-04-21 01:56:25 +0000136
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000137class GCOVProfilerLegacyPass : public ModulePass {
138public:
139 static char ID;
140 GCOVProfilerLegacyPass()
141 : GCOVProfilerLegacyPass(GCOVOptions::getDefault()) {}
142 GCOVProfilerLegacyPass(const GCOVOptions &Opts)
143 : ModulePass(ID), Profiler(Opts) {
144 initializeGCOVProfilerLegacyPassPass(*PassRegistry::getPassRegistry());
145 }
Mehdi Amini117296c2016-10-01 02:56:57 +0000146 StringRef getPassName() const override { return "GCOV Profiler"; }
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000147
148 bool runOnModule(Module &M) override { return Profiler.runOnModule(M); }
149
150private:
151 GCOVProfiler Profiler;
152};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000153}
Nick Lewycky966edd02011-04-16 01:20:23 +0000154
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000155char GCOVProfilerLegacyPass::ID = 0;
156INITIALIZE_PASS(GCOVProfilerLegacyPass, "insert-gcov-profiling",
Nick Lewycky966edd02011-04-16 01:20:23 +0000157 "Insert instrumentation for GCOV profiling", false, false)
158
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000159ModulePass *llvm::createGCOVProfilerPass(const GCOVOptions &Options) {
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000160 return new GCOVProfilerLegacyPass(Options);
Nick Lewycky8e0a38f2011-04-21 01:56:25 +0000161}
Nick Lewycky966edd02011-04-16 01:20:23 +0000162
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000163static StringRef getFunctionName(const DISubprogram *SP) {
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +0000164 if (!SP->getLinkageName().empty())
165 return SP->getLinkageName();
166 return SP->getName();
Nick Lewyckyd6718632013-03-19 01:37:55 +0000167}
168
Nick Lewycky966edd02011-04-16 01:20:23 +0000169namespace {
170 class GCOVRecord {
171 protected:
Craig Topper1c4d6672013-07-17 03:43:10 +0000172 static const char *const LinesTag;
173 static const char *const FunctionTag;
174 static const char *const BlockTag;
175 static const char *const EdgeTag;
Nick Lewycky966edd02011-04-16 01:20:23 +0000176
Benjamin Kramer79de6e62015-04-11 18:57:14 +0000177 GCOVRecord() = default;
Nick Lewycky966edd02011-04-16 01:20:23 +0000178
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000179 void writeBytes(const char *Bytes, int Size) {
180 os->write(Bytes, Size);
Nick Lewycky966edd02011-04-16 01:20:23 +0000181 }
182
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000183 void write(uint32_t i) {
184 writeBytes(reinterpret_cast<char*>(&i), 4);
Nick Lewycky966edd02011-04-16 01:20:23 +0000185 }
186
187 // Returns the length measured in 4-byte blocks that will be used to
188 // represent this string in a GCOV file
Craig Topper24048c92013-07-17 03:54:53 +0000189 static unsigned lengthOfGCOVString(StringRef s) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000190 // A GCOV string is a length, followed by a NUL, then between 0 and 3 NULs
Nick Lewyckyed749d82011-04-21 02:48:39 +0000191 // padding out to the next 4-byte word. The length is measured in 4-byte
192 // words including padding, not bytes of actual string.
Nick Lewyckya7028842011-05-05 23:52:18 +0000193 return (s.size() / 4) + 1;
Nick Lewycky966edd02011-04-16 01:20:23 +0000194 }
195
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000196 void writeGCOVString(StringRef s) {
197 uint32_t Len = lengthOfGCOVString(s);
198 write(Len);
199 writeBytes(s.data(), s.size());
Nick Lewycky966edd02011-04-16 01:20:23 +0000200
201 // Write 1 to 4 bytes of NUL padding.
Nick Lewycky6aa79492011-04-28 21:35:49 +0000202 assert((unsigned)(4 - (s.size() % 4)) > 0);
203 assert((unsigned)(4 - (s.size() % 4)) <= 4);
204 writeBytes("\0\0\0\0", 4 - (s.size() % 4));
Nick Lewycky966edd02011-04-16 01:20:23 +0000205 }
206
207 raw_ostream *os;
208 };
Craig Topper1c4d6672013-07-17 03:43:10 +0000209 const char *const GCOVRecord::LinesTag = "\0\0\x45\x01";
210 const char *const GCOVRecord::FunctionTag = "\0\0\0\1";
211 const char *const GCOVRecord::BlockTag = "\0\0\x41\x01";
212 const char *const GCOVRecord::EdgeTag = "\0\0\x43\x01";
Nick Lewycky966edd02011-04-16 01:20:23 +0000213
214 class GCOVFunction;
215 class GCOVBlock;
216
217 // Constructed only by requesting it from a GCOVBlock, this object stores a
Devang Pateladd1f172011-09-20 18:35:00 +0000218 // list of line numbers and a single filename, representing lines that belong
219 // to the block.
Nick Lewycky966edd02011-04-16 01:20:23 +0000220 class GCOVLines : public GCOVRecord {
221 public:
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000222 void addLine(uint32_t Line) {
Nick Lewycky5f53ddd2014-06-03 04:25:36 +0000223 assert(Line != 0 && "Line zero is not a valid real line number.");
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000224 Lines.push_back(Line);
Nick Lewycky966edd02011-04-16 01:20:23 +0000225 }
226
Craig Topper24048c92013-07-17 03:54:53 +0000227 uint32_t length() const {
Nick Lewycky6404d972011-11-27 23:22:20 +0000228 // Here 2 = 1 for string length + 1 for '0' id#.
Devang Pateladd1f172011-09-20 18:35:00 +0000229 return lengthOfGCOVString(Filename) + 2 + Lines.size();
Nick Lewycky966edd02011-04-16 01:20:23 +0000230 }
231
Devang Pateladd1f172011-09-20 18:35:00 +0000232 void writeOut() {
233 write(0);
234 writeGCOVString(Filename);
235 for (int i = 0, e = Lines.size(); i != e; ++i)
236 write(Lines[i]);
237 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000238
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000239 GCOVLines(StringRef F, raw_ostream *os)
Devang Pateladd1f172011-09-20 18:35:00 +0000240 : Filename(F) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000241 this->os = os;
242 }
243
Devang Patel7d06f5c2011-09-20 18:48:56 +0000244 private:
Devang Pateladd1f172011-09-20 18:35:00 +0000245 StringRef Filename;
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000246 SmallVector<uint32_t, 32> Lines;
Nick Lewycky966edd02011-04-16 01:20:23 +0000247 };
248
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000249
Nick Lewycky966edd02011-04-16 01:20:23 +0000250 // Represent a basic block in GCOV. Each block has a unique number in the
251 // function, number of lines belonging to each block, and a set of edges to
252 // other blocks.
253 class GCOVBlock : public GCOVRecord {
254 public:
Devang Patel9cb1fc02011-09-20 17:55:19 +0000255 GCOVLines &getFile(StringRef Filename) {
Benjamin Kramereab3d362016-07-21 13:37:48 +0000256 return LinesByFile.try_emplace(Filename, Filename, os).first->second;
Nick Lewycky966edd02011-04-16 01:20:23 +0000257 }
258
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000259 void addEdge(GCOVBlock &Successor) {
260 OutEdges.push_back(&Successor);
Nick Lewycky966edd02011-04-16 01:20:23 +0000261 }
262
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000263 void writeOut() {
264 uint32_t Len = 3;
Benjamin Kramer2a185a22016-07-21 12:06:31 +0000265 SmallVector<StringMapEntry<GCOVLines> *, 32> SortedLinesByFile;
Benjamin Kramer135f7352016-06-26 12:28:59 +0000266 for (auto &I : LinesByFile) {
Benjamin Kramer2a185a22016-07-21 12:06:31 +0000267 Len += I.second.length();
Benjamin Kramer135f7352016-06-26 12:28:59 +0000268 SortedLinesByFile.push_back(&I);
Nick Lewycky966edd02011-04-16 01:20:23 +0000269 }
270
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000271 writeBytes(LinesTag, 4);
272 write(Len);
273 write(Number);
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000274
Benjamin Kramer2a185a22016-07-21 12:06:31 +0000275 std::sort(
276 SortedLinesByFile.begin(), SortedLinesByFile.end(),
277 [](StringMapEntry<GCOVLines> *LHS, StringMapEntry<GCOVLines> *RHS) {
278 return LHS->getKey() < RHS->getKey();
279 });
Benjamin Kramer135f7352016-06-26 12:28:59 +0000280 for (auto &I : SortedLinesByFile)
Benjamin Kramer2a185a22016-07-21 12:06:31 +0000281 I->getValue().writeOut();
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000282 write(0);
283 write(0);
Nick Lewycky966edd02011-04-16 01:20:23 +0000284 }
285
David Blaikieea37c112014-12-22 23:12:42 +0000286 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 Lewycky966edd02011-04-16 01:20:23 +0000294 private:
295 friend class GCOVFunction;
296
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000297 GCOVBlock(uint32_t Number, raw_ostream *os)
298 : Number(Number) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000299 this->os = os;
300 }
301
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000302 uint32_t Number;
Benjamin Kramer2a185a22016-07-21 12:06:31 +0000303 StringMap<GCOVLines> LinesByFile;
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000304 SmallVector<GCOVBlock *, 4> OutEdges;
Nick Lewycky966edd02011-04-16 01:20:23 +0000305 };
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 Collingbourned4bff302015-11-05 22:03:56 +0000312 GCOVFunction(const DISubprogram *SP, Function *F, raw_ostream *os,
313 uint32_t Ident, bool UseCfgChecksum, bool ExitBlockBeforeBody)
David Blaikieea37c112014-12-22 23:12:42 +0000314 : SP(SP), Ident(Ident), UseCfgChecksum(UseCfgChecksum), CfgChecksum(0),
315 ReturnBlock(1, os) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000316 this->os = os;
317
Daniel Jasper87a24d52013-12-04 08:57:17 +0000318 DEBUG(dbgs() << "Function: " << getFunctionName(SP) << "\n");
Nick Lewycky2e8a6212014-12-03 02:45:01 +0000319
David Blaikieea37c112014-12-22 23:12:42 +0000320 uint32_t i = 0;
321 for (auto &BB : *F) {
Justin Bogner3faa76b2015-03-16 23:52:03 +0000322 // 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 Lewycky966edd02011-04-16 01:20:23 +0000326 }
Justin Bogner3faa76b2015-03-16 23:52:03 +0000327 if (!ExitBlockBeforeBody)
328 ReturnBlock.Number = i;
Daniel Jasper87a24d52013-12-04 08:57:17 +0000329
Alp Tokere69170a2014-06-26 22:52:05 +0000330 std::string FunctionNameAndLine;
331 raw_string_ostream FNLOS(FunctionNameAndLine);
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +0000332 FNLOS << getFunctionName(SP) << SP->getLine();
Alp Tokere69170a2014-06-26 22:52:05 +0000333 FNLOS.flush();
334 FuncChecksum = hash_value(FunctionNameAndLine);
Nick Lewycky966edd02011-04-16 01:20:23 +0000335 }
336
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000337 GCOVBlock &getBlock(BasicBlock *BB) {
David Blaikieea37c112014-12-22 23:12:42 +0000338 return Blocks.find(BB)->second;
Nick Lewycky966edd02011-04-16 01:20:23 +0000339 }
340
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000341 GCOVBlock &getReturnBlock() {
David Blaikieea37c112014-12-22 23:12:42 +0000342 return ReturnBlock;
Nick Lewycky8411b552011-04-21 03:18:00 +0000343 }
344
Yuchen Wubabe7492013-11-20 04:15:05 +0000345 std::string getEdgeDestinations() {
Alp Tokere69170a2014-06-26 22:52:05 +0000346 std::string EdgeDestinations;
347 raw_string_ostream EDOS(EdgeDestinations);
Yuchen Wubabe7492013-11-20 04:15:05 +0000348 Function *F = Blocks.begin()->first->getParent();
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000349 for (BasicBlock &I : *F) {
350 GCOVBlock &Block = getBlock(&I);
Yuchen Wubabe7492013-11-20 04:15:05 +0000351 for (int i = 0, e = Block.OutEdges.size(); i != e; ++i)
Alp Tokere69170a2014-06-26 22:52:05 +0000352 EDOS << Block.OutEdges[i]->Number;
Yuchen Wubabe7492013-11-20 04:15:05 +0000353 }
Alp Tokere69170a2014-06-26 22:52:05 +0000354 return EdgeDestinations;
Yuchen Wubabe7492013-11-20 04:15:05 +0000355 }
356
Daniel Jasper87a24d52013-12-04 08:57:17 +0000357 uint32_t getFuncChecksum() {
358 return FuncChecksum;
359 }
360
Yuchen Wubabe7492013-11-20 04:15:05 +0000361 void setCfgChecksum(uint32_t Checksum) {
362 CfgChecksum = Checksum;
363 }
364
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000365 void writeOut() {
Yuchen Wubabe7492013-11-20 04:15:05 +0000366 writeBytes(FunctionTag, 4);
367 uint32_t BlockLen = 1 + 1 + 1 + lengthOfGCOVString(getFunctionName(SP)) +
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +0000368 1 + lengthOfGCOVString(SP->getFilename()) + 1;
Yuchen Wubabe7492013-11-20 04:15:05 +0000369 if (UseCfgChecksum)
370 ++BlockLen;
371 write(BlockLen);
372 write(Ident);
Daniel Jasper87a24d52013-12-04 08:57:17 +0000373 write(FuncChecksum);
Yuchen Wubabe7492013-11-20 04:15:05 +0000374 if (UseCfgChecksum)
375 write(CfgChecksum);
376 writeGCOVString(getFunctionName(SP));
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +0000377 writeGCOVString(SP->getFilename());
378 write(SP->getLine());
Yuchen Wubabe7492013-11-20 04:15:05 +0000379
Nick Lewycky966edd02011-04-16 01:20:23 +0000380 // Emit count of blocks.
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000381 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 Lewycky966edd02011-04-16 01:20:23 +0000385 }
Nick Lewycky6404d972011-11-27 23:22:20 +0000386 DEBUG(dbgs() << Blocks.size() << " blocks.\n");
Nick Lewycky966edd02011-04-16 01:20:23 +0000387
388 // Emit edges between blocks.
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000389 if (Blocks.empty()) return;
390 Function *F = Blocks.begin()->first->getParent();
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000391 for (BasicBlock &I : *F) {
392 GCOVBlock &Block = getBlock(&I);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000393 if (Block.OutEdges.empty()) continue;
Nick Lewycky966edd02011-04-16 01:20:23 +0000394
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000395 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 Lewycky6404d972011-11-27 23:22:20 +0000399 DEBUG(dbgs() << Block.Number << " -> " << Block.OutEdges[i]->Number
400 << "\n");
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000401 write(Block.OutEdges[i]->Number);
402 write(0); // no flags
Nick Lewycky966edd02011-04-16 01:20:23 +0000403 }
404 }
405
406 // Emit lines for each block.
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000407 for (BasicBlock &I : *F)
408 getBlock(&I).writeOut();
Nick Lewycky966edd02011-04-16 01:20:23 +0000409 }
410
411 private:
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000412 const DISubprogram *SP;
Yuchen Wubabe7492013-11-20 04:15:05 +0000413 uint32_t Ident;
Daniel Jasper87a24d52013-12-04 08:57:17 +0000414 uint32_t FuncChecksum;
Yuchen Wubabe7492013-11-20 04:15:05 +0000415 bool UseCfgChecksum;
416 uint32_t CfgChecksum;
David Blaikieea37c112014-12-22 23:12:42 +0000417 DenseMap<BasicBlock *, GCOVBlock> Blocks;
418 GCOVBlock ReturnBlock;
Nick Lewycky966edd02011-04-16 01:20:23 +0000419 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000420}
Nick Lewycky966edd02011-04-16 01:20:23 +0000421
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000422std::string GCOVProfiler::mangleName(const DICompileUnit *CU,
Nick Lewycky97e49ac2016-08-31 23:04:32 +0000423 GCovFileType OutputType) {
424 bool Notes = OutputType == GCovFileType::GCNO;
425
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000426 if (NamedMDNode *GCov = M->getNamedMetadata("llvm.gcov")) {
427 for (int i = 0, e = GCov->getNumOperands(); i != e; ++i) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000428 MDNode *N = GCov->getOperand(i);
Nick Lewycky97e49ac2016-08-31 23:04:32 +0000429 bool ThreeElement = N->getNumOperands() == 3;
430 if (!ThreeElement && N->getNumOperands() != 2)
431 continue;
Nick Lewycky8dd4dad2016-08-31 23:24:43 +0000432 if (dyn_cast<MDNode>(N->getOperand(ThreeElement ? 2 : 1)) != CU)
Nick Lewycky97e49ac2016-08-31 23:04:32 +0000433 continue;
434
435 if (ThreeElement) {
436 // These nodes have no mangling to apply, it's stored mangled in the
437 // bitcode.
438 MDString *NotesFile = dyn_cast<MDString>(N->getOperand(0));
439 MDString *DataFile = dyn_cast<MDString>(N->getOperand(1));
440 if (!NotesFile || !DataFile)
441 continue;
442 return Notes ? NotesFile->getString() : DataFile->getString();
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000443 }
Nick Lewycky97e49ac2016-08-31 23:04:32 +0000444
445 MDString *GCovFile = dyn_cast<MDString>(N->getOperand(0));
446 if (!GCovFile)
447 continue;
448
449 SmallString<128> Filename = GCovFile->getString();
450 sys::path::replace_extension(Filename, Notes ? "gcno" : "gcda");
451 return Filename.str();
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000452 }
453 }
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000454
Duncan P. N. Exon Smith35ef22c2015-04-15 23:19:27 +0000455 SmallString<128> Filename = CU->getFilename();
Nick Lewycky97e49ac2016-08-31 23:04:32 +0000456 sys::path::replace_extension(Filename, Notes ? "gcno" : "gcda");
Bill Wendling5aa82392013-03-26 22:47:50 +0000457 StringRef FName = sys::path::filename(Filename);
Bill Wendling5aa82392013-03-26 22:47:50 +0000458 SmallString<128> CurPath;
459 if (sys::fs::current_path(CurPath)) return FName;
Yaron Keren75e0c4b2015-03-27 17:51:30 +0000460 sys::path::append(CurPath, FName);
Bill Wendling5aa82392013-03-26 22:47:50 +0000461 return CurPath.str();
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000462}
463
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000464bool GCOVProfiler::runOnModule(Module &M) {
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000465 this->M = &M;
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000466 Ctx = &M.getContext();
467
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000468 if (Options.EmitNotes) emitProfileNotes();
469 if (Options.EmitData) return emitProfileArcs();
Nick Lewycky8e0a38f2011-04-21 01:56:25 +0000470 return false;
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000471}
472
Xinliang David Li64dbb292016-06-05 05:12:23 +0000473PreservedAnalyses GCOVProfilerPass::run(Module &M,
Sean Silvafd03ac62016-08-09 00:28:38 +0000474 ModuleAnalysisManager &AM) {
Xinliang David Li64dbb292016-06-05 05:12:23 +0000475
476 GCOVProfiler Profiler(GCOVOpts);
477
478 if (!Profiler.runOnModule(M))
479 return PreservedAnalyses::all();
480
481 return PreservedAnalyses::none();
482}
483
Adrian Prantl75819ae2016-04-15 15:57:41 +0000484static bool functionHasLines(Function &F) {
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000485 // Check whether this function actually has any source lines. Not only
486 // do these waste space, they also can crash gcov.
Adrian Prantl75819ae2016-04-15 15:57:41 +0000487 for (auto &BB : F) {
488 for (auto &I : BB) {
Nick Lewyckyce98b432014-06-04 21:47:19 +0000489 // Debug intrinsic locations correspond to the location of the
490 // declaration, not necessarily any statements or expressions.
Adrian Prantl75819ae2016-04-15 15:57:41 +0000491 if (isa<DbgInfoIntrinsic>(&I)) continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000492
Adrian Prantl75819ae2016-04-15 15:57:41 +0000493 const DebugLoc &Loc = I.getDebugLoc();
Duncan P. N. Exon Smithec819c02015-03-30 19:49:49 +0000494 if (!Loc)
495 continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000496
497 // Artificial lines such as calls to the global constructors.
Justin Bogner3faa76b2015-03-16 23:52:03 +0000498 if (Loc.getLine() == 0) continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000499
Nick Lewycky5f53ddd2014-06-03 04:25:36 +0000500 return true;
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000501 }
502 }
503 return false;
504}
505
Marco Castelluccio0dcf64a2017-10-13 13:49:15 +0000506static bool isUsingFuncletBasedEH(Function &F) {
507 if (!F.hasPersonalityFn()) return false;
508
509 EHPersonality Personality = classifyEHPersonality(F.getPersonalityFn());
510 return isFuncletEHPersonality(Personality);
511}
512
Sylvestre Ledrue7d4cd62017-09-26 11:56:43 +0000513static bool shouldKeepInEntry(BasicBlock::iterator It) {
514 if (isa<AllocaInst>(*It)) return true;
515 if (isa<DbgInfoIntrinsic>(*It)) return true;
516 if (auto *II = dyn_cast<IntrinsicInst>(It)) {
517 if (II->getIntrinsicID() == llvm::Intrinsic::localescape) return true;
518 }
519
520 return false;
521}
522
Nick Lewyckyad145502013-03-13 22:55:42 +0000523void GCOVProfiler::emitProfileNotes() {
Devang Patel2b21d862011-08-17 22:49:38 +0000524 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
Nick Lewycky6404d972011-11-27 23:22:20 +0000525 if (!CU_Nodes) return;
Nick Lewycky966edd02011-04-16 01:20:23 +0000526
Nick Lewycky6404d972011-11-27 23:22:20 +0000527 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
528 // Each compile unit gets its own .gcno file. This means that whether we run
529 // this pass over the original .o's as they're produced, or run it after
530 // LTO, we'll generate the same .gcno files.
531
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000532 auto *CU = cast<DICompileUnit>(CU_Nodes->getOperand(i));
Vedant Kumar61035fa2016-01-21 17:04:42 +0000533
534 // Skip module skeleton (and module) CUs.
535 if (CU->getDWOId())
536 continue;
537
Rafael Espindola3fd1e992014-08-25 18:16:47 +0000538 std::error_code EC;
Nick Lewycky97e49ac2016-08-31 23:04:32 +0000539 raw_fd_ostream out(mangleName(CU, GCovFileType::GCNO), EC, sys::fs::F_None);
Reid Kleckner1aa4ea82017-09-18 21:31:48 +0000540 if (EC) {
541 Ctx->emitError(Twine("failed to open coverage notes file for writing: ") +
542 EC.message());
543 continue;
544 }
545
Yuchen Wubabe7492013-11-20 04:15:05 +0000546 std::string EdgeDestinations;
Nick Lewycky6404d972011-11-27 23:22:20 +0000547
Justin Bogner58e41342014-11-06 06:55:02 +0000548 unsigned FunctionIdent = 0;
Adrian Prantl75819ae2016-04-15 15:57:41 +0000549 for (auto &F : M->functions()) {
550 DISubprogram *SP = F.getSubprogram();
551 if (!SP) continue;
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000552 if (!functionHasLines(F)) continue;
Marco Castelluccio0dcf64a2017-10-13 13:49:15 +0000553 // TODO: Functions using funclet-based EH are currently not supported.
554 if (isUsingFuncletBasedEH(F)) continue;
Bob Wilson055a0b42014-01-31 05:24:01 +0000555
556 // gcov expects every function to start with an entry block that has a
557 // single successor, so split the entry block to make sure of that.
Adrian Prantl75819ae2016-04-15 15:57:41 +0000558 BasicBlock &EntryBlock = F.getEntryBlock();
Bob Wilson055a0b42014-01-31 05:24:01 +0000559 BasicBlock::iterator It = EntryBlock.begin();
Sylvestre Ledrue7d4cd62017-09-26 11:56:43 +0000560 while (shouldKeepInEntry(It))
Bob Wilson055a0b42014-01-31 05:24:01 +0000561 ++It;
562 EntryBlock.splitBasicBlock(It);
Yuchen Wuc87ca322013-11-22 23:07:45 +0000563
Adrian Prantl75819ae2016-04-15 15:57:41 +0000564 Funcs.push_back(make_unique<GCOVFunction>(SP, &F, &out, FunctionIdent++,
Justin Bogner3faa76b2015-03-16 23:52:03 +0000565 Options.UseCfgChecksum,
566 Options.ExitBlockBeforeBody));
David Blaikie229de502014-04-21 20:41:55 +0000567 GCOVFunction &Func = *Funcs.back();
Nick Lewycky6404d972011-11-27 23:22:20 +0000568
Adrian Prantl75819ae2016-04-15 15:57:41 +0000569 for (auto &BB : F) {
570 GCOVBlock &Block = Func.getBlock(&BB);
571 TerminatorInst *TI = BB.getTerminator();
Nick Lewycky6404d972011-11-27 23:22:20 +0000572 if (int successors = TI->getNumSuccessors()) {
573 for (int i = 0; i != successors; ++i) {
David Blaikie229de502014-04-21 20:41:55 +0000574 Block.addEdge(Func.getBlock(TI->getSuccessor(i)));
Nick Lewycky6404d972011-11-27 23:22:20 +0000575 }
576 } else if (isa<ReturnInst>(TI)) {
David Blaikie229de502014-04-21 20:41:55 +0000577 Block.addEdge(Func.getReturnBlock());
Nick Lewycky6404d972011-11-27 23:22:20 +0000578 }
579
580 uint32_t Line = 0;
Adrian Prantl75819ae2016-04-15 15:57:41 +0000581 for (auto &I : BB) {
Nick Lewyckyce98b432014-06-04 21:47:19 +0000582 // Debug intrinsic locations correspond to the location of the
583 // declaration, not necessarily any statements or expressions.
Adrian Prantl75819ae2016-04-15 15:57:41 +0000584 if (isa<DbgInfoIntrinsic>(&I)) continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000585
Adrian Prantl75819ae2016-04-15 15:57:41 +0000586 const DebugLoc &Loc = I.getDebugLoc();
Duncan P. N. Exon Smithec819c02015-03-30 19:49:49 +0000587 if (!Loc)
588 continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000589
590 // Artificial lines such as calls to the global constructors.
591 if (Loc.getLine() == 0) continue;
592
Nick Lewycky6404d972011-11-27 23:22:20 +0000593 if (Line == Loc.getLine()) continue;
594 Line = Loc.getLine();
Duncan P. N. Exon Smithec819c02015-03-30 19:49:49 +0000595 if (SP != getDISubprogram(Loc.getScope()))
596 continue;
Nick Lewycky6404d972011-11-27 23:22:20 +0000597
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +0000598 GCOVLines &Lines = Block.getFile(SP->getFilename());
Nick Lewycky6404d972011-11-27 23:22:20 +0000599 Lines.addLine(Loc.getLine());
600 }
601 }
David Blaikie229de502014-04-21 20:41:55 +0000602 EdgeDestinations += Func.getEdgeDestinations();
Nick Lewycky6404d972011-11-27 23:22:20 +0000603 }
Yuchen Wubabe7492013-11-20 04:15:05 +0000604
Yuchen Wu664dc762013-11-21 04:01:05 +0000605 FileChecksums.push_back(hash_value(EdgeDestinations));
Yuchen Wubabe7492013-11-20 04:15:05 +0000606 out.write("oncg", 4);
607 out.write(ReversedVersion, 4);
Yuchen Wu664dc762013-11-21 04:01:05 +0000608 out.write(reinterpret_cast<char*>(&FileChecksums.back()), 4);
Yuchen Wubabe7492013-11-20 04:15:05 +0000609
David Blaikie229de502014-04-21 20:41:55 +0000610 for (auto &Func : Funcs) {
Yuchen Wu664dc762013-11-21 04:01:05 +0000611 Func->setCfgChecksum(FileChecksums.back());
612 Func->writeOut();
613 }
Yuchen Wubabe7492013-11-20 04:15:05 +0000614
Nick Lewycky6404d972011-11-27 23:22:20 +0000615 out.write("\0\0\0\0\0\0\0\0", 8); // EOF
616 out.close();
Nick Lewycky966edd02011-04-16 01:20:23 +0000617 }
618}
619
Devang Patel2b21d862011-08-17 22:49:38 +0000620bool GCOVProfiler::emitProfileArcs() {
621 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
622 if (!CU_Nodes) return false;
Nick Lewycky966edd02011-04-16 01:20:23 +0000623
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000624 bool Result = false;
Bill Wendling15605172012-05-28 06:10:56 +0000625 bool InsertIndCounterIncrCode = false;
Devang Patel2b21d862011-08-17 22:49:38 +0000626 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
Devang Patel2b21d862011-08-17 22:49:38 +0000627 SmallVector<std::pair<GlobalVariable *, MDNode *>, 8> CountersBySP;
Adrian Prantl75819ae2016-04-15 15:57:41 +0000628 for (auto &F : M->functions()) {
629 DISubprogram *SP = F.getSubprogram();
630 if (!SP) continue;
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000631 if (!functionHasLines(F)) continue;
Marco Castelluccio0dcf64a2017-10-13 13:49:15 +0000632 // TODO: Functions using funclet-based EH are currently not supported.
633 if (isUsingFuncletBasedEH(F)) continue;
Devang Patel2b21d862011-08-17 22:49:38 +0000634 if (!Result) Result = true;
Marco Castelluccio0dcf64a2017-10-13 13:49:15 +0000635
Devang Patel2b21d862011-08-17 22:49:38 +0000636 unsigned Edges = 0;
Adrian Prantl75819ae2016-04-15 15:57:41 +0000637 for (auto &BB : F) {
638 TerminatorInst *TI = BB.getTerminator();
Devang Patel2b21d862011-08-17 22:49:38 +0000639 if (isa<ReturnInst>(TI))
640 ++Edges;
641 else
642 Edges += TI->getNumSuccessors();
643 }
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000644
Devang Patel2b21d862011-08-17 22:49:38 +0000645 ArrayType *CounterTy =
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000646 ArrayType::get(Type::getInt64Ty(*Ctx), Edges);
Devang Patel2b21d862011-08-17 22:49:38 +0000647 GlobalVariable *Counters =
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000648 new GlobalVariable(*M, CounterTy, false,
Nick Lewycky966edd02011-04-16 01:20:23 +0000649 GlobalValue::InternalLinkage,
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000650 Constant::getNullValue(CounterTy),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000651 "__llvm_gcov_ctr");
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +0000652 CountersBySP.push_back(std::make_pair(Counters, SP));
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000653
Devang Patel2b21d862011-08-17 22:49:38 +0000654 UniqueVector<BasicBlock *> ComplexEdgePreds;
655 UniqueVector<BasicBlock *> ComplexEdgeSuccs;
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000656
Devang Patel2b21d862011-08-17 22:49:38 +0000657 unsigned Edge = 0;
Adrian Prantl75819ae2016-04-15 15:57:41 +0000658 for (auto &BB : F) {
659 TerminatorInst *TI = BB.getTerminator();
Devang Patel2b21d862011-08-17 22:49:38 +0000660 int Successors = isa<ReturnInst>(TI) ? 1 : TI->getNumSuccessors();
661 if (Successors) {
Devang Patel2b21d862011-08-17 22:49:38 +0000662 if (Successors == 1) {
Adrian Prantl75819ae2016-04-15 15:57:41 +0000663 IRBuilder<> Builder(&*BB.getFirstInsertionPt());
Devang Patel2b21d862011-08-17 22:49:38 +0000664 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
665 Edge);
666 Value *Count = Builder.CreateLoad(Counter);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000667 Count = Builder.CreateAdd(Count, Builder.getInt64(1));
Devang Patel2b21d862011-08-17 22:49:38 +0000668 Builder.CreateStore(Count, Counter);
669 } else if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
Bill Wendling707f6012013-08-20 23:52:00 +0000670 IRBuilder<> Builder(BI);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000671 Value *Sel = Builder.CreateSelect(BI->getCondition(),
672 Builder.getInt64(Edge),
673 Builder.getInt64(Edge + 1));
Benjamin Kramer3bc1edf2016-07-02 11:41:39 +0000674 Value *Counter = Builder.CreateInBoundsGEP(
675 Counters->getValueType(), Counters, {Builder.getInt64(0), Sel});
Devang Patel2b21d862011-08-17 22:49:38 +0000676 Value *Count = Builder.CreateLoad(Counter);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000677 Count = Builder.CreateAdd(Count, Builder.getInt64(1));
Devang Patel2b21d862011-08-17 22:49:38 +0000678 Builder.CreateStore(Count, Counter);
679 } else {
Adrian Prantl75819ae2016-04-15 15:57:41 +0000680 ComplexEdgePreds.insert(&BB);
Devang Patel2b21d862011-08-17 22:49:38 +0000681 for (int i = 0; i != Successors; ++i)
682 ComplexEdgeSuccs.insert(TI->getSuccessor(i));
683 }
Bill Wendling707f6012013-08-20 23:52:00 +0000684
Devang Patel2b21d862011-08-17 22:49:38 +0000685 Edge += Successors;
Nick Lewycky966edd02011-04-16 01:20:23 +0000686 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000687 }
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000688
Devang Patel2b21d862011-08-17 22:49:38 +0000689 if (!ComplexEdgePreds.empty()) {
690 GlobalVariable *EdgeTable =
Adrian Prantl75819ae2016-04-15 15:57:41 +0000691 buildEdgeLookupTable(&F, Counters,
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000692 ComplexEdgePreds, ComplexEdgeSuccs);
Devang Patel2b21d862011-08-17 22:49:38 +0000693 GlobalVariable *EdgeState = getEdgeStateValue();
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000694
Devang Patel2b21d862011-08-17 22:49:38 +0000695 for (int i = 0, e = ComplexEdgePreds.size(); i != e; ++i) {
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000696 IRBuilder<> Builder(&*ComplexEdgePreds[i + 1]->getFirstInsertionPt());
Nick Lewycky8e94d802013-02-27 05:46:30 +0000697 Builder.CreateStore(Builder.getInt32(i), EdgeState);
Devang Patel2b21d862011-08-17 22:49:38 +0000698 }
Bill Wendling707f6012013-08-20 23:52:00 +0000699
Devang Patel2b21d862011-08-17 22:49:38 +0000700 for (int i = 0, e = ComplexEdgeSuccs.size(); i != e; ++i) {
Bill Wendling707f6012013-08-20 23:52:00 +0000701 // Call runtime to perform increment.
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000702 IRBuilder<> Builder(&*ComplexEdgeSuccs[i + 1]->getFirstInsertionPt());
Devang Patel2b21d862011-08-17 22:49:38 +0000703 Value *CounterPtrArray =
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000704 Builder.CreateConstInBoundsGEP2_64(EdgeTable, 0,
705 i * ComplexEdgePreds.size());
Bill Wendling8ed07492012-05-25 23:55:00 +0000706
707 // Build code to increment the counter.
Bill Wendling15605172012-05-28 06:10:56 +0000708 InsertIndCounterIncrCode = true;
David Blaikieff6409d2015-05-18 22:13:54 +0000709 Builder.CreateCall(getIncrementIndirectCounterFunc(),
710 {EdgeState, CounterPtrArray});
Devang Patel2b21d862011-08-17 22:49:38 +0000711 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000712 }
713 }
Bill Wendlinge85f3492012-06-01 23:14:32 +0000714
Bill Wendlingc3cab812013-03-18 23:04:39 +0000715 Function *WriteoutF = insertCounterWriteout(CountersBySP);
716 Function *FlushF = insertFlush(CountersBySP);
717
718 // Create a small bit of code that registers the "__llvm_gcov_writeout" to
Bill Wendling04d57c72013-03-19 21:03:22 +0000719 // be executed at exit and the "__llvm_gcov_flush" function to be executed
720 // when "__gcov_flush" is called.
Bill Wendlingc3cab812013-03-18 23:04:39 +0000721 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
722 Function *F = Function::Create(FTy, GlobalValue::InternalLinkage,
723 "__llvm_gcov_init", M);
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000724 F->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Bill Wendlingc3cab812013-03-18 23:04:39 +0000725 F->setLinkage(GlobalValue::InternalLinkage);
726 F->addFnAttr(Attribute::NoInline);
727 if (Options.NoRedZone)
728 F->addFnAttr(Attribute::NoRedZone);
729
730 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", F);
731 IRBuilder<> Builder(BB);
732
Bill Wendlingc3cab812013-03-18 23:04:39 +0000733 FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
Bill Wendlingc77e9442013-03-20 21:13:59 +0000734 Type *Params[] = {
735 PointerType::get(FTy, 0),
736 PointerType::get(FTy, 0)
737 };
738 FTy = FunctionType::get(Builder.getVoidTy(), Params, false);
Bill Wendling04d57c72013-03-19 21:03:22 +0000739
Yuchen Wu3197b252013-10-23 20:35:00 +0000740 // Initialize the environment and register the local writeout and flush
Bill Wendlingc77e9442013-03-20 21:13:59 +0000741 // functions.
742 Constant *GCOVInit = M->getOrInsertFunction("llvm_gcov_init", FTy);
David Blaikieff6409d2015-05-18 22:13:54 +0000743 Builder.CreateCall(GCOVInit, {WriteoutF, FlushF});
Bill Wendlingc3cab812013-03-18 23:04:39 +0000744 Builder.CreateRetVoid();
745
746 appendToGlobalCtors(*M, F, 0);
Nick Lewycky966edd02011-04-16 01:20:23 +0000747 }
Bill Wendling15605172012-05-28 06:10:56 +0000748
749 if (InsertIndCounterIncrCode)
750 insertIndirectCounterIncrement();
751
Devang Patel2b21d862011-08-17 22:49:38 +0000752 return Result;
Nick Lewycky966edd02011-04-16 01:20:23 +0000753}
754
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000755// All edges with successors that aren't branches are "complex", because it
756// requires complex logic to pick which counter to update.
757GlobalVariable *GCOVProfiler::buildEdgeLookupTable(
758 Function *F,
759 GlobalVariable *Counters,
760 const UniqueVector<BasicBlock *> &Preds,
761 const UniqueVector<BasicBlock *> &Succs) {
762 // TODO: support invoke, threads. We rely on the fact that nothing can modify
763 // the whole-Module pred edge# between the time we set it and the time we next
764 // read it. Threads and invoke make this untrue.
765
766 // emit [(succs * preds) x i64*], logically [succ x [pred x i64*]].
Benjamin Kramer96e1e392012-11-17 13:49:37 +0000767 size_t TableSize = Succs.size() * Preds.size();
Chris Lattner229907c2011-07-18 04:54:35 +0000768 Type *Int64PtrTy = Type::getInt64PtrTy(*Ctx);
Benjamin Kramer96e1e392012-11-17 13:49:37 +0000769 ArrayType *EdgeTableTy = ArrayType::get(Int64PtrTy, TableSize);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000770
Ahmed Charles56440fd2014-03-06 05:51:42 +0000771 std::unique_ptr<Constant * []> EdgeTable(new Constant *[TableSize]);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000772 Constant *NullValue = Constant::getNullValue(Int64PtrTy);
Benjamin Kramer96e1e392012-11-17 13:49:37 +0000773 for (size_t i = 0; i != TableSize; ++i)
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000774 EdgeTable[i] = NullValue;
775
776 unsigned Edge = 0;
Benjamin Kramer135f7352016-06-26 12:28:59 +0000777 for (BasicBlock &BB : *F) {
778 TerminatorInst *TI = BB.getTerminator();
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000779 int Successors = isa<ReturnInst>(TI) ? 1 : TI->getNumSuccessors();
Nick Lewycky6aa79492011-04-28 21:35:49 +0000780 if (Successors > 1 && !isa<BranchInst>(TI) && !isa<ReturnInst>(TI)) {
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000781 for (int i = 0; i != Successors; ++i) {
782 BasicBlock *Succ = TI->getSuccessor(i);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000783 IRBuilder<> Builder(Succ);
784 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000785 Edge + i);
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000786 EdgeTable[((Succs.idFor(Succ) - 1) * Preds.size()) +
Benjamin Kramer135f7352016-06-26 12:28:59 +0000787 (Preds.idFor(&BB) - 1)] = cast<Constant>(Counter);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000788 }
789 }
790 Edge += Successors;
791 }
792
793 GlobalVariable *EdgeTableGV =
794 new GlobalVariable(
795 *M, EdgeTableTy, true, GlobalValue::InternalLinkage,
Craig Toppere1d12942014-08-27 05:25:25 +0000796 ConstantArray::get(EdgeTableTy,
797 makeArrayRef(&EdgeTable[0],TableSize)),
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000798 "__llvm_gcda_edge_table");
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000799 EdgeTableGV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000800 return EdgeTableGV;
801}
802
Nick Lewycky966edd02011-04-16 01:20:23 +0000803Constant *GCOVProfiler::getStartFileFunc() {
Nick Lewycky492afe82013-03-07 08:28:49 +0000804 Type *Args[] = {
805 Type::getInt8PtrTy(*Ctx), // const char *orig_filename
806 Type::getInt8PtrTy(*Ctx), // const char version[4]
Yuchen Wubabe7492013-11-20 04:15:05 +0000807 Type::getInt32Ty(*Ctx), // uint32_t checksum
Nick Lewycky492afe82013-03-07 08:28:49 +0000808 };
809 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000810 return M->getOrInsertFunction("llvm_gcda_start_file", FTy);
811}
812
Bill Wendling15605172012-05-28 06:10:56 +0000813Constant *GCOVProfiler::getIncrementIndirectCounterFunc() {
814 Type *Int32Ty = Type::getInt32Ty(*Ctx);
Bill Wendling8ed07492012-05-25 23:55:00 +0000815 Type *Int64Ty = Type::getInt64Ty(*Ctx);
Bill Wendling15605172012-05-28 06:10:56 +0000816 Type *Args[] = {
Micah Villmow51e72462012-10-24 17:25:11 +0000817 Int32Ty->getPointerTo(), // uint32_t *predecessor
818 Int64Ty->getPointerTo()->getPointerTo() // uint64_t **counters
Bill Wendling15605172012-05-28 06:10:56 +0000819 };
820 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
821 return M->getOrInsertFunction("__llvm_gcov_indirect_counter_increment", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000822}
823
824Constant *GCOVProfiler::getEmitFunctionFunc() {
Yuchen Wubabe7492013-11-20 04:15:05 +0000825 Type *Args[] = {
Nick Lewycky4f9c3672011-05-05 02:46:38 +0000826 Type::getInt32Ty(*Ctx), // uint32_t ident
827 Type::getInt8PtrTy(*Ctx), // const char *function_name
Daniel Jasper87a24d52013-12-04 08:57:17 +0000828 Type::getInt32Ty(*Ctx), // uint32_t func_checksum
Nick Lewycky88f1d0d2013-03-09 01:33:06 +0000829 Type::getInt8Ty(*Ctx), // uint8_t use_extra_checksum
Yuchen Wubabe7492013-11-20 04:15:05 +0000830 Type::getInt32Ty(*Ctx), // uint32_t cfg_checksum
Nick Lewycky4f9c3672011-05-05 02:46:38 +0000831 };
Bill Wendling8ed07492012-05-25 23:55:00 +0000832 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000833 return M->getOrInsertFunction("llvm_gcda_emit_function", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000834}
835
836Constant *GCOVProfiler::getEmitArcsFunc() {
Jay Foadb804a2b2011-07-12 14:06:48 +0000837 Type *Args[] = {
Nick Lewycky966edd02011-04-16 01:20:23 +0000838 Type::getInt32Ty(*Ctx), // uint32_t num_counters
839 Type::getInt64PtrTy(*Ctx), // uint64_t *counters
840 };
Nick Lewycky492afe82013-03-07 08:28:49 +0000841 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000842 return M->getOrInsertFunction("llvm_gcda_emit_arcs", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000843}
844
Yuchen Wu062f24c2013-11-12 04:59:08 +0000845Constant *GCOVProfiler::getSummaryInfoFunc() {
846 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
847 return M->getOrInsertFunction("llvm_gcda_summary_info", FTy);
848}
849
Nick Lewycky966edd02011-04-16 01:20:23 +0000850Constant *GCOVProfiler::getEndFileFunc() {
Chris Lattner229907c2011-07-18 04:54:35 +0000851 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000852 return M->getOrInsertFunction("llvm_gcda_end_file", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000853}
854
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000855GlobalVariable *GCOVProfiler::getEdgeStateValue() {
856 GlobalVariable *GV = M->getGlobalVariable("__llvm_gcov_global_state_pred");
857 if (!GV) {
858 GV = new GlobalVariable(*M, Type::getInt32Ty(*Ctx), false,
859 GlobalValue::InternalLinkage,
860 ConstantInt::get(Type::getInt32Ty(*Ctx),
861 0xffffffff),
862 "__llvm_gcov_global_state_pred");
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000863 GV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000864 }
865 return GV;
866}
Nick Lewycky966edd02011-04-16 01:20:23 +0000867
Bill Wendlingc3cab812013-03-18 23:04:39 +0000868Function *GCOVProfiler::insertCounterWriteout(
Bill Wendlinge8aee6b2012-08-29 18:45:41 +0000869 ArrayRef<std::pair<GlobalVariable *, MDNode *> > CountersBySP) {
Bill Wendling2e6e8662012-09-13 00:09:55 +0000870 FunctionType *WriteoutFTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
871 Function *WriteoutF = M->getFunction("__llvm_gcov_writeout");
872 if (!WriteoutF)
873 WriteoutF = Function::Create(WriteoutFTy, GlobalValue::InternalLinkage,
874 "__llvm_gcov_writeout", M);
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000875 WriteoutF->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000876 WriteoutF->addFnAttr(Attribute::NoInline);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000877 if (Options.NoRedZone)
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000878 WriteoutF->addFnAttr(Attribute::NoRedZone);
Bill Wendling2e6e8662012-09-13 00:09:55 +0000879
880 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", WriteoutF);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000881 IRBuilder<> Builder(BB);
Nick Lewycky966edd02011-04-16 01:20:23 +0000882
883 Constant *StartFile = getStartFileFunc();
884 Constant *EmitFunction = getEmitFunctionFunc();
885 Constant *EmitArcs = getEmitArcsFunc();
Yuchen Wu062f24c2013-11-12 04:59:08 +0000886 Constant *SummaryInfo = getSummaryInfoFunc();
Nick Lewycky966edd02011-04-16 01:20:23 +0000887 Constant *EndFile = getEndFileFunc();
888
Devang Patel2b21d862011-08-17 22:49:38 +0000889 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
890 if (CU_Nodes) {
891 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000892 auto *CU = cast<DICompileUnit>(CU_Nodes->getOperand(i));
Vedant Kumar61035fa2016-01-21 17:04:42 +0000893
894 // Skip module skeleton (and module) CUs.
895 if (CU->getDWOId())
896 continue;
897
Nick Lewycky97e49ac2016-08-31 23:04:32 +0000898 std::string FilenameGcda = mangleName(CU, GCovFileType::GCDA);
Yuchen Wuc15bf892013-12-04 19:18:23 +0000899 uint32_t CfgChecksum = FileChecksums.empty() ? 0 : FileChecksums[i];
David Blaikieff6409d2015-05-18 22:13:54 +0000900 Builder.CreateCall(StartFile,
901 {Builder.CreateGlobalStringPtr(FilenameGcda),
Yuchen Wubabe7492013-11-20 04:15:05 +0000902 Builder.CreateGlobalStringPtr(ReversedVersion),
David Blaikieff6409d2015-05-18 22:13:54 +0000903 Builder.getInt32(CfgChecksum)});
Nick Lewycky03aed112013-03-09 02:06:37 +0000904 for (unsigned j = 0, e = CountersBySP.size(); j != e; ++j) {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000905 auto *SP = cast_or_null<DISubprogram>(CountersBySP[j].second);
Yuchen Wuc15bf892013-12-04 19:18:23 +0000906 uint32_t FuncChecksum = Funcs.empty() ? 0 : Funcs[j]->getFuncChecksum();
David Blaikieff6409d2015-05-18 22:13:54 +0000907 Builder.CreateCall(
908 EmitFunction,
909 {Builder.getInt32(j),
910 Options.FunctionNamesInData
911 ? Builder.CreateGlobalStringPtr(getFunctionName(SP))
912 : Constant::getNullValue(Builder.getInt8PtrTy()),
913 Builder.getInt32(FuncChecksum),
914 Builder.getInt8(Options.UseCfgChecksum),
915 Builder.getInt32(CfgChecksum)});
Nick Lewycky88f1d0d2013-03-09 01:33:06 +0000916
Nick Lewycky03aed112013-03-09 02:06:37 +0000917 GlobalVariable *GV = CountersBySP[j].first;
Devang Patel2b21d862011-08-17 22:49:38 +0000918 unsigned Arcs =
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000919 cast<ArrayType>(GV->getValueType())->getNumElements();
David Blaikieff6409d2015-05-18 22:13:54 +0000920 Builder.CreateCall(EmitArcs, {Builder.getInt32(Arcs),
921 Builder.CreateConstGEP2_64(GV, 0, 0)});
Devang Patel2b21d862011-08-17 22:49:38 +0000922 }
David Blaikieff6409d2015-05-18 22:13:54 +0000923 Builder.CreateCall(SummaryInfo, {});
924 Builder.CreateCall(EndFile, {});
Nick Lewycky966edd02011-04-16 01:20:23 +0000925 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000926 }
Bill Wendlingc3cab812013-03-18 23:04:39 +0000927
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000928 Builder.CreateRetVoid();
Bill Wendlingc3cab812013-03-18 23:04:39 +0000929 return WriteoutF;
Nick Lewycky966edd02011-04-16 01:20:23 +0000930}
Bill Wendling15605172012-05-28 06:10:56 +0000931
932void GCOVProfiler::insertIndirectCounterIncrement() {
933 Function *Fn =
934 cast<Function>(GCOVProfiler::getIncrementIndirectCounterFunc());
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000935 Fn->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Bill Wendling15605172012-05-28 06:10:56 +0000936 Fn->setLinkage(GlobalValue::InternalLinkage);
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000937 Fn->addFnAttr(Attribute::NoInline);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000938 if (Options.NoRedZone)
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000939 Fn->addFnAttr(Attribute::NoRedZone);
Bill Wendling15605172012-05-28 06:10:56 +0000940
Bill Wendling15605172012-05-28 06:10:56 +0000941 // Create basic blocks for function.
942 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", Fn);
943 IRBuilder<> Builder(BB);
944
945 BasicBlock *PredNotNegOne = BasicBlock::Create(*Ctx, "", Fn);
946 BasicBlock *CounterEnd = BasicBlock::Create(*Ctx, "", Fn);
947 BasicBlock *Exit = BasicBlock::Create(*Ctx, "exit", Fn);
948
949 // uint32_t pred = *predecessor;
950 // if (pred == 0xffffffff) return;
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000951 Argument *Arg = &*Fn->arg_begin();
Bill Wendling15605172012-05-28 06:10:56 +0000952 Arg->setName("predecessor");
953 Value *Pred = Builder.CreateLoad(Arg, "pred");
Nick Lewycky8e94d802013-02-27 05:46:30 +0000954 Value *Cond = Builder.CreateICmpEQ(Pred, Builder.getInt32(0xffffffff));
Bill Wendling15605172012-05-28 06:10:56 +0000955 BranchInst::Create(Exit, PredNotNegOne, Cond, BB);
956
957 Builder.SetInsertPoint(PredNotNegOne);
958
959 // uint64_t *counter = counters[pred];
960 // if (!counter) return;
Nick Lewycky8e94d802013-02-27 05:46:30 +0000961 Value *ZExtPred = Builder.CreateZExt(Pred, Builder.getInt64Ty());
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000962 Arg = &*std::next(Fn->arg_begin());
Bill Wendling15605172012-05-28 06:10:56 +0000963 Arg->setName("counters");
David Blaikie93c54442015-04-03 19:41:44 +0000964 Value *GEP = Builder.CreateGEP(Type::getInt64PtrTy(*Ctx), Arg, ZExtPred);
Bill Wendling15605172012-05-28 06:10:56 +0000965 Value *Counter = Builder.CreateLoad(GEP, "counter");
Nick Lewycky625f3952013-02-27 06:21:30 +0000966 Cond = Builder.CreateICmpEQ(Counter,
967 Constant::getNullValue(
968 Builder.getInt64Ty()->getPointerTo()));
Bill Wendling15605172012-05-28 06:10:56 +0000969 Builder.CreateCondBr(Cond, Exit, CounterEnd);
970
971 // ++*counter;
972 Builder.SetInsertPoint(CounterEnd);
973 Value *Add = Builder.CreateAdd(Builder.CreateLoad(Counter),
Nick Lewycky8e94d802013-02-27 05:46:30 +0000974 Builder.getInt64(1));
Bill Wendling15605172012-05-28 06:10:56 +0000975 Builder.CreateStore(Add, Counter);
976 Builder.CreateBr(Exit);
977
978 // Fill in the exit block.
979 Builder.SetInsertPoint(Exit);
980 Builder.CreateRetVoid();
981}
Bill Wendling2e6e8662012-09-13 00:09:55 +0000982
Bill Wendlingc3cab812013-03-18 23:04:39 +0000983Function *GCOVProfiler::
Bill Wendling2e6e8662012-09-13 00:09:55 +0000984insertFlush(ArrayRef<std::pair<GlobalVariable*, MDNode*> > CountersBySP) {
985 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
Bill Wendlingc3cab812013-03-18 23:04:39 +0000986 Function *FlushF = M->getFunction("__llvm_gcov_flush");
Bill Wendling2e6e8662012-09-13 00:09:55 +0000987 if (!FlushF)
988 FlushF = Function::Create(FTy, GlobalValue::InternalLinkage,
Bill Wendlingc3cab812013-03-18 23:04:39 +0000989 "__llvm_gcov_flush", M);
Bill Wendling2e6e8662012-09-13 00:09:55 +0000990 else
991 FlushF->setLinkage(GlobalValue::InternalLinkage);
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000992 FlushF->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000993 FlushF->addFnAttr(Attribute::NoInline);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000994 if (Options.NoRedZone)
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000995 FlushF->addFnAttr(Attribute::NoRedZone);
Bill Wendling2e6e8662012-09-13 00:09:55 +0000996
Bill Wendling2e6e8662012-09-13 00:09:55 +0000997 BasicBlock *Entry = BasicBlock::Create(*Ctx, "entry", FlushF);
998
999 // Write out the current counters.
1000 Constant *WriteoutF = M->getFunction("__llvm_gcov_writeout");
1001 assert(WriteoutF && "Need to create the writeout function first!");
1002
1003 IRBuilder<> Builder(Entry);
David Blaikieff6409d2015-05-18 22:13:54 +00001004 Builder.CreateCall(WriteoutF, {});
Bill Wendling2e6e8662012-09-13 00:09:55 +00001005
Bill Wendlingfb1f6682012-09-13 14:32:30 +00001006 // Zero out the counters.
Benjamin Kramer135f7352016-06-26 12:28:59 +00001007 for (const auto &I : CountersBySP) {
1008 GlobalVariable *GV = I.first;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001009 Constant *Null = Constant::getNullValue(GV->getValueType());
Bill Wendling8d26bc32012-09-14 22:35:49 +00001010 Builder.CreateStore(Null, GV);
Bill Wendlingfb1f6682012-09-13 14:32:30 +00001011 }
Bill Wendling2e6e8662012-09-13 00:09:55 +00001012
1013 Type *RetTy = FlushF->getReturnType();
1014 if (RetTy == Type::getVoidTy(*Ctx))
1015 Builder.CreateRetVoid();
1016 else if (RetTy->isIntegerTy())
Bill Wendlingc3cab812013-03-18 23:04:39 +00001017 // Used if __llvm_gcov_flush was implicitly declared.
Bill Wendling2e6e8662012-09-13 00:09:55 +00001018 Builder.CreateRet(ConstantInt::get(RetTy, 0));
1019 else
Bill Wendlingc3cab812013-03-18 23:04:39 +00001020 report_fatal_error("invalid return type for __llvm_gcov_flush");
1021
1022 return FlushF;
Bill Wendling2e6e8662012-09-13 00:09:55 +00001023}