blob: 5af938beaeda35a8116f307d7c5ea73b02eb0973 [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/Transforms/Instrumentation.h"
Nick Lewycky966edd02011-04-16 01:20:23 +000018#include "llvm/ADT/DenseMap.h"
Yuchen Wubabe7492013-11-20 04:15:05 +000019#include "llvm/ADT/Hashing.h"
Nick Lewycky966edd02011-04-16 01:20:23 +000020#include "llvm/ADT/STLExtras.h"
Chandler Carruthaafe0912012-06-29 12:38:19 +000021#include "llvm/ADT/Statistic.h"
Nick Lewycky966edd02011-04-16 01:20:23 +000022#include "llvm/ADT/StringExtras.h"
23#include "llvm/ADT/StringMap.h"
24#include "llvm/ADT/UniqueVector.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"
38#include "llvm/Transforms/Utils/ModuleUtils.h"
Nick Lewycky0fdd0192013-06-18 06:38:21 +000039#include <algorithm>
David Blaikie229de502014-04-21 20:41:55 +000040#include <memory>
Nick Lewycky966edd02011-04-16 01:20:23 +000041#include <string>
42#include <utility>
43using namespace llvm;
44
Chandler Carruth964daaa2014-04-22 02:55:47 +000045#define DEBUG_TYPE "insert-gcov-profiling"
46
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000047static cl::opt<std::string>
48DefaultGCOVVersion("default-gcov-version", cl::init("402*"), cl::Hidden,
49 cl::ValueRequired);
50
51GCOVOptions GCOVOptions::getDefault() {
52 GCOVOptions Options;
53 Options.EmitNotes = true;
54 Options.EmitData = true;
55 Options.UseCfgChecksum = false;
56 Options.NoRedZone = false;
57 Options.FunctionNamesInData = true;
58
59 if (DefaultGCOVVersion.size() != 4) {
60 llvm::report_fatal_error(std::string("Invalid -default-gcov-version: ") +
61 DefaultGCOVVersion);
62 }
63 memcpy(Options.Version, DefaultGCOVVersion.c_str(), 4);
64 return Options;
65}
66
Nick Lewycky966edd02011-04-16 01:20:23 +000067namespace {
Yuchen Wubabe7492013-11-20 04:15:05 +000068 class GCOVFunction;
69
Nick Lewycky966edd02011-04-16 01:20:23 +000070 class GCOVProfiler : public ModulePass {
Nick Lewycky966edd02011-04-16 01:20:23 +000071 public:
72 static char ID;
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000073 GCOVProfiler() : ModulePass(ID), Options(GCOVOptions::getDefault()) {
Yuchen Wubabe7492013-11-20 04:15:05 +000074 init();
Nick Lewycky8e0a38f2011-04-21 01:56:25 +000075 }
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000076 GCOVProfiler(const GCOVOptions &Options) : ModulePass(ID), Options(Options){
77 assert((Options.EmitNotes || Options.EmitData) &&
78 "GCOVProfiler asked to do nothing?");
Yuchen Wubabe7492013-11-20 04:15:05 +000079 init();
80 }
Craig Topper3e4c6972014-03-05 09:10:37 +000081 const char *getPassName() const override {
Nick Lewycky966edd02011-04-16 01:20:23 +000082 return "GCOV Profiler";
83 }
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000084
Nick Lewycky966edd02011-04-16 01:20:23 +000085 private:
Yuchen Wubabe7492013-11-20 04:15:05 +000086 void init() {
87 ReversedVersion[0] = Options.Version[3];
88 ReversedVersion[1] = Options.Version[2];
89 ReversedVersion[2] = Options.Version[1];
90 ReversedVersion[3] = Options.Version[0];
91 ReversedVersion[4] = '\0';
92 initializeGCOVProfilerPass(*PassRegistry::getPassRegistry());
93 }
Craig Topper3e4c6972014-03-05 09:10:37 +000094 bool runOnModule(Module &M) override;
Nick Lewycky6d9f0612011-05-04 04:03:04 +000095
Nick Lewyckyad145502013-03-13 22:55:42 +000096 // Create the .gcno files for the Module based on DebugInfo.
97 void emitProfileNotes();
Nick Lewycky966edd02011-04-16 01:20:23 +000098
Nick Lewyckyc5ea8522011-04-16 02:05:18 +000099 // Modify the program to track transitions along edges and call into the
100 // profiling runtime to emit .gcda files when run.
Devang Patel2b21d862011-08-17 22:49:38 +0000101 bool emitProfileArcs();
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000102
Nick Lewycky966edd02011-04-16 01:20:23 +0000103 // Get pointers to the functions in the runtime library.
104 Constant *getStartFileFunc();
Bill Wendling15605172012-05-28 06:10:56 +0000105 Constant *getIncrementIndirectCounterFunc();
Nick Lewycky966edd02011-04-16 01:20:23 +0000106 Constant *getEmitFunctionFunc();
107 Constant *getEmitArcsFunc();
Yuchen Wu062f24c2013-11-12 04:59:08 +0000108 Constant *getSummaryInfoFunc();
Bill Wendling04d57c72013-03-19 21:03:22 +0000109 Constant *getDeleteWriteoutFunctionListFunc();
Bill Wendlingc3cab812013-03-18 23:04:39 +0000110 Constant *getDeleteFlushFunctionListFunc();
Nick Lewycky966edd02011-04-16 01:20:23 +0000111 Constant *getEndFileFunc();
112
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000113 // Create or retrieve an i32 state value that is used to represent the
114 // pred block number for certain non-trivial edges.
115 GlobalVariable *getEdgeStateValue();
116
117 // Produce a table of pointers to counters, by predecessor and successor
118 // block number.
119 GlobalVariable *buildEdgeLookupTable(Function *F,
120 GlobalVariable *Counter,
Nick Lewyckyad145502013-03-13 22:55:42 +0000121 const UniqueVector<BasicBlock *>&Preds,
122 const UniqueVector<BasicBlock*>&Succs);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000123
Nick Lewycky966edd02011-04-16 01:20:23 +0000124 // Add the function to write out all our counters to the global destructor
125 // list.
Bill Wendlingc3cab812013-03-18 23:04:39 +0000126 Function *insertCounterWriteout(ArrayRef<std::pair<GlobalVariable*,
127 MDNode*> >);
128 Function *insertFlush(ArrayRef<std::pair<GlobalVariable*, MDNode*> >);
Bill Wendling15605172012-05-28 06:10:56 +0000129 void insertIndirectCounterIncrement();
Nick Lewycky966edd02011-04-16 01:20:23 +0000130
Bill Wendling85722f42013-03-28 22:40:08 +0000131 std::string mangleName(DICompileUnit CU, const char *NewStem);
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000132
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000133 GCOVOptions Options;
134
135 // Reversed, NUL-terminated copy of Options.Version.
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000136 char ReversedVersion[5];
Yuchen Wubabe7492013-11-20 04:15:05 +0000137 // Checksum, produced by hash of EdgeDestinations
Yuchen Wu664dc762013-11-21 04:01:05 +0000138 SmallVector<uint32_t, 4> FileChecksums;
Nick Lewycky8e0a38f2011-04-21 01:56:25 +0000139
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000140 Module *M;
Nick Lewycky966edd02011-04-16 01:20:23 +0000141 LLVMContext *Ctx;
David Blaikie229de502014-04-21 20:41:55 +0000142 SmallVector<std::unique_ptr<GCOVFunction>, 16> Funcs;
Nick Lewycky966edd02011-04-16 01:20:23 +0000143 };
144}
145
146char GCOVProfiler::ID = 0;
147INITIALIZE_PASS(GCOVProfiler, "insert-gcov-profiling",
148 "Insert instrumentation for GCOV profiling", false, false)
149
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000150ModulePass *llvm::createGCOVProfilerPass(const GCOVOptions &Options) {
151 return new GCOVProfiler(Options);
Nick Lewycky8e0a38f2011-04-21 01:56:25 +0000152}
Nick Lewycky966edd02011-04-16 01:20:23 +0000153
Yuchen Wubabe7492013-11-20 04:15:05 +0000154static StringRef getFunctionName(DISubprogram SP) {
Nick Lewyckyd6718632013-03-19 01:37:55 +0000155 if (!SP.getLinkageName().empty())
156 return SP.getLinkageName();
157 return SP.getName();
158}
159
Nick Lewycky966edd02011-04-16 01:20:23 +0000160namespace {
161 class GCOVRecord {
162 protected:
Craig Topper1c4d6672013-07-17 03:43:10 +0000163 static const char *const LinesTag;
164 static const char *const FunctionTag;
165 static const char *const BlockTag;
166 static const char *const EdgeTag;
Nick Lewycky966edd02011-04-16 01:20:23 +0000167
168 GCOVRecord() {}
169
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000170 void writeBytes(const char *Bytes, int Size) {
171 os->write(Bytes, Size);
Nick Lewycky966edd02011-04-16 01:20:23 +0000172 }
173
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000174 void write(uint32_t i) {
175 writeBytes(reinterpret_cast<char*>(&i), 4);
Nick Lewycky966edd02011-04-16 01:20:23 +0000176 }
177
178 // Returns the length measured in 4-byte blocks that will be used to
179 // represent this string in a GCOV file
Craig Topper24048c92013-07-17 03:54:53 +0000180 static unsigned lengthOfGCOVString(StringRef s) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000181 // A GCOV string is a length, followed by a NUL, then between 0 and 3 NULs
Nick Lewyckyed749d82011-04-21 02:48:39 +0000182 // padding out to the next 4-byte word. The length is measured in 4-byte
183 // words including padding, not bytes of actual string.
Nick Lewyckya7028842011-05-05 23:52:18 +0000184 return (s.size() / 4) + 1;
Nick Lewycky966edd02011-04-16 01:20:23 +0000185 }
186
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000187 void writeGCOVString(StringRef s) {
188 uint32_t Len = lengthOfGCOVString(s);
189 write(Len);
190 writeBytes(s.data(), s.size());
Nick Lewycky966edd02011-04-16 01:20:23 +0000191
192 // Write 1 to 4 bytes of NUL padding.
Nick Lewycky6aa79492011-04-28 21:35:49 +0000193 assert((unsigned)(4 - (s.size() % 4)) > 0);
194 assert((unsigned)(4 - (s.size() % 4)) <= 4);
195 writeBytes("\0\0\0\0", 4 - (s.size() % 4));
Nick Lewycky966edd02011-04-16 01:20:23 +0000196 }
197
198 raw_ostream *os;
199 };
Craig Topper1c4d6672013-07-17 03:43:10 +0000200 const char *const GCOVRecord::LinesTag = "\0\0\x45\x01";
201 const char *const GCOVRecord::FunctionTag = "\0\0\0\1";
202 const char *const GCOVRecord::BlockTag = "\0\0\x41\x01";
203 const char *const GCOVRecord::EdgeTag = "\0\0\x43\x01";
Nick Lewycky966edd02011-04-16 01:20:23 +0000204
205 class GCOVFunction;
206 class GCOVBlock;
207
208 // Constructed only by requesting it from a GCOVBlock, this object stores a
Devang Pateladd1f172011-09-20 18:35:00 +0000209 // list of line numbers and a single filename, representing lines that belong
210 // to the block.
Nick Lewycky966edd02011-04-16 01:20:23 +0000211 class GCOVLines : public GCOVRecord {
212 public:
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000213 void addLine(uint32_t Line) {
Nick Lewycky5f53ddd2014-06-03 04:25:36 +0000214 assert(Line != 0 && "Line zero is not a valid real line number.");
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000215 Lines.push_back(Line);
Nick Lewycky966edd02011-04-16 01:20:23 +0000216 }
217
Craig Topper24048c92013-07-17 03:54:53 +0000218 uint32_t length() const {
Nick Lewycky6404d972011-11-27 23:22:20 +0000219 // Here 2 = 1 for string length + 1 for '0' id#.
Devang Pateladd1f172011-09-20 18:35:00 +0000220 return lengthOfGCOVString(Filename) + 2 + Lines.size();
Nick Lewycky966edd02011-04-16 01:20:23 +0000221 }
222
Devang Pateladd1f172011-09-20 18:35:00 +0000223 void writeOut() {
224 write(0);
225 writeGCOVString(Filename);
226 for (int i = 0, e = Lines.size(); i != e; ++i)
227 write(Lines[i]);
228 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000229
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000230 GCOVLines(StringRef F, raw_ostream *os)
Devang Pateladd1f172011-09-20 18:35:00 +0000231 : Filename(F) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000232 this->os = os;
233 }
234
Devang Patel7d06f5c2011-09-20 18:48:56 +0000235 private:
Devang Pateladd1f172011-09-20 18:35:00 +0000236 StringRef Filename;
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000237 SmallVector<uint32_t, 32> Lines;
Nick Lewycky966edd02011-04-16 01:20:23 +0000238 };
239
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000240
Nick Lewycky966edd02011-04-16 01:20:23 +0000241 // Represent a basic block in GCOV. Each block has a unique number in the
242 // function, number of lines belonging to each block, and a set of edges to
243 // other blocks.
244 class GCOVBlock : public GCOVRecord {
245 public:
Devang Patel9cb1fc02011-09-20 17:55:19 +0000246 GCOVLines &getFile(StringRef Filename) {
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000247 GCOVLines *&Lines = LinesByFile[Filename];
248 if (!Lines) {
Devang Pateladd1f172011-09-20 18:35:00 +0000249 Lines = new GCOVLines(Filename, os);
Nick Lewycky966edd02011-04-16 01:20:23 +0000250 }
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000251 return *Lines;
Nick Lewycky966edd02011-04-16 01:20:23 +0000252 }
253
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000254 void addEdge(GCOVBlock &Successor) {
255 OutEdges.push_back(&Successor);
Nick Lewycky966edd02011-04-16 01:20:23 +0000256 }
257
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000258 void writeOut() {
259 uint32_t Len = 3;
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000260 SmallVector<StringMapEntry<GCOVLines *> *, 32> SortedLinesByFile;
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000261 for (StringMap<GCOVLines *>::iterator I = LinesByFile.begin(),
262 E = LinesByFile.end(); I != E; ++I) {
Devang Pateladd1f172011-09-20 18:35:00 +0000263 Len += I->second->length();
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000264 SortedLinesByFile.push_back(&*I);
Nick Lewycky966edd02011-04-16 01:20:23 +0000265 }
266
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000267 writeBytes(LinesTag, 4);
268 write(Len);
269 write(Number);
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000270
Benjamin Kramer3a377bc2014-03-01 11:47:00 +0000271 std::sort(SortedLinesByFile.begin(), SortedLinesByFile.end(),
272 [](StringMapEntry<GCOVLines *> *LHS,
273 StringMapEntry<GCOVLines *> *RHS) {
274 return LHS->getKey() < RHS->getKey();
275 });
Craig Topperaf0dea12013-07-04 01:31:24 +0000276 for (SmallVectorImpl<StringMapEntry<GCOVLines *> *>::iterator
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000277 I = SortedLinesByFile.begin(), E = SortedLinesByFile.end();
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000278 I != E; ++I)
Nick Lewycky0fdd0192013-06-18 06:38:21 +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
284 ~GCOVBlock() {
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000285 DeleteContainerSeconds(LinesByFile);
Nick Lewycky966edd02011-04-16 01:20:23 +0000286 }
287
288 private:
289 friend class GCOVFunction;
290
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000291 GCOVBlock(uint32_t Number, raw_ostream *os)
292 : Number(Number) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000293 this->os = os;
294 }
295
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000296 uint32_t Number;
297 StringMap<GCOVLines *> LinesByFile;
298 SmallVector<GCOVBlock *, 4> OutEdges;
Nick Lewycky966edd02011-04-16 01:20:23 +0000299 };
300
301 // A function has a unique identifier, a checksum (we leave as zero) and a
302 // set of blocks and a map of edges between blocks. This is the only GCOV
303 // object users can construct, the blocks and lines will be rooted here.
304 class GCOVFunction : public GCOVRecord {
305 public:
Nick Lewycky492afe82013-03-07 08:28:49 +0000306 GCOVFunction(DISubprogram SP, raw_ostream *os, uint32_t Ident,
Yuchen Wubabe7492013-11-20 04:15:05 +0000307 bool UseCfgChecksum) :
308 SP(SP), Ident(Ident), UseCfgChecksum(UseCfgChecksum), CfgChecksum(0) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000309 this->os = os;
310
311 Function *F = SP.getFunction();
Daniel Jasper87a24d52013-12-04 08:57:17 +0000312 DEBUG(dbgs() << "Function: " << getFunctionName(SP) << "\n");
Nick Lewycky966edd02011-04-16 01:20:23 +0000313 uint32_t i = 0;
314 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000315 Blocks[BB] = new GCOVBlock(i++, os);
Nick Lewycky966edd02011-04-16 01:20:23 +0000316 }
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000317 ReturnBlock = new GCOVBlock(i++, os);
Daniel Jasper87a24d52013-12-04 08:57:17 +0000318
Alp Toker61471732014-06-26 00:00:48 +0000319 string_ostream FnNameLine;
320 FnNameLine << getFunctionName(SP) << SP.getLineNumber();
321 FuncChecksum = hash_value(FnNameLine.str());
Nick Lewycky966edd02011-04-16 01:20:23 +0000322 }
323
324 ~GCOVFunction() {
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000325 DeleteContainerSeconds(Blocks);
326 delete ReturnBlock;
Nick Lewycky966edd02011-04-16 01:20:23 +0000327 }
328
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000329 GCOVBlock &getBlock(BasicBlock *BB) {
330 return *Blocks[BB];
Nick Lewycky966edd02011-04-16 01:20:23 +0000331 }
332
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000333 GCOVBlock &getReturnBlock() {
334 return *ReturnBlock;
Nick Lewycky8411b552011-04-21 03:18:00 +0000335 }
336
Yuchen Wubabe7492013-11-20 04:15:05 +0000337 std::string getEdgeDestinations() {
Alp Toker61471732014-06-26 00:00:48 +0000338 string_ostream EdgeDestinations;
Yuchen Wubabe7492013-11-20 04:15:05 +0000339 Function *F = Blocks.begin()->first->getParent();
340 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
341 GCOVBlock &Block = *Blocks[I];
342 for (int i = 0, e = Block.OutEdges.size(); i != e; ++i)
Alp Toker61471732014-06-26 00:00:48 +0000343 EdgeDestinations << Block.OutEdges[i]->Number;
Yuchen Wubabe7492013-11-20 04:15:05 +0000344 }
Alp Toker61471732014-06-26 00:00:48 +0000345 return EdgeDestinations.str();
Yuchen Wubabe7492013-11-20 04:15:05 +0000346 }
347
Daniel Jasper87a24d52013-12-04 08:57:17 +0000348 uint32_t getFuncChecksum() {
349 return FuncChecksum;
350 }
351
Yuchen Wubabe7492013-11-20 04:15:05 +0000352 void setCfgChecksum(uint32_t Checksum) {
353 CfgChecksum = Checksum;
354 }
355
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000356 void writeOut() {
Yuchen Wubabe7492013-11-20 04:15:05 +0000357 writeBytes(FunctionTag, 4);
358 uint32_t BlockLen = 1 + 1 + 1 + lengthOfGCOVString(getFunctionName(SP)) +
359 1 + lengthOfGCOVString(SP.getFilename()) + 1;
360 if (UseCfgChecksum)
361 ++BlockLen;
362 write(BlockLen);
363 write(Ident);
Daniel Jasper87a24d52013-12-04 08:57:17 +0000364 write(FuncChecksum);
Yuchen Wubabe7492013-11-20 04:15:05 +0000365 if (UseCfgChecksum)
366 write(CfgChecksum);
367 writeGCOVString(getFunctionName(SP));
368 writeGCOVString(SP.getFilename());
369 write(SP.getLineNumber());
370
Nick Lewycky966edd02011-04-16 01:20:23 +0000371 // Emit count of blocks.
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000372 writeBytes(BlockTag, 4);
373 write(Blocks.size() + 1);
374 for (int i = 0, e = Blocks.size() + 1; i != e; ++i) {
375 write(0); // No flags on our blocks.
Nick Lewycky966edd02011-04-16 01:20:23 +0000376 }
Nick Lewycky6404d972011-11-27 23:22:20 +0000377 DEBUG(dbgs() << Blocks.size() << " blocks.\n");
Nick Lewycky966edd02011-04-16 01:20:23 +0000378
379 // Emit edges between blocks.
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000380 if (Blocks.empty()) return;
381 Function *F = Blocks.begin()->first->getParent();
382 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
383 GCOVBlock &Block = *Blocks[I];
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000384 if (Block.OutEdges.empty()) continue;
Nick Lewycky966edd02011-04-16 01:20:23 +0000385
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000386 writeBytes(EdgeTag, 4);
387 write(Block.OutEdges.size() * 2 + 1);
388 write(Block.Number);
389 for (int i = 0, e = Block.OutEdges.size(); i != e; ++i) {
Nick Lewycky6404d972011-11-27 23:22:20 +0000390 DEBUG(dbgs() << Block.Number << " -> " << Block.OutEdges[i]->Number
391 << "\n");
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000392 write(Block.OutEdges[i]->Number);
393 write(0); // no flags
Nick Lewycky966edd02011-04-16 01:20:23 +0000394 }
395 }
396
397 // Emit lines for each block.
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000398 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
399 Blocks[I]->writeOut();
Nick Lewycky966edd02011-04-16 01:20:23 +0000400 }
401 }
402
403 private:
Yuchen Wubabe7492013-11-20 04:15:05 +0000404 DISubprogram SP;
405 uint32_t Ident;
Daniel Jasper87a24d52013-12-04 08:57:17 +0000406 uint32_t FuncChecksum;
Yuchen Wubabe7492013-11-20 04:15:05 +0000407 bool UseCfgChecksum;
408 uint32_t CfgChecksum;
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000409 DenseMap<BasicBlock *, GCOVBlock *> Blocks;
410 GCOVBlock *ReturnBlock;
Nick Lewycky966edd02011-04-16 01:20:23 +0000411 };
412}
413
Bill Wendling85722f42013-03-28 22:40:08 +0000414std::string GCOVProfiler::mangleName(DICompileUnit CU, const char *NewStem) {
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000415 if (NamedMDNode *GCov = M->getNamedMetadata("llvm.gcov")) {
416 for (int i = 0, e = GCov->getNumOperands(); i != e; ++i) {
417 MDNode *N = GCov->getOperand(i);
418 if (N->getNumOperands() != 2) continue;
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000419 MDString *GCovFile = dyn_cast<MDString>(N->getOperand(0));
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000420 MDNode *CompileUnit = dyn_cast<MDNode>(N->getOperand(1));
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000421 if (!GCovFile || !CompileUnit) continue;
422 if (CompileUnit == CU) {
Bill Wendling1f6f8c22012-08-30 00:34:21 +0000423 SmallString<128> Filename = GCovFile->getString();
424 sys::path::replace_extension(Filename, NewStem);
425 return Filename.str();
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000426 }
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000427 }
428 }
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000429
Bill Wendling1f6f8c22012-08-30 00:34:21 +0000430 SmallString<128> Filename = CU.getFilename();
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000431 sys::path::replace_extension(Filename, NewStem);
Bill Wendling5aa82392013-03-26 22:47:50 +0000432 StringRef FName = sys::path::filename(Filename);
Bill Wendling5aa82392013-03-26 22:47:50 +0000433 SmallString<128> CurPath;
434 if (sys::fs::current_path(CurPath)) return FName;
435 sys::path::append(CurPath, FName.str());
436 return CurPath.str();
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000437}
438
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000439bool GCOVProfiler::runOnModule(Module &M) {
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000440 this->M = &M;
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000441 Ctx = &M.getContext();
442
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000443 if (Options.EmitNotes) emitProfileNotes();
444 if (Options.EmitData) return emitProfileArcs();
Nick Lewycky8e0a38f2011-04-21 01:56:25 +0000445 return false;
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000446}
447
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000448static bool functionHasLines(Function *F) {
449 // Check whether this function actually has any source lines. Not only
450 // do these waste space, they also can crash gcov.
451 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
452 for (BasicBlock::iterator I = BB->begin(), IE = BB->end();
453 I != IE; ++I) {
Nick Lewyckyce98b432014-06-04 21:47:19 +0000454 // Debug intrinsic locations correspond to the location of the
455 // declaration, not necessarily any statements or expressions.
Nick Lewycky5f53ddd2014-06-03 04:25:36 +0000456 if (isa<DbgInfoIntrinsic>(I)) continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000457
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000458 const DebugLoc &Loc = I->getDebugLoc();
459 if (Loc.isUnknown()) continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000460
461 // Artificial lines such as calls to the global constructors.
462 if (Loc.getLine() == 0) continue;
463
Nick Lewycky5f53ddd2014-06-03 04:25:36 +0000464 return true;
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000465 }
466 }
467 return false;
468}
469
Nick Lewyckyad145502013-03-13 22:55:42 +0000470void GCOVProfiler::emitProfileNotes() {
Devang Patel2b21d862011-08-17 22:49:38 +0000471 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
Nick Lewycky6404d972011-11-27 23:22:20 +0000472 if (!CU_Nodes) return;
Nick Lewycky966edd02011-04-16 01:20:23 +0000473
Nick Lewycky6404d972011-11-27 23:22:20 +0000474 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
475 // Each compile unit gets its own .gcno file. This means that whether we run
476 // this pass over the original .o's as they're produced, or run it after
477 // LTO, we'll generate the same .gcno files.
478
479 DICompileUnit CU(CU_Nodes->getOperand(i));
480 std::string ErrorInfo;
Bill Wendling85722f42013-03-28 22:40:08 +0000481 raw_fd_ostream out(mangleName(CU, "gcno").c_str(), ErrorInfo,
Rafael Espindola90c7f1c2014-02-24 18:20:12 +0000482 sys::fs::F_None);
Yuchen Wubabe7492013-11-20 04:15:05 +0000483 std::string EdgeDestinations;
Nick Lewycky6404d972011-11-27 23:22:20 +0000484
485 DIArray SPs = CU.getSubprograms();
486 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i) {
487 DISubprogram SP(SPs.getElement(i));
Manman Ren983a16c2013-06-28 05:43:10 +0000488 assert((!SP || SP.isSubprogram()) &&
489 "A MDNode in subprograms of a CU should be null or a DISubprogram.");
490 if (!SP)
491 continue;
Nick Lewycky6404d972011-11-27 23:22:20 +0000492
493 Function *F = SP.getFunction();
494 if (!F) continue;
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000495 if (!functionHasLines(F)) continue;
Bob Wilson055a0b42014-01-31 05:24:01 +0000496
497 // gcov expects every function to start with an entry block that has a
498 // single successor, so split the entry block to make sure of that.
Yuchen Wuc87ca322013-11-22 23:07:45 +0000499 BasicBlock &EntryBlock = F->getEntryBlock();
Bob Wilson055a0b42014-01-31 05:24:01 +0000500 BasicBlock::iterator It = EntryBlock.begin();
501 while (isa<AllocaInst>(*It) || isa<DbgInfoIntrinsic>(*It))
502 ++It;
503 EntryBlock.splitBasicBlock(It);
Yuchen Wuc87ca322013-11-22 23:07:45 +0000504
David Blaikie229de502014-04-21 20:41:55 +0000505 Funcs.push_back(
506 make_unique<GCOVFunction>(SP, &out, i, Options.UseCfgChecksum));
507 GCOVFunction &Func = *Funcs.back();
Nick Lewycky6404d972011-11-27 23:22:20 +0000508
509 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
David Blaikie229de502014-04-21 20:41:55 +0000510 GCOVBlock &Block = Func.getBlock(BB);
Nick Lewycky6404d972011-11-27 23:22:20 +0000511 TerminatorInst *TI = BB->getTerminator();
512 if (int successors = TI->getNumSuccessors()) {
513 for (int i = 0; i != successors; ++i) {
David Blaikie229de502014-04-21 20:41:55 +0000514 Block.addEdge(Func.getBlock(TI->getSuccessor(i)));
Nick Lewycky6404d972011-11-27 23:22:20 +0000515 }
516 } else if (isa<ReturnInst>(TI)) {
David Blaikie229de502014-04-21 20:41:55 +0000517 Block.addEdge(Func.getReturnBlock());
Nick Lewycky6404d972011-11-27 23:22:20 +0000518 }
519
520 uint32_t Line = 0;
521 for (BasicBlock::iterator I = BB->begin(), IE = BB->end();
522 I != IE; ++I) {
Nick Lewyckyce98b432014-06-04 21:47:19 +0000523 // Debug intrinsic locations correspond to the location of the
524 // declaration, not necessarily any statements or expressions.
Nick Lewycky5f53ddd2014-06-03 04:25:36 +0000525 if (isa<DbgInfoIntrinsic>(I)) continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000526
Nick Lewycky6404d972011-11-27 23:22:20 +0000527 const DebugLoc &Loc = I->getDebugLoc();
528 if (Loc.isUnknown()) continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000529
530 // Artificial lines such as calls to the global constructors.
531 if (Loc.getLine() == 0) continue;
532
Nick Lewycky6404d972011-11-27 23:22:20 +0000533 if (Line == Loc.getLine()) continue;
534 Line = Loc.getLine();
535 if (SP != getDISubprogram(Loc.getScope(*Ctx))) continue;
536
537 GCOVLines &Lines = Block.getFile(SP.getFilename());
538 Lines.addLine(Loc.getLine());
539 }
540 }
David Blaikie229de502014-04-21 20:41:55 +0000541 EdgeDestinations += Func.getEdgeDestinations();
Nick Lewycky6404d972011-11-27 23:22:20 +0000542 }
Yuchen Wubabe7492013-11-20 04:15:05 +0000543
Yuchen Wu664dc762013-11-21 04:01:05 +0000544 FileChecksums.push_back(hash_value(EdgeDestinations));
Yuchen Wubabe7492013-11-20 04:15:05 +0000545 out.write("oncg", 4);
546 out.write(ReversedVersion, 4);
Yuchen Wu664dc762013-11-21 04:01:05 +0000547 out.write(reinterpret_cast<char*>(&FileChecksums.back()), 4);
Yuchen Wubabe7492013-11-20 04:15:05 +0000548
David Blaikie229de502014-04-21 20:41:55 +0000549 for (auto &Func : Funcs) {
Yuchen Wu664dc762013-11-21 04:01:05 +0000550 Func->setCfgChecksum(FileChecksums.back());
551 Func->writeOut();
552 }
Yuchen Wubabe7492013-11-20 04:15:05 +0000553
Nick Lewycky6404d972011-11-27 23:22:20 +0000554 out.write("\0\0\0\0\0\0\0\0", 8); // EOF
555 out.close();
Nick Lewycky966edd02011-04-16 01:20:23 +0000556 }
557}
558
Devang Patel2b21d862011-08-17 22:49:38 +0000559bool GCOVProfiler::emitProfileArcs() {
560 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
561 if (!CU_Nodes) return false;
Nick Lewycky966edd02011-04-16 01:20:23 +0000562
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000563 bool Result = false;
Bill Wendling15605172012-05-28 06:10:56 +0000564 bool InsertIndCounterIncrCode = false;
Devang Patel2b21d862011-08-17 22:49:38 +0000565 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
566 DICompileUnit CU(CU_Nodes->getOperand(i));
567 DIArray SPs = CU.getSubprograms();
568 SmallVector<std::pair<GlobalVariable *, MDNode *>, 8> CountersBySP;
569 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i) {
570 DISubprogram SP(SPs.getElement(i));
Manman Ren983a16c2013-06-28 05:43:10 +0000571 assert((!SP || SP.isSubprogram()) &&
572 "A MDNode in subprograms of a CU should be null or a DISubprogram.");
573 if (!SP)
574 continue;
Devang Patel2b21d862011-08-17 22:49:38 +0000575 Function *F = SP.getFunction();
576 if (!F) continue;
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000577 if (!functionHasLines(F)) continue;
Devang Patel2b21d862011-08-17 22:49:38 +0000578 if (!Result) Result = true;
579 unsigned Edges = 0;
580 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
581 TerminatorInst *TI = BB->getTerminator();
582 if (isa<ReturnInst>(TI))
583 ++Edges;
584 else
585 Edges += TI->getNumSuccessors();
586 }
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000587
Devang Patel2b21d862011-08-17 22:49:38 +0000588 ArrayType *CounterTy =
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000589 ArrayType::get(Type::getInt64Ty(*Ctx), Edges);
Devang Patel2b21d862011-08-17 22:49:38 +0000590 GlobalVariable *Counters =
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000591 new GlobalVariable(*M, CounterTy, false,
Nick Lewycky966edd02011-04-16 01:20:23 +0000592 GlobalValue::InternalLinkage,
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000593 Constant::getNullValue(CounterTy),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000594 "__llvm_gcov_ctr");
Devang Patel2b21d862011-08-17 22:49:38 +0000595 CountersBySP.push_back(std::make_pair(Counters, (MDNode*)SP));
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000596
Devang Patel2b21d862011-08-17 22:49:38 +0000597 UniqueVector<BasicBlock *> ComplexEdgePreds;
598 UniqueVector<BasicBlock *> ComplexEdgeSuccs;
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000599
Devang Patel2b21d862011-08-17 22:49:38 +0000600 unsigned Edge = 0;
601 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
602 TerminatorInst *TI = BB->getTerminator();
603 int Successors = isa<ReturnInst>(TI) ? 1 : TI->getNumSuccessors();
604 if (Successors) {
Devang Patel2b21d862011-08-17 22:49:38 +0000605 if (Successors == 1) {
Bill Wendling707f6012013-08-20 23:52:00 +0000606 IRBuilder<> Builder(BB->getFirstInsertionPt());
Devang Patel2b21d862011-08-17 22:49:38 +0000607 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
608 Edge);
609 Value *Count = Builder.CreateLoad(Counter);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000610 Count = Builder.CreateAdd(Count, Builder.getInt64(1));
Devang Patel2b21d862011-08-17 22:49:38 +0000611 Builder.CreateStore(Count, Counter);
612 } else if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
Bill Wendling707f6012013-08-20 23:52:00 +0000613 IRBuilder<> Builder(BI);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000614 Value *Sel = Builder.CreateSelect(BI->getCondition(),
615 Builder.getInt64(Edge),
616 Builder.getInt64(Edge + 1));
Devang Patel2b21d862011-08-17 22:49:38 +0000617 SmallVector<Value *, 2> Idx;
Nick Lewycky8e94d802013-02-27 05:46:30 +0000618 Idx.push_back(Builder.getInt64(0));
Devang Patel2b21d862011-08-17 22:49:38 +0000619 Idx.push_back(Sel);
620 Value *Counter = Builder.CreateInBoundsGEP(Counters, Idx);
621 Value *Count = Builder.CreateLoad(Counter);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000622 Count = Builder.CreateAdd(Count, Builder.getInt64(1));
Devang Patel2b21d862011-08-17 22:49:38 +0000623 Builder.CreateStore(Count, Counter);
624 } else {
625 ComplexEdgePreds.insert(BB);
626 for (int i = 0; i != Successors; ++i)
627 ComplexEdgeSuccs.insert(TI->getSuccessor(i));
628 }
Bill Wendling707f6012013-08-20 23:52:00 +0000629
Devang Patel2b21d862011-08-17 22:49:38 +0000630 Edge += Successors;
Nick Lewycky966edd02011-04-16 01:20:23 +0000631 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000632 }
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000633
Devang Patel2b21d862011-08-17 22:49:38 +0000634 if (!ComplexEdgePreds.empty()) {
635 GlobalVariable *EdgeTable =
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000636 buildEdgeLookupTable(F, Counters,
637 ComplexEdgePreds, ComplexEdgeSuccs);
Devang Patel2b21d862011-08-17 22:49:38 +0000638 GlobalVariable *EdgeState = getEdgeStateValue();
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000639
Devang Patel2b21d862011-08-17 22:49:38 +0000640 for (int i = 0, e = ComplexEdgePreds.size(); i != e; ++i) {
Bill Wendling707f6012013-08-20 23:52:00 +0000641 IRBuilder<> Builder(ComplexEdgePreds[i + 1]->getFirstInsertionPt());
Nick Lewycky8e94d802013-02-27 05:46:30 +0000642 Builder.CreateStore(Builder.getInt32(i), EdgeState);
Devang Patel2b21d862011-08-17 22:49:38 +0000643 }
Bill Wendling707f6012013-08-20 23:52:00 +0000644
Devang Patel2b21d862011-08-17 22:49:38 +0000645 for (int i = 0, e = ComplexEdgeSuccs.size(); i != e; ++i) {
Bill Wendling707f6012013-08-20 23:52:00 +0000646 // Call runtime to perform increment.
647 IRBuilder<> Builder(ComplexEdgeSuccs[i+1]->getFirstInsertionPt());
Devang Patel2b21d862011-08-17 22:49:38 +0000648 Value *CounterPtrArray =
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000649 Builder.CreateConstInBoundsGEP2_64(EdgeTable, 0,
650 i * ComplexEdgePreds.size());
Bill Wendling8ed07492012-05-25 23:55:00 +0000651
652 // Build code to increment the counter.
Bill Wendling15605172012-05-28 06:10:56 +0000653 InsertIndCounterIncrCode = true;
654 Builder.CreateCall2(getIncrementIndirectCounterFunc(),
655 EdgeState, CounterPtrArray);
Devang Patel2b21d862011-08-17 22:49:38 +0000656 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000657 }
658 }
Bill Wendlinge85f3492012-06-01 23:14:32 +0000659
Bill Wendlingc3cab812013-03-18 23:04:39 +0000660 Function *WriteoutF = insertCounterWriteout(CountersBySP);
661 Function *FlushF = insertFlush(CountersBySP);
662
663 // Create a small bit of code that registers the "__llvm_gcov_writeout" to
Bill Wendling04d57c72013-03-19 21:03:22 +0000664 // be executed at exit and the "__llvm_gcov_flush" function to be executed
665 // when "__gcov_flush" is called.
Bill Wendlingc3cab812013-03-18 23:04:39 +0000666 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
667 Function *F = Function::Create(FTy, GlobalValue::InternalLinkage,
668 "__llvm_gcov_init", M);
669 F->setUnnamedAddr(true);
670 F->setLinkage(GlobalValue::InternalLinkage);
671 F->addFnAttr(Attribute::NoInline);
672 if (Options.NoRedZone)
673 F->addFnAttr(Attribute::NoRedZone);
674
675 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", F);
676 IRBuilder<> Builder(BB);
677
Bill Wendlingc3cab812013-03-18 23:04:39 +0000678 FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
Bill Wendlingc77e9442013-03-20 21:13:59 +0000679 Type *Params[] = {
680 PointerType::get(FTy, 0),
681 PointerType::get(FTy, 0)
682 };
683 FTy = FunctionType::get(Builder.getVoidTy(), Params, false);
Bill Wendling04d57c72013-03-19 21:03:22 +0000684
Yuchen Wu3197b252013-10-23 20:35:00 +0000685 // Initialize the environment and register the local writeout and flush
Bill Wendlingc77e9442013-03-20 21:13:59 +0000686 // functions.
687 Constant *GCOVInit = M->getOrInsertFunction("llvm_gcov_init", FTy);
688 Builder.CreateCall2(GCOVInit, WriteoutF, FlushF);
Bill Wendlingc3cab812013-03-18 23:04:39 +0000689 Builder.CreateRetVoid();
690
691 appendToGlobalCtors(*M, F, 0);
Nick Lewycky966edd02011-04-16 01:20:23 +0000692 }
Bill Wendling15605172012-05-28 06:10:56 +0000693
694 if (InsertIndCounterIncrCode)
695 insertIndirectCounterIncrement();
696
Devang Patel2b21d862011-08-17 22:49:38 +0000697 return Result;
Nick Lewycky966edd02011-04-16 01:20:23 +0000698}
699
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000700// All edges with successors that aren't branches are "complex", because it
701// requires complex logic to pick which counter to update.
702GlobalVariable *GCOVProfiler::buildEdgeLookupTable(
703 Function *F,
704 GlobalVariable *Counters,
705 const UniqueVector<BasicBlock *> &Preds,
706 const UniqueVector<BasicBlock *> &Succs) {
707 // TODO: support invoke, threads. We rely on the fact that nothing can modify
708 // the whole-Module pred edge# between the time we set it and the time we next
709 // read it. Threads and invoke make this untrue.
710
711 // emit [(succs * preds) x i64*], logically [succ x [pred x i64*]].
Benjamin Kramer96e1e392012-11-17 13:49:37 +0000712 size_t TableSize = Succs.size() * Preds.size();
Chris Lattner229907c2011-07-18 04:54:35 +0000713 Type *Int64PtrTy = Type::getInt64PtrTy(*Ctx);
Benjamin Kramer96e1e392012-11-17 13:49:37 +0000714 ArrayType *EdgeTableTy = ArrayType::get(Int64PtrTy, TableSize);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000715
Ahmed Charles56440fd2014-03-06 05:51:42 +0000716 std::unique_ptr<Constant * []> EdgeTable(new Constant *[TableSize]);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000717 Constant *NullValue = Constant::getNullValue(Int64PtrTy);
Benjamin Kramer96e1e392012-11-17 13:49:37 +0000718 for (size_t i = 0; i != TableSize; ++i)
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000719 EdgeTable[i] = NullValue;
720
721 unsigned Edge = 0;
722 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
723 TerminatorInst *TI = BB->getTerminator();
724 int Successors = isa<ReturnInst>(TI) ? 1 : TI->getNumSuccessors();
Nick Lewycky6aa79492011-04-28 21:35:49 +0000725 if (Successors > 1 && !isa<BranchInst>(TI) && !isa<ReturnInst>(TI)) {
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000726 for (int i = 0; i != Successors; ++i) {
727 BasicBlock *Succ = TI->getSuccessor(i);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000728 IRBuilder<> Builder(Succ);
729 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000730 Edge + i);
731 EdgeTable[((Succs.idFor(Succ)-1) * Preds.size()) +
732 (Preds.idFor(BB)-1)] = cast<Constant>(Counter);
733 }
734 }
735 Edge += Successors;
736 }
737
Benjamin Kramer96e1e392012-11-17 13:49:37 +0000738 ArrayRef<Constant*> V(&EdgeTable[0], TableSize);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000739 GlobalVariable *EdgeTableGV =
740 new GlobalVariable(
741 *M, EdgeTableTy, true, GlobalValue::InternalLinkage,
Jay Foad83be3612011-06-22 09:24:39 +0000742 ConstantArray::get(EdgeTableTy, V),
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000743 "__llvm_gcda_edge_table");
744 EdgeTableGV->setUnnamedAddr(true);
745 return EdgeTableGV;
746}
747
Nick Lewycky966edd02011-04-16 01:20:23 +0000748Constant *GCOVProfiler::getStartFileFunc() {
Nick Lewycky492afe82013-03-07 08:28:49 +0000749 Type *Args[] = {
750 Type::getInt8PtrTy(*Ctx), // const char *orig_filename
751 Type::getInt8PtrTy(*Ctx), // const char version[4]
Yuchen Wubabe7492013-11-20 04:15:05 +0000752 Type::getInt32Ty(*Ctx), // uint32_t checksum
Nick Lewycky492afe82013-03-07 08:28:49 +0000753 };
754 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000755 return M->getOrInsertFunction("llvm_gcda_start_file", FTy);
756}
757
Bill Wendling15605172012-05-28 06:10:56 +0000758Constant *GCOVProfiler::getIncrementIndirectCounterFunc() {
759 Type *Int32Ty = Type::getInt32Ty(*Ctx);
Bill Wendling8ed07492012-05-25 23:55:00 +0000760 Type *Int64Ty = Type::getInt64Ty(*Ctx);
Bill Wendling15605172012-05-28 06:10:56 +0000761 Type *Args[] = {
Micah Villmow51e72462012-10-24 17:25:11 +0000762 Int32Ty->getPointerTo(), // uint32_t *predecessor
763 Int64Ty->getPointerTo()->getPointerTo() // uint64_t **counters
Bill Wendling15605172012-05-28 06:10:56 +0000764 };
765 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
766 return M->getOrInsertFunction("__llvm_gcov_indirect_counter_increment", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000767}
768
769Constant *GCOVProfiler::getEmitFunctionFunc() {
Yuchen Wubabe7492013-11-20 04:15:05 +0000770 Type *Args[] = {
Nick Lewycky4f9c3672011-05-05 02:46:38 +0000771 Type::getInt32Ty(*Ctx), // uint32_t ident
772 Type::getInt8PtrTy(*Ctx), // const char *function_name
Daniel Jasper87a24d52013-12-04 08:57:17 +0000773 Type::getInt32Ty(*Ctx), // uint32_t func_checksum
Nick Lewycky88f1d0d2013-03-09 01:33:06 +0000774 Type::getInt8Ty(*Ctx), // uint8_t use_extra_checksum
Yuchen Wubabe7492013-11-20 04:15:05 +0000775 Type::getInt32Ty(*Ctx), // uint32_t cfg_checksum
Nick Lewycky4f9c3672011-05-05 02:46:38 +0000776 };
Bill Wendling8ed07492012-05-25 23:55:00 +0000777 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000778 return M->getOrInsertFunction("llvm_gcda_emit_function", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000779}
780
781Constant *GCOVProfiler::getEmitArcsFunc() {
Jay Foadb804a2b2011-07-12 14:06:48 +0000782 Type *Args[] = {
Nick Lewycky966edd02011-04-16 01:20:23 +0000783 Type::getInt32Ty(*Ctx), // uint32_t num_counters
784 Type::getInt64PtrTy(*Ctx), // uint64_t *counters
785 };
Nick Lewycky492afe82013-03-07 08:28:49 +0000786 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000787 return M->getOrInsertFunction("llvm_gcda_emit_arcs", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000788}
789
Yuchen Wu062f24c2013-11-12 04:59:08 +0000790Constant *GCOVProfiler::getSummaryInfoFunc() {
791 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
792 return M->getOrInsertFunction("llvm_gcda_summary_info", FTy);
793}
794
Bill Wendling04d57c72013-03-19 21:03:22 +0000795Constant *GCOVProfiler::getDeleteWriteoutFunctionListFunc() {
796 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
797 return M->getOrInsertFunction("llvm_delete_writeout_function_list", FTy);
798}
799
Bill Wendlingc3cab812013-03-18 23:04:39 +0000800Constant *GCOVProfiler::getDeleteFlushFunctionListFunc() {
801 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
802 return M->getOrInsertFunction("llvm_delete_flush_function_list", FTy);
803}
804
Nick Lewycky966edd02011-04-16 01:20:23 +0000805Constant *GCOVProfiler::getEndFileFunc() {
Chris Lattner229907c2011-07-18 04:54:35 +0000806 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000807 return M->getOrInsertFunction("llvm_gcda_end_file", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000808}
809
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000810GlobalVariable *GCOVProfiler::getEdgeStateValue() {
811 GlobalVariable *GV = M->getGlobalVariable("__llvm_gcov_global_state_pred");
812 if (!GV) {
813 GV = new GlobalVariable(*M, Type::getInt32Ty(*Ctx), false,
814 GlobalValue::InternalLinkage,
815 ConstantInt::get(Type::getInt32Ty(*Ctx),
816 0xffffffff),
817 "__llvm_gcov_global_state_pred");
818 GV->setUnnamedAddr(true);
819 }
820 return GV;
821}
Nick Lewycky966edd02011-04-16 01:20:23 +0000822
Bill Wendlingc3cab812013-03-18 23:04:39 +0000823Function *GCOVProfiler::insertCounterWriteout(
Bill Wendlinge8aee6b2012-08-29 18:45:41 +0000824 ArrayRef<std::pair<GlobalVariable *, MDNode *> > CountersBySP) {
Bill Wendling2e6e8662012-09-13 00:09:55 +0000825 FunctionType *WriteoutFTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
826 Function *WriteoutF = M->getFunction("__llvm_gcov_writeout");
827 if (!WriteoutF)
828 WriteoutF = Function::Create(WriteoutFTy, GlobalValue::InternalLinkage,
829 "__llvm_gcov_writeout", M);
Nick Lewycky966edd02011-04-16 01:20:23 +0000830 WriteoutF->setUnnamedAddr(true);
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000831 WriteoutF->addFnAttr(Attribute::NoInline);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000832 if (Options.NoRedZone)
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000833 WriteoutF->addFnAttr(Attribute::NoRedZone);
Bill Wendling2e6e8662012-09-13 00:09:55 +0000834
835 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", WriteoutF);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000836 IRBuilder<> Builder(BB);
Nick Lewycky966edd02011-04-16 01:20:23 +0000837
838 Constant *StartFile = getStartFileFunc();
839 Constant *EmitFunction = getEmitFunctionFunc();
840 Constant *EmitArcs = getEmitArcsFunc();
Yuchen Wu062f24c2013-11-12 04:59:08 +0000841 Constant *SummaryInfo = getSummaryInfoFunc();
Nick Lewycky966edd02011-04-16 01:20:23 +0000842 Constant *EndFile = getEndFileFunc();
843
Devang Patel2b21d862011-08-17 22:49:38 +0000844 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
845 if (CU_Nodes) {
846 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
Bill Wendlingfb1f6682012-09-13 14:32:30 +0000847 DICompileUnit CU(CU_Nodes->getOperand(i));
Bill Wendling85722f42013-03-28 22:40:08 +0000848 std::string FilenameGcda = mangleName(CU, "gcda");
Yuchen Wuc15bf892013-12-04 19:18:23 +0000849 uint32_t CfgChecksum = FileChecksums.empty() ? 0 : FileChecksums[i];
Yuchen Wubabe7492013-11-20 04:15:05 +0000850 Builder.CreateCall3(StartFile,
Nick Lewycky492afe82013-03-07 08:28:49 +0000851 Builder.CreateGlobalStringPtr(FilenameGcda),
Yuchen Wubabe7492013-11-20 04:15:05 +0000852 Builder.CreateGlobalStringPtr(ReversedVersion),
Yuchen Wu2a9d9692013-11-21 04:53:39 +0000853 Builder.getInt32(CfgChecksum));
Nick Lewycky03aed112013-03-09 02:06:37 +0000854 for (unsigned j = 0, e = CountersBySP.size(); j != e; ++j) {
855 DISubprogram SP(CountersBySP[j].second);
Yuchen Wuc15bf892013-12-04 19:18:23 +0000856 uint32_t FuncChecksum = Funcs.empty() ? 0 : Funcs[j]->getFuncChecksum();
Daniel Jasper87a24d52013-12-04 08:57:17 +0000857 Builder.CreateCall5(
Nick Lewyckyd6718632013-03-19 01:37:55 +0000858 EmitFunction, Builder.getInt32(j),
859 Options.FunctionNamesInData ?
860 Builder.CreateGlobalStringPtr(getFunctionName(SP)) :
861 Constant::getNullValue(Builder.getInt8PtrTy()),
Daniel Jasper87a24d52013-12-04 08:57:17 +0000862 Builder.getInt32(FuncChecksum),
Yuchen Wubabe7492013-11-20 04:15:05 +0000863 Builder.getInt8(Options.UseCfgChecksum),
Yuchen Wu2a9d9692013-11-21 04:53:39 +0000864 Builder.getInt32(CfgChecksum));
Nick Lewycky88f1d0d2013-03-09 01:33:06 +0000865
Nick Lewycky03aed112013-03-09 02:06:37 +0000866 GlobalVariable *GV = CountersBySP[j].first;
Devang Patel2b21d862011-08-17 22:49:38 +0000867 unsigned Arcs =
Nick Lewycky966edd02011-04-16 01:20:23 +0000868 cast<ArrayType>(GV->getType()->getElementType())->getNumElements();
Devang Patel2b21d862011-08-17 22:49:38 +0000869 Builder.CreateCall2(EmitArcs,
Nick Lewycky8e94d802013-02-27 05:46:30 +0000870 Builder.getInt32(Arcs),
Devang Patel2b21d862011-08-17 22:49:38 +0000871 Builder.CreateConstGEP2_64(GV, 0, 0));
872 }
Yuchen Wu062f24c2013-11-12 04:59:08 +0000873 Builder.CreateCall(SummaryInfo);
Devang Patel2b21d862011-08-17 22:49:38 +0000874 Builder.CreateCall(EndFile);
Nick Lewycky966edd02011-04-16 01:20:23 +0000875 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000876 }
Bill Wendlingc3cab812013-03-18 23:04:39 +0000877
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000878 Builder.CreateRetVoid();
Bill Wendlingc3cab812013-03-18 23:04:39 +0000879 return WriteoutF;
Nick Lewycky966edd02011-04-16 01:20:23 +0000880}
Bill Wendling15605172012-05-28 06:10:56 +0000881
882void GCOVProfiler::insertIndirectCounterIncrement() {
883 Function *Fn =
884 cast<Function>(GCOVProfiler::getIncrementIndirectCounterFunc());
885 Fn->setUnnamedAddr(true);
886 Fn->setLinkage(GlobalValue::InternalLinkage);
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000887 Fn->addFnAttr(Attribute::NoInline);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000888 if (Options.NoRedZone)
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000889 Fn->addFnAttr(Attribute::NoRedZone);
Bill Wendling15605172012-05-28 06:10:56 +0000890
Bill Wendling15605172012-05-28 06:10:56 +0000891 // Create basic blocks for function.
892 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", Fn);
893 IRBuilder<> Builder(BB);
894
895 BasicBlock *PredNotNegOne = BasicBlock::Create(*Ctx, "", Fn);
896 BasicBlock *CounterEnd = BasicBlock::Create(*Ctx, "", Fn);
897 BasicBlock *Exit = BasicBlock::Create(*Ctx, "exit", Fn);
898
899 // uint32_t pred = *predecessor;
900 // if (pred == 0xffffffff) return;
901 Argument *Arg = Fn->arg_begin();
902 Arg->setName("predecessor");
903 Value *Pred = Builder.CreateLoad(Arg, "pred");
Nick Lewycky8e94d802013-02-27 05:46:30 +0000904 Value *Cond = Builder.CreateICmpEQ(Pred, Builder.getInt32(0xffffffff));
Bill Wendling15605172012-05-28 06:10:56 +0000905 BranchInst::Create(Exit, PredNotNegOne, Cond, BB);
906
907 Builder.SetInsertPoint(PredNotNegOne);
908
909 // uint64_t *counter = counters[pred];
910 // if (!counter) return;
Nick Lewycky8e94d802013-02-27 05:46:30 +0000911 Value *ZExtPred = Builder.CreateZExt(Pred, Builder.getInt64Ty());
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000912 Arg = std::next(Fn->arg_begin());
Bill Wendling15605172012-05-28 06:10:56 +0000913 Arg->setName("counters");
914 Value *GEP = Builder.CreateGEP(Arg, ZExtPred);
915 Value *Counter = Builder.CreateLoad(GEP, "counter");
Nick Lewycky625f3952013-02-27 06:21:30 +0000916 Cond = Builder.CreateICmpEQ(Counter,
917 Constant::getNullValue(
918 Builder.getInt64Ty()->getPointerTo()));
Bill Wendling15605172012-05-28 06:10:56 +0000919 Builder.CreateCondBr(Cond, Exit, CounterEnd);
920
921 // ++*counter;
922 Builder.SetInsertPoint(CounterEnd);
923 Value *Add = Builder.CreateAdd(Builder.CreateLoad(Counter),
Nick Lewycky8e94d802013-02-27 05:46:30 +0000924 Builder.getInt64(1));
Bill Wendling15605172012-05-28 06:10:56 +0000925 Builder.CreateStore(Add, Counter);
926 Builder.CreateBr(Exit);
927
928 // Fill in the exit block.
929 Builder.SetInsertPoint(Exit);
930 Builder.CreateRetVoid();
931}
Bill Wendling2e6e8662012-09-13 00:09:55 +0000932
Bill Wendlingc3cab812013-03-18 23:04:39 +0000933Function *GCOVProfiler::
Bill Wendling2e6e8662012-09-13 00:09:55 +0000934insertFlush(ArrayRef<std::pair<GlobalVariable*, MDNode*> > CountersBySP) {
935 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
Bill Wendlingc3cab812013-03-18 23:04:39 +0000936 Function *FlushF = M->getFunction("__llvm_gcov_flush");
Bill Wendling2e6e8662012-09-13 00:09:55 +0000937 if (!FlushF)
938 FlushF = Function::Create(FTy, GlobalValue::InternalLinkage,
Bill Wendlingc3cab812013-03-18 23:04:39 +0000939 "__llvm_gcov_flush", M);
Bill Wendling2e6e8662012-09-13 00:09:55 +0000940 else
941 FlushF->setLinkage(GlobalValue::InternalLinkage);
942 FlushF->setUnnamedAddr(true);
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000943 FlushF->addFnAttr(Attribute::NoInline);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000944 if (Options.NoRedZone)
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000945 FlushF->addFnAttr(Attribute::NoRedZone);
Bill Wendling2e6e8662012-09-13 00:09:55 +0000946
Bill Wendling2e6e8662012-09-13 00:09:55 +0000947 BasicBlock *Entry = BasicBlock::Create(*Ctx, "entry", FlushF);
948
949 // Write out the current counters.
950 Constant *WriteoutF = M->getFunction("__llvm_gcov_writeout");
951 assert(WriteoutF && "Need to create the writeout function first!");
952
953 IRBuilder<> Builder(Entry);
954 Builder.CreateCall(WriteoutF);
955
Bill Wendlingfb1f6682012-09-13 14:32:30 +0000956 // Zero out the counters.
957 for (ArrayRef<std::pair<GlobalVariable *, MDNode *> >::iterator
958 I = CountersBySP.begin(), E = CountersBySP.end();
959 I != E; ++I) {
960 GlobalVariable *GV = I->first;
961 Constant *Null = Constant::getNullValue(GV->getType()->getElementType());
Bill Wendling8d26bc32012-09-14 22:35:49 +0000962 Builder.CreateStore(Null, GV);
Bill Wendlingfb1f6682012-09-13 14:32:30 +0000963 }
Bill Wendling2e6e8662012-09-13 00:09:55 +0000964
965 Type *RetTy = FlushF->getReturnType();
966 if (RetTy == Type::getVoidTy(*Ctx))
967 Builder.CreateRetVoid();
968 else if (RetTy->isIntegerTy())
Bill Wendlingc3cab812013-03-18 23:04:39 +0000969 // Used if __llvm_gcov_flush was implicitly declared.
Bill Wendling2e6e8662012-09-13 00:09:55 +0000970 Builder.CreateRet(ConstantInt::get(RetTy, 0));
971 else
Bill Wendlingc3cab812013-03-18 23:04:39 +0000972 report_fatal_error("invalid return type for __llvm_gcov_flush");
973
974 return FlushF;
Bill Wendling2e6e8662012-09-13 00:09:55 +0000975}