blob: 7d63d1a57ce976ba951f103b20bac647a5162614 [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);
Justin Bogner3faa76b2015-03-16 23:52:03 +000050static cl::opt<bool> DefaultExitBlockBeforeBody("gcov-exit-block-before-body",
51 cl::init(false), cl::Hidden);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000052
53GCOVOptions GCOVOptions::getDefault() {
54 GCOVOptions Options;
55 Options.EmitNotes = true;
56 Options.EmitData = true;
57 Options.UseCfgChecksum = false;
58 Options.NoRedZone = false;
59 Options.FunctionNamesInData = true;
Justin Bogner3faa76b2015-03-16 23:52:03 +000060 Options.ExitBlockBeforeBody = DefaultExitBlockBeforeBody;
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000061
62 if (DefaultGCOVVersion.size() != 4) {
63 llvm::report_fatal_error(std::string("Invalid -default-gcov-version: ") +
64 DefaultGCOVVersion);
65 }
66 memcpy(Options.Version, DefaultGCOVVersion.c_str(), 4);
67 return Options;
68}
69
Nick Lewycky966edd02011-04-16 01:20:23 +000070namespace {
Yuchen Wubabe7492013-11-20 04:15:05 +000071 class GCOVFunction;
72
Nick Lewycky966edd02011-04-16 01:20:23 +000073 class GCOVProfiler : public ModulePass {
Nick Lewycky966edd02011-04-16 01:20:23 +000074 public:
75 static char ID;
Benjamin Kramer298a3a02015-03-06 16:21:15 +000076 GCOVProfiler() : GCOVProfiler(GCOVOptions::getDefault()) {}
77 GCOVProfiler(const GCOVOptions &Opts) : ModulePass(ID), Options(Opts) {
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +000078 assert((Options.EmitNotes || Options.EmitData) &&
79 "GCOVProfiler asked to do nothing?");
Yuchen Wubabe7492013-11-20 04:15:05 +000080 ReversedVersion[0] = Options.Version[3];
81 ReversedVersion[1] = Options.Version[2];
82 ReversedVersion[2] = Options.Version[1];
83 ReversedVersion[3] = Options.Version[0];
84 ReversedVersion[4] = '\0';
85 initializeGCOVProfilerPass(*PassRegistry::getPassRegistry());
86 }
Benjamin Kramer298a3a02015-03-06 16:21:15 +000087 const char *getPassName() const override {
88 return "GCOV Profiler";
89 }
90
91 private:
Craig Topper3e4c6972014-03-05 09:10:37 +000092 bool runOnModule(Module &M) override;
Nick Lewycky6d9f0612011-05-04 04:03:04 +000093
Nick Lewyckyad145502013-03-13 22:55:42 +000094 // Create the .gcno files for the Module based on DebugInfo.
95 void emitProfileNotes();
Nick Lewycky966edd02011-04-16 01:20:23 +000096
Nick Lewyckyc5ea8522011-04-16 02:05:18 +000097 // Modify the program to track transitions along edges and call into the
98 // profiling runtime to emit .gcda files when run.
Devang Patel2b21d862011-08-17 22:49:38 +000099 bool emitProfileArcs();
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000100
Nick Lewycky966edd02011-04-16 01:20:23 +0000101 // Get pointers to the functions in the runtime library.
102 Constant *getStartFileFunc();
Bill Wendling15605172012-05-28 06:10:56 +0000103 Constant *getIncrementIndirectCounterFunc();
Nick Lewycky966edd02011-04-16 01:20:23 +0000104 Constant *getEmitFunctionFunc();
105 Constant *getEmitArcsFunc();
Yuchen Wu062f24c2013-11-12 04:59:08 +0000106 Constant *getSummaryInfoFunc();
Bill Wendling04d57c72013-03-19 21:03:22 +0000107 Constant *getDeleteWriteoutFunctionListFunc();
Bill Wendlingc3cab812013-03-18 23:04:39 +0000108 Constant *getDeleteFlushFunctionListFunc();
Nick Lewycky966edd02011-04-16 01:20:23 +0000109 Constant *getEndFileFunc();
110
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000111 // Create or retrieve an i32 state value that is used to represent the
112 // pred block number for certain non-trivial edges.
113 GlobalVariable *getEdgeStateValue();
114
115 // Produce a table of pointers to counters, by predecessor and successor
116 // block number.
117 GlobalVariable *buildEdgeLookupTable(Function *F,
118 GlobalVariable *Counter,
Nick Lewyckyad145502013-03-13 22:55:42 +0000119 const UniqueVector<BasicBlock *>&Preds,
120 const UniqueVector<BasicBlock*>&Succs);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000121
Nick Lewycky966edd02011-04-16 01:20:23 +0000122 // Add the function to write out all our counters to the global destructor
123 // list.
Bill Wendlingc3cab812013-03-18 23:04:39 +0000124 Function *insertCounterWriteout(ArrayRef<std::pair<GlobalVariable*,
125 MDNode*> >);
126 Function *insertFlush(ArrayRef<std::pair<GlobalVariable*, MDNode*> >);
Bill Wendling15605172012-05-28 06:10:56 +0000127 void insertIndirectCounterIncrement();
Nick Lewycky966edd02011-04-16 01:20:23 +0000128
Bill Wendling85722f42013-03-28 22:40:08 +0000129 std::string mangleName(DICompileUnit CU, const char *NewStem);
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000130
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000131 GCOVOptions Options;
132
133 // Reversed, NUL-terminated copy of Options.Version.
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000134 char ReversedVersion[5];
Yuchen Wubabe7492013-11-20 04:15:05 +0000135 // Checksum, produced by hash of EdgeDestinations
Yuchen Wu664dc762013-11-21 04:01:05 +0000136 SmallVector<uint32_t, 4> FileChecksums;
Nick Lewycky8e0a38f2011-04-21 01:56:25 +0000137
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000138 Module *M;
Nick Lewycky966edd02011-04-16 01:20:23 +0000139 LLVMContext *Ctx;
David Blaikie229de502014-04-21 20:41:55 +0000140 SmallVector<std::unique_ptr<GCOVFunction>, 16> Funcs;
Nick Lewycky966edd02011-04-16 01:20:23 +0000141 };
142}
143
144char GCOVProfiler::ID = 0;
145INITIALIZE_PASS(GCOVProfiler, "insert-gcov-profiling",
146 "Insert instrumentation for GCOV profiling", false, false)
147
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000148ModulePass *llvm::createGCOVProfilerPass(const GCOVOptions &Options) {
149 return new GCOVProfiler(Options);
Nick Lewycky8e0a38f2011-04-21 01:56:25 +0000150}
Nick Lewycky966edd02011-04-16 01:20:23 +0000151
Yuchen Wubabe7492013-11-20 04:15:05 +0000152static StringRef getFunctionName(DISubprogram SP) {
Nick Lewyckyd6718632013-03-19 01:37:55 +0000153 if (!SP.getLinkageName().empty())
154 return SP.getLinkageName();
155 return SP.getName();
156}
157
Nick Lewycky966edd02011-04-16 01:20:23 +0000158namespace {
159 class GCOVRecord {
160 protected:
Craig Topper1c4d6672013-07-17 03:43:10 +0000161 static const char *const LinesTag;
162 static const char *const FunctionTag;
163 static const char *const BlockTag;
164 static const char *const EdgeTag;
Nick Lewycky966edd02011-04-16 01:20:23 +0000165
166 GCOVRecord() {}
167
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000168 void writeBytes(const char *Bytes, int Size) {
169 os->write(Bytes, Size);
Nick Lewycky966edd02011-04-16 01:20:23 +0000170 }
171
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000172 void write(uint32_t i) {
173 writeBytes(reinterpret_cast<char*>(&i), 4);
Nick Lewycky966edd02011-04-16 01:20:23 +0000174 }
175
176 // Returns the length measured in 4-byte blocks that will be used to
177 // represent this string in a GCOV file
Craig Topper24048c92013-07-17 03:54:53 +0000178 static unsigned lengthOfGCOVString(StringRef s) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000179 // A GCOV string is a length, followed by a NUL, then between 0 and 3 NULs
Nick Lewyckyed749d82011-04-21 02:48:39 +0000180 // padding out to the next 4-byte word. The length is measured in 4-byte
181 // words including padding, not bytes of actual string.
Nick Lewyckya7028842011-05-05 23:52:18 +0000182 return (s.size() / 4) + 1;
Nick Lewycky966edd02011-04-16 01:20:23 +0000183 }
184
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000185 void writeGCOVString(StringRef s) {
186 uint32_t Len = lengthOfGCOVString(s);
187 write(Len);
188 writeBytes(s.data(), s.size());
Nick Lewycky966edd02011-04-16 01:20:23 +0000189
190 // Write 1 to 4 bytes of NUL padding.
Nick Lewycky6aa79492011-04-28 21:35:49 +0000191 assert((unsigned)(4 - (s.size() % 4)) > 0);
192 assert((unsigned)(4 - (s.size() % 4)) <= 4);
193 writeBytes("\0\0\0\0", 4 - (s.size() % 4));
Nick Lewycky966edd02011-04-16 01:20:23 +0000194 }
195
196 raw_ostream *os;
197 };
Craig Topper1c4d6672013-07-17 03:43:10 +0000198 const char *const GCOVRecord::LinesTag = "\0\0\x45\x01";
199 const char *const GCOVRecord::FunctionTag = "\0\0\0\1";
200 const char *const GCOVRecord::BlockTag = "\0\0\x41\x01";
201 const char *const GCOVRecord::EdgeTag = "\0\0\x43\x01";
Nick Lewycky966edd02011-04-16 01:20:23 +0000202
203 class GCOVFunction;
204 class GCOVBlock;
205
206 // Constructed only by requesting it from a GCOVBlock, this object stores a
Devang Pateladd1f172011-09-20 18:35:00 +0000207 // list of line numbers and a single filename, representing lines that belong
208 // to the block.
Nick Lewycky966edd02011-04-16 01:20:23 +0000209 class GCOVLines : public GCOVRecord {
210 public:
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000211 void addLine(uint32_t Line) {
Nick Lewycky5f53ddd2014-06-03 04:25:36 +0000212 assert(Line != 0 && "Line zero is not a valid real line number.");
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000213 Lines.push_back(Line);
Nick Lewycky966edd02011-04-16 01:20:23 +0000214 }
215
Craig Topper24048c92013-07-17 03:54:53 +0000216 uint32_t length() const {
Nick Lewycky6404d972011-11-27 23:22:20 +0000217 // Here 2 = 1 for string length + 1 for '0' id#.
Devang Pateladd1f172011-09-20 18:35:00 +0000218 return lengthOfGCOVString(Filename) + 2 + Lines.size();
Nick Lewycky966edd02011-04-16 01:20:23 +0000219 }
220
Devang Pateladd1f172011-09-20 18:35:00 +0000221 void writeOut() {
222 write(0);
223 writeGCOVString(Filename);
224 for (int i = 0, e = Lines.size(); i != e; ++i)
225 write(Lines[i]);
226 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000227
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000228 GCOVLines(StringRef F, raw_ostream *os)
Devang Pateladd1f172011-09-20 18:35:00 +0000229 : Filename(F) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000230 this->os = os;
231 }
232
Devang Patel7d06f5c2011-09-20 18:48:56 +0000233 private:
Devang Pateladd1f172011-09-20 18:35:00 +0000234 StringRef Filename;
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000235 SmallVector<uint32_t, 32> Lines;
Nick Lewycky966edd02011-04-16 01:20:23 +0000236 };
237
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000238
Nick Lewycky966edd02011-04-16 01:20:23 +0000239 // Represent a basic block in GCOV. Each block has a unique number in the
240 // function, number of lines belonging to each block, and a set of edges to
241 // other blocks.
242 class GCOVBlock : public GCOVRecord {
243 public:
Devang Patel9cb1fc02011-09-20 17:55:19 +0000244 GCOVLines &getFile(StringRef Filename) {
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000245 GCOVLines *&Lines = LinesByFile[Filename];
246 if (!Lines) {
Devang Pateladd1f172011-09-20 18:35:00 +0000247 Lines = new GCOVLines(Filename, os);
Nick Lewycky966edd02011-04-16 01:20:23 +0000248 }
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000249 return *Lines;
Nick Lewycky966edd02011-04-16 01:20:23 +0000250 }
251
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000252 void addEdge(GCOVBlock &Successor) {
253 OutEdges.push_back(&Successor);
Nick Lewycky966edd02011-04-16 01:20:23 +0000254 }
255
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000256 void writeOut() {
257 uint32_t Len = 3;
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000258 SmallVector<StringMapEntry<GCOVLines *> *, 32> SortedLinesByFile;
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000259 for (StringMap<GCOVLines *>::iterator I = LinesByFile.begin(),
260 E = LinesByFile.end(); I != E; ++I) {
Devang Pateladd1f172011-09-20 18:35:00 +0000261 Len += I->second->length();
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000262 SortedLinesByFile.push_back(&*I);
Nick Lewycky966edd02011-04-16 01:20:23 +0000263 }
264
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000265 writeBytes(LinesTag, 4);
266 write(Len);
267 write(Number);
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000268
Benjamin Kramer3a377bc2014-03-01 11:47:00 +0000269 std::sort(SortedLinesByFile.begin(), SortedLinesByFile.end(),
270 [](StringMapEntry<GCOVLines *> *LHS,
271 StringMapEntry<GCOVLines *> *RHS) {
272 return LHS->getKey() < RHS->getKey();
273 });
Craig Topperaf0dea12013-07-04 01:31:24 +0000274 for (SmallVectorImpl<StringMapEntry<GCOVLines *> *>::iterator
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000275 I = SortedLinesByFile.begin(), E = SortedLinesByFile.end();
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000276 I != E; ++I)
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000277 (*I)->getValue()->writeOut();
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000278 write(0);
279 write(0);
Nick Lewycky966edd02011-04-16 01:20:23 +0000280 }
281
282 ~GCOVBlock() {
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000283 DeleteContainerSeconds(LinesByFile);
Nick Lewycky966edd02011-04-16 01:20:23 +0000284 }
285
David Blaikieea37c112014-12-22 23:12:42 +0000286 GCOVBlock(const GCOVBlock &RHS) : GCOVRecord(RHS), Number(RHS.Number) {
287 // Only allow copy before edges and lines have been added. After that,
288 // there are inter-block pointers (eg: edges) that won't take kindly to
289 // blocks being copied or moved around.
290 assert(LinesByFile.empty());
291 assert(OutEdges.empty());
292 }
293
Nick Lewycky966edd02011-04-16 01:20:23 +0000294 private:
295 friend class GCOVFunction;
296
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000297 GCOVBlock(uint32_t Number, raw_ostream *os)
298 : Number(Number) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000299 this->os = os;
300 }
301
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000302 uint32_t Number;
303 StringMap<GCOVLines *> LinesByFile;
304 SmallVector<GCOVBlock *, 4> OutEdges;
Nick Lewycky966edd02011-04-16 01:20:23 +0000305 };
306
307 // A function has a unique identifier, a checksum (we leave as zero) and a
308 // set of blocks and a map of edges between blocks. This is the only GCOV
309 // object users can construct, the blocks and lines will be rooted here.
310 class GCOVFunction : public GCOVRecord {
311 public:
David Blaikieea37c112014-12-22 23:12:42 +0000312 GCOVFunction(DISubprogram SP, raw_ostream *os, uint32_t Ident,
Justin Bogner3faa76b2015-03-16 23:52:03 +0000313 bool UseCfgChecksum, bool ExitBlockBeforeBody)
David Blaikieea37c112014-12-22 23:12:42 +0000314 : SP(SP), Ident(Ident), UseCfgChecksum(UseCfgChecksum), CfgChecksum(0),
315 ReturnBlock(1, os) {
Nick Lewycky966edd02011-04-16 01:20:23 +0000316 this->os = os;
317
318 Function *F = SP.getFunction();
Daniel Jasper87a24d52013-12-04 08:57:17 +0000319 DEBUG(dbgs() << "Function: " << getFunctionName(SP) << "\n");
Nick Lewycky2e8a6212014-12-03 02:45:01 +0000320
David Blaikieea37c112014-12-22 23:12:42 +0000321 uint32_t i = 0;
322 for (auto &BB : *F) {
Justin Bogner3faa76b2015-03-16 23:52:03 +0000323 // Skip index 1 if it's assigned to the ReturnBlock.
324 if (i == 1 && ExitBlockBeforeBody)
325 ++i;
326 Blocks.insert(std::make_pair(&BB, GCOVBlock(i++, os)));
Nick Lewycky966edd02011-04-16 01:20:23 +0000327 }
Justin Bogner3faa76b2015-03-16 23:52:03 +0000328 if (!ExitBlockBeforeBody)
329 ReturnBlock.Number = i;
Daniel Jasper87a24d52013-12-04 08:57:17 +0000330
Alp Tokere69170a2014-06-26 22:52:05 +0000331 std::string FunctionNameAndLine;
332 raw_string_ostream FNLOS(FunctionNameAndLine);
333 FNLOS << getFunctionName(SP) << SP.getLineNumber();
334 FNLOS.flush();
335 FuncChecksum = hash_value(FunctionNameAndLine);
Nick Lewycky966edd02011-04-16 01:20:23 +0000336 }
337
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000338 GCOVBlock &getBlock(BasicBlock *BB) {
David Blaikieea37c112014-12-22 23:12:42 +0000339 return Blocks.find(BB)->second;
Nick Lewycky966edd02011-04-16 01:20:23 +0000340 }
341
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000342 GCOVBlock &getReturnBlock() {
David Blaikieea37c112014-12-22 23:12:42 +0000343 return ReturnBlock;
Nick Lewycky8411b552011-04-21 03:18:00 +0000344 }
345
Yuchen Wubabe7492013-11-20 04:15:05 +0000346 std::string getEdgeDestinations() {
Alp Tokere69170a2014-06-26 22:52:05 +0000347 std::string EdgeDestinations;
348 raw_string_ostream EDOS(EdgeDestinations);
Yuchen Wubabe7492013-11-20 04:15:05 +0000349 Function *F = Blocks.begin()->first->getParent();
350 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
David Blaikieea37c112014-12-22 23:12:42 +0000351 GCOVBlock &Block = getBlock(I);
Yuchen Wubabe7492013-11-20 04:15:05 +0000352 for (int i = 0, e = Block.OutEdges.size(); i != e; ++i)
Alp Tokere69170a2014-06-26 22:52:05 +0000353 EDOS << Block.OutEdges[i]->Number;
Yuchen Wubabe7492013-11-20 04:15:05 +0000354 }
Alp Tokere69170a2014-06-26 22:52:05 +0000355 return EdgeDestinations;
Yuchen Wubabe7492013-11-20 04:15:05 +0000356 }
357
Daniel Jasper87a24d52013-12-04 08:57:17 +0000358 uint32_t getFuncChecksum() {
359 return FuncChecksum;
360 }
361
Yuchen Wubabe7492013-11-20 04:15:05 +0000362 void setCfgChecksum(uint32_t Checksum) {
363 CfgChecksum = Checksum;
364 }
365
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000366 void writeOut() {
Yuchen Wubabe7492013-11-20 04:15:05 +0000367 writeBytes(FunctionTag, 4);
368 uint32_t BlockLen = 1 + 1 + 1 + lengthOfGCOVString(getFunctionName(SP)) +
369 1 + lengthOfGCOVString(SP.getFilename()) + 1;
370 if (UseCfgChecksum)
371 ++BlockLen;
372 write(BlockLen);
373 write(Ident);
Daniel Jasper87a24d52013-12-04 08:57:17 +0000374 write(FuncChecksum);
Yuchen Wubabe7492013-11-20 04:15:05 +0000375 if (UseCfgChecksum)
376 write(CfgChecksum);
377 writeGCOVString(getFunctionName(SP));
378 writeGCOVString(SP.getFilename());
379 write(SP.getLineNumber());
380
Nick Lewycky966edd02011-04-16 01:20:23 +0000381 // Emit count of blocks.
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000382 writeBytes(BlockTag, 4);
383 write(Blocks.size() + 1);
384 for (int i = 0, e = Blocks.size() + 1; i != e; ++i) {
385 write(0); // No flags on our blocks.
Nick Lewycky966edd02011-04-16 01:20:23 +0000386 }
Nick Lewycky6404d972011-11-27 23:22:20 +0000387 DEBUG(dbgs() << Blocks.size() << " blocks.\n");
Nick Lewycky966edd02011-04-16 01:20:23 +0000388
389 // Emit edges between blocks.
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000390 if (Blocks.empty()) return;
391 Function *F = Blocks.begin()->first->getParent();
392 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
David Blaikieea37c112014-12-22 23:12:42 +0000393 GCOVBlock &Block = getBlock(I);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000394 if (Block.OutEdges.empty()) continue;
Nick Lewycky966edd02011-04-16 01:20:23 +0000395
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000396 writeBytes(EdgeTag, 4);
397 write(Block.OutEdges.size() * 2 + 1);
398 write(Block.Number);
399 for (int i = 0, e = Block.OutEdges.size(); i != e; ++i) {
Nick Lewycky6404d972011-11-27 23:22:20 +0000400 DEBUG(dbgs() << Block.Number << " -> " << Block.OutEdges[i]->Number
401 << "\n");
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000402 write(Block.OutEdges[i]->Number);
403 write(0); // no flags
Nick Lewycky966edd02011-04-16 01:20:23 +0000404 }
405 }
406
407 // Emit lines for each block.
Nick Lewycky0fdd0192013-06-18 06:38:21 +0000408 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
David Blaikieea37c112014-12-22 23:12:42 +0000409 getBlock(I).writeOut();
Nick Lewycky966edd02011-04-16 01:20:23 +0000410 }
411 }
412
413 private:
Yuchen Wubabe7492013-11-20 04:15:05 +0000414 DISubprogram SP;
415 uint32_t Ident;
Daniel Jasper87a24d52013-12-04 08:57:17 +0000416 uint32_t FuncChecksum;
Yuchen Wubabe7492013-11-20 04:15:05 +0000417 bool UseCfgChecksum;
418 uint32_t CfgChecksum;
David Blaikieea37c112014-12-22 23:12:42 +0000419 DenseMap<BasicBlock *, GCOVBlock> Blocks;
420 GCOVBlock ReturnBlock;
Nick Lewycky966edd02011-04-16 01:20:23 +0000421 };
422}
423
Bill Wendling85722f42013-03-28 22:40:08 +0000424std::string GCOVProfiler::mangleName(DICompileUnit CU, const char *NewStem) {
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000425 if (NamedMDNode *GCov = M->getNamedMetadata("llvm.gcov")) {
426 for (int i = 0, e = GCov->getNumOperands(); i != e; ++i) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000427 MDNode *N = GCov->getOperand(i);
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000428 if (N->getNumOperands() != 2) continue;
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000429 MDString *GCovFile = dyn_cast<MDString>(N->getOperand(0));
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000430 MDNode *CompileUnit = dyn_cast<MDNode>(N->getOperand(1));
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000431 if (!GCovFile || !CompileUnit) continue;
432 if (CompileUnit == CU) {
Bill Wendling1f6f8c22012-08-30 00:34:21 +0000433 SmallString<128> Filename = GCovFile->getString();
434 sys::path::replace_extension(Filename, NewStem);
435 return Filename.str();
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000436 }
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000437 }
438 }
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000439
Bill Wendling1f6f8c22012-08-30 00:34:21 +0000440 SmallString<128> Filename = CU.getFilename();
Nick Lewyckya3d5d162011-05-05 00:03:30 +0000441 sys::path::replace_extension(Filename, NewStem);
Bill Wendling5aa82392013-03-26 22:47:50 +0000442 StringRef FName = sys::path::filename(Filename);
Bill Wendling5aa82392013-03-26 22:47:50 +0000443 SmallString<128> CurPath;
444 if (sys::fs::current_path(CurPath)) return FName;
Yaron Keren75e0c4b2015-03-27 17:51:30 +0000445 sys::path::append(CurPath, FName);
Bill Wendling5aa82392013-03-26 22:47:50 +0000446 return CurPath.str();
Nick Lewycky6d9f0612011-05-04 04:03:04 +0000447}
448
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000449bool GCOVProfiler::runOnModule(Module &M) {
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000450 this->M = &M;
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000451 Ctx = &M.getContext();
452
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000453 if (Options.EmitNotes) emitProfileNotes();
454 if (Options.EmitData) return emitProfileArcs();
Nick Lewycky8e0a38f2011-04-21 01:56:25 +0000455 return false;
Nick Lewyckyc5ea8522011-04-16 02:05:18 +0000456}
457
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000458static bool functionHasLines(Function *F) {
459 // Check whether this function actually has any source lines. Not only
460 // do these waste space, they also can crash gcov.
461 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
462 for (BasicBlock::iterator I = BB->begin(), IE = BB->end();
463 I != IE; ++I) {
Nick Lewyckyce98b432014-06-04 21:47:19 +0000464 // Debug intrinsic locations correspond to the location of the
465 // declaration, not necessarily any statements or expressions.
Nick Lewycky5f53ddd2014-06-03 04:25:36 +0000466 if (isa<DbgInfoIntrinsic>(I)) continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000467
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000468 const DebugLoc &Loc = I->getDebugLoc();
Duncan P. N. Exon Smithec819c02015-03-30 19:49:49 +0000469 if (!Loc)
470 continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000471
472 // Artificial lines such as calls to the global constructors.
Justin Bogner3faa76b2015-03-16 23:52:03 +0000473 if (Loc.getLine() == 0) continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000474
Nick Lewycky5f53ddd2014-06-03 04:25:36 +0000475 return true;
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000476 }
477 }
478 return false;
479}
480
Nick Lewyckyad145502013-03-13 22:55:42 +0000481void GCOVProfiler::emitProfileNotes() {
Devang Patel2b21d862011-08-17 22:49:38 +0000482 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
Nick Lewycky6404d972011-11-27 23:22:20 +0000483 if (!CU_Nodes) return;
Nick Lewycky966edd02011-04-16 01:20:23 +0000484
Nick Lewycky6404d972011-11-27 23:22:20 +0000485 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
486 // Each compile unit gets its own .gcno file. This means that whether we run
487 // this pass over the original .o's as they're produced, or run it after
488 // LTO, we'll generate the same .gcno files.
489
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000490 DICompileUnit CU(CU_Nodes->getOperand(i));
Rafael Espindola3fd1e992014-08-25 18:16:47 +0000491 std::error_code EC;
492 raw_fd_ostream out(mangleName(CU, "gcno"), EC, sys::fs::F_None);
Yuchen Wubabe7492013-11-20 04:15:05 +0000493 std::string EdgeDestinations;
Nick Lewycky6404d972011-11-27 23:22:20 +0000494
495 DIArray SPs = CU.getSubprograms();
Justin Bogner58e41342014-11-06 06:55:02 +0000496 unsigned FunctionIdent = 0;
Nick Lewycky6404d972011-11-27 23:22:20 +0000497 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i) {
498 DISubprogram SP(SPs.getElement(i));
Manman Ren983a16c2013-06-28 05:43:10 +0000499 assert((!SP || SP.isSubprogram()) &&
500 "A MDNode in subprograms of a CU should be null or a DISubprogram.");
501 if (!SP)
502 continue;
Nick Lewycky6404d972011-11-27 23:22:20 +0000503
504 Function *F = SP.getFunction();
505 if (!F) continue;
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000506 if (!functionHasLines(F)) continue;
Bob Wilson055a0b42014-01-31 05:24:01 +0000507
508 // gcov expects every function to start with an entry block that has a
509 // single successor, so split the entry block to make sure of that.
Yuchen Wuc87ca322013-11-22 23:07:45 +0000510 BasicBlock &EntryBlock = F->getEntryBlock();
Bob Wilson055a0b42014-01-31 05:24:01 +0000511 BasicBlock::iterator It = EntryBlock.begin();
512 while (isa<AllocaInst>(*It) || isa<DbgInfoIntrinsic>(*It))
513 ++It;
514 EntryBlock.splitBasicBlock(It);
Yuchen Wuc87ca322013-11-22 23:07:45 +0000515
Justin Bogner58e41342014-11-06 06:55:02 +0000516 Funcs.push_back(make_unique<GCOVFunction>(SP, &out, FunctionIdent++,
Justin Bogner3faa76b2015-03-16 23:52:03 +0000517 Options.UseCfgChecksum,
518 Options.ExitBlockBeforeBody));
David Blaikie229de502014-04-21 20:41:55 +0000519 GCOVFunction &Func = *Funcs.back();
Nick Lewycky6404d972011-11-27 23:22:20 +0000520
521 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
David Blaikie229de502014-04-21 20:41:55 +0000522 GCOVBlock &Block = Func.getBlock(BB);
Nick Lewycky6404d972011-11-27 23:22:20 +0000523 TerminatorInst *TI = BB->getTerminator();
524 if (int successors = TI->getNumSuccessors()) {
525 for (int i = 0; i != successors; ++i) {
David Blaikie229de502014-04-21 20:41:55 +0000526 Block.addEdge(Func.getBlock(TI->getSuccessor(i)));
Nick Lewycky6404d972011-11-27 23:22:20 +0000527 }
528 } else if (isa<ReturnInst>(TI)) {
David Blaikie229de502014-04-21 20:41:55 +0000529 Block.addEdge(Func.getReturnBlock());
Nick Lewycky6404d972011-11-27 23:22:20 +0000530 }
531
532 uint32_t Line = 0;
533 for (BasicBlock::iterator I = BB->begin(), IE = BB->end();
534 I != IE; ++I) {
Nick Lewyckyce98b432014-06-04 21:47:19 +0000535 // Debug intrinsic locations correspond to the location of the
536 // declaration, not necessarily any statements or expressions.
Nick Lewycky5f53ddd2014-06-03 04:25:36 +0000537 if (isa<DbgInfoIntrinsic>(I)) continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000538
Nick Lewycky6404d972011-11-27 23:22:20 +0000539 const DebugLoc &Loc = I->getDebugLoc();
Duncan P. N. Exon Smithec819c02015-03-30 19:49:49 +0000540 if (!Loc)
541 continue;
Nick Lewyckyff114da2014-06-05 04:31:43 +0000542
543 // Artificial lines such as calls to the global constructors.
544 if (Loc.getLine() == 0) continue;
545
Nick Lewycky6404d972011-11-27 23:22:20 +0000546 if (Line == Loc.getLine()) continue;
547 Line = Loc.getLine();
Duncan P. N. Exon Smithec819c02015-03-30 19:49:49 +0000548 if (SP != getDISubprogram(Loc.getScope()))
549 continue;
Nick Lewycky6404d972011-11-27 23:22:20 +0000550
551 GCOVLines &Lines = Block.getFile(SP.getFilename());
552 Lines.addLine(Loc.getLine());
553 }
554 }
David Blaikie229de502014-04-21 20:41:55 +0000555 EdgeDestinations += Func.getEdgeDestinations();
Nick Lewycky6404d972011-11-27 23:22:20 +0000556 }
Yuchen Wubabe7492013-11-20 04:15:05 +0000557
Yuchen Wu664dc762013-11-21 04:01:05 +0000558 FileChecksums.push_back(hash_value(EdgeDestinations));
Yuchen Wubabe7492013-11-20 04:15:05 +0000559 out.write("oncg", 4);
560 out.write(ReversedVersion, 4);
Yuchen Wu664dc762013-11-21 04:01:05 +0000561 out.write(reinterpret_cast<char*>(&FileChecksums.back()), 4);
Yuchen Wubabe7492013-11-20 04:15:05 +0000562
David Blaikie229de502014-04-21 20:41:55 +0000563 for (auto &Func : Funcs) {
Yuchen Wu664dc762013-11-21 04:01:05 +0000564 Func->setCfgChecksum(FileChecksums.back());
565 Func->writeOut();
566 }
Yuchen Wubabe7492013-11-20 04:15:05 +0000567
Nick Lewycky6404d972011-11-27 23:22:20 +0000568 out.write("\0\0\0\0\0\0\0\0", 8); // EOF
569 out.close();
Nick Lewycky966edd02011-04-16 01:20:23 +0000570 }
571}
572
Devang Patel2b21d862011-08-17 22:49:38 +0000573bool GCOVProfiler::emitProfileArcs() {
574 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
575 if (!CU_Nodes) return false;
Nick Lewycky966edd02011-04-16 01:20:23 +0000576
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000577 bool Result = false;
Bill Wendling15605172012-05-28 06:10:56 +0000578 bool InsertIndCounterIncrCode = false;
Devang Patel2b21d862011-08-17 22:49:38 +0000579 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000580 DICompileUnit CU(CU_Nodes->getOperand(i));
Devang Patel2b21d862011-08-17 22:49:38 +0000581 DIArray SPs = CU.getSubprograms();
582 SmallVector<std::pair<GlobalVariable *, MDNode *>, 8> CountersBySP;
583 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i) {
584 DISubprogram SP(SPs.getElement(i));
Manman Ren983a16c2013-06-28 05:43:10 +0000585 assert((!SP || SP.isSubprogram()) &&
586 "A MDNode in subprograms of a CU should be null or a DISubprogram.");
587 if (!SP)
588 continue;
Devang Patel2b21d862011-08-17 22:49:38 +0000589 Function *F = SP.getFunction();
590 if (!F) continue;
Nick Lewycky05e0f1c2014-04-18 23:32:28 +0000591 if (!functionHasLines(F)) continue;
Devang Patel2b21d862011-08-17 22:49:38 +0000592 if (!Result) Result = true;
593 unsigned Edges = 0;
594 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
595 TerminatorInst *TI = BB->getTerminator();
596 if (isa<ReturnInst>(TI))
597 ++Edges;
598 else
599 Edges += TI->getNumSuccessors();
600 }
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000601
Devang Patel2b21d862011-08-17 22:49:38 +0000602 ArrayType *CounterTy =
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000603 ArrayType::get(Type::getInt64Ty(*Ctx), Edges);
Devang Patel2b21d862011-08-17 22:49:38 +0000604 GlobalVariable *Counters =
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000605 new GlobalVariable(*M, CounterTy, false,
Nick Lewycky966edd02011-04-16 01:20:23 +0000606 GlobalValue::InternalLinkage,
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000607 Constant::getNullValue(CounterTy),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000608 "__llvm_gcov_ctr");
Devang Patel2b21d862011-08-17 22:49:38 +0000609 CountersBySP.push_back(std::make_pair(Counters, (MDNode*)SP));
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000610
Devang Patel2b21d862011-08-17 22:49:38 +0000611 UniqueVector<BasicBlock *> ComplexEdgePreds;
612 UniqueVector<BasicBlock *> ComplexEdgeSuccs;
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000613
Devang Patel2b21d862011-08-17 22:49:38 +0000614 unsigned Edge = 0;
615 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
616 TerminatorInst *TI = BB->getTerminator();
617 int Successors = isa<ReturnInst>(TI) ? 1 : TI->getNumSuccessors();
618 if (Successors) {
Devang Patel2b21d862011-08-17 22:49:38 +0000619 if (Successors == 1) {
Bill Wendling707f6012013-08-20 23:52:00 +0000620 IRBuilder<> Builder(BB->getFirstInsertionPt());
Devang Patel2b21d862011-08-17 22:49:38 +0000621 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
622 Edge);
623 Value *Count = Builder.CreateLoad(Counter);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000624 Count = Builder.CreateAdd(Count, Builder.getInt64(1));
Devang Patel2b21d862011-08-17 22:49:38 +0000625 Builder.CreateStore(Count, Counter);
626 } else if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
Bill Wendling707f6012013-08-20 23:52:00 +0000627 IRBuilder<> Builder(BI);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000628 Value *Sel = Builder.CreateSelect(BI->getCondition(),
629 Builder.getInt64(Edge),
630 Builder.getInt64(Edge + 1));
Devang Patel2b21d862011-08-17 22:49:38 +0000631 SmallVector<Value *, 2> Idx;
Nick Lewycky8e94d802013-02-27 05:46:30 +0000632 Idx.push_back(Builder.getInt64(0));
Devang Patel2b21d862011-08-17 22:49:38 +0000633 Idx.push_back(Sel);
634 Value *Counter = Builder.CreateInBoundsGEP(Counters, Idx);
635 Value *Count = Builder.CreateLoad(Counter);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000636 Count = Builder.CreateAdd(Count, Builder.getInt64(1));
Devang Patel2b21d862011-08-17 22:49:38 +0000637 Builder.CreateStore(Count, Counter);
638 } else {
639 ComplexEdgePreds.insert(BB);
640 for (int i = 0; i != Successors; ++i)
641 ComplexEdgeSuccs.insert(TI->getSuccessor(i));
642 }
Bill Wendling707f6012013-08-20 23:52:00 +0000643
Devang Patel2b21d862011-08-17 22:49:38 +0000644 Edge += Successors;
Nick Lewycky966edd02011-04-16 01:20:23 +0000645 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000646 }
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000647
Devang Patel2b21d862011-08-17 22:49:38 +0000648 if (!ComplexEdgePreds.empty()) {
649 GlobalVariable *EdgeTable =
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000650 buildEdgeLookupTable(F, Counters,
651 ComplexEdgePreds, ComplexEdgeSuccs);
Devang Patel2b21d862011-08-17 22:49:38 +0000652 GlobalVariable *EdgeState = getEdgeStateValue();
Duncan P. N. Exon Smithcec1c242014-03-11 02:44:45 +0000653
Devang Patel2b21d862011-08-17 22:49:38 +0000654 for (int i = 0, e = ComplexEdgePreds.size(); i != e; ++i) {
Bill Wendling707f6012013-08-20 23:52:00 +0000655 IRBuilder<> Builder(ComplexEdgePreds[i + 1]->getFirstInsertionPt());
Nick Lewycky8e94d802013-02-27 05:46:30 +0000656 Builder.CreateStore(Builder.getInt32(i), EdgeState);
Devang Patel2b21d862011-08-17 22:49:38 +0000657 }
Bill Wendling707f6012013-08-20 23:52:00 +0000658
Devang Patel2b21d862011-08-17 22:49:38 +0000659 for (int i = 0, e = ComplexEdgeSuccs.size(); i != e; ++i) {
Bill Wendling707f6012013-08-20 23:52:00 +0000660 // Call runtime to perform increment.
661 IRBuilder<> Builder(ComplexEdgeSuccs[i+1]->getFirstInsertionPt());
Devang Patel2b21d862011-08-17 22:49:38 +0000662 Value *CounterPtrArray =
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000663 Builder.CreateConstInBoundsGEP2_64(EdgeTable, 0,
664 i * ComplexEdgePreds.size());
Bill Wendling8ed07492012-05-25 23:55:00 +0000665
666 // Build code to increment the counter.
Bill Wendling15605172012-05-28 06:10:56 +0000667 InsertIndCounterIncrCode = true;
668 Builder.CreateCall2(getIncrementIndirectCounterFunc(),
669 EdgeState, CounterPtrArray);
Devang Patel2b21d862011-08-17 22:49:38 +0000670 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000671 }
672 }
Bill Wendlinge85f3492012-06-01 23:14:32 +0000673
Bill Wendlingc3cab812013-03-18 23:04:39 +0000674 Function *WriteoutF = insertCounterWriteout(CountersBySP);
675 Function *FlushF = insertFlush(CountersBySP);
676
677 // Create a small bit of code that registers the "__llvm_gcov_writeout" to
Bill Wendling04d57c72013-03-19 21:03:22 +0000678 // be executed at exit and the "__llvm_gcov_flush" function to be executed
679 // when "__gcov_flush" is called.
Bill Wendlingc3cab812013-03-18 23:04:39 +0000680 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
681 Function *F = Function::Create(FTy, GlobalValue::InternalLinkage,
682 "__llvm_gcov_init", M);
683 F->setUnnamedAddr(true);
684 F->setLinkage(GlobalValue::InternalLinkage);
685 F->addFnAttr(Attribute::NoInline);
686 if (Options.NoRedZone)
687 F->addFnAttr(Attribute::NoRedZone);
688
689 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", F);
690 IRBuilder<> Builder(BB);
691
Bill Wendlingc3cab812013-03-18 23:04:39 +0000692 FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
Bill Wendlingc77e9442013-03-20 21:13:59 +0000693 Type *Params[] = {
694 PointerType::get(FTy, 0),
695 PointerType::get(FTy, 0)
696 };
697 FTy = FunctionType::get(Builder.getVoidTy(), Params, false);
Bill Wendling04d57c72013-03-19 21:03:22 +0000698
Yuchen Wu3197b252013-10-23 20:35:00 +0000699 // Initialize the environment and register the local writeout and flush
Bill Wendlingc77e9442013-03-20 21:13:59 +0000700 // functions.
701 Constant *GCOVInit = M->getOrInsertFunction("llvm_gcov_init", FTy);
702 Builder.CreateCall2(GCOVInit, WriteoutF, FlushF);
Bill Wendlingc3cab812013-03-18 23:04:39 +0000703 Builder.CreateRetVoid();
704
705 appendToGlobalCtors(*M, F, 0);
Nick Lewycky966edd02011-04-16 01:20:23 +0000706 }
Bill Wendling15605172012-05-28 06:10:56 +0000707
708 if (InsertIndCounterIncrCode)
709 insertIndirectCounterIncrement();
710
Devang Patel2b21d862011-08-17 22:49:38 +0000711 return Result;
Nick Lewycky966edd02011-04-16 01:20:23 +0000712}
713
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000714// All edges with successors that aren't branches are "complex", because it
715// requires complex logic to pick which counter to update.
716GlobalVariable *GCOVProfiler::buildEdgeLookupTable(
717 Function *F,
718 GlobalVariable *Counters,
719 const UniqueVector<BasicBlock *> &Preds,
720 const UniqueVector<BasicBlock *> &Succs) {
721 // TODO: support invoke, threads. We rely on the fact that nothing can modify
722 // the whole-Module pred edge# between the time we set it and the time we next
723 // read it. Threads and invoke make this untrue.
724
725 // emit [(succs * preds) x i64*], logically [succ x [pred x i64*]].
Benjamin Kramer96e1e392012-11-17 13:49:37 +0000726 size_t TableSize = Succs.size() * Preds.size();
Chris Lattner229907c2011-07-18 04:54:35 +0000727 Type *Int64PtrTy = Type::getInt64PtrTy(*Ctx);
Benjamin Kramer96e1e392012-11-17 13:49:37 +0000728 ArrayType *EdgeTableTy = ArrayType::get(Int64PtrTy, TableSize);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000729
Ahmed Charles56440fd2014-03-06 05:51:42 +0000730 std::unique_ptr<Constant * []> EdgeTable(new Constant *[TableSize]);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000731 Constant *NullValue = Constant::getNullValue(Int64PtrTy);
Benjamin Kramer96e1e392012-11-17 13:49:37 +0000732 for (size_t i = 0; i != TableSize; ++i)
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000733 EdgeTable[i] = NullValue;
734
735 unsigned Edge = 0;
736 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
737 TerminatorInst *TI = BB->getTerminator();
738 int Successors = isa<ReturnInst>(TI) ? 1 : TI->getNumSuccessors();
Nick Lewycky6aa79492011-04-28 21:35:49 +0000739 if (Successors > 1 && !isa<BranchInst>(TI) && !isa<ReturnInst>(TI)) {
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000740 for (int i = 0; i != Successors; ++i) {
741 BasicBlock *Succ = TI->getSuccessor(i);
Nick Lewycky8e94d802013-02-27 05:46:30 +0000742 IRBuilder<> Builder(Succ);
743 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000744 Edge + i);
745 EdgeTable[((Succs.idFor(Succ)-1) * Preds.size()) +
746 (Preds.idFor(BB)-1)] = cast<Constant>(Counter);
747 }
748 }
749 Edge += Successors;
750 }
751
752 GlobalVariable *EdgeTableGV =
753 new GlobalVariable(
754 *M, EdgeTableTy, true, GlobalValue::InternalLinkage,
Craig Toppere1d12942014-08-27 05:25:25 +0000755 ConstantArray::get(EdgeTableTy,
756 makeArrayRef(&EdgeTable[0],TableSize)),
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000757 "__llvm_gcda_edge_table");
758 EdgeTableGV->setUnnamedAddr(true);
759 return EdgeTableGV;
760}
761
Nick Lewycky966edd02011-04-16 01:20:23 +0000762Constant *GCOVProfiler::getStartFileFunc() {
Nick Lewycky492afe82013-03-07 08:28:49 +0000763 Type *Args[] = {
764 Type::getInt8PtrTy(*Ctx), // const char *orig_filename
765 Type::getInt8PtrTy(*Ctx), // const char version[4]
Yuchen Wubabe7492013-11-20 04:15:05 +0000766 Type::getInt32Ty(*Ctx), // uint32_t checksum
Nick Lewycky492afe82013-03-07 08:28:49 +0000767 };
768 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000769 return M->getOrInsertFunction("llvm_gcda_start_file", FTy);
770}
771
Bill Wendling15605172012-05-28 06:10:56 +0000772Constant *GCOVProfiler::getIncrementIndirectCounterFunc() {
773 Type *Int32Ty = Type::getInt32Ty(*Ctx);
Bill Wendling8ed07492012-05-25 23:55:00 +0000774 Type *Int64Ty = Type::getInt64Ty(*Ctx);
Bill Wendling15605172012-05-28 06:10:56 +0000775 Type *Args[] = {
Micah Villmow51e72462012-10-24 17:25:11 +0000776 Int32Ty->getPointerTo(), // uint32_t *predecessor
777 Int64Ty->getPointerTo()->getPointerTo() // uint64_t **counters
Bill Wendling15605172012-05-28 06:10:56 +0000778 };
779 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
780 return M->getOrInsertFunction("__llvm_gcov_indirect_counter_increment", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000781}
782
783Constant *GCOVProfiler::getEmitFunctionFunc() {
Yuchen Wubabe7492013-11-20 04:15:05 +0000784 Type *Args[] = {
Nick Lewycky4f9c3672011-05-05 02:46:38 +0000785 Type::getInt32Ty(*Ctx), // uint32_t ident
786 Type::getInt8PtrTy(*Ctx), // const char *function_name
Daniel Jasper87a24d52013-12-04 08:57:17 +0000787 Type::getInt32Ty(*Ctx), // uint32_t func_checksum
Nick Lewycky88f1d0d2013-03-09 01:33:06 +0000788 Type::getInt8Ty(*Ctx), // uint8_t use_extra_checksum
Yuchen Wubabe7492013-11-20 04:15:05 +0000789 Type::getInt32Ty(*Ctx), // uint32_t cfg_checksum
Nick Lewycky4f9c3672011-05-05 02:46:38 +0000790 };
Bill Wendling8ed07492012-05-25 23:55:00 +0000791 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000792 return M->getOrInsertFunction("llvm_gcda_emit_function", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000793}
794
795Constant *GCOVProfiler::getEmitArcsFunc() {
Jay Foadb804a2b2011-07-12 14:06:48 +0000796 Type *Args[] = {
Nick Lewycky966edd02011-04-16 01:20:23 +0000797 Type::getInt32Ty(*Ctx), // uint32_t num_counters
798 Type::getInt64PtrTy(*Ctx), // uint64_t *counters
799 };
Nick Lewycky492afe82013-03-07 08:28:49 +0000800 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000801 return M->getOrInsertFunction("llvm_gcda_emit_arcs", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000802}
803
Yuchen Wu062f24c2013-11-12 04:59:08 +0000804Constant *GCOVProfiler::getSummaryInfoFunc() {
805 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
806 return M->getOrInsertFunction("llvm_gcda_summary_info", FTy);
807}
808
Bill Wendling04d57c72013-03-19 21:03:22 +0000809Constant *GCOVProfiler::getDeleteWriteoutFunctionListFunc() {
810 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
811 return M->getOrInsertFunction("llvm_delete_writeout_function_list", FTy);
812}
813
Bill Wendlingc3cab812013-03-18 23:04:39 +0000814Constant *GCOVProfiler::getDeleteFlushFunctionListFunc() {
815 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
816 return M->getOrInsertFunction("llvm_delete_flush_function_list", FTy);
817}
818
Nick Lewycky966edd02011-04-16 01:20:23 +0000819Constant *GCOVProfiler::getEndFileFunc() {
Chris Lattner229907c2011-07-18 04:54:35 +0000820 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000821 return M->getOrInsertFunction("llvm_gcda_end_file", FTy);
Nick Lewycky966edd02011-04-16 01:20:23 +0000822}
823
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000824GlobalVariable *GCOVProfiler::getEdgeStateValue() {
825 GlobalVariable *GV = M->getGlobalVariable("__llvm_gcov_global_state_pred");
826 if (!GV) {
827 GV = new GlobalVariable(*M, Type::getInt32Ty(*Ctx), false,
828 GlobalValue::InternalLinkage,
829 ConstantInt::get(Type::getInt32Ty(*Ctx),
830 0xffffffff),
831 "__llvm_gcov_global_state_pred");
832 GV->setUnnamedAddr(true);
833 }
834 return GV;
835}
Nick Lewycky966edd02011-04-16 01:20:23 +0000836
Bill Wendlingc3cab812013-03-18 23:04:39 +0000837Function *GCOVProfiler::insertCounterWriteout(
Bill Wendlinge8aee6b2012-08-29 18:45:41 +0000838 ArrayRef<std::pair<GlobalVariable *, MDNode *> > CountersBySP) {
Bill Wendling2e6e8662012-09-13 00:09:55 +0000839 FunctionType *WriteoutFTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
840 Function *WriteoutF = M->getFunction("__llvm_gcov_writeout");
841 if (!WriteoutF)
842 WriteoutF = Function::Create(WriteoutFTy, GlobalValue::InternalLinkage,
843 "__llvm_gcov_writeout", M);
Nick Lewycky966edd02011-04-16 01:20:23 +0000844 WriteoutF->setUnnamedAddr(true);
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000845 WriteoutF->addFnAttr(Attribute::NoInline);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000846 if (Options.NoRedZone)
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000847 WriteoutF->addFnAttr(Attribute::NoRedZone);
Bill Wendling2e6e8662012-09-13 00:09:55 +0000848
849 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", WriteoutF);
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000850 IRBuilder<> Builder(BB);
Nick Lewycky966edd02011-04-16 01:20:23 +0000851
852 Constant *StartFile = getStartFileFunc();
853 Constant *EmitFunction = getEmitFunctionFunc();
854 Constant *EmitArcs = getEmitArcsFunc();
Yuchen Wu062f24c2013-11-12 04:59:08 +0000855 Constant *SummaryInfo = getSummaryInfoFunc();
Nick Lewycky966edd02011-04-16 01:20:23 +0000856 Constant *EndFile = getEndFileFunc();
857
Devang Patel2b21d862011-08-17 22:49:38 +0000858 NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
859 if (CU_Nodes) {
860 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000861 DICompileUnit CU(CU_Nodes->getOperand(i));
Bill Wendling85722f42013-03-28 22:40:08 +0000862 std::string FilenameGcda = mangleName(CU, "gcda");
Yuchen Wuc15bf892013-12-04 19:18:23 +0000863 uint32_t CfgChecksum = FileChecksums.empty() ? 0 : FileChecksums[i];
Yuchen Wubabe7492013-11-20 04:15:05 +0000864 Builder.CreateCall3(StartFile,
Nick Lewycky492afe82013-03-07 08:28:49 +0000865 Builder.CreateGlobalStringPtr(FilenameGcda),
Yuchen Wubabe7492013-11-20 04:15:05 +0000866 Builder.CreateGlobalStringPtr(ReversedVersion),
Yuchen Wu2a9d9692013-11-21 04:53:39 +0000867 Builder.getInt32(CfgChecksum));
Nick Lewycky03aed112013-03-09 02:06:37 +0000868 for (unsigned j = 0, e = CountersBySP.size(); j != e; ++j) {
869 DISubprogram SP(CountersBySP[j].second);
Yuchen Wuc15bf892013-12-04 19:18:23 +0000870 uint32_t FuncChecksum = Funcs.empty() ? 0 : Funcs[j]->getFuncChecksum();
Daniel Jasper87a24d52013-12-04 08:57:17 +0000871 Builder.CreateCall5(
Nick Lewyckyd6718632013-03-19 01:37:55 +0000872 EmitFunction, Builder.getInt32(j),
873 Options.FunctionNamesInData ?
874 Builder.CreateGlobalStringPtr(getFunctionName(SP)) :
875 Constant::getNullValue(Builder.getInt8PtrTy()),
Daniel Jasper87a24d52013-12-04 08:57:17 +0000876 Builder.getInt32(FuncChecksum),
Yuchen Wubabe7492013-11-20 04:15:05 +0000877 Builder.getInt8(Options.UseCfgChecksum),
Yuchen Wu2a9d9692013-11-21 04:53:39 +0000878 Builder.getInt32(CfgChecksum));
Nick Lewycky88f1d0d2013-03-09 01:33:06 +0000879
Nick Lewycky03aed112013-03-09 02:06:37 +0000880 GlobalVariable *GV = CountersBySP[j].first;
Devang Patel2b21d862011-08-17 22:49:38 +0000881 unsigned Arcs =
Nick Lewycky966edd02011-04-16 01:20:23 +0000882 cast<ArrayType>(GV->getType()->getElementType())->getNumElements();
Devang Patel2b21d862011-08-17 22:49:38 +0000883 Builder.CreateCall2(EmitArcs,
Nick Lewycky8e94d802013-02-27 05:46:30 +0000884 Builder.getInt32(Arcs),
Devang Patel2b21d862011-08-17 22:49:38 +0000885 Builder.CreateConstGEP2_64(GV, 0, 0));
886 }
Yuchen Wu062f24c2013-11-12 04:59:08 +0000887 Builder.CreateCall(SummaryInfo);
Devang Patel2b21d862011-08-17 22:49:38 +0000888 Builder.CreateCall(EndFile);
Nick Lewycky966edd02011-04-16 01:20:23 +0000889 }
Nick Lewycky966edd02011-04-16 01:20:23 +0000890 }
Bill Wendlingc3cab812013-03-18 23:04:39 +0000891
Nick Lewyckyc58d2932011-04-26 03:54:16 +0000892 Builder.CreateRetVoid();
Bill Wendlingc3cab812013-03-18 23:04:39 +0000893 return WriteoutF;
Nick Lewycky966edd02011-04-16 01:20:23 +0000894}
Bill Wendling15605172012-05-28 06:10:56 +0000895
896void GCOVProfiler::insertIndirectCounterIncrement() {
897 Function *Fn =
898 cast<Function>(GCOVProfiler::getIncrementIndirectCounterFunc());
899 Fn->setUnnamedAddr(true);
900 Fn->setLinkage(GlobalValue::InternalLinkage);
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000901 Fn->addFnAttr(Attribute::NoInline);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000902 if (Options.NoRedZone)
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000903 Fn->addFnAttr(Attribute::NoRedZone);
Bill Wendling15605172012-05-28 06:10:56 +0000904
Bill Wendling15605172012-05-28 06:10:56 +0000905 // Create basic blocks for function.
906 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", Fn);
907 IRBuilder<> Builder(BB);
908
909 BasicBlock *PredNotNegOne = BasicBlock::Create(*Ctx, "", Fn);
910 BasicBlock *CounterEnd = BasicBlock::Create(*Ctx, "", Fn);
911 BasicBlock *Exit = BasicBlock::Create(*Ctx, "exit", Fn);
912
913 // uint32_t pred = *predecessor;
914 // if (pred == 0xffffffff) return;
915 Argument *Arg = Fn->arg_begin();
916 Arg->setName("predecessor");
917 Value *Pred = Builder.CreateLoad(Arg, "pred");
Nick Lewycky8e94d802013-02-27 05:46:30 +0000918 Value *Cond = Builder.CreateICmpEQ(Pred, Builder.getInt32(0xffffffff));
Bill Wendling15605172012-05-28 06:10:56 +0000919 BranchInst::Create(Exit, PredNotNegOne, Cond, BB);
920
921 Builder.SetInsertPoint(PredNotNegOne);
922
923 // uint64_t *counter = counters[pred];
924 // if (!counter) return;
Nick Lewycky8e94d802013-02-27 05:46:30 +0000925 Value *ZExtPred = Builder.CreateZExt(Pred, Builder.getInt64Ty());
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000926 Arg = std::next(Fn->arg_begin());
Bill Wendling15605172012-05-28 06:10:56 +0000927 Arg->setName("counters");
928 Value *GEP = Builder.CreateGEP(Arg, ZExtPred);
929 Value *Counter = Builder.CreateLoad(GEP, "counter");
Nick Lewycky625f3952013-02-27 06:21:30 +0000930 Cond = Builder.CreateICmpEQ(Counter,
931 Constant::getNullValue(
932 Builder.getInt64Ty()->getPointerTo()));
Bill Wendling15605172012-05-28 06:10:56 +0000933 Builder.CreateCondBr(Cond, Exit, CounterEnd);
934
935 // ++*counter;
936 Builder.SetInsertPoint(CounterEnd);
937 Value *Add = Builder.CreateAdd(Builder.CreateLoad(Counter),
Nick Lewycky8e94d802013-02-27 05:46:30 +0000938 Builder.getInt64(1));
Bill Wendling15605172012-05-28 06:10:56 +0000939 Builder.CreateStore(Add, Counter);
940 Builder.CreateBr(Exit);
941
942 // Fill in the exit block.
943 Builder.SetInsertPoint(Exit);
944 Builder.CreateRetVoid();
945}
Bill Wendling2e6e8662012-09-13 00:09:55 +0000946
Bill Wendlingc3cab812013-03-18 23:04:39 +0000947Function *GCOVProfiler::
Bill Wendling2e6e8662012-09-13 00:09:55 +0000948insertFlush(ArrayRef<std::pair<GlobalVariable*, MDNode*> > CountersBySP) {
949 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
Bill Wendlingc3cab812013-03-18 23:04:39 +0000950 Function *FlushF = M->getFunction("__llvm_gcov_flush");
Bill Wendling2e6e8662012-09-13 00:09:55 +0000951 if (!FlushF)
952 FlushF = Function::Create(FTy, GlobalValue::InternalLinkage,
Bill Wendlingc3cab812013-03-18 23:04:39 +0000953 "__llvm_gcov_flush", M);
Bill Wendling2e6e8662012-09-13 00:09:55 +0000954 else
955 FlushF->setLinkage(GlobalValue::InternalLinkage);
956 FlushF->setUnnamedAddr(true);
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000957 FlushF->addFnAttr(Attribute::NoInline);
Nick Lewyckyfdfed3e2013-03-14 05:13:26 +0000958 if (Options.NoRedZone)
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000959 FlushF->addFnAttr(Attribute::NoRedZone);
Bill Wendling2e6e8662012-09-13 00:09:55 +0000960
Bill Wendling2e6e8662012-09-13 00:09:55 +0000961 BasicBlock *Entry = BasicBlock::Create(*Ctx, "entry", FlushF);
962
963 // Write out the current counters.
964 Constant *WriteoutF = M->getFunction("__llvm_gcov_writeout");
965 assert(WriteoutF && "Need to create the writeout function first!");
966
967 IRBuilder<> Builder(Entry);
968 Builder.CreateCall(WriteoutF);
969
Bill Wendlingfb1f6682012-09-13 14:32:30 +0000970 // Zero out the counters.
971 for (ArrayRef<std::pair<GlobalVariable *, MDNode *> >::iterator
972 I = CountersBySP.begin(), E = CountersBySP.end();
973 I != E; ++I) {
974 GlobalVariable *GV = I->first;
975 Constant *Null = Constant::getNullValue(GV->getType()->getElementType());
Bill Wendling8d26bc32012-09-14 22:35:49 +0000976 Builder.CreateStore(Null, GV);
Bill Wendlingfb1f6682012-09-13 14:32:30 +0000977 }
Bill Wendling2e6e8662012-09-13 00:09:55 +0000978
979 Type *RetTy = FlushF->getReturnType();
980 if (RetTy == Type::getVoidTy(*Ctx))
981 Builder.CreateRetVoid();
982 else if (RetTy->isIntegerTy())
Bill Wendlingc3cab812013-03-18 23:04:39 +0000983 // Used if __llvm_gcov_flush was implicitly declared.
Bill Wendling2e6e8662012-09-13 00:09:55 +0000984 Builder.CreateRet(ConstantInt::get(RetTy, 0));
985 else
Bill Wendlingc3cab812013-03-18 23:04:39 +0000986 report_fatal_error("invalid return type for __llvm_gcov_flush");
987
988 return FlushF;
Bill Wendling2e6e8662012-09-13 00:09:55 +0000989}