blob: da07ea39980f84111acbe153bccd6b50e06afaf3 [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"
Chandler Carruth9a4c9e52014-03-06 00:46:21 +000024#include "llvm/IR/DebugInfo.h"
Chandler Carruth92051402014-03-05 10:30:38 +000025#include "llvm/IR/DebugLoc.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/IRBuilder.h"
Chandler Carruth83948572014-03-04 10:30:26 +000027#include "llvm/IR/InstIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/Instructions.h"
Bob Wilson055a0b42014-01-31 05:24:01 +000029#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/Module.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/Pass.h"
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000032#include "llvm/Support/CommandLine.h"
Chandler Carruthaafe0912012-06-29 12:38:19 +000033#include "llvm/Support/Debug.h"
Bill Wendling5aa82392013-03-26 22:47:50 +000034#include "llvm/Support/FileSystem.h"
Rafael Espindola3bc8e712013-06-11 22:21:28 +000035#include "llvm/Support/Path.h"
Chandler Carruthaafe0912012-06-29 12:38:19 +000036#include "llvm/Support/raw_ostream.h"
Xinliang David Li64dbb292016-06-05 05:12:23 +000037#include "llvm/Transforms/GCOVProfiler.h"
38#include "llvm/Transforms/Instrumentation.h"
Chandler Carruthaafe0912012-06-29 12:38:19 +000039#include "llvm/Transforms/Utils/ModuleUtils.h"
Nick Lewycky0fdd0192013-06-18 06:38:21 +000040#include <algorithm>
David Blaikie229de502014-04-21 20:41:55 +000041#include <memory>
Nick Lewycky966edd02011-04-16 01:20:23 +000042#include <string>
43#include <utility>
44using namespace llvm;
45
Chandler Carruth964daaa2014-04-22 02:55:47 +000046#define DEBUG_TYPE "insert-gcov-profiling"
47
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000048static cl::opt<std::string>
49DefaultGCOVVersion("default-gcov-version", cl::init("402*"), cl::Hidden,
50 cl::ValueRequired);
Justin Bogner3faa76b2015-03-16 23:52:03 +000051static cl::opt<bool> DefaultExitBlockBeforeBody("gcov-exit-block-before-body",
52 cl::init(false), cl::Hidden);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000053
54GCOVOptions GCOVOptions::getDefault() {
55 GCOVOptions Options;
56 Options.EmitNotes = true;
57 Options.EmitData = true;
58 Options.UseCfgChecksum = false;
59 Options.NoRedZone = false;
60 Options.FunctionNamesInData = true;
Justin Bogner3faa76b2015-03-16 23:52:03 +000061 Options.ExitBlockBeforeBody = DefaultExitBlockBeforeBody;
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000062
63 if (DefaultGCOVVersion.size() != 4) {
64 llvm::report_fatal_error(std::string("Invalid -default-gcov-version: ") +
65 DefaultGCOVVersion);
66 }
67 memcpy(Options.Version, DefaultGCOVVersion.c_str(), 4);
68 return Options;
69}
70
Nick Lewycky966edd02011-04-16 01:20:23 +000071namespace {
Xinliang David Lifb3137c2016-06-05 03:40:03 +000072class GCOVFunction;
Yuchen Wubabe7492013-11-20 04:15:05 +000073
Xinliang David Lifb3137c2016-06-05 03:40:03 +000074class GCOVProfiler {
75public:
76 GCOVProfiler() : GCOVProfiler(GCOVOptions::getDefault()) {}
77 GCOVProfiler(const GCOVOptions &Opts) : Options(Opts) {
78 assert((Options.EmitNotes || Options.EmitData) &&
79 "GCOVProfiler asked to do nothing?");
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 }
86 bool runOnModule(Module &M);
Benjamin Kramer298a3a02015-03-06 16:21:15 +000087
Xinliang David Lifb3137c2016-06-05 03:40:03 +000088private:
89 // Create the .gcno files for the Module based on DebugInfo.
90 void emitProfileNotes();
Nick Lewycky6d9f0612011-05-04 04:03:04 +000091
Xinliang David Lifb3137c2016-06-05 03:40:03 +000092 // Modify the program to track transitions along edges and call into the
93 // profiling runtime to emit .gcda files when run.
94 bool emitProfileArcs();
Nick Lewycky966edd02011-04-16 01:20:23 +000095
Xinliang David Lifb3137c2016-06-05 03:40:03 +000096 // Get pointers to the functions in the runtime library.
97 Constant *getStartFileFunc();
98 Constant *getIncrementIndirectCounterFunc();
99 Constant *getEmitFunctionFunc();
100 Constant *getEmitArcsFunc();
101 Constant *getSummaryInfoFunc();
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000102 Constant *getEndFileFunc();
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000103
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000104 // Create or retrieve an i32 state value that is used to represent the
105 // pred block number for certain non-trivial edges.
106 GlobalVariable *getEdgeStateValue();
Nick Lewycky966edd02011-04-16 01:20:23 +0000107
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000108 // Produce a table of pointers to counters, by predecessor and successor
109 // block number.
110 GlobalVariable *buildEdgeLookupTable(Function *F, GlobalVariable *Counter,
111 const UniqueVector<BasicBlock *> &Preds,
112 const UniqueVector<BasicBlock *> &Succs);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000113
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000114 // Add the function to write out all our counters to the global destructor
115 // list.
116 Function *
117 insertCounterWriteout(ArrayRef<std::pair<GlobalVariable *, MDNode *>>);
118 Function *insertFlush(ArrayRef<std::pair<GlobalVariable *, MDNode *>>);
119 void insertIndirectCounterIncrement();
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000120
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000121 std::string mangleName(const DICompileUnit *CU, const char *NewStem);
Nick Lewycky966edd02011-04-16 01:20:23 +0000122
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000123 GCOVOptions Options;
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000124
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000125 // Reversed, NUL-terminated copy of Options.Version.
126 char ReversedVersion[5];
127 // Checksum, produced by hash of EdgeDestinations
128 SmallVector<uint32_t, 4> FileChecksums;
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000129
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000130 Module *M;
131 LLVMContext *Ctx;
132 SmallVector<std::unique_ptr<GCOVFunction>, 16> Funcs;
133};
Nick Lewycky8e0a38f2011-04-21 01:56:25 +0000134
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000135class GCOVProfilerLegacyPass : public ModulePass {
136public:
137 static char ID;
138 GCOVProfilerLegacyPass()
139 : GCOVProfilerLegacyPass(GCOVOptions::getDefault()) {}
140 GCOVProfilerLegacyPass(const GCOVOptions &Opts)
141 : ModulePass(ID), Profiler(Opts) {
142 initializeGCOVProfilerLegacyPassPass(*PassRegistry::getPassRegistry());
143 }
144 const char *getPassName() const override { return "GCOV Profiler"; }
145
146 bool runOnModule(Module &M) override { return Profiler.runOnModule(M); }
147
148private:
149 GCOVProfiler Profiler;
150};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000151}
Nick Lewycky966edd02011-04-16 01:20:23 +0000152
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000153char GCOVProfilerLegacyPass::ID = 0;
154INITIALIZE_PASS(GCOVProfilerLegacyPass, "insert-gcov-profiling",
Nick Lewycky966edd02011-04-16 01:20:23 +0000155 "Insert instrumentation for GCOV profiling", false, false)
156
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000157ModulePass *llvm::createGCOVProfilerPass(const GCOVOptions &Options) {
Xinliang David Lifb3137c2016-06-05 03:40:03 +0000158 return new GCOVProfilerLegacyPass(Options);
Nick Lewycky8e0a38f2011-04-21 01:56:25 +0000159}
Nick Lewycky966edd02011-04-16 01:20:23 +0000160
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000161static StringRef getFunctionName(const DISubprogram *SP) {
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +0000162 if (!SP->getLinkageName().empty())
163 return SP->getLinkageName();
164 return SP->getName();
Nick Lewyckyd6718632013-03-19 01:37:55 +0000165}
166
Nick Lewycky966edd02011-04-16 01:20:23 +0000167namespace {
168 class GCOVRecord {
169 protected:
Craig Topper1c4d6672013-07-17 03:43:10 +0000170 static const char *const LinesTag;
171 static const char *const FunctionTag;
172 static const char *const BlockTag;
173 static const char *const EdgeTag;
Nick Lewycky966edd02011-04-16 01:20:23 +0000174
Benjamin Kramer79de6e62015-04-11 18:57:14 +0000175 GCOVRecord() = default;
Nick Lewycky966edd02011-04-16 01:20:23 +0000176
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000177 void writeBytes(const char *Bytes, int Size) {
178 os->write(Bytes, Size);
Nick Lewycky966edd02011-04-16 01:20:23 +0000179 }
180
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000181 void write(uint32_t i) {
182 writeBytes(reinterpret_cast<char*>(&i), 4);
Nick Lewycky966edd02011-04-16 01:20:23 +0000183 }
184
185 // Returns the length measured in 4-byte blocks that will be used to
186 // represent this string in a GCOV file
Craig Topper24048c92013-07-17 03:54:53 +0000187 static unsigned lengthOfGCOVString(StringRef s) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000188 // A GCOV string is a length, followed by a NUL, then between 0 and 3 NULs
Nick Lewyckyed749d82011-04-21 02:48:39 +0000189 // padding out to the next 4-byte word. The length is measured in 4-byte
190 // words including padding, not bytes of actual string.
Nick Lewyckya7028842011-05-05 23:52:18 +0000191 return (s.size() / 4) + 1;
Nick Lewycky966edd02011-04-16 01:20:23 +0000192 }
193
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000194 void writeGCOVString(StringRef s) {
195 uint32_t Len = lengthOfGCOVString(s);
196 write(Len);
197 writeBytes(s.data(), s.size());
Nick Lewycky966edd02011-04-16 01:20:23 +0000198
199 // Write 1 to 4 bytes of NUL padding.
Nick Lewycky6aa79492011-04-28 21:35:49 +0000200 assert((unsigned)(4 - (s.size() % 4)) > 0);
201 assert((unsigned)(4 - (s.size() % 4)) <= 4);
202 writeBytes("\0\0\0\0", 4 - (s.size() % 4));
Nick Lewycky966edd02011-04-16 01:20:23 +0000203 }
204
205 raw_ostream *os;
206 };
Craig Topper1c4d6672013-07-17 03:43:10 +0000207 const char *const GCOVRecord::LinesTag = "\0\0\x45\x01";
208 const char *const GCOVRecord::FunctionTag = "\0\0\0\1";
209 const char *const GCOVRecord::BlockTag = "\0\0\x41\x01";
210 const char *const GCOVRecord::EdgeTag = "\0\0\x43\x01";
Nick Lewycky966edd02011-04-16 01:20:23 +0000211
212 class GCOVFunction;
213 class GCOVBlock;
214
215 // Constructed only by requesting it from a GCOVBlock, this object stores a
Devang Pateladd1f172011-09-20 18:35:00 +0000216 // list of line numbers and a single filename, representing lines that belong
217 // to the block.
Nick Lewycky966edd02011-04-16 01:20:23 +0000218 class GCOVLines : public GCOVRecord {
219 public:
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000220 void addLine(uint32_t Line) {
Nick Lewycky5f53ddd2014-06-03 04:25:36 +0000221 assert(Line != 0 && "Line zero is not a valid real line number.");
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000222 Lines.push_back(Line);
Nick Lewycky966edd02011-04-16 01:20:23 +0000223 }
224
Craig Topper24048c92013-07-17 03:54:53 +0000225 uint32_t length() const {
Nick Lewycky6404d972011-11-27 23:22:20 +0000226 // Here 2 = 1 for string length + 1 for '0' id#.
Devang Pateladd1f172011-09-20 18:35:00 +0000227 return lengthOfGCOVString(Filename) + 2 + Lines.size();
Nick Lewycky966edd02011-04-16 01:20:23 +0000228 }
229
Devang Pateladd1f172011-09-20 18:35:00 +0000230 void writeOut() {
231 write(0);
232 writeGCOVString(Filename);
233 for (int i = 0, e = Lines.size(); i != e; ++i)
234 write(Lines[i]);
235 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000236
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000237 GCOVLines(StringRef F, raw_ostream *os)
Devang Pateladd1f172011-09-20 18:35:00 +0000238 : Filename(F) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000239 this->os = os;
240 }
241
Devang Patel7d06f5c2011-09-20 18:48:56 +0000242 private:
Devang Pateladd1f172011-09-20 18:35:00 +0000243 StringRef Filename;
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000244 SmallVector<uint32_t, 32> Lines;
Nick Lewycky966edd02011-04-16 01:20:23 +0000245 };
246
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000247
Nick Lewycky966edd02011-04-16 01:20:23 +0000248 // Represent a basic block in GCOV. Each block has a unique number in the
249 // function, number of lines belonging to each block, and a set of edges to
250 // other blocks.
251 class GCOVBlock : public GCOVRecord {
252 public:
Devang Patel9cb1fc02011-09-20 17:55:19 +0000253 GCOVLines &getFile(StringRef Filename) {
Benjamin Kramereab3d362016-07-21 13:37:48 +0000254 return LinesByFile.try_emplace(Filename, Filename, os).first->second;
Nick Lewycky966edd02011-04-16 01:20:23 +0000255 }
256
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000257 void addEdge(GCOVBlock &Successor) {
258 OutEdges.push_back(&Successor);
Nick Lewycky966edd02011-04-16 01:20:23 +0000259 }
260
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000261 void writeOut() {
262 uint32_t Len = 3;
Benjamin Kramer2a185a22016-07-21 12:06:31 +0000263 SmallVector<StringMapEntry<GCOVLines> *, 32> SortedLinesByFile;
Benjamin Kramer135f7352016-06-26 12:28:59 +0000264 for (auto &I : LinesByFile) {
Benjamin Kramer2a185a22016-07-21 12:06:31 +0000265 Len += I.second.length();
Benjamin Kramer135f7352016-06-26 12:28:59 +0000266 SortedLinesByFile.push_back(&I);
Nick Lewycky966edd02011-04-16 01:20:23 +0000267 }
268
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000269 writeBytes(LinesTag, 4);
270 write(Len);
271 write(Number);
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000272
Benjamin Kramer2a185a22016-07-21 12:06:31 +0000273 std::sort(
274 SortedLinesByFile.begin(), SortedLinesByFile.end(),
275 [](StringMapEntry<GCOVLines> *LHS, StringMapEntry<GCOVLines> *RHS) {
276 return LHS->getKey() < RHS->getKey();
277 });
Benjamin Kramer135f7352016-06-26 12:28:59 +0000278 for (auto &I : SortedLinesByFile)
Benjamin Kramer2a185a22016-07-21 12:06:31 +0000279 I->getValue().writeOut();
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000280 write(0);
281 write(0);
Nick Lewycky966edd02011-04-16 01:20:23 +0000282 }
283
David Blaikieea37c112014-12-22 23:12:42 +0000284 GCOVBlock(const GCOVBlock &RHS) : GCOVRecord(RHS), Number(RHS.Number) {
285 // Only allow copy before edges and lines have been added. After that,
286 // there are inter-block pointers (eg: edges) that won't take kindly to
287 // blocks being copied or moved around.
288 assert(LinesByFile.empty());
289 assert(OutEdges.empty());
290 }
291
Nick Lewycky966edd02011-04-16 01:20:23 +0000292 private:
293 friend class GCOVFunction;
294
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000295 GCOVBlock(uint32_t Number, raw_ostream *os)
296 : Number(Number) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000297 this->os = os;
298 }
299
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000300 uint32_t Number;
Benjamin Kramer2a185a22016-07-21 12:06:31 +0000301 StringMap<GCOVLines> LinesByFile;
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000302 SmallVector<GCOVBlock *, 4> OutEdges;
Nick Lewycky966edd02011-04-16 01:20:23 +0000303 };
304
305 // A function has a unique identifier, a checksum (we leave as zero) and a
306 // set of blocks and a map of edges between blocks. This is the only GCOV
307 // object users can construct, the blocks and lines will be rooted here.
308 class GCOVFunction : public GCOVRecord {
309 public:
Peter Collingbourned4bff302015-11-05 22:03:56 +0000310 GCOVFunction(const DISubprogram *SP, Function *F, raw_ostream *os,
311 uint32_t Ident, bool UseCfgChecksum, bool ExitBlockBeforeBody)
David Blaikieea37c112014-12-22 23:12:42 +0000312 : SP(SP), Ident(Ident), UseCfgChecksum(UseCfgChecksum), CfgChecksum(0),
313 ReturnBlock(1, os) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000314 this->os = os;
315
Daniel Jasper87a24d52013-12-04 08:57:17 +0000316 DEBUG(dbgs() << "Function: " << getFunctionName(SP) << "\n");
Nick Lewycky2e8a6212014-12-03 02:45:01 +0000317
David Blaikieea37c112014-12-22 23:12:42 +0000318 uint32_t i = 0;
319 for (auto &BB : *F) {
Justin Bogner3faa76b2015-03-16 23:52:03 +0000320 // Skip index 1 if it's assigned to the ReturnBlock.
321 if (i == 1 && ExitBlockBeforeBody)
322 ++i;
323 Blocks.insert(std::make_pair(&BB, GCOVBlock(i++, os)));
Nick Lewycky966edd02011-04-16 01:20:23 +0000324 }
Justin Bogner3faa76b2015-03-16 23:52:03 +0000325 if (!ExitBlockBeforeBody)
326 ReturnBlock.Number = i;
Daniel Jasper87a24d52013-12-04 08:57:17 +0000327
Alp Tokere69170a2014-06-26 22:52:05 +0000328 std::string FunctionNameAndLine;
329 raw_string_ostream FNLOS(FunctionNameAndLine);
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +0000330 FNLOS << getFunctionName(SP) << SP->getLine();
Alp Tokere69170a2014-06-26 22:52:05 +0000331 FNLOS.flush();
332 FuncChecksum = hash_value(FunctionNameAndLine);
Nick Lewycky966edd02011-04-16 01:20:23 +0000333 }
334
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000335 GCOVBlock &getBlock(BasicBlock *BB) {
David Blaikieea37c112014-12-22 23:12:42 +0000336 return Blocks.find(BB)->second;
Nick Lewycky966edd02011-04-16 01:20:23 +0000337 }
338
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000339 GCOVBlock &getReturnBlock() {
David Blaikieea37c112014-12-22 23:12:42 +0000340 return ReturnBlock;
Nick Lewycky8411b552011-04-21 03:18:00 +0000341 }
342
Yuchen Wubabe7492013-11-20 04:15:05 +0000343 std::string getEdgeDestinations() {
Alp Tokere69170a2014-06-26 22:52:05 +0000344 std::string EdgeDestinations;
345 raw_string_ostream EDOS(EdgeDestinations);
Yuchen Wubabe7492013-11-20 04:15:05 +0000346 Function *F = Blocks.begin()->first->getParent();
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000347 for (BasicBlock &I : *F) {
348 GCOVBlock &Block = getBlock(&I);
Yuchen Wubabe7492013-11-20 04:15:05 +0000349 for (int i = 0, e = Block.OutEdges.size(); i != e; ++i)
Alp Tokere69170a2014-06-26 22:52:05 +0000350 EDOS << Block.OutEdges[i]->Number;
Yuchen Wubabe7492013-11-20 04:15:05 +0000351 }
Alp Tokere69170a2014-06-26 22:52:05 +0000352 return EdgeDestinations;
Yuchen Wubabe7492013-11-20 04:15:05 +0000353 }
354
Daniel Jasper87a24d52013-12-04 08:57:17 +0000355 uint32_t getFuncChecksum() {
356 return FuncChecksum;
357 }
358
Yuchen Wubabe7492013-11-20 04:15:05 +0000359 void setCfgChecksum(uint32_t Checksum) {
360 CfgChecksum = Checksum;
361 }
362
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000363 void writeOut() {
Yuchen Wubabe7492013-11-20 04:15:05 +0000364 writeBytes(FunctionTag, 4);
365 uint32_t BlockLen = 1 + 1 + 1 + lengthOfGCOVString(getFunctionName(SP)) +
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +0000366 1 + lengthOfGCOVString(SP->getFilename()) + 1;
Yuchen Wubabe7492013-11-20 04:15:05 +0000367 if (UseCfgChecksum)
368 ++BlockLen;
369 write(BlockLen);
370 write(Ident);
Daniel Jasper87a24d52013-12-04 08:57:17 +0000371 write(FuncChecksum);
Yuchen Wubabe7492013-11-20 04:15:05 +0000372 if (UseCfgChecksum)
373 write(CfgChecksum);
374 writeGCOVString(getFunctionName(SP));
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +0000375 writeGCOVString(SP->getFilename());
376 write(SP->getLine());
Yuchen Wubabe7492013-11-20 04:15:05 +0000377
Nick Lewycky966edd02011-04-16 01:20:23 +0000378 // Emit count of blocks.
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000379 writeBytes(BlockTag, 4);
380 write(Blocks.size() + 1);
381 for (int i = 0, e = Blocks.size() + 1; i != e; ++i) {
382 write(0); // No flags on our blocks.
Nick Lewycky966edd02011-04-16 01:20:23 +0000383 }
Nick Lewycky6404d972011-11-27 23:22:20 +0000384 DEBUG(dbgs() << Blocks.size() << " blocks.\n");
Nick Lewycky966edd02011-04-16 01:20:23 +0000385
386 // Emit edges between blocks.
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000387 if (Blocks.empty()) return;
388 Function *F = Blocks.begin()->first->getParent();
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000389 for (BasicBlock &I : *F) {
390 GCOVBlock &Block = getBlock(&I);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000391 if (Block.OutEdges.empty()) continue;
Nick Lewycky966edd02011-04-16 01:20:23 +0000392
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000393 writeBytes(EdgeTag, 4);
394 write(Block.OutEdges.size() * 2 + 1);
395 write(Block.Number);
396 for (int i = 0, e = Block.OutEdges.size(); i != e; ++i) {
Nick Lewycky6404d972011-11-27 23:22:20 +0000397 DEBUG(dbgs() << Block.Number << " -> " << Block.OutEdges[i]->Number
398 << "\n");
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000399 write(Block.OutEdges[i]->Number);
400 write(0); // no flags
Nick Lewycky966edd02011-04-16 01:20:23 +0000401 }
402 }
403
404 // Emit lines for each block.
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000405 for (BasicBlock &I : *F)
406 getBlock(&I).writeOut();
Nick Lewycky966edd02011-04-16 01:20:23 +0000407 }
408
409 private:
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000410 const DISubprogram *SP;
Yuchen Wubabe7492013-11-20 04:15:05 +0000411 uint32_t Ident;
Daniel Jasper87a24d52013-12-04 08:57:17 +0000412 uint32_t FuncChecksum;
Yuchen Wubabe7492013-11-20 04:15:05 +0000413 bool UseCfgChecksum;
414 uint32_t CfgChecksum;
David Blaikieea37c112014-12-22 23:12:42 +0000415 DenseMap<BasicBlock *, GCOVBlock> Blocks;
416 GCOVBlock ReturnBlock;
Nick Lewycky966edd02011-04-16 01:20:23 +0000417 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000418}
Nick Lewycky966edd02011-04-16 01:20:23 +0000419
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000420std::string GCOVProfiler::mangleName(const DICompileUnit *CU,
Duncan P. N. Exon Smith2fbe1352015-04-20 22:10:08 +0000421 const char *NewStem) {
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000422 if (NamedMDNode *GCov = M->getNamedMetadata("llvm.gcov")) {
423 for (int i = 0, e = GCov->getNumOperands(); i != e; ++i) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000424 MDNode *N = GCov->getOperand(i);
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000425 if (N->getNumOperands() != 2) continue;
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000426 MDString *GCovFile = dyn_cast<MDString>(N->getOperand(0));
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000427 MDNode *CompileUnit = dyn_cast<MDNode>(N->getOperand(1));
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000428 if (!GCovFile || !CompileUnit) continue;
429 if (CompileUnit == CU) {
Bill Wendling1f6f8c22012-08-30 00:34:21 +0000430 SmallString<128> Filename = GCovFile->getString();
431 sys::path::replace_extension(Filename, NewStem);
432 return Filename.str();
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000433 }
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000434 }
435 }
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000436
Duncan P. N. Exon Smith35ef22c2015-04-15 23:19:27 +0000437 SmallString<128> Filename = CU->getFilename();
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000438 sys::path::replace_extension(Filename, NewStem);
Bill Wendling5aa82392013-03-26 22:47:50 +0000439 StringRef FName = sys::path::filename(Filename);
Bill Wendling5aa82392013-03-26 22:47:50 +0000440 SmallString<128> CurPath;
441 if (sys::fs::current_path(CurPath)) return FName;
Yaron Keren75e0c4b2015-03-27 17:51:30 +0000442 sys::path::append(CurPath, FName);
Bill Wendling5aa82392013-03-26 22:47:50 +0000443 return CurPath.str();
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000444}
445
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000446bool GCOVProfiler::runOnModule(Module &M) {
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000447 this->M = &M;
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000448 Ctx = &M.getContext();
449
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000450 if (Options.EmitNotes) emitProfileNotes();
451 if (Options.EmitData) return emitProfileArcs();
Nick Lewycky8e0a38f2011-04-21 01:56:25 +0000452 return false;
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000453}
454
Xinliang David Li64dbb292016-06-05 05:12:23 +0000455PreservedAnalyses GCOVProfilerPass::run(Module &M,
Sean Silvafd03ac62016-08-09 00:28:38 +0000456 ModuleAnalysisManager &AM) {
Xinliang David Li64dbb292016-06-05 05:12:23 +0000457
458 GCOVProfiler Profiler(GCOVOpts);
459
460 if (!Profiler.runOnModule(M))
461 return PreservedAnalyses::all();
462
463 return PreservedAnalyses::none();
464}
465
Adrian Prantl75819ae2016-04-15 15:57:41 +0000466static bool functionHasLines(Function &F) {
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000467 // Check whether this function actually has any source lines. Not only
468 // do these waste space, they also can crash gcov.
Adrian Prantl75819ae2016-04-15 15:57:41 +0000469 for (auto &BB : F) {
470 for (auto &I : BB) {
Nick Lewyckyce98b432014-06-04 21:47:19 +0000471 // Debug intrinsic locations correspond to the location of the
472 // declaration, not necessarily any statements or expressions.
Adrian Prantl75819ae2016-04-15 15:57:41 +0000473 if (isa<DbgInfoIntrinsic>(&I)) continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000474
Adrian Prantl75819ae2016-04-15 15:57:41 +0000475 const DebugLoc &Loc = I.getDebugLoc();
Duncan P. N. Exon Smithec819c02015-03-30 19:49:49 +0000476 if (!Loc)
477 continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000478
479 // Artificial lines such as calls to the global constructors.
Justin Bogner3faa76b2015-03-16 23:52:03 +0000480 if (Loc.getLine() == 0) continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000481
Nick Lewycky5f53ddd2014-06-03 04:25:36 +0000482 return true;
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000483 }
484 }
485 return false;
486}
487
Nick Lewyckyad145502013-03-13 22:55:42 +0000488void GCOVProfiler::emitProfileNotes() {
Devang Patel2b21d862011-08-17 22:49:38 +0000489 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
Nick Lewycky6404d972011-11-27 23:22:20 +0000490 if (!CU_Nodes) return;
Nick Lewycky966edd02011-04-16 01:20:23 +0000491
Nick Lewycky6404d972011-11-27 23:22:20 +0000492 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
493 // Each compile unit gets its own .gcno file. This means that whether we run
494 // this pass over the original .o's as they're produced, or run it after
495 // LTO, we'll generate the same .gcno files.
496
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000497 auto *CU = cast<DICompileUnit>(CU_Nodes->getOperand(i));
Vedant Kumar61035fa2016-01-21 17:04:42 +0000498
499 // Skip module skeleton (and module) CUs.
500 if (CU->getDWOId())
501 continue;
502
Rafael Espindola3fd1e992014-08-25 18:16:47 +0000503 std::error_code EC;
504 raw_fd_ostream out(mangleName(CU, "gcno"), EC, sys::fs::F_None);
Yuchen Wubabe7492013-11-20 04:15:05 +0000505 std::string EdgeDestinations;
Nick Lewycky6404d972011-11-27 23:22:20 +0000506
Justin Bogner58e41342014-11-06 06:55:02 +0000507 unsigned FunctionIdent = 0;
Adrian Prantl75819ae2016-04-15 15:57:41 +0000508 for (auto &F : M->functions()) {
509 DISubprogram *SP = F.getSubprogram();
510 if (!SP) continue;
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000511 if (!functionHasLines(F)) continue;
Bob Wilson055a0b42014-01-31 05:24:01 +0000512
513 // gcov expects every function to start with an entry block that has a
514 // single successor, so split the entry block to make sure of that.
Adrian Prantl75819ae2016-04-15 15:57:41 +0000515 BasicBlock &EntryBlock = F.getEntryBlock();
Bob Wilson055a0b42014-01-31 05:24:01 +0000516 BasicBlock::iterator It = EntryBlock.begin();
517 while (isa<AllocaInst>(*It) || isa<DbgInfoIntrinsic>(*It))
518 ++It;
519 EntryBlock.splitBasicBlock(It);
Yuchen Wuc87ca322013-11-22 23:07:45 +0000520
Adrian Prantl75819ae2016-04-15 15:57:41 +0000521 Funcs.push_back(make_unique<GCOVFunction>(SP, &F, &out, FunctionIdent++,
Justin Bogner3faa76b2015-03-16 23:52:03 +0000522 Options.UseCfgChecksum,
523 Options.ExitBlockBeforeBody));
David Blaikie229de502014-04-21 20:41:55 +0000524 GCOVFunction &Func = *Funcs.back();
Nick Lewycky6404d972011-11-27 23:22:20 +0000525
Adrian Prantl75819ae2016-04-15 15:57:41 +0000526 for (auto &BB : F) {
527 GCOVBlock &Block = Func.getBlock(&BB);
528 TerminatorInst *TI = BB.getTerminator();
Nick Lewycky6404d972011-11-27 23:22:20 +0000529 if (int successors = TI->getNumSuccessors()) {
530 for (int i = 0; i != successors; ++i) {
David Blaikie229de502014-04-21 20:41:55 +0000531 Block.addEdge(Func.getBlock(TI->getSuccessor(i)));
Nick Lewycky6404d972011-11-27 23:22:20 +0000532 }
533 } else if (isa<ReturnInst>(TI)) {
David Blaikie229de502014-04-21 20:41:55 +0000534 Block.addEdge(Func.getReturnBlock());
Nick Lewycky6404d972011-11-27 23:22:20 +0000535 }
536
537 uint32_t Line = 0;
Adrian Prantl75819ae2016-04-15 15:57:41 +0000538 for (auto &I : BB) {
Nick Lewyckyce98b432014-06-04 21:47:19 +0000539 // Debug intrinsic locations correspond to the location of the
540 // declaration, not necessarily any statements or expressions.
Adrian Prantl75819ae2016-04-15 15:57:41 +0000541 if (isa<DbgInfoIntrinsic>(&I)) continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000542
Adrian Prantl75819ae2016-04-15 15:57:41 +0000543 const DebugLoc &Loc = I.getDebugLoc();
Duncan P. N. Exon Smithec819c02015-03-30 19:49:49 +0000544 if (!Loc)
545 continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000546
547 // Artificial lines such as calls to the global constructors.
548 if (Loc.getLine() == 0) continue;
549
Nick Lewycky6404d972011-11-27 23:22:20 +0000550 if (Line == Loc.getLine()) continue;
551 Line = Loc.getLine();
Duncan P. N. Exon Smithec819c02015-03-30 19:49:49 +0000552 if (SP != getDISubprogram(Loc.getScope()))
553 continue;
Nick Lewycky6404d972011-11-27 23:22:20 +0000554
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +0000555 GCOVLines &Lines = Block.getFile(SP->getFilename());
Nick Lewycky6404d972011-11-27 23:22:20 +0000556 Lines.addLine(Loc.getLine());
557 }
558 }
David Blaikie229de502014-04-21 20:41:55 +0000559 EdgeDestinations += Func.getEdgeDestinations();
Nick Lewycky6404d972011-11-27 23:22:20 +0000560 }
Yuchen Wubabe7492013-11-20 04:15:05 +0000561
Yuchen Wu664dc762013-11-21 04:01:05 +0000562 FileChecksums.push_back(hash_value(EdgeDestinations));
Yuchen Wubabe7492013-11-20 04:15:05 +0000563 out.write("oncg", 4);
564 out.write(ReversedVersion, 4);
Yuchen Wu664dc762013-11-21 04:01:05 +0000565 out.write(reinterpret_cast<char*>(&FileChecksums.back()), 4);
Yuchen Wubabe7492013-11-20 04:15:05 +0000566
David Blaikie229de502014-04-21 20:41:55 +0000567 for (auto &Func : Funcs) {
Yuchen Wu664dc762013-11-21 04:01:05 +0000568 Func->setCfgChecksum(FileChecksums.back());
569 Func->writeOut();
570 }
Yuchen Wubabe7492013-11-20 04:15:05 +0000571
Nick Lewycky6404d972011-11-27 23:22:20 +0000572 out.write("\0\0\0\0\0\0\0\0", 8); // EOF
573 out.close();
Nick Lewycky966edd02011-04-16 01:20:23 +0000574 }
575}
576
Devang Patel2b21d862011-08-17 22:49:38 +0000577bool GCOVProfiler::emitProfileArcs() {
578 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
579 if (!CU_Nodes) return false;
Nick Lewycky966edd02011-04-16 01:20:23 +0000580
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000581 bool Result = false;
Bill Wendling15605172012-05-28 06:10:56 +0000582 bool InsertIndCounterIncrCode = false;
Devang Patel2b21d862011-08-17 22:49:38 +0000583 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
Devang Patel2b21d862011-08-17 22:49:38 +0000584 SmallVector<std::pair<GlobalVariable *, MDNode *>, 8> CountersBySP;
Adrian Prantl75819ae2016-04-15 15:57:41 +0000585 for (auto &F : M->functions()) {
586 DISubprogram *SP = F.getSubprogram();
587 if (!SP) continue;
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000588 if (!functionHasLines(F)) continue;
Devang Patel2b21d862011-08-17 22:49:38 +0000589 if (!Result) Result = true;
590 unsigned Edges = 0;
Adrian Prantl75819ae2016-04-15 15:57:41 +0000591 for (auto &BB : F) {
592 TerminatorInst *TI = BB.getTerminator();
Devang Patel2b21d862011-08-17 22:49:38 +0000593 if (isa<ReturnInst>(TI))
594 ++Edges;
595 else
596 Edges += TI->getNumSuccessors();
597 }
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000598
Devang Patel2b21d862011-08-17 22:49:38 +0000599 ArrayType *CounterTy =
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000600 ArrayType::get(Type::getInt64Ty(*Ctx), Edges);
Devang Patel2b21d862011-08-17 22:49:38 +0000601 GlobalVariable *Counters =
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000602 new GlobalVariable(*M, CounterTy, false,
Nick Lewycky966edd02011-04-16 01:20:23 +0000603 GlobalValue::InternalLinkage,
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000604 Constant::getNullValue(CounterTy),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000605 "__llvm_gcov_ctr");
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +0000606 CountersBySP.push_back(std::make_pair(Counters, SP));
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000607
Devang Patel2b21d862011-08-17 22:49:38 +0000608 UniqueVector<BasicBlock *> ComplexEdgePreds;
609 UniqueVector<BasicBlock *> ComplexEdgeSuccs;
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000610
Devang Patel2b21d862011-08-17 22:49:38 +0000611 unsigned Edge = 0;
Adrian Prantl75819ae2016-04-15 15:57:41 +0000612 for (auto &BB : F) {
613 TerminatorInst *TI = BB.getTerminator();
Devang Patel2b21d862011-08-17 22:49:38 +0000614 int Successors = isa<ReturnInst>(TI) ? 1 : TI->getNumSuccessors();
615 if (Successors) {
Devang Patel2b21d862011-08-17 22:49:38 +0000616 if (Successors == 1) {
Adrian Prantl75819ae2016-04-15 15:57:41 +0000617 IRBuilder<> Builder(&*BB.getFirstInsertionPt());
Devang Patel2b21d862011-08-17 22:49:38 +0000618 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
619 Edge);
620 Value *Count = Builder.CreateLoad(Counter);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000621 Count = Builder.CreateAdd(Count, Builder.getInt64(1));
Devang Patel2b21d862011-08-17 22:49:38 +0000622 Builder.CreateStore(Count, Counter);
623 } else if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
Bill Wendling707f6012013-08-20 23:52:00 +0000624 IRBuilder<> Builder(BI);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000625 Value *Sel = Builder.CreateSelect(BI->getCondition(),
626 Builder.getInt64(Edge),
627 Builder.getInt64(Edge + 1));
Benjamin Kramer3bc1edf2016-07-02 11:41:39 +0000628 Value *Counter = Builder.CreateInBoundsGEP(
629 Counters->getValueType(), Counters, {Builder.getInt64(0), Sel});
Devang Patel2b21d862011-08-17 22:49:38 +0000630 Value *Count = Builder.CreateLoad(Counter);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000631 Count = Builder.CreateAdd(Count, Builder.getInt64(1));
Devang Patel2b21d862011-08-17 22:49:38 +0000632 Builder.CreateStore(Count, Counter);
633 } else {
Adrian Prantl75819ae2016-04-15 15:57:41 +0000634 ComplexEdgePreds.insert(&BB);
Devang Patel2b21d862011-08-17 22:49:38 +0000635 for (int i = 0; i != Successors; ++i)
636 ComplexEdgeSuccs.insert(TI->getSuccessor(i));
637 }
Bill Wendling707f6012013-08-20 23:52:00 +0000638
Devang Patel2b21d862011-08-17 22:49:38 +0000639 Edge += Successors;
Nick Lewycky966edd02011-04-16 01:20:23 +0000640 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000641 }
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000642
Devang Patel2b21d862011-08-17 22:49:38 +0000643 if (!ComplexEdgePreds.empty()) {
644 GlobalVariable *EdgeTable =
Adrian Prantl75819ae2016-04-15 15:57:41 +0000645 buildEdgeLookupTable(&F, Counters,
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000646 ComplexEdgePreds, ComplexEdgeSuccs);
Devang Patel2b21d862011-08-17 22:49:38 +0000647 GlobalVariable *EdgeState = getEdgeStateValue();
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000648
Devang Patel2b21d862011-08-17 22:49:38 +0000649 for (int i = 0, e = ComplexEdgePreds.size(); i != e; ++i) {
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000650 IRBuilder<> Builder(&*ComplexEdgePreds[i + 1]->getFirstInsertionPt());
Nick Lewycky8e94d802013-02-27 05:46:30 +0000651 Builder.CreateStore(Builder.getInt32(i), EdgeState);
Devang Patel2b21d862011-08-17 22:49:38 +0000652 }
Bill Wendling707f6012013-08-20 23:52:00 +0000653
Devang Patel2b21d862011-08-17 22:49:38 +0000654 for (int i = 0, e = ComplexEdgeSuccs.size(); i != e; ++i) {
Bill Wendling707f6012013-08-20 23:52:00 +0000655 // Call runtime to perform increment.
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000656 IRBuilder<> Builder(&*ComplexEdgeSuccs[i + 1]->getFirstInsertionPt());
Devang Patel2b21d862011-08-17 22:49:38 +0000657 Value *CounterPtrArray =
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000658 Builder.CreateConstInBoundsGEP2_64(EdgeTable, 0,
659 i * ComplexEdgePreds.size());
Bill Wendling8ed07492012-05-25 23:55:00 +0000660
661 // Build code to increment the counter.
Bill Wendling15605172012-05-28 06:10:56 +0000662 InsertIndCounterIncrCode = true;
David Blaikieff6409d2015-05-18 22:13:54 +0000663 Builder.CreateCall(getIncrementIndirectCounterFunc(),
664 {EdgeState, CounterPtrArray});
Devang Patel2b21d862011-08-17 22:49:38 +0000665 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000666 }
667 }
Bill Wendlinge85f3492012-06-01 23:14:32 +0000668
Bill Wendlingc3cab812013-03-18 23:04:39 +0000669 Function *WriteoutF = insertCounterWriteout(CountersBySP);
670 Function *FlushF = insertFlush(CountersBySP);
671
672 // Create a small bit of code that registers the "__llvm_gcov_writeout" to
Bill Wendling04d57c72013-03-19 21:03:22 +0000673 // be executed at exit and the "__llvm_gcov_flush" function to be executed
674 // when "__gcov_flush" is called.
Bill Wendlingc3cab812013-03-18 23:04:39 +0000675 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
676 Function *F = Function::Create(FTy, GlobalValue::InternalLinkage,
677 "__llvm_gcov_init", M);
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000678 F->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Bill Wendlingc3cab812013-03-18 23:04:39 +0000679 F->setLinkage(GlobalValue::InternalLinkage);
680 F->addFnAttr(Attribute::NoInline);
681 if (Options.NoRedZone)
682 F->addFnAttr(Attribute::NoRedZone);
683
684 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", F);
685 IRBuilder<> Builder(BB);
686
Bill Wendlingc3cab812013-03-18 23:04:39 +0000687 FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
Bill Wendlingc77e9442013-03-20 21:13:59 +0000688 Type *Params[] = {
689 PointerType::get(FTy, 0),
690 PointerType::get(FTy, 0)
691 };
692 FTy = FunctionType::get(Builder.getVoidTy(), Params, false);
Bill Wendling04d57c72013-03-19 21:03:22 +0000693
Yuchen Wu3197b252013-10-23 20:35:00 +0000694 // Initialize the environment and register the local writeout and flush
Bill Wendlingc77e9442013-03-20 21:13:59 +0000695 // functions.
696 Constant *GCOVInit = M->getOrInsertFunction("llvm_gcov_init", FTy);
David Blaikieff6409d2015-05-18 22:13:54 +0000697 Builder.CreateCall(GCOVInit, {WriteoutF, FlushF});
Bill Wendlingc3cab812013-03-18 23:04:39 +0000698 Builder.CreateRetVoid();
699
700 appendToGlobalCtors(*M, F, 0);
Nick Lewycky966edd02011-04-16 01:20:23 +0000701 }
Bill Wendling15605172012-05-28 06:10:56 +0000702
703 if (InsertIndCounterIncrCode)
704 insertIndirectCounterIncrement();
705
Devang Patel2b21d862011-08-17 22:49:38 +0000706 return Result;
Nick Lewycky966edd02011-04-16 01:20:23 +0000707}
708
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000709// All edges with successors that aren't branches are "complex", because it
710// requires complex logic to pick which counter to update.
711GlobalVariable *GCOVProfiler::buildEdgeLookupTable(
712 Function *F,
713 GlobalVariable *Counters,
714 const UniqueVector<BasicBlock *> &Preds,
715 const UniqueVector<BasicBlock *> &Succs) {
716 // TODO: support invoke, threads. We rely on the fact that nothing can modify
717 // the whole-Module pred edge# between the time we set it and the time we next
718 // read it. Threads and invoke make this untrue.
719
720 // emit [(succs * preds) x i64*], logically [succ x [pred x i64*]].
Benjamin Kramer96e1e392012-11-17 13:49:37 +0000721 size_t TableSize = Succs.size() * Preds.size();
Chris Lattner229907c2011-07-18 04:54:35 +0000722 Type *Int64PtrTy = Type::getInt64PtrTy(*Ctx);
Benjamin Kramer96e1e392012-11-17 13:49:37 +0000723 ArrayType *EdgeTableTy = ArrayType::get(Int64PtrTy, TableSize);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000724
Ahmed Charles56440fd2014-03-06 05:51:42 +0000725 std::unique_ptr<Constant * []> EdgeTable(new Constant *[TableSize]);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000726 Constant *NullValue = Constant::getNullValue(Int64PtrTy);
Benjamin Kramer96e1e392012-11-17 13:49:37 +0000727 for (size_t i = 0; i != TableSize; ++i)
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000728 EdgeTable[i] = NullValue;
729
730 unsigned Edge = 0;
Benjamin Kramer135f7352016-06-26 12:28:59 +0000731 for (BasicBlock &BB : *F) {
732 TerminatorInst *TI = BB.getTerminator();
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000733 int Successors = isa<ReturnInst>(TI) ? 1 : TI->getNumSuccessors();
Nick Lewycky6aa79492011-04-28 21:35:49 +0000734 if (Successors > 1 && !isa<BranchInst>(TI) && !isa<ReturnInst>(TI)) {
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000735 for (int i = 0; i != Successors; ++i) {
736 BasicBlock *Succ = TI->getSuccessor(i);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000737 IRBuilder<> Builder(Succ);
738 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000739 Edge + i);
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000740 EdgeTable[((Succs.idFor(Succ) - 1) * Preds.size()) +
Benjamin Kramer135f7352016-06-26 12:28:59 +0000741 (Preds.idFor(&BB) - 1)] = cast<Constant>(Counter);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000742 }
743 }
744 Edge += Successors;
745 }
746
747 GlobalVariable *EdgeTableGV =
748 new GlobalVariable(
749 *M, EdgeTableTy, true, GlobalValue::InternalLinkage,
Craig Toppere1d12942014-08-27 05:25:25 +0000750 ConstantArray::get(EdgeTableTy,
751 makeArrayRef(&EdgeTable[0],TableSize)),
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000752 "__llvm_gcda_edge_table");
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000753 EdgeTableGV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000754 return EdgeTableGV;
755}
756
Nick Lewycky966edd02011-04-16 01:20:23 +0000757Constant *GCOVProfiler::getStartFileFunc() {
Nick Lewycky492afe82013-03-07 08:28:49 +0000758 Type *Args[] = {
759 Type::getInt8PtrTy(*Ctx), // const char *orig_filename
760 Type::getInt8PtrTy(*Ctx), // const char version[4]
Yuchen Wubabe7492013-11-20 04:15:05 +0000761 Type::getInt32Ty(*Ctx), // uint32_t checksum
Nick Lewycky492afe82013-03-07 08:28:49 +0000762 };
763 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000764 return M->getOrInsertFunction("llvm_gcda_start_file", FTy);
765}
766
Bill Wendling15605172012-05-28 06:10:56 +0000767Constant *GCOVProfiler::getIncrementIndirectCounterFunc() {
768 Type *Int32Ty = Type::getInt32Ty(*Ctx);
Bill Wendling8ed07492012-05-25 23:55:00 +0000769 Type *Int64Ty = Type::getInt64Ty(*Ctx);
Bill Wendling15605172012-05-28 06:10:56 +0000770 Type *Args[] = {
Micah Villmow51e72462012-10-24 17:25:11 +0000771 Int32Ty->getPointerTo(), // uint32_t *predecessor
772 Int64Ty->getPointerTo()->getPointerTo() // uint64_t **counters
Bill Wendling15605172012-05-28 06:10:56 +0000773 };
774 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
775 return M->getOrInsertFunction("__llvm_gcov_indirect_counter_increment", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000776}
777
778Constant *GCOVProfiler::getEmitFunctionFunc() {
Yuchen Wubabe7492013-11-20 04:15:05 +0000779 Type *Args[] = {
Nick Lewycky4f9c3672011-05-05 02:46:38 +0000780 Type::getInt32Ty(*Ctx), // uint32_t ident
781 Type::getInt8PtrTy(*Ctx), // const char *function_name
Daniel Jasper87a24d52013-12-04 08:57:17 +0000782 Type::getInt32Ty(*Ctx), // uint32_t func_checksum
Nick Lewycky88f1d0d2013-03-09 01:33:06 +0000783 Type::getInt8Ty(*Ctx), // uint8_t use_extra_checksum
Yuchen Wubabe7492013-11-20 04:15:05 +0000784 Type::getInt32Ty(*Ctx), // uint32_t cfg_checksum
Nick Lewycky4f9c3672011-05-05 02:46:38 +0000785 };
Bill Wendling8ed07492012-05-25 23:55:00 +0000786 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000787 return M->getOrInsertFunction("llvm_gcda_emit_function", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000788}
789
790Constant *GCOVProfiler::getEmitArcsFunc() {
Jay Foadb804a2b2011-07-12 14:06:48 +0000791 Type *Args[] = {
Nick Lewycky966edd02011-04-16 01:20:23 +0000792 Type::getInt32Ty(*Ctx), // uint32_t num_counters
793 Type::getInt64PtrTy(*Ctx), // uint64_t *counters
794 };
Nick Lewycky492afe82013-03-07 08:28:49 +0000795 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000796 return M->getOrInsertFunction("llvm_gcda_emit_arcs", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000797}
798
Yuchen Wu062f24c2013-11-12 04:59:08 +0000799Constant *GCOVProfiler::getSummaryInfoFunc() {
800 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
801 return M->getOrInsertFunction("llvm_gcda_summary_info", FTy);
802}
803
Nick Lewycky966edd02011-04-16 01:20:23 +0000804Constant *GCOVProfiler::getEndFileFunc() {
Chris Lattner229907c2011-07-18 04:54:35 +0000805 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000806 return M->getOrInsertFunction("llvm_gcda_end_file", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000807}
808
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000809GlobalVariable *GCOVProfiler::getEdgeStateValue() {
810 GlobalVariable *GV = M->getGlobalVariable("__llvm_gcov_global_state_pred");
811 if (!GV) {
812 GV = new GlobalVariable(*M, Type::getInt32Ty(*Ctx), false,
813 GlobalValue::InternalLinkage,
814 ConstantInt::get(Type::getInt32Ty(*Ctx),
815 0xffffffff),
816 "__llvm_gcov_global_state_pred");
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000817 GV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000818 }
819 return GV;
820}
Nick Lewycky966edd02011-04-16 01:20:23 +0000821
Bill Wendlingc3cab812013-03-18 23:04:39 +0000822Function *GCOVProfiler::insertCounterWriteout(
Bill Wendlinge8aee6b2012-08-29 18:45:41 +0000823 ArrayRef<std::pair<GlobalVariable *, MDNode *> > CountersBySP) {
Bill Wendling2e6e8662012-09-13 00:09:55 +0000824 FunctionType *WriteoutFTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
825 Function *WriteoutF = M->getFunction("__llvm_gcov_writeout");
826 if (!WriteoutF)
827 WriteoutF = Function::Create(WriteoutFTy, GlobalValue::InternalLinkage,
828 "__llvm_gcov_writeout", M);
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000829 WriteoutF->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000830 WriteoutF->addFnAttr(Attribute::NoInline);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000831 if (Options.NoRedZone)
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000832 WriteoutF->addFnAttr(Attribute::NoRedZone);
Bill Wendling2e6e8662012-09-13 00:09:55 +0000833
834 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", WriteoutF);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000835 IRBuilder<> Builder(BB);
Nick Lewycky966edd02011-04-16 01:20:23 +0000836
837 Constant *StartFile = getStartFileFunc();
838 Constant *EmitFunction = getEmitFunctionFunc();
839 Constant *EmitArcs = getEmitArcsFunc();
Yuchen Wu062f24c2013-11-12 04:59:08 +0000840 Constant *SummaryInfo = getSummaryInfoFunc();
Nick Lewycky966edd02011-04-16 01:20:23 +0000841 Constant *EndFile = getEndFileFunc();
842
Devang Patel2b21d862011-08-17 22:49:38 +0000843 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
844 if (CU_Nodes) {
845 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000846 auto *CU = cast<DICompileUnit>(CU_Nodes->getOperand(i));
Vedant Kumar61035fa2016-01-21 17:04:42 +0000847
848 // Skip module skeleton (and module) CUs.
849 if (CU->getDWOId())
850 continue;
851
Bill Wendling85722f42013-03-28 22:40:08 +0000852 std::string FilenameGcda = mangleName(CU, "gcda");
Yuchen Wuc15bf892013-12-04 19:18:23 +0000853 uint32_t CfgChecksum = FileChecksums.empty() ? 0 : FileChecksums[i];
David Blaikieff6409d2015-05-18 22:13:54 +0000854 Builder.CreateCall(StartFile,
855 {Builder.CreateGlobalStringPtr(FilenameGcda),
Yuchen Wubabe7492013-11-20 04:15:05 +0000856 Builder.CreateGlobalStringPtr(ReversedVersion),
David Blaikieff6409d2015-05-18 22:13:54 +0000857 Builder.getInt32(CfgChecksum)});
Nick Lewycky03aed112013-03-09 02:06:37 +0000858 for (unsigned j = 0, e = CountersBySP.size(); j != e; ++j) {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000859 auto *SP = cast_or_null<DISubprogram>(CountersBySP[j].second);
Yuchen Wuc15bf892013-12-04 19:18:23 +0000860 uint32_t FuncChecksum = Funcs.empty() ? 0 : Funcs[j]->getFuncChecksum();
David Blaikieff6409d2015-05-18 22:13:54 +0000861 Builder.CreateCall(
862 EmitFunction,
863 {Builder.getInt32(j),
864 Options.FunctionNamesInData
865 ? Builder.CreateGlobalStringPtr(getFunctionName(SP))
866 : Constant::getNullValue(Builder.getInt8PtrTy()),
867 Builder.getInt32(FuncChecksum),
868 Builder.getInt8(Options.UseCfgChecksum),
869 Builder.getInt32(CfgChecksum)});
Nick Lewycky88f1d0d2013-03-09 01:33:06 +0000870
Nick Lewycky03aed112013-03-09 02:06:37 +0000871 GlobalVariable *GV = CountersBySP[j].first;
Devang Patel2b21d862011-08-17 22:49:38 +0000872 unsigned Arcs =
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000873 cast<ArrayType>(GV->getValueType())->getNumElements();
David Blaikieff6409d2015-05-18 22:13:54 +0000874 Builder.CreateCall(EmitArcs, {Builder.getInt32(Arcs),
875 Builder.CreateConstGEP2_64(GV, 0, 0)});
Devang Patel2b21d862011-08-17 22:49:38 +0000876 }
David Blaikieff6409d2015-05-18 22:13:54 +0000877 Builder.CreateCall(SummaryInfo, {});
878 Builder.CreateCall(EndFile, {});
Nick Lewycky966edd02011-04-16 01:20:23 +0000879 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000880 }
Bill Wendlingc3cab812013-03-18 23:04:39 +0000881
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000882 Builder.CreateRetVoid();
Bill Wendlingc3cab812013-03-18 23:04:39 +0000883 return WriteoutF;
Nick Lewycky966edd02011-04-16 01:20:23 +0000884}
Bill Wendling15605172012-05-28 06:10:56 +0000885
886void GCOVProfiler::insertIndirectCounterIncrement() {
887 Function *Fn =
888 cast<Function>(GCOVProfiler::getIncrementIndirectCounterFunc());
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000889 Fn->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Bill Wendling15605172012-05-28 06:10:56 +0000890 Fn->setLinkage(GlobalValue::InternalLinkage);
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000891 Fn->addFnAttr(Attribute::NoInline);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000892 if (Options.NoRedZone)
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000893 Fn->addFnAttr(Attribute::NoRedZone);
Bill Wendling15605172012-05-28 06:10:56 +0000894
Bill Wendling15605172012-05-28 06:10:56 +0000895 // Create basic blocks for function.
896 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", Fn);
897 IRBuilder<> Builder(BB);
898
899 BasicBlock *PredNotNegOne = BasicBlock::Create(*Ctx, "", Fn);
900 BasicBlock *CounterEnd = BasicBlock::Create(*Ctx, "", Fn);
901 BasicBlock *Exit = BasicBlock::Create(*Ctx, "exit", Fn);
902
903 // uint32_t pred = *predecessor;
904 // if (pred == 0xffffffff) return;
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000905 Argument *Arg = &*Fn->arg_begin();
Bill Wendling15605172012-05-28 06:10:56 +0000906 Arg->setName("predecessor");
907 Value *Pred = Builder.CreateLoad(Arg, "pred");
Nick Lewycky8e94d802013-02-27 05:46:30 +0000908 Value *Cond = Builder.CreateICmpEQ(Pred, Builder.getInt32(0xffffffff));
Bill Wendling15605172012-05-28 06:10:56 +0000909 BranchInst::Create(Exit, PredNotNegOne, Cond, BB);
910
911 Builder.SetInsertPoint(PredNotNegOne);
912
913 // uint64_t *counter = counters[pred];
914 // if (!counter) return;
Nick Lewycky8e94d802013-02-27 05:46:30 +0000915 Value *ZExtPred = Builder.CreateZExt(Pred, Builder.getInt64Ty());
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000916 Arg = &*std::next(Fn->arg_begin());
Bill Wendling15605172012-05-28 06:10:56 +0000917 Arg->setName("counters");
David Blaikie93c54442015-04-03 19:41:44 +0000918 Value *GEP = Builder.CreateGEP(Type::getInt64PtrTy(*Ctx), Arg, ZExtPred);
Bill Wendling15605172012-05-28 06:10:56 +0000919 Value *Counter = Builder.CreateLoad(GEP, "counter");
Nick Lewycky625f3952013-02-27 06:21:30 +0000920 Cond = Builder.CreateICmpEQ(Counter,
921 Constant::getNullValue(
922 Builder.getInt64Ty()->getPointerTo()));
Bill Wendling15605172012-05-28 06:10:56 +0000923 Builder.CreateCondBr(Cond, Exit, CounterEnd);
924
925 // ++*counter;
926 Builder.SetInsertPoint(CounterEnd);
927 Value *Add = Builder.CreateAdd(Builder.CreateLoad(Counter),
Nick Lewycky8e94d802013-02-27 05:46:30 +0000928 Builder.getInt64(1));
Bill Wendling15605172012-05-28 06:10:56 +0000929 Builder.CreateStore(Add, Counter);
930 Builder.CreateBr(Exit);
931
932 // Fill in the exit block.
933 Builder.SetInsertPoint(Exit);
934 Builder.CreateRetVoid();
935}
Bill Wendling2e6e8662012-09-13 00:09:55 +0000936
Bill Wendlingc3cab812013-03-18 23:04:39 +0000937Function *GCOVProfiler::
Bill Wendling2e6e8662012-09-13 00:09:55 +0000938insertFlush(ArrayRef<std::pair<GlobalVariable*, MDNode*> > CountersBySP) {
939 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
Bill Wendlingc3cab812013-03-18 23:04:39 +0000940 Function *FlushF = M->getFunction("__llvm_gcov_flush");
Bill Wendling2e6e8662012-09-13 00:09:55 +0000941 if (!FlushF)
942 FlushF = Function::Create(FTy, GlobalValue::InternalLinkage,
Bill Wendlingc3cab812013-03-18 23:04:39 +0000943 "__llvm_gcov_flush", M);
Bill Wendling2e6e8662012-09-13 00:09:55 +0000944 else
945 FlushF->setLinkage(GlobalValue::InternalLinkage);
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000946 FlushF->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000947 FlushF->addFnAttr(Attribute::NoInline);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000948 if (Options.NoRedZone)
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000949 FlushF->addFnAttr(Attribute::NoRedZone);
Bill Wendling2e6e8662012-09-13 00:09:55 +0000950
Bill Wendling2e6e8662012-09-13 00:09:55 +0000951 BasicBlock *Entry = BasicBlock::Create(*Ctx, "entry", FlushF);
952
953 // Write out the current counters.
954 Constant *WriteoutF = M->getFunction("__llvm_gcov_writeout");
955 assert(WriteoutF && "Need to create the writeout function first!");
956
957 IRBuilder<> Builder(Entry);
David Blaikieff6409d2015-05-18 22:13:54 +0000958 Builder.CreateCall(WriteoutF, {});
Bill Wendling2e6e8662012-09-13 00:09:55 +0000959
Bill Wendlingfb1f6682012-09-13 14:32:30 +0000960 // Zero out the counters.
Benjamin Kramer135f7352016-06-26 12:28:59 +0000961 for (const auto &I : CountersBySP) {
962 GlobalVariable *GV = I.first;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000963 Constant *Null = Constant::getNullValue(GV->getValueType());
Bill Wendling8d26bc32012-09-14 22:35:49 +0000964 Builder.CreateStore(Null, GV);
Bill Wendlingfb1f6682012-09-13 14:32:30 +0000965 }
Bill Wendling2e6e8662012-09-13 00:09:55 +0000966
967 Type *RetTy = FlushF->getReturnType();
968 if (RetTy == Type::getVoidTy(*Ctx))
969 Builder.CreateRetVoid();
970 else if (RetTy->isIntegerTy())
Bill Wendlingc3cab812013-03-18 23:04:39 +0000971 // Used if __llvm_gcov_flush was implicitly declared.
Bill Wendling2e6e8662012-09-13 00:09:55 +0000972 Builder.CreateRet(ConstantInt::get(RetTy, 0));
973 else
Bill Wendlingc3cab812013-03-18 23:04:39 +0000974 report_fatal_error("invalid return type for __llvm_gcov_flush");
975
976 return FlushF;
Bill Wendling2e6e8662012-09-13 00:09:55 +0000977}