blob: 13eecb7f6c330130cea25af9f001e6c36f390a04 [file] [log] [blame]
Nick Lewyckyb1928702011-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
17#define DEBUG_TYPE "insert-gcov-profiling"
18
19#include "ProfilingUtils.h"
20#include "llvm/Transforms/Instrumentation.h"
21#include "llvm/Analysis/DebugInfo.h"
22#include "llvm/Module.h"
23#include "llvm/Pass.h"
24#include "llvm/Instructions.h"
25#include "llvm/Support/raw_ostream.h"
26#include "llvm/Support/Debug.h"
27#include "llvm/Support/DebugLoc.h"
28#include "llvm/Support/InstIterator.h"
29#include "llvm/Support/IRBuilder.h"
30#include "llvm/Support/PathV2.h"
31#include "llvm/ADT/DenseMap.h"
32#include "llvm/ADT/Statistic.h"
33#include "llvm/ADT/STLExtras.h"
34#include "llvm/ADT/StringExtras.h"
35#include "llvm/ADT/StringMap.h"
36#include "llvm/ADT/UniqueVector.h"
37#include <string>
38#include <utility>
39using namespace llvm;
40
41namespace {
42 class GCOVProfiler : public ModulePass {
Nick Lewyckyb1928702011-04-16 01:20:23 +000043 public:
44 static char ID;
Nick Lewyckya61e52c2011-04-21 01:56:25 +000045 GCOVProfiler()
46 : ModulePass(ID), EmitNotes(true), EmitData(true) {
47 initializeGCOVProfilerPass(*PassRegistry::getPassRegistry());
48 }
49 GCOVProfiler(bool EmitNotes, bool EmitData)
50 : ModulePass(ID), EmitNotes(EmitNotes), EmitData(EmitData) {
51 assert((EmitNotes || EmitData) && "GCOVProfiler asked to do nothing?");
Nick Lewyckyb1928702011-04-16 01:20:23 +000052 initializeGCOVProfilerPass(*PassRegistry::getPassRegistry());
53 }
54 virtual const char *getPassName() const {
55 return "GCOV Profiler";
56 }
57
58 private:
Nick Lewycky269687f2011-05-04 04:03:04 +000059 bool runOnModule(Module &M);
60
Nick Lewyckyb1928702011-04-16 01:20:23 +000061 // Create the GCNO files for the Module based on DebugInfo.
Nick Lewycky1790c9c2011-04-26 03:54:16 +000062 void emitGCNO(DebugInfoFinder &DIF);
Nick Lewyckyb1928702011-04-16 01:20:23 +000063
Nick Lewycky0c4de8a2011-04-16 02:05:18 +000064 // Modify the program to track transitions along edges and call into the
65 // profiling runtime to emit .gcda files when run.
Nick Lewycky1790c9c2011-04-26 03:54:16 +000066 bool emitProfileArcs(DebugInfoFinder &DIF);
Nick Lewycky0c4de8a2011-04-16 02:05:18 +000067
Nick Lewyckyb1928702011-04-16 01:20:23 +000068 // Get pointers to the functions in the runtime library.
69 Constant *getStartFileFunc();
Nick Lewycky1790c9c2011-04-26 03:54:16 +000070 Constant *getIncrementIndirectCounterFunc();
Nick Lewyckyb1928702011-04-16 01:20:23 +000071 Constant *getEmitFunctionFunc();
72 Constant *getEmitArcsFunc();
73 Constant *getEndFileFunc();
74
Nick Lewycky1790c9c2011-04-26 03:54:16 +000075 // Create or retrieve an i32 state value that is used to represent the
76 // pred block number for certain non-trivial edges.
77 GlobalVariable *getEdgeStateValue();
78
79 // Produce a table of pointers to counters, by predecessor and successor
80 // block number.
81 GlobalVariable *buildEdgeLookupTable(Function *F,
82 GlobalVariable *Counter,
83 const UniqueVector<BasicBlock *> &Preds,
84 const UniqueVector<BasicBlock *> &Succs);
85
Nick Lewyckyb1928702011-04-16 01:20:23 +000086 // Add the function to write out all our counters to the global destructor
87 // list.
Nick Lewycky1790c9c2011-04-26 03:54:16 +000088 void insertCounterWriteout(DebugInfoFinder &,
Nick Lewyckyb1928702011-04-16 01:20:23 +000089 SmallVector<std::pair<GlobalVariable *,
Nick Lewycky5409a182011-05-05 02:46:38 +000090 MDNode *>, 8> &);
Nick Lewyckyb1928702011-04-16 01:20:23 +000091
Nick Lewycky269687f2011-05-04 04:03:04 +000092 std::string mangleName(DICompileUnit CU, std::string NewStem);
93
Nick Lewyckya61e52c2011-04-21 01:56:25 +000094 bool EmitNotes;
95 bool EmitData;
96
Nick Lewycky1790c9c2011-04-26 03:54:16 +000097 Module *M;
Nick Lewyckyb1928702011-04-16 01:20:23 +000098 LLVMContext *Ctx;
99 };
100}
101
102char GCOVProfiler::ID = 0;
103INITIALIZE_PASS(GCOVProfiler, "insert-gcov-profiling",
104 "Insert instrumentation for GCOV profiling", false, false)
105
Nick Lewyckya61e52c2011-04-21 01:56:25 +0000106ModulePass *llvm::createGCOVProfilerPass(bool EmitNotes, bool EmitData) {
107 return new GCOVProfiler(EmitNotes, EmitData);
108}
Nick Lewyckyb1928702011-04-16 01:20:23 +0000109
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000110static DISubprogram findSubprogram(DIScope Scope) {
111 while (!Scope.isSubprogram()) {
112 assert(Scope.isLexicalBlock() &&
Nick Lewyckyb1928702011-04-16 01:20:23 +0000113 "Debug location not lexical block or subprogram");
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000114 Scope = DILexicalBlock(Scope).getContext();
Nick Lewyckyb1928702011-04-16 01:20:23 +0000115 }
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000116 return DISubprogram(Scope);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000117}
118
119namespace {
120 class GCOVRecord {
121 protected:
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000122 static const char *LinesTag;
123 static const char *FunctionTag;
124 static const char *BlockTag;
125 static const char *EdgeTag;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000126
127 GCOVRecord() {}
128
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000129 void writeBytes(const char *Bytes, int Size) {
130 os->write(Bytes, Size);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000131 }
132
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000133 void write(uint32_t i) {
134 writeBytes(reinterpret_cast<char*>(&i), 4);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000135 }
136
137 // Returns the length measured in 4-byte blocks that will be used to
138 // represent this string in a GCOV file
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000139 unsigned lengthOfGCOVString(StringRef s) {
Nick Lewyckyb1928702011-04-16 01:20:23 +0000140 // A GCOV string is a length, followed by a NUL, then between 0 and 3 NULs
Nick Lewycky17df2c32011-04-21 02:48:39 +0000141 // padding out to the next 4-byte word. The length is measured in 4-byte
142 // words including padding, not bytes of actual string.
Nick Lewyckyd363ff32011-05-05 23:52:18 +0000143 return (s.size() / 4) + 1;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000144 }
145
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000146 void writeGCOVString(StringRef s) {
147 uint32_t Len = lengthOfGCOVString(s);
148 write(Len);
149 writeBytes(s.data(), s.size());
Nick Lewyckyb1928702011-04-16 01:20:23 +0000150
151 // Write 1 to 4 bytes of NUL padding.
Nick Lewycky7a2ba2f2011-04-28 21:35:49 +0000152 assert((unsigned)(4 - (s.size() % 4)) > 0);
153 assert((unsigned)(4 - (s.size() % 4)) <= 4);
154 writeBytes("\0\0\0\0", 4 - (s.size() % 4));
Nick Lewyckyb1928702011-04-16 01:20:23 +0000155 }
156
157 raw_ostream *os;
158 };
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000159 const char *GCOVRecord::LinesTag = "\0\0\x45\x01";
160 const char *GCOVRecord::FunctionTag = "\0\0\0\1";
161 const char *GCOVRecord::BlockTag = "\0\0\x41\x01";
162 const char *GCOVRecord::EdgeTag = "\0\0\x43\x01";
Nick Lewyckyb1928702011-04-16 01:20:23 +0000163
164 class GCOVFunction;
165 class GCOVBlock;
166
167 // Constructed only by requesting it from a GCOVBlock, this object stores a
168 // list of line numbers and a single filename, representing lines that belong
169 // to the block.
170 class GCOVLines : public GCOVRecord {
171 public:
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000172 void addLine(uint32_t Line) {
173 Lines.push_back(Line);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000174 }
175
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000176 uint32_t length() {
177 return lengthOfGCOVString(Filename) + 2 + Lines.size();
Nick Lewyckyb1928702011-04-16 01:20:23 +0000178 }
179
180 private:
181 friend class GCOVBlock;
182
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000183 GCOVLines(std::string Filename, raw_ostream *os)
184 : Filename(Filename) {
Nick Lewyckyb1928702011-04-16 01:20:23 +0000185 this->os = os;
186 }
187
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000188 std::string Filename;
189 SmallVector<uint32_t, 32> Lines;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000190 };
191
192 // Represent a basic block in GCOV. Each block has a unique number in the
193 // function, number of lines belonging to each block, and a set of edges to
194 // other blocks.
195 class GCOVBlock : public GCOVRecord {
196 public:
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000197 GCOVLines &getFile(std::string Filename) {
198 GCOVLines *&Lines = LinesByFile[Filename];
199 if (!Lines) {
200 Lines = new GCOVLines(Filename, os);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000201 }
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000202 return *Lines;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000203 }
204
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000205 void addEdge(GCOVBlock &Successor) {
206 OutEdges.push_back(&Successor);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000207 }
208
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000209 void writeOut() {
210 uint32_t Len = 3;
211 for (StringMap<GCOVLines *>::iterator I = LinesByFile.begin(),
212 E = LinesByFile.end(); I != E; ++I) {
213 Len += I->second->length();
Nick Lewyckyb1928702011-04-16 01:20:23 +0000214 }
215
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000216 writeBytes(LinesTag, 4);
217 write(Len);
218 write(Number);
219 for (StringMap<GCOVLines *>::iterator I = LinesByFile.begin(),
220 E = LinesByFile.end(); I != E; ++I) {
221 write(0);
222 writeGCOVString(I->second->Filename);
223 for (int i = 0, e = I->second->Lines.size(); i != e; ++i) {
224 write(I->second->Lines[i]);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000225 }
226 }
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000227 write(0);
228 write(0);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000229 }
230
231 ~GCOVBlock() {
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000232 DeleteContainerSeconds(LinesByFile);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000233 }
234
235 private:
236 friend class GCOVFunction;
237
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000238 GCOVBlock(uint32_t Number, raw_ostream *os)
239 : Number(Number) {
Nick Lewyckyb1928702011-04-16 01:20:23 +0000240 this->os = os;
241 }
242
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000243 uint32_t Number;
244 StringMap<GCOVLines *> LinesByFile;
245 SmallVector<GCOVBlock *, 4> OutEdges;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000246 };
247
248 // A function has a unique identifier, a checksum (we leave as zero) and a
249 // set of blocks and a map of edges between blocks. This is the only GCOV
250 // object users can construct, the blocks and lines will be rooted here.
251 class GCOVFunction : public GCOVRecord {
252 public:
253 GCOVFunction(DISubprogram SP, raw_ostream *os) {
254 this->os = os;
255
256 Function *F = SP.getFunction();
257 uint32_t i = 0;
258 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000259 Blocks[BB] = new GCOVBlock(i++, os);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000260 }
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000261 ReturnBlock = new GCOVBlock(i++, os);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000262
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000263 writeBytes(FunctionTag, 4);
Nick Lewycky5409a182011-05-05 02:46:38 +0000264 uint32_t BlockLen = 1 + 1 + 1 + 1 + lengthOfGCOVString(SP.getName()) +
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000265 1 + lengthOfGCOVString(SP.getFilename()) + 1;
266 write(BlockLen);
267 uint32_t Ident = reinterpret_cast<intptr_t>((MDNode*)SP);
268 write(Ident);
Nick Lewycky5409a182011-05-05 02:46:38 +0000269 write(0); // checksum #1
270 write(0); // checksum #2
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000271 writeGCOVString(SP.getName());
272 writeGCOVString(SP.getFilename());
273 write(SP.getLineNumber());
Nick Lewyckyb1928702011-04-16 01:20:23 +0000274 }
275
276 ~GCOVFunction() {
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000277 DeleteContainerSeconds(Blocks);
278 delete ReturnBlock;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000279 }
280
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000281 GCOVBlock &getBlock(BasicBlock *BB) {
282 return *Blocks[BB];
Nick Lewyckyb1928702011-04-16 01:20:23 +0000283 }
284
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000285 GCOVBlock &getReturnBlock() {
286 return *ReturnBlock;
Nick Lewyckya4c4c0e2011-04-21 03:18:00 +0000287 }
288
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000289 void writeOut() {
Nick Lewyckyb1928702011-04-16 01:20:23 +0000290 // Emit count of blocks.
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000291 writeBytes(BlockTag, 4);
292 write(Blocks.size() + 1);
293 for (int i = 0, e = Blocks.size() + 1; i != e; ++i) {
294 write(0); // No flags on our blocks.
Nick Lewyckyb1928702011-04-16 01:20:23 +0000295 }
296
297 // Emit edges between blocks.
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000298 for (DenseMap<BasicBlock *, GCOVBlock *>::iterator I = Blocks.begin(),
299 E = Blocks.end(); I != E; ++I) {
300 GCOVBlock &Block = *I->second;
301 if (Block.OutEdges.empty()) continue;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000302
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000303 writeBytes(EdgeTag, 4);
304 write(Block.OutEdges.size() * 2 + 1);
305 write(Block.Number);
306 for (int i = 0, e = Block.OutEdges.size(); i != e; ++i) {
307 write(Block.OutEdges[i]->Number);
308 write(0); // no flags
Nick Lewyckyb1928702011-04-16 01:20:23 +0000309 }
310 }
311
312 // Emit lines for each block.
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000313 for (DenseMap<BasicBlock *, GCOVBlock *>::iterator I = Blocks.begin(),
314 E = Blocks.end(); I != E; ++I) {
315 I->second->writeOut();
Nick Lewyckyb1928702011-04-16 01:20:23 +0000316 }
317 }
318
319 private:
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000320 DenseMap<BasicBlock *, GCOVBlock *> Blocks;
321 GCOVBlock *ReturnBlock;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000322 };
323}
324
Nick Lewycky269687f2011-05-04 04:03:04 +0000325std::string GCOVProfiler::mangleName(DICompileUnit CU, std::string NewStem) {
326 if (NamedMDNode *GCov = M->getNamedMetadata("llvm.gcov")) {
327 for (int i = 0, e = GCov->getNumOperands(); i != e; ++i) {
328 MDNode *N = GCov->getOperand(i);
329 if (N->getNumOperands() != 2) continue;
Nick Lewyckyfcf74ed2011-05-05 00:03:30 +0000330 MDString *GCovFile = dyn_cast<MDString>(N->getOperand(0));
Nick Lewycky269687f2011-05-04 04:03:04 +0000331 MDNode *CompileUnit = dyn_cast<MDNode>(N->getOperand(1));
Nick Lewyckyfcf74ed2011-05-05 00:03:30 +0000332 if (!GCovFile || !CompileUnit) continue;
333 if (CompileUnit == CU) {
334 SmallString<128> Filename = GCovFile->getString();
335 sys::path::replace_extension(Filename, NewStem);
336 return Filename.str();
337 }
Nick Lewycky269687f2011-05-04 04:03:04 +0000338 }
339 }
Nick Lewyckyfcf74ed2011-05-05 00:03:30 +0000340
341 SmallString<128> Filename = CU.getFilename();
342 sys::path::replace_extension(Filename, NewStem);
343 return sys::path::filename(Filename.str());
Nick Lewycky269687f2011-05-04 04:03:04 +0000344}
345
Nick Lewycky0c4de8a2011-04-16 02:05:18 +0000346bool GCOVProfiler::runOnModule(Module &M) {
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000347 this->M = &M;
Nick Lewycky0c4de8a2011-04-16 02:05:18 +0000348 Ctx = &M.getContext();
349
350 DebugInfoFinder DIF;
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000351 DIF.processModule(M);
Nick Lewycky0c4de8a2011-04-16 02:05:18 +0000352
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000353 if (EmitNotes) emitGCNO(DIF);
354 if (EmitData) return emitProfileArcs(DIF);
Nick Lewyckya61e52c2011-04-21 01:56:25 +0000355 return false;
Nick Lewycky0c4de8a2011-04-16 02:05:18 +0000356}
357
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000358void GCOVProfiler::emitGCNO(DebugInfoFinder &DIF) {
359 DenseMap<const MDNode *, raw_fd_ostream *> GcnoFiles;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000360 for (DebugInfoFinder::iterator I = DIF.compile_unit_begin(),
361 E = DIF.compile_unit_end(); I != E; ++I) {
362 // Each compile unit gets its own .gcno file. This means that whether we run
363 // this pass over the original .o's as they're produced, or run it after
364 // LTO, we'll generate the same .gcno files.
365
366 DICompileUnit CU(*I);
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000367 raw_fd_ostream *&out = GcnoFiles[CU];
Nick Lewyckyb1928702011-04-16 01:20:23 +0000368 std::string ErrorInfo;
Nick Lewycky269687f2011-05-04 04:03:04 +0000369 out = new raw_fd_ostream(mangleName(CU, "gcno").c_str(), ErrorInfo,
370 raw_fd_ostream::F_Binary);
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000371 out->write("oncg*404MVLL", 12);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000372 }
373
374 for (DebugInfoFinder::iterator SPI = DIF.subprogram_begin(),
375 SPE = DIF.subprogram_end(); SPI != SPE; ++SPI) {
376 DISubprogram SP(*SPI);
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000377 raw_fd_ostream *&os = GcnoFiles[SP.getCompileUnit()];
Nick Lewyckyb1928702011-04-16 01:20:23 +0000378
Nick Lewyckyb1928702011-04-16 01:20:23 +0000379 Function *F = SP.getFunction();
Nick Lewycky7a2ba2f2011-04-28 21:35:49 +0000380 if (!F) continue;
381 GCOVFunction Func(SP, os);
382
Nick Lewyckyb1928702011-04-16 01:20:23 +0000383 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000384 GCOVBlock &Block = Func.getBlock(BB);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000385 TerminatorInst *TI = BB->getTerminator();
386 if (int successors = TI->getNumSuccessors()) {
387 for (int i = 0; i != successors; ++i) {
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000388 Block.addEdge(Func.getBlock(TI->getSuccessor(i)));
Nick Lewyckyb1928702011-04-16 01:20:23 +0000389 }
Nick Lewyckya4c4c0e2011-04-21 03:18:00 +0000390 } else if (isa<ReturnInst>(TI)) {
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000391 Block.addEdge(Func.getReturnBlock());
Nick Lewyckyb1928702011-04-16 01:20:23 +0000392 }
393
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000394 uint32_t Line = 0;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000395 for (BasicBlock::iterator I = BB->begin(), IE = BB->end(); I != IE; ++I) {
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000396 const DebugLoc &Loc = I->getDebugLoc();
397 if (Loc.isUnknown()) continue;
398 if (Line == Loc.getLine()) continue;
399 Line = Loc.getLine();
400 if (SP != findSubprogram(DIScope(Loc.getScope(*Ctx)))) continue;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000401
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000402 GCOVLines &Lines = Block.getFile(SP.getFilename());
403 Lines.addLine(Loc.getLine());
Nick Lewyckyb1928702011-04-16 01:20:23 +0000404 }
405 }
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000406 Func.writeOut();
Nick Lewyckyb1928702011-04-16 01:20:23 +0000407 }
408
409 for (DenseMap<const MDNode *, raw_fd_ostream *>::iterator
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000410 I = GcnoFiles.begin(), E = GcnoFiles.end(); I != E; ++I) {
411 raw_fd_ostream *&out = I->second;
412 out->write("\0\0\0\0\0\0\0\0", 8); // EOF
413 out->close();
414 delete out;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000415 }
416}
417
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000418bool GCOVProfiler::emitProfileArcs(DebugInfoFinder &DIF) {
Nick Lewycky0c4de8a2011-04-16 02:05:18 +0000419 if (DIF.subprogram_begin() == DIF.subprogram_end())
420 return false;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000421
Nick Lewycky5409a182011-05-05 02:46:38 +0000422 SmallVector<std::pair<GlobalVariable *, MDNode *>, 8> CountersBySP;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000423 for (DebugInfoFinder::iterator SPI = DIF.subprogram_begin(),
424 SPE = DIF.subprogram_end(); SPI != SPE; ++SPI) {
425 DISubprogram SP(*SPI);
426 Function *F = SP.getFunction();
Nick Lewycky7a2ba2f2011-04-28 21:35:49 +0000427 if (!F) continue;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000428
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000429 unsigned Edges = 0;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000430 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
431 TerminatorInst *TI = BB->getTerminator();
Nick Lewyckya4c4c0e2011-04-21 03:18:00 +0000432 if (isa<ReturnInst>(TI))
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000433 ++Edges;
Nick Lewyckya4c4c0e2011-04-21 03:18:00 +0000434 else
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000435 Edges += TI->getNumSuccessors();
Nick Lewyckyb1928702011-04-16 01:20:23 +0000436 }
437
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000438 const ArrayType *CounterTy =
439 ArrayType::get(Type::getInt64Ty(*Ctx), Edges);
440 GlobalVariable *Counters =
441 new GlobalVariable(*M, CounterTy, false,
Nick Lewyckyb1928702011-04-16 01:20:23 +0000442 GlobalValue::InternalLinkage,
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000443 Constant::getNullValue(CounterTy),
Nick Lewyckyb1928702011-04-16 01:20:23 +0000444 "__llvm_gcov_ctr", 0, false, 0);
Nick Lewycky5409a182011-05-05 02:46:38 +0000445 CountersBySP.push_back(std::make_pair(Counters, (MDNode*)SP));
Nick Lewyckyb1928702011-04-16 01:20:23 +0000446
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000447 UniqueVector<BasicBlock *> ComplexEdgePreds;
448 UniqueVector<BasicBlock *> ComplexEdgeSuccs;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000449
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000450 unsigned Edge = 0;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000451 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
452 TerminatorInst *TI = BB->getTerminator();
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000453 int Successors = isa<ReturnInst>(TI) ? 1 : TI->getNumSuccessors();
454 if (Successors) {
455 IRBuilder<> Builder(TI);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000456
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000457 if (Successors == 1) {
458 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
459 Edge);
460 Value *Count = Builder.CreateLoad(Counter);
461 Count = Builder.CreateAdd(Count,
Nick Lewyckyb1928702011-04-16 01:20:23 +0000462 ConstantInt::get(Type::getInt64Ty(*Ctx),1));
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000463 Builder.CreateStore(Count, Counter);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000464 } else if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000465 Value *Sel = Builder.CreateSelect(
Nick Lewyckyb1928702011-04-16 01:20:23 +0000466 BI->getCondition(),
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000467 ConstantInt::get(Type::getInt64Ty(*Ctx), Edge),
468 ConstantInt::get(Type::getInt64Ty(*Ctx), Edge + 1));
469 SmallVector<Value *, 2> Idx;
470 Idx.push_back(Constant::getNullValue(Type::getInt64Ty(*Ctx)));
471 Idx.push_back(Sel);
472 Value *Counter = Builder.CreateInBoundsGEP(Counters,
473 Idx.begin(), Idx.end());
474 Value *Count = Builder.CreateLoad(Counter);
475 Count = Builder.CreateAdd(Count,
Nick Lewyckyb1928702011-04-16 01:20:23 +0000476 ConstantInt::get(Type::getInt64Ty(*Ctx),1));
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000477 Builder.CreateStore(Count, Counter);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000478 } else {
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000479 ComplexEdgePreds.insert(BB);
480 for (int i = 0; i != Successors; ++i)
481 ComplexEdgeSuccs.insert(TI->getSuccessor(i));
Nick Lewyckyb1928702011-04-16 01:20:23 +0000482 }
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000483 Edge += Successors;
Nick Lewyckyb1928702011-04-16 01:20:23 +0000484 }
485 }
486
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000487 if (!ComplexEdgePreds.empty()) {
488 GlobalVariable *EdgeTable =
489 buildEdgeLookupTable(F, Counters,
490 ComplexEdgePreds, ComplexEdgeSuccs);
491 GlobalVariable *EdgeState = getEdgeStateValue();
492
493 const Type *Int32Ty = Type::getInt32Ty(*Ctx);
494 for (int i = 0, e = ComplexEdgePreds.size(); i != e; ++i) {
495 IRBuilder<> Builder(ComplexEdgePreds[i+1]->getTerminator());
Nick Lewycky7a2ba2f2011-04-28 21:35:49 +0000496 Builder.CreateStore(ConstantInt::get(Int32Ty, i), EdgeState);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000497 }
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000498 for (int i = 0, e = ComplexEdgeSuccs.size(); i != e; ++i) {
Nick Lewyckyb1928702011-04-16 01:20:23 +0000499 // call runtime to perform increment
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000500 IRBuilder<> Builder(ComplexEdgeSuccs[i+1]->getFirstNonPHI());
501 Value *CounterPtrArray =
502 Builder.CreateConstInBoundsGEP2_64(EdgeTable, 0,
503 i * ComplexEdgePreds.size());
504 Builder.CreateCall2(getIncrementIndirectCounterFunc(),
505 EdgeState, CounterPtrArray);
506 // clear the predecessor number
507 Builder.CreateStore(ConstantInt::get(Int32Ty, 0xffffffff), EdgeState);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000508 }
509 }
510 }
511
Nick Lewycky5409a182011-05-05 02:46:38 +0000512 insertCounterWriteout(DIF, CountersBySP);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000513
514 return true;
515}
516
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000517// All edges with successors that aren't branches are "complex", because it
518// requires complex logic to pick which counter to update.
519GlobalVariable *GCOVProfiler::buildEdgeLookupTable(
520 Function *F,
521 GlobalVariable *Counters,
522 const UniqueVector<BasicBlock *> &Preds,
523 const UniqueVector<BasicBlock *> &Succs) {
524 // TODO: support invoke, threads. We rely on the fact that nothing can modify
525 // the whole-Module pred edge# between the time we set it and the time we next
526 // read it. Threads and invoke make this untrue.
527
528 // emit [(succs * preds) x i64*], logically [succ x [pred x i64*]].
529 const Type *Int64PtrTy = Type::getInt64PtrTy(*Ctx);
530 const ArrayType *EdgeTableTy = ArrayType::get(
531 Int64PtrTy, Succs.size() * Preds.size());
532
533 Constant **EdgeTable = new Constant*[Succs.size() * Preds.size()];
534 Constant *NullValue = Constant::getNullValue(Int64PtrTy);
535 for (int i = 0, ie = Succs.size() * Preds.size(); i != ie; ++i)
536 EdgeTable[i] = NullValue;
537
538 unsigned Edge = 0;
539 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
540 TerminatorInst *TI = BB->getTerminator();
541 int Successors = isa<ReturnInst>(TI) ? 1 : TI->getNumSuccessors();
Nick Lewycky7a2ba2f2011-04-28 21:35:49 +0000542 if (Successors > 1 && !isa<BranchInst>(TI) && !isa<ReturnInst>(TI)) {
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000543 for (int i = 0; i != Successors; ++i) {
544 BasicBlock *Succ = TI->getSuccessor(i);
545 IRBuilder<> builder(Succ);
546 Value *Counter = builder.CreateConstInBoundsGEP2_64(Counters, 0,
547 Edge + i);
548 EdgeTable[((Succs.idFor(Succ)-1) * Preds.size()) +
549 (Preds.idFor(BB)-1)] = cast<Constant>(Counter);
550 }
551 }
552 Edge += Successors;
553 }
554
555 GlobalVariable *EdgeTableGV =
556 new GlobalVariable(
557 *M, EdgeTableTy, true, GlobalValue::InternalLinkage,
558 ConstantArray::get(EdgeTableTy,
559 &EdgeTable[0], Succs.size() * Preds.size()),
560 "__llvm_gcda_edge_table");
561 EdgeTableGV->setUnnamedAddr(true);
562 return EdgeTableGV;
563}
564
Nick Lewyckyb1928702011-04-16 01:20:23 +0000565Constant *GCOVProfiler::getStartFileFunc() {
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000566 const Type *Args[] = { Type::getInt8PtrTy(*Ctx) };
Nick Lewyckyb1928702011-04-16 01:20:23 +0000567 const FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx),
568 Args, false);
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000569 return M->getOrInsertFunction("llvm_gcda_start_file", FTy);
570}
571
572Constant *GCOVProfiler::getIncrementIndirectCounterFunc() {
573 const Type *Args[] = {
574 Type::getInt32PtrTy(*Ctx), // uint32_t *predecessor
575 Type::getInt64PtrTy(*Ctx)->getPointerTo(), // uint64_t **state_table_row
576 };
577 const FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx),
578 Args, false);
579 return M->getOrInsertFunction("llvm_gcda_increment_indirect_counter", FTy);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000580}
581
582Constant *GCOVProfiler::getEmitFunctionFunc() {
Nick Lewycky5409a182011-05-05 02:46:38 +0000583 const Type *Args[2] = {
584 Type::getInt32Ty(*Ctx), // uint32_t ident
585 Type::getInt8PtrTy(*Ctx), // const char *function_name
586 };
Nick Lewyckyb1928702011-04-16 01:20:23 +0000587 const FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx),
588 Args, false);
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000589 return M->getOrInsertFunction("llvm_gcda_emit_function", FTy);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000590}
591
592Constant *GCOVProfiler::getEmitArcsFunc() {
593 const Type *Args[] = {
594 Type::getInt32Ty(*Ctx), // uint32_t num_counters
595 Type::getInt64PtrTy(*Ctx), // uint64_t *counters
596 };
597 const FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx),
598 Args, false);
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000599 return M->getOrInsertFunction("llvm_gcda_emit_arcs", FTy);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000600}
601
602Constant *GCOVProfiler::getEndFileFunc() {
603 const FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000604 return M->getOrInsertFunction("llvm_gcda_end_file", FTy);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000605}
606
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000607GlobalVariable *GCOVProfiler::getEdgeStateValue() {
608 GlobalVariable *GV = M->getGlobalVariable("__llvm_gcov_global_state_pred");
609 if (!GV) {
610 GV = new GlobalVariable(*M, Type::getInt32Ty(*Ctx), false,
611 GlobalValue::InternalLinkage,
612 ConstantInt::get(Type::getInt32Ty(*Ctx),
613 0xffffffff),
614 "__llvm_gcov_global_state_pred");
615 GV->setUnnamedAddr(true);
616 }
617 return GV;
618}
Nick Lewyckyb1928702011-04-16 01:20:23 +0000619
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000620void GCOVProfiler::insertCounterWriteout(
621 DebugInfoFinder &DIF,
Nick Lewycky5409a182011-05-05 02:46:38 +0000622 SmallVector<std::pair<GlobalVariable *, MDNode *>, 8> &CountersBySP) {
Nick Lewyckyb1928702011-04-16 01:20:23 +0000623 const FunctionType *WriteoutFTy =
624 FunctionType::get(Type::getVoidTy(*Ctx), false);
625 Function *WriteoutF = Function::Create(WriteoutFTy,
626 GlobalValue::InternalLinkage,
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000627 "__llvm_gcov_writeout", M);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000628 WriteoutF->setUnnamedAddr(true);
629 BasicBlock *BB = BasicBlock::Create(*Ctx, "", WriteoutF);
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000630 IRBuilder<> Builder(BB);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000631
632 Constant *StartFile = getStartFileFunc();
633 Constant *EmitFunction = getEmitFunctionFunc();
634 Constant *EmitArcs = getEmitArcsFunc();
635 Constant *EndFile = getEndFileFunc();
636
637 for (DebugInfoFinder::iterator CUI = DIF.compile_unit_begin(),
638 CUE = DIF.compile_unit_end(); CUI != CUE; ++CUI) {
639 DICompileUnit compile_unit(*CUI);
Nick Lewycky269687f2011-05-04 04:03:04 +0000640 std::string FilenameGcda = mangleName(compile_unit, "gcda");
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000641 Builder.CreateCall(StartFile,
642 Builder.CreateGlobalStringPtr(FilenameGcda));
Nick Lewycky5409a182011-05-05 02:46:38 +0000643 for (SmallVector<std::pair<GlobalVariable *, MDNode *>, 8>::iterator
644 I = CountersBySP.begin(), E = CountersBySP.end();
Nick Lewyckyb1928702011-04-16 01:20:23 +0000645 I != E; ++I) {
Nick Lewycky5409a182011-05-05 02:46:38 +0000646 DISubprogram SP(I->second);
647 intptr_t ident = reinterpret_cast<intptr_t>(I->second);
648 Builder.CreateCall2(EmitFunction,
649 ConstantInt::get(Type::getInt32Ty(*Ctx), ident),
650 Builder.CreateGlobalStringPtr(SP.getName()));
651
Nick Lewyckyb1928702011-04-16 01:20:23 +0000652 GlobalVariable *GV = I->first;
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000653 unsigned Arcs =
Nick Lewyckyb1928702011-04-16 01:20:23 +0000654 cast<ArrayType>(GV->getType()->getElementType())->getNumElements();
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000655 Builder.CreateCall2(EmitArcs,
656 ConstantInt::get(Type::getInt32Ty(*Ctx), Arcs),
657 Builder.CreateConstGEP2_64(GV, 0, 0));
Nick Lewyckyb1928702011-04-16 01:20:23 +0000658 }
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000659 Builder.CreateCall(EndFile);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000660 }
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000661 Builder.CreateRetVoid();
Nick Lewyckyb1928702011-04-16 01:20:23 +0000662
Nick Lewycky1790c9c2011-04-26 03:54:16 +0000663 InsertProfilingShutdownCall(WriteoutF, M);
Nick Lewyckyb1928702011-04-16 01:20:23 +0000664}