LLVM  8.0.1
GCOVProfiling.cpp
Go to the documentation of this file.
1 //===- 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 #include "llvm/ADT/DenseMap.h"
18 #include "llvm/ADT/Hashing.h"
19 #include "llvm/ADT/STLExtras.h"
20 #include "llvm/ADT/Sequence.h"
21 #include "llvm/ADT/Statistic.h"
22 #include "llvm/ADT/StringExtras.h"
23 #include "llvm/ADT/StringMap.h"
26 #include "llvm/IR/CFG.h"
27 #include "llvm/IR/DebugInfo.h"
28 #include "llvm/IR/DebugLoc.h"
29 #include "llvm/IR/IRBuilder.h"
30 #include "llvm/IR/InstIterator.h"
31 #include "llvm/IR/Instructions.h"
32 #include "llvm/IR/IntrinsicInst.h"
33 #include "llvm/IR/Module.h"
34 #include "llvm/Pass.h"
36 #include "llvm/Support/Debug.h"
38 #include "llvm/Support/Path.h"
39 #include "llvm/Support/Regex.h"
44 #include <algorithm>
45 #include <memory>
46 #include <string>
47 #include <utility>
48 using namespace llvm;
49 
50 #define DEBUG_TYPE "insert-gcov-profiling"
51 
53 DefaultGCOVVersion("default-gcov-version", cl::init("402*"), cl::Hidden,
55 static cl::opt<bool> DefaultExitBlockBeforeBody("gcov-exit-block-before-body",
56  cl::init(false), cl::Hidden);
57 
59  GCOVOptions Options;
60  Options.EmitNotes = true;
61  Options.EmitData = true;
62  Options.UseCfgChecksum = false;
63  Options.NoRedZone = false;
64  Options.FunctionNamesInData = true;
66 
67  if (DefaultGCOVVersion.size() != 4) {
68  llvm::report_fatal_error(std::string("Invalid -default-gcov-version: ") +
70  }
71  memcpy(Options.Version, DefaultGCOVVersion.c_str(), 4);
72  return Options;
73 }
74 
75 namespace {
76 class GCOVFunction;
77 
78 class GCOVProfiler {
79 public:
80  GCOVProfiler() : GCOVProfiler(GCOVOptions::getDefault()) {}
81  GCOVProfiler(const GCOVOptions &Opts) : Options(Opts) {
82  assert((Options.EmitNotes || Options.EmitData) &&
83  "GCOVProfiler asked to do nothing?");
84  ReversedVersion[0] = Options.Version[3];
85  ReversedVersion[1] = Options.Version[2];
86  ReversedVersion[2] = Options.Version[1];
87  ReversedVersion[3] = Options.Version[0];
88  ReversedVersion[4] = '\0';
89  }
90  bool runOnModule(Module &M, const TargetLibraryInfo &TLI);
91 
92 private:
93  // Create the .gcno files for the Module based on DebugInfo.
94  void emitProfileNotes();
95 
96  // Modify the program to track transitions along edges and call into the
97  // profiling runtime to emit .gcda files when run.
98  bool emitProfileArcs();
99 
100  bool isFunctionInstrumented(const Function &F);
101  std::vector<Regex> createRegexesFromString(StringRef RegexesStr);
102  static bool doesFilenameMatchARegex(StringRef Filename,
103  std::vector<Regex> &Regexes);
104 
105  // Get pointers to the functions in the runtime library.
106  Constant *getStartFileFunc();
107  Constant *getEmitFunctionFunc();
108  Constant *getEmitArcsFunc();
109  Constant *getSummaryInfoFunc();
110  Constant *getEndFileFunc();
111 
112  // Add the function to write out all our counters to the global destructor
113  // list.
114  Function *
115  insertCounterWriteout(ArrayRef<std::pair<GlobalVariable *, MDNode *>>);
116  Function *insertFlush(ArrayRef<std::pair<GlobalVariable *, MDNode *>>);
117 
118  void AddFlushBeforeForkAndExec();
119 
120  enum class GCovFileType { GCNO, GCDA };
121  std::string mangleName(const DICompileUnit *CU, GCovFileType FileType);
122 
123  GCOVOptions Options;
124 
125  // Reversed, NUL-terminated copy of Options.Version.
126  char ReversedVersion[5];
127  // Checksum, produced by hash of EdgeDestinations
128  SmallVector<uint32_t, 4> FileChecksums;
129 
130  Module *M;
131  const TargetLibraryInfo *TLI;
132  LLVMContext *Ctx;
134  std::vector<Regex> FilterRe;
135  std::vector<Regex> ExcludeRe;
136  StringMap<bool> InstrumentedFiles;
137 };
138 
139 class GCOVProfilerLegacyPass : public ModulePass {
140 public:
141  static char ID;
142  GCOVProfilerLegacyPass()
143  : GCOVProfilerLegacyPass(GCOVOptions::getDefault()) {}
144  GCOVProfilerLegacyPass(const GCOVOptions &Opts)
145  : ModulePass(ID), Profiler(Opts) {
147  }
148  StringRef getPassName() const override { return "GCOV Profiler"; }
149 
150  bool runOnModule(Module &M) override {
151  auto &TLI = getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
152  return Profiler.runOnModule(M, TLI);
153  }
154 
155  void getAnalysisUsage(AnalysisUsage &AU) const override {
157  }
158 
159 private:
160  GCOVProfiler Profiler;
161 };
162 }
163 
166  GCOVProfilerLegacyPass, "insert-gcov-profiling",
167  "Insert instrumentation for GCOV profiling", false, false)
170  GCOVProfilerLegacyPass, "insert-gcov-profiling",
171  "Insert instrumentation for GCOV profiling", false, false)
172 
174  return new GCOVProfilerLegacyPass(Options);
175 }
176 
178  if (!SP->getLinkageName().empty())
179  return SP->getLinkageName();
180  return SP->getName();
181 }
182 
183 /// Extract a filename for a DISubprogram.
184 ///
185 /// Prefer relative paths in the coverage notes. Clang also may split
186 /// up absolute paths into a directory and filename component. When
187 /// the relative path doesn't exist, reconstruct the absolute path.
189  SmallString<128> Path;
190  StringRef RelPath = SP->getFilename();
191  if (sys::fs::exists(RelPath))
192  Path = RelPath;
193  else
194  sys::path::append(Path, SP->getDirectory(), SP->getFilename());
195  return Path;
196 }
197 
198 namespace {
199  class GCOVRecord {
200  protected:
201  static const char *const LinesTag;
202  static const char *const FunctionTag;
203  static const char *const BlockTag;
204  static const char *const EdgeTag;
205 
206  GCOVRecord() = default;
207 
208  void writeBytes(const char *Bytes, int Size) {
209  os->write(Bytes, Size);
210  }
211 
212  void write(uint32_t i) {
213  writeBytes(reinterpret_cast<char*>(&i), 4);
214  }
215 
216  // Returns the length measured in 4-byte blocks that will be used to
217  // represent this string in a GCOV file
218  static unsigned lengthOfGCOVString(StringRef s) {
219  // A GCOV string is a length, followed by a NUL, then between 0 and 3 NULs
220  // padding out to the next 4-byte word. The length is measured in 4-byte
221  // words including padding, not bytes of actual string.
222  return (s.size() / 4) + 1;
223  }
224 
225  void writeGCOVString(StringRef s) {
226  uint32_t Len = lengthOfGCOVString(s);
227  write(Len);
228  writeBytes(s.data(), s.size());
229 
230  // Write 1 to 4 bytes of NUL padding.
231  assert((unsigned)(4 - (s.size() % 4)) > 0);
232  assert((unsigned)(4 - (s.size() % 4)) <= 4);
233  writeBytes("\0\0\0\0", 4 - (s.size() % 4));
234  }
235 
236  raw_ostream *os;
237  };
238  const char *const GCOVRecord::LinesTag = "\0\0\x45\x01";
239  const char *const GCOVRecord::FunctionTag = "\0\0\0\1";
240  const char *const GCOVRecord::BlockTag = "\0\0\x41\x01";
241  const char *const GCOVRecord::EdgeTag = "\0\0\x43\x01";
242 
243  class GCOVFunction;
244  class GCOVBlock;
245 
246  // Constructed only by requesting it from a GCOVBlock, this object stores a
247  // list of line numbers and a single filename, representing lines that belong
248  // to the block.
249  class GCOVLines : public GCOVRecord {
250  public:
251  void addLine(uint32_t Line) {
252  assert(Line != 0 && "Line zero is not a valid real line number.");
253  Lines.push_back(Line);
254  }
255 
256  uint32_t length() const {
257  // Here 2 = 1 for string length + 1 for '0' id#.
258  return lengthOfGCOVString(Filename) + 2 + Lines.size();
259  }
260 
261  void writeOut() {
262  write(0);
263  writeGCOVString(Filename);
264  for (int i = 0, e = Lines.size(); i != e; ++i)
265  write(Lines[i]);
266  }
267 
268  GCOVLines(StringRef F, raw_ostream *os)
269  : Filename(F) {
270  this->os = os;
271  }
272 
273  private:
274  std::string Filename;
276  };
277 
278 
279  // Represent a basic block in GCOV. Each block has a unique number in the
280  // function, number of lines belonging to each block, and a set of edges to
281  // other blocks.
282  class GCOVBlock : public GCOVRecord {
283  public:
284  GCOVLines &getFile(StringRef Filename) {
285  return LinesByFile.try_emplace(Filename, Filename, os).first->second;
286  }
287 
288  void addEdge(GCOVBlock &Successor) {
289  OutEdges.push_back(&Successor);
290  }
291 
292  void writeOut() {
293  uint32_t Len = 3;
294  SmallVector<StringMapEntry<GCOVLines> *, 32> SortedLinesByFile;
295  for (auto &I : LinesByFile) {
296  Len += I.second.length();
297  SortedLinesByFile.push_back(&I);
298  }
299 
300  writeBytes(LinesTag, 4);
301  write(Len);
302  write(Number);
303 
304  llvm::sort(SortedLinesByFile, [](StringMapEntry<GCOVLines> *LHS,
306  return LHS->getKey() < RHS->getKey();
307  });
308  for (auto &I : SortedLinesByFile)
309  I->getValue().writeOut();
310  write(0);
311  write(0);
312  }
313 
314  GCOVBlock(const GCOVBlock &RHS) : GCOVRecord(RHS), Number(RHS.Number) {
315  // Only allow copy before edges and lines have been added. After that,
316  // there are inter-block pointers (eg: edges) that won't take kindly to
317  // blocks being copied or moved around.
318  assert(LinesByFile.empty());
319  assert(OutEdges.empty());
320  }
321 
322  private:
323  friend class GCOVFunction;
324 
326  : Number(Number) {
327  this->os = os;
328  }
329 
331  StringMap<GCOVLines> LinesByFile;
333  };
334 
335  // A function has a unique identifier, a checksum (we leave as zero) and a
336  // set of blocks and a map of edges between blocks. This is the only GCOV
337  // object users can construct, the blocks and lines will be rooted here.
338  class GCOVFunction : public GCOVRecord {
339  public:
341  uint32_t Ident, bool UseCfgChecksum, bool ExitBlockBeforeBody)
342  : SP(SP), Ident(Ident), UseCfgChecksum(UseCfgChecksum), CfgChecksum(0),
343  ReturnBlock(1, os) {
344  this->os = os;
345 
346  LLVM_DEBUG(dbgs() << "Function: " << getFunctionName(SP) << "\n");
347 
348  uint32_t i = 0;
349  for (auto &BB : *F) {
350  // Skip index 1 if it's assigned to the ReturnBlock.
351  if (i == 1 && ExitBlockBeforeBody)
352  ++i;
353  Blocks.insert(std::make_pair(&BB, GCOVBlock(i++, os)));
354  }
355  if (!ExitBlockBeforeBody)
356  ReturnBlock.Number = i;
357 
358  std::string FunctionNameAndLine;
359  raw_string_ostream FNLOS(FunctionNameAndLine);
360  FNLOS << getFunctionName(SP) << SP->getLine();
361  FNLOS.flush();
362  FuncChecksum = hash_value(FunctionNameAndLine);
363  }
364 
365  GCOVBlock &getBlock(BasicBlock *BB) {
366  return Blocks.find(BB)->second;
367  }
368 
369  GCOVBlock &getReturnBlock() {
370  return ReturnBlock;
371  }
372 
373  std::string getEdgeDestinations() {
374  std::string EdgeDestinations;
375  raw_string_ostream EDOS(EdgeDestinations);
376  Function *F = Blocks.begin()->first->getParent();
377  for (BasicBlock &I : *F) {
378  GCOVBlock &Block = getBlock(&I);
379  for (int i = 0, e = Block.OutEdges.size(); i != e; ++i)
380  EDOS << Block.OutEdges[i]->Number;
381  }
382  return EdgeDestinations;
383  }
384 
385  uint32_t getFuncChecksum() {
386  return FuncChecksum;
387  }
388 
389  void setCfgChecksum(uint32_t Checksum) {
390  CfgChecksum = Checksum;
391  }
392 
393  void writeOut() {
394  writeBytes(FunctionTag, 4);
395  SmallString<128> Filename = getFilename(SP);
396  uint32_t BlockLen = 1 + 1 + 1 + lengthOfGCOVString(getFunctionName(SP)) +
397  1 + lengthOfGCOVString(Filename) + 1;
398  if (UseCfgChecksum)
399  ++BlockLen;
400  write(BlockLen);
401  write(Ident);
402  write(FuncChecksum);
403  if (UseCfgChecksum)
404  write(CfgChecksum);
405  writeGCOVString(getFunctionName(SP));
406  writeGCOVString(Filename);
407  write(SP->getLine());
408 
409  // Emit count of blocks.
410  writeBytes(BlockTag, 4);
411  write(Blocks.size() + 1);
412  for (int i = 0, e = Blocks.size() + 1; i != e; ++i) {
413  write(0); // No flags on our blocks.
414  }
415  LLVM_DEBUG(dbgs() << Blocks.size() << " blocks.\n");
416 
417  // Emit edges between blocks.
418  if (Blocks.empty()) return;
419  Function *F = Blocks.begin()->first->getParent();
420  for (BasicBlock &I : *F) {
421  GCOVBlock &Block = getBlock(&I);
422  if (Block.OutEdges.empty()) continue;
423 
424  writeBytes(EdgeTag, 4);
425  write(Block.OutEdges.size() * 2 + 1);
426  write(Block.Number);
427  for (int i = 0, e = Block.OutEdges.size(); i != e; ++i) {
428  LLVM_DEBUG(dbgs() << Block.Number << " -> "
429  << Block.OutEdges[i]->Number << "\n");
430  write(Block.OutEdges[i]->Number);
431  write(0); // no flags
432  }
433  }
434 
435  // Emit lines for each block.
436  for (BasicBlock &I : *F)
437  getBlock(&I).writeOut();
438  }
439 
440  private:
441  const DISubprogram *SP;
442  uint32_t Ident;
443  uint32_t FuncChecksum;
444  bool UseCfgChecksum;
445  uint32_t CfgChecksum;
447  GCOVBlock ReturnBlock;
448  };
449 }
450 
451 // RegexesStr is a string containing differents regex separated by a semi-colon.
452 // For example "foo\..*$;bar\..*$".
453 std::vector<Regex> GCOVProfiler::createRegexesFromString(StringRef RegexesStr) {
454  std::vector<Regex> Regexes;
455  while (!RegexesStr.empty()) {
456  std::pair<StringRef, StringRef> HeadTail = RegexesStr.split(';');
457  if (!HeadTail.first.empty()) {
458  Regex Re(HeadTail.first);
459  std::string Err;
460  if (!Re.isValid(Err)) {
461  Ctx->emitError(Twine("Regex ") + HeadTail.first +
462  " is not valid: " + Err);
463  }
464  Regexes.emplace_back(std::move(Re));
465  }
466  RegexesStr = HeadTail.second;
467  }
468  return Regexes;
469 }
470 
471 bool GCOVProfiler::doesFilenameMatchARegex(StringRef Filename,
472  std::vector<Regex> &Regexes) {
473  for (Regex &Re : Regexes) {
474  if (Re.match(Filename)) {
475  return true;
476  }
477  }
478  return false;
479 }
480 
481 bool GCOVProfiler::isFunctionInstrumented(const Function &F) {
482  if (FilterRe.empty() && ExcludeRe.empty()) {
483  return true;
484  }
486  auto It = InstrumentedFiles.find(Filename);
487  if (It != InstrumentedFiles.end()) {
488  return It->second;
489  }
490 
491  SmallString<256> RealPath;
492  StringRef RealFilename;
493 
494  // Path can be
495  // /usr/lib/gcc/x86_64-linux-gnu/8/../../../../include/c++/8/bits/*.h so for
496  // such a case we must get the real_path.
497  if (sys::fs::real_path(Filename, RealPath)) {
498  // real_path can fail with path like "foo.c".
499  RealFilename = Filename;
500  } else {
501  RealFilename = RealPath;
502  }
503 
504  bool ShouldInstrument;
505  if (FilterRe.empty()) {
506  ShouldInstrument = !doesFilenameMatchARegex(RealFilename, ExcludeRe);
507  } else if (ExcludeRe.empty()) {
508  ShouldInstrument = doesFilenameMatchARegex(RealFilename, FilterRe);
509  } else {
510  ShouldInstrument = doesFilenameMatchARegex(RealFilename, FilterRe) &&
511  !doesFilenameMatchARegex(RealFilename, ExcludeRe);
512  }
513  InstrumentedFiles[Filename] = ShouldInstrument;
514  return ShouldInstrument;
515 }
516 
517 std::string GCOVProfiler::mangleName(const DICompileUnit *CU,
518  GCovFileType OutputType) {
519  bool Notes = OutputType == GCovFileType::GCNO;
520 
521  if (NamedMDNode *GCov = M->getNamedMetadata("llvm.gcov")) {
522  for (int i = 0, e = GCov->getNumOperands(); i != e; ++i) {
523  MDNode *N = GCov->getOperand(i);
524  bool ThreeElement = N->getNumOperands() == 3;
525  if (!ThreeElement && N->getNumOperands() != 2)
526  continue;
527  if (dyn_cast<MDNode>(N->getOperand(ThreeElement ? 2 : 1)) != CU)
528  continue;
529 
530  if (ThreeElement) {
531  // These nodes have no mangling to apply, it's stored mangled in the
532  // bitcode.
533  MDString *NotesFile = dyn_cast<MDString>(N->getOperand(0));
534  MDString *DataFile = dyn_cast<MDString>(N->getOperand(1));
535  if (!NotesFile || !DataFile)
536  continue;
537  return Notes ? NotesFile->getString() : DataFile->getString();
538  }
539 
540  MDString *GCovFile = dyn_cast<MDString>(N->getOperand(0));
541  if (!GCovFile)
542  continue;
543 
544  SmallString<128> Filename = GCovFile->getString();
545  sys::path::replace_extension(Filename, Notes ? "gcno" : "gcda");
546  return Filename.str();
547  }
548  }
549 
550  SmallString<128> Filename = CU->getFilename();
551  sys::path::replace_extension(Filename, Notes ? "gcno" : "gcda");
552  StringRef FName = sys::path::filename(Filename);
553  SmallString<128> CurPath;
554  if (sys::fs::current_path(CurPath)) return FName;
555  sys::path::append(CurPath, FName);
556  return CurPath.str();
557 }
558 
559 bool GCOVProfiler::runOnModule(Module &M, const TargetLibraryInfo &TLI) {
560  this->M = &M;
561  this->TLI = &TLI;
562  Ctx = &M.getContext();
563 
564  AddFlushBeforeForkAndExec();
565 
566  FilterRe = createRegexesFromString(Options.Filter);
567  ExcludeRe = createRegexesFromString(Options.Exclude);
568 
569  if (Options.EmitNotes) emitProfileNotes();
570  if (Options.EmitData) return emitProfileArcs();
571  return false;
572 }
573 
575  ModuleAnalysisManager &AM) {
576 
577  GCOVProfiler Profiler(GCOVOpts);
578 
579  auto &TLI = AM.getResult<TargetLibraryAnalysis>(M);
580  if (!Profiler.runOnModule(M, TLI))
581  return PreservedAnalyses::all();
582 
583  return PreservedAnalyses::none();
584 }
585 
586 static bool functionHasLines(Function &F) {
587  // Check whether this function actually has any source lines. Not only
588  // do these waste space, they also can crash gcov.
589  for (auto &BB : F) {
590  for (auto &I : BB) {
591  // Debug intrinsic locations correspond to the location of the
592  // declaration, not necessarily any statements or expressions.
593  if (isa<DbgInfoIntrinsic>(&I)) continue;
594 
595  const DebugLoc &Loc = I.getDebugLoc();
596  if (!Loc)
597  continue;
598 
599  // Artificial lines such as calls to the global constructors.
600  if (Loc.getLine() == 0) continue;
601 
602  return true;
603  }
604  }
605  return false;
606 }
607 
608 static bool isUsingScopeBasedEH(Function &F) {
609  if (!F.hasPersonalityFn()) return false;
610 
612  return isScopedEHPersonality(Personality);
613 }
614 
616  if (isa<AllocaInst>(*It)) return true;
617  if (isa<DbgInfoIntrinsic>(*It)) return true;
618  if (auto *II = dyn_cast<IntrinsicInst>(It)) {
619  if (II->getIntrinsicID() == llvm::Intrinsic::localescape) return true;
620  }
621 
622  return false;
623 }
624 
625 void GCOVProfiler::AddFlushBeforeForkAndExec() {
626  SmallVector<Instruction *, 2> ForkAndExecs;
627  for (auto &F : M->functions()) {
628  for (auto &I : instructions(F)) {
629  if (CallInst *CI = dyn_cast<CallInst>(&I)) {
630  if (Function *Callee = CI->getCalledFunction()) {
631  LibFunc LF;
632  if (TLI->getLibFunc(*Callee, LF) &&
633  (LF == LibFunc_fork || LF == LibFunc_execl ||
634  LF == LibFunc_execle || LF == LibFunc_execlp ||
635  LF == LibFunc_execv || LF == LibFunc_execvp ||
636  LF == LibFunc_execve || LF == LibFunc_execvpe ||
637  LF == LibFunc_execvP)) {
638  ForkAndExecs.push_back(&I);
639  }
640  }
641  }
642  }
643  }
644 
645  // We need to split the block after the fork/exec call
646  // because else the counters for the lines after will be
647  // the same as before the call.
648  for (auto I : ForkAndExecs) {
649  IRBuilder<> Builder(I);
650  FunctionType *FTy = FunctionType::get(Builder.getVoidTy(), {}, false);
651  Constant *GCOVFlush = M->getOrInsertFunction("__gcov_flush", FTy);
652  Builder.CreateCall(GCOVFlush);
653  I->getParent()->splitBasicBlock(I);
654  }
655 }
656 
657 void GCOVProfiler::emitProfileNotes() {
658  NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
659  if (!CU_Nodes) return;
660 
661  for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
662  // Each compile unit gets its own .gcno file. This means that whether we run
663  // this pass over the original .o's as they're produced, or run it after
664  // LTO, we'll generate the same .gcno files.
665 
666  auto *CU = cast<DICompileUnit>(CU_Nodes->getOperand(i));
667 
668  // Skip module skeleton (and module) CUs.
669  if (CU->getDWOId())
670  continue;
671 
672  std::error_code EC;
673  raw_fd_ostream out(mangleName(CU, GCovFileType::GCNO), EC, sys::fs::F_None);
674  if (EC) {
675  Ctx->emitError(Twine("failed to open coverage notes file for writing: ") +
676  EC.message());
677  continue;
678  }
679 
680  std::string EdgeDestinations;
681 
682  unsigned FunctionIdent = 0;
683  for (auto &F : M->functions()) {
685  if (!SP) continue;
686  if (!functionHasLines(F) || !isFunctionInstrumented(F))
687  continue;
688  // TODO: Functions using scope-based EH are currently not supported.
689  if (isUsingScopeBasedEH(F)) continue;
690 
691  // gcov expects every function to start with an entry block that has a
692  // single successor, so split the entry block to make sure of that.
693  BasicBlock &EntryBlock = F.getEntryBlock();
694  BasicBlock::iterator It = EntryBlock.begin();
695  while (shouldKeepInEntry(It))
696  ++It;
697  EntryBlock.splitBasicBlock(It);
698 
699  Funcs.push_back(make_unique<GCOVFunction>(SP, &F, &out, FunctionIdent++,
700  Options.UseCfgChecksum,
701  Options.ExitBlockBeforeBody));
702  GCOVFunction &Func = *Funcs.back();
703 
704  // Add the function line number to the lines of the entry block
705  // to have a counter for the function definition.
706  uint32_t Line = SP->getLine();
707  auto Filename = getFilename(SP);
708  Func.getBlock(&EntryBlock).getFile(Filename).addLine(Line);
709 
710  for (auto &BB : F) {
711  GCOVBlock &Block = Func.getBlock(&BB);
712  Instruction *TI = BB.getTerminator();
713  if (int successors = TI->getNumSuccessors()) {
714  for (int i = 0; i != successors; ++i) {
715  Block.addEdge(Func.getBlock(TI->getSuccessor(i)));
716  }
717  } else if (isa<ReturnInst>(TI)) {
718  Block.addEdge(Func.getReturnBlock());
719  }
720 
721  for (auto &I : BB) {
722  // Debug intrinsic locations correspond to the location of the
723  // declaration, not necessarily any statements or expressions.
724  if (isa<DbgInfoIntrinsic>(&I)) continue;
725 
726  const DebugLoc &Loc = I.getDebugLoc();
727  if (!Loc)
728  continue;
729 
730  // Artificial lines such as calls to the global constructors.
731  if (Loc.getLine() == 0 || Loc.isImplicitCode())
732  continue;
733 
734  if (Line == Loc.getLine()) continue;
735  Line = Loc.getLine();
736  if (SP != getDISubprogram(Loc.getScope()))
737  continue;
738 
739  GCOVLines &Lines = Block.getFile(Filename);
740  Lines.addLine(Loc.getLine());
741  }
742  Line = 0;
743  }
744  EdgeDestinations += Func.getEdgeDestinations();
745  }
746 
747  FileChecksums.push_back(hash_value(EdgeDestinations));
748  out.write("oncg", 4);
749  out.write(ReversedVersion, 4);
750  out.write(reinterpret_cast<char*>(&FileChecksums.back()), 4);
751 
752  for (auto &Func : Funcs) {
753  Func->setCfgChecksum(FileChecksums.back());
754  Func->writeOut();
755  }
756 
757  out.write("\0\0\0\0\0\0\0\0", 8); // EOF
758  out.close();
759  }
760 }
761 
762 bool GCOVProfiler::emitProfileArcs() {
763  NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu");
764  if (!CU_Nodes) return false;
765 
766  bool Result = false;
767  for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
769  for (auto &F : M->functions()) {
771  if (!SP) continue;
772  if (!functionHasLines(F) || !isFunctionInstrumented(F))
773  continue;
774  // TODO: Functions using scope-based EH are currently not supported.
775  if (isUsingScopeBasedEH(F)) continue;
776  if (!Result) Result = true;
777 
778  DenseMap<std::pair<BasicBlock *, BasicBlock *>, unsigned> EdgeToCounter;
779  unsigned Edges = 0;
780  for (auto &BB : F) {
781  Instruction *TI = BB.getTerminator();
782  if (isa<ReturnInst>(TI)) {
783  EdgeToCounter[{&BB, nullptr}] = Edges++;
784  } else {
785  for (BasicBlock *Succ : successors(TI)) {
786  EdgeToCounter[{&BB, Succ}] = Edges++;
787  }
788  }
789  }
790 
791  ArrayType *CounterTy =
792  ArrayType::get(Type::getInt64Ty(*Ctx), Edges);
793  GlobalVariable *Counters =
794  new GlobalVariable(*M, CounterTy, false,
796  Constant::getNullValue(CounterTy),
797  "__llvm_gcov_ctr");
798  CountersBySP.push_back(std::make_pair(Counters, SP));
799 
800  // If a BB has several predecessors, use a PHINode to select
801  // the correct counter.
802  for (auto &BB : F) {
803  const unsigned EdgeCount =
804  std::distance(pred_begin(&BB), pred_end(&BB));
805  if (EdgeCount) {
806  // The phi node must be at the begin of the BB.
807  IRBuilder<> BuilderForPhi(&*BB.begin());
808  Type *Int64PtrTy = Type::getInt64PtrTy(*Ctx);
809  PHINode *Phi = BuilderForPhi.CreatePHI(Int64PtrTy, EdgeCount);
810  for (BasicBlock *Pred : predecessors(&BB)) {
811  auto It = EdgeToCounter.find({Pred, &BB});
812  assert(It != EdgeToCounter.end());
813  const unsigned Edge = It->second;
814  Value *EdgeCounter =
815  BuilderForPhi.CreateConstInBoundsGEP2_64(Counters, 0, Edge);
816  Phi->addIncoming(EdgeCounter, Pred);
817  }
818 
819  // Skip phis, landingpads.
820  IRBuilder<> Builder(&*BB.getFirstInsertionPt());
821  Value *Count = Builder.CreateLoad(Phi);
822  Count = Builder.CreateAdd(Count, Builder.getInt64(1));
823  Builder.CreateStore(Count, Phi);
824 
825  Instruction *TI = BB.getTerminator();
826  if (isa<ReturnInst>(TI)) {
827  auto It = EdgeToCounter.find({&BB, nullptr});
828  assert(It != EdgeToCounter.end());
829  const unsigned Edge = It->second;
830  Value *Counter =
831  Builder.CreateConstInBoundsGEP2_64(Counters, 0, Edge);
832  Value *Count = Builder.CreateLoad(Counter);
833  Count = Builder.CreateAdd(Count, Builder.getInt64(1));
834  Builder.CreateStore(Count, Counter);
835  }
836  }
837  }
838  }
839 
840  Function *WriteoutF = insertCounterWriteout(CountersBySP);
841  Function *FlushF = insertFlush(CountersBySP);
842 
843  // Create a small bit of code that registers the "__llvm_gcov_writeout" to
844  // be executed at exit and the "__llvm_gcov_flush" function to be executed
845  // when "__gcov_flush" is called.
846  FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
848  "__llvm_gcov_init", M);
852  if (Options.NoRedZone)
854 
855  BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", F);
856  IRBuilder<> Builder(BB);
857 
858  FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
859  Type *Params[] = {
860  PointerType::get(FTy, 0),
861  PointerType::get(FTy, 0)
862  };
863  FTy = FunctionType::get(Builder.getVoidTy(), Params, false);
864 
865  // Initialize the environment and register the local writeout and flush
866  // functions.
867  Constant *GCOVInit = M->getOrInsertFunction("llvm_gcov_init", FTy);
868  Builder.CreateCall(GCOVInit, {WriteoutF, FlushF});
869  Builder.CreateRetVoid();
870 
871  appendToGlobalCtors(*M, F, 0);
872  }
873 
874  return Result;
875 }
876 
877 Constant *GCOVProfiler::getStartFileFunc() {
878  Type *Args[] = {
879  Type::getInt8PtrTy(*Ctx), // const char *orig_filename
880  Type::getInt8PtrTy(*Ctx), // const char version[4]
881  Type::getInt32Ty(*Ctx), // uint32_t checksum
882  };
883  FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
884  auto *Res = M->getOrInsertFunction("llvm_gcda_start_file", FTy);
885  if (Function *FunRes = dyn_cast<Function>(Res))
886  if (auto AK = TLI->getExtAttrForI32Param(false))
887  FunRes->addParamAttr(2, AK);
888  return Res;
889 
890 }
891 
892 Constant *GCOVProfiler::getEmitFunctionFunc() {
893  Type *Args[] = {
894  Type::getInt32Ty(*Ctx), // uint32_t ident
895  Type::getInt8PtrTy(*Ctx), // const char *function_name
896  Type::getInt32Ty(*Ctx), // uint32_t func_checksum
897  Type::getInt8Ty(*Ctx), // uint8_t use_extra_checksum
898  Type::getInt32Ty(*Ctx), // uint32_t cfg_checksum
899  };
900  FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
901  auto *Res = M->getOrInsertFunction("llvm_gcda_emit_function", FTy);
902  if (Function *FunRes = dyn_cast<Function>(Res))
903  if (auto AK = TLI->getExtAttrForI32Param(false)) {
904  FunRes->addParamAttr(0, AK);
905  FunRes->addParamAttr(2, AK);
906  FunRes->addParamAttr(3, AK);
907  FunRes->addParamAttr(4, AK);
908  }
909  return Res;
910 }
911 
912 Constant *GCOVProfiler::getEmitArcsFunc() {
913  Type *Args[] = {
914  Type::getInt32Ty(*Ctx), // uint32_t num_counters
915  Type::getInt64PtrTy(*Ctx), // uint64_t *counters
916  };
917  FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
918  auto *Res = M->getOrInsertFunction("llvm_gcda_emit_arcs", FTy);
919  if (Function *FunRes = dyn_cast<Function>(Res))
920  if (auto AK = TLI->getExtAttrForI32Param(false))
921  FunRes->addParamAttr(0, AK);
922  return Res;
923 }
924 
925 Constant *GCOVProfiler::getSummaryInfoFunc() {
926  FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
927  return M->getOrInsertFunction("llvm_gcda_summary_info", FTy);
928 }
929 
930 Constant *GCOVProfiler::getEndFileFunc() {
931  FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
932  return M->getOrInsertFunction("llvm_gcda_end_file", FTy);
933 }
934 
935 Function *GCOVProfiler::insertCounterWriteout(
936  ArrayRef<std::pair<GlobalVariable *, MDNode *> > CountersBySP) {
937  FunctionType *WriteoutFTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
938  Function *WriteoutF = M->getFunction("__llvm_gcov_writeout");
939  if (!WriteoutF)
940  WriteoutF = Function::Create(WriteoutFTy, GlobalValue::InternalLinkage,
941  "__llvm_gcov_writeout", M);
943  WriteoutF->addFnAttr(Attribute::NoInline);
944  if (Options.NoRedZone)
945  WriteoutF->addFnAttr(Attribute::NoRedZone);
946 
947  BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", WriteoutF);
948  IRBuilder<> Builder(BB);
949 
950  Constant *StartFile = getStartFileFunc();
951  Constant *EmitFunction = getEmitFunctionFunc();
952  Constant *EmitArcs = getEmitArcsFunc();
953  Constant *SummaryInfo = getSummaryInfoFunc();
954  Constant *EndFile = getEndFileFunc();
955 
956  NamedMDNode *CUNodes = M->getNamedMetadata("llvm.dbg.cu");
957  if (!CUNodes) {
958  Builder.CreateRetVoid();
959  return WriteoutF;
960  }
961 
962  // Collect the relevant data into a large constant data structure that we can
963  // walk to write out everything.
964  StructType *StartFileCallArgsTy = StructType::create(
965  {Builder.getInt8PtrTy(), Builder.getInt8PtrTy(), Builder.getInt32Ty()});
966  StructType *EmitFunctionCallArgsTy = StructType::create(
967  {Builder.getInt32Ty(), Builder.getInt8PtrTy(), Builder.getInt32Ty(),
968  Builder.getInt8Ty(), Builder.getInt32Ty()});
969  StructType *EmitArcsCallArgsTy = StructType::create(
970  {Builder.getInt32Ty(), Builder.getInt64Ty()->getPointerTo()});
971  StructType *FileInfoTy =
972  StructType::create({StartFileCallArgsTy, Builder.getInt32Ty(),
973  EmitFunctionCallArgsTy->getPointerTo(),
974  EmitArcsCallArgsTy->getPointerTo()});
975 
976  Constant *Zero32 = Builder.getInt32(0);
977  // Build an explicit array of two zeros for use in ConstantExpr GEP building.
978  Constant *TwoZero32s[] = {Zero32, Zero32};
979 
980  SmallVector<Constant *, 8> FileInfos;
981  for (int i : llvm::seq<int>(0, CUNodes->getNumOperands())) {
982  auto *CU = cast<DICompileUnit>(CUNodes->getOperand(i));
983 
984  // Skip module skeleton (and module) CUs.
985  if (CU->getDWOId())
986  continue;
987 
988  std::string FilenameGcda = mangleName(CU, GCovFileType::GCDA);
989  uint32_t CfgChecksum = FileChecksums.empty() ? 0 : FileChecksums[i];
990  auto *StartFileCallArgs = ConstantStruct::get(
991  StartFileCallArgsTy, {Builder.CreateGlobalStringPtr(FilenameGcda),
992  Builder.CreateGlobalStringPtr(ReversedVersion),
993  Builder.getInt32(CfgChecksum)});
994 
995  SmallVector<Constant *, 8> EmitFunctionCallArgsArray;
996  SmallVector<Constant *, 8> EmitArcsCallArgsArray;
997  for (int j : llvm::seq<int>(0, CountersBySP.size())) {
998  auto *SP = cast_or_null<DISubprogram>(CountersBySP[j].second);
999  uint32_t FuncChecksum = Funcs.empty() ? 0 : Funcs[j]->getFuncChecksum();
1000  EmitFunctionCallArgsArray.push_back(ConstantStruct::get(
1001  EmitFunctionCallArgsTy,
1002  {Builder.getInt32(j),
1003  Options.FunctionNamesInData
1005  : Constant::getNullValue(Builder.getInt8PtrTy()),
1006  Builder.getInt32(FuncChecksum),
1007  Builder.getInt8(Options.UseCfgChecksum),
1008  Builder.getInt32(CfgChecksum)}));
1009 
1010  GlobalVariable *GV = CountersBySP[j].first;
1011  unsigned Arcs = cast<ArrayType>(GV->getValueType())->getNumElements();
1012  EmitArcsCallArgsArray.push_back(ConstantStruct::get(
1013  EmitArcsCallArgsTy,
1015  GV->getValueType(), GV, TwoZero32s)}));
1016  }
1017  // Create global arrays for the two emit calls.
1018  int CountersSize = CountersBySP.size();
1019  assert(CountersSize == (int)EmitFunctionCallArgsArray.size() &&
1020  "Mismatched array size!");
1021  assert(CountersSize == (int)EmitArcsCallArgsArray.size() &&
1022  "Mismatched array size!");
1023  auto *EmitFunctionCallArgsArrayTy =
1024  ArrayType::get(EmitFunctionCallArgsTy, CountersSize);
1025  auto *EmitFunctionCallArgsArrayGV = new GlobalVariable(
1026  *M, EmitFunctionCallArgsArrayTy, /*isConstant*/ true,
1028  ConstantArray::get(EmitFunctionCallArgsArrayTy,
1029  EmitFunctionCallArgsArray),
1030  Twine("__llvm_internal_gcov_emit_function_args.") + Twine(i));
1031  auto *EmitArcsCallArgsArrayTy =
1032  ArrayType::get(EmitArcsCallArgsTy, CountersSize);
1033  EmitFunctionCallArgsArrayGV->setUnnamedAddr(
1035  auto *EmitArcsCallArgsArrayGV = new GlobalVariable(
1036  *M, EmitArcsCallArgsArrayTy, /*isConstant*/ true,
1038  ConstantArray::get(EmitArcsCallArgsArrayTy, EmitArcsCallArgsArray),
1039  Twine("__llvm_internal_gcov_emit_arcs_args.") + Twine(i));
1040  EmitArcsCallArgsArrayGV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
1041 
1042  FileInfos.push_back(ConstantStruct::get(
1043  FileInfoTy,
1044  {StartFileCallArgs, Builder.getInt32(CountersSize),
1045  ConstantExpr::getInBoundsGetElementPtr(EmitFunctionCallArgsArrayTy,
1046  EmitFunctionCallArgsArrayGV,
1047  TwoZero32s),
1049  EmitArcsCallArgsArrayTy, EmitArcsCallArgsArrayGV, TwoZero32s)}));
1050  }
1051 
1052  // If we didn't find anything to actually emit, bail on out.
1053  if (FileInfos.empty()) {
1054  Builder.CreateRetVoid();
1055  return WriteoutF;
1056  }
1057 
1058  // To simplify code, we cap the number of file infos we write out to fit
1059  // easily in a 32-bit signed integer. This gives consistent behavior between
1060  // 32-bit and 64-bit systems without requiring (potentially very slow) 64-bit
1061  // operations on 32-bit systems. It also seems unreasonable to try to handle
1062  // more than 2 billion files.
1063  if ((int64_t)FileInfos.size() > (int64_t)INT_MAX)
1064  FileInfos.resize(INT_MAX);
1065 
1066  // Create a global for the entire data structure so we can walk it more
1067  // easily.
1068  auto *FileInfoArrayTy = ArrayType::get(FileInfoTy, FileInfos.size());
1069  auto *FileInfoArrayGV = new GlobalVariable(
1070  *M, FileInfoArrayTy, /*isConstant*/ true, GlobalValue::InternalLinkage,
1071  ConstantArray::get(FileInfoArrayTy, FileInfos),
1072  "__llvm_internal_gcov_emit_file_info");
1073  FileInfoArrayGV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
1074 
1075  // Create the CFG for walking this data structure.
1076  auto *FileLoopHeader =
1077  BasicBlock::Create(*Ctx, "file.loop.header", WriteoutF);
1078  auto *CounterLoopHeader =
1079  BasicBlock::Create(*Ctx, "counter.loop.header", WriteoutF);
1080  auto *FileLoopLatch = BasicBlock::Create(*Ctx, "file.loop.latch", WriteoutF);
1081  auto *ExitBB = BasicBlock::Create(*Ctx, "exit", WriteoutF);
1082 
1083  // We always have at least one file, so just branch to the header.
1084  Builder.CreateBr(FileLoopHeader);
1085 
1086  // The index into the files structure is our loop induction variable.
1087  Builder.SetInsertPoint(FileLoopHeader);
1088  PHINode *IV =
1089  Builder.CreatePHI(Builder.getInt32Ty(), /*NumReservedValues*/ 2);
1090  IV->addIncoming(Builder.getInt32(0), BB);
1091  auto *FileInfoPtr =
1092  Builder.CreateInBoundsGEP(FileInfoArrayGV, {Builder.getInt32(0), IV});
1093  auto *StartFileCallArgsPtr = Builder.CreateStructGEP(FileInfoPtr, 0);
1094  auto *StartFileCall = Builder.CreateCall(
1095  StartFile,
1096  {Builder.CreateLoad(Builder.CreateStructGEP(StartFileCallArgsPtr, 0)),
1097  Builder.CreateLoad(Builder.CreateStructGEP(StartFileCallArgsPtr, 1)),
1098  Builder.CreateLoad(Builder.CreateStructGEP(StartFileCallArgsPtr, 2))});
1099  if (auto AK = TLI->getExtAttrForI32Param(false))
1100  StartFileCall->addParamAttr(2, AK);
1101  auto *NumCounters =
1102  Builder.CreateLoad(Builder.CreateStructGEP(FileInfoPtr, 1));
1103  auto *EmitFunctionCallArgsArray =
1104  Builder.CreateLoad(Builder.CreateStructGEP(FileInfoPtr, 2));
1105  auto *EmitArcsCallArgsArray =
1106  Builder.CreateLoad(Builder.CreateStructGEP(FileInfoPtr, 3));
1107  auto *EnterCounterLoopCond =
1108  Builder.CreateICmpSLT(Builder.getInt32(0), NumCounters);
1109  Builder.CreateCondBr(EnterCounterLoopCond, CounterLoopHeader, FileLoopLatch);
1110 
1111  Builder.SetInsertPoint(CounterLoopHeader);
1112  auto *JV = Builder.CreatePHI(Builder.getInt32Ty(), /*NumReservedValues*/ 2);
1113  JV->addIncoming(Builder.getInt32(0), FileLoopHeader);
1114  auto *EmitFunctionCallArgsPtr =
1115  Builder.CreateInBoundsGEP(EmitFunctionCallArgsArray, {JV});
1116  auto *EmitFunctionCall = Builder.CreateCall(
1117  EmitFunction,
1118  {Builder.CreateLoad(Builder.CreateStructGEP(EmitFunctionCallArgsPtr, 0)),
1119  Builder.CreateLoad(Builder.CreateStructGEP(EmitFunctionCallArgsPtr, 1)),
1120  Builder.CreateLoad(Builder.CreateStructGEP(EmitFunctionCallArgsPtr, 2)),
1121  Builder.CreateLoad(Builder.CreateStructGEP(EmitFunctionCallArgsPtr, 3)),
1122  Builder.CreateLoad(
1123  Builder.CreateStructGEP(EmitFunctionCallArgsPtr, 4))});
1124  if (auto AK = TLI->getExtAttrForI32Param(false)) {
1125  EmitFunctionCall->addParamAttr(0, AK);
1126  EmitFunctionCall->addParamAttr(2, AK);
1127  EmitFunctionCall->addParamAttr(3, AK);
1128  EmitFunctionCall->addParamAttr(4, AK);
1129  }
1130  auto *EmitArcsCallArgsPtr =
1131  Builder.CreateInBoundsGEP(EmitArcsCallArgsArray, {JV});
1132  auto *EmitArcsCall = Builder.CreateCall(
1133  EmitArcs,
1134  {Builder.CreateLoad(Builder.CreateStructGEP(EmitArcsCallArgsPtr, 0)),
1135  Builder.CreateLoad(Builder.CreateStructGEP(EmitArcsCallArgsPtr, 1))});
1136  if (auto AK = TLI->getExtAttrForI32Param(false))
1137  EmitArcsCall->addParamAttr(0, AK);
1138  auto *NextJV = Builder.CreateAdd(JV, Builder.getInt32(1));
1139  auto *CounterLoopCond = Builder.CreateICmpSLT(NextJV, NumCounters);
1140  Builder.CreateCondBr(CounterLoopCond, CounterLoopHeader, FileLoopLatch);
1141  JV->addIncoming(NextJV, CounterLoopHeader);
1142 
1143  Builder.SetInsertPoint(FileLoopLatch);
1144  Builder.CreateCall(SummaryInfo, {});
1145  Builder.CreateCall(EndFile, {});
1146  auto *NextIV = Builder.CreateAdd(IV, Builder.getInt32(1));
1147  auto *FileLoopCond =
1148  Builder.CreateICmpSLT(NextIV, Builder.getInt32(FileInfos.size()));
1149  Builder.CreateCondBr(FileLoopCond, FileLoopHeader, ExitBB);
1150  IV->addIncoming(NextIV, FileLoopLatch);
1151 
1152  Builder.SetInsertPoint(ExitBB);
1153  Builder.CreateRetVoid();
1154 
1155  return WriteoutF;
1156 }
1157 
1158 Function *GCOVProfiler::
1159 insertFlush(ArrayRef<std::pair<GlobalVariable*, MDNode*> > CountersBySP) {
1160  FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
1161  Function *FlushF = M->getFunction("__llvm_gcov_flush");
1162  if (!FlushF)
1164  "__llvm_gcov_flush", M);
1165  else
1168  FlushF->addFnAttr(Attribute::NoInline);
1169  if (Options.NoRedZone)
1171 
1172  BasicBlock *Entry = BasicBlock::Create(*Ctx, "entry", FlushF);
1173 
1174  // Write out the current counters.
1175  Constant *WriteoutF = M->getFunction("__llvm_gcov_writeout");
1176  assert(WriteoutF && "Need to create the writeout function first!");
1177 
1178  IRBuilder<> Builder(Entry);
1179  Builder.CreateCall(WriteoutF, {});
1180 
1181  // Zero out the counters.
1182  for (const auto &I : CountersBySP) {
1183  GlobalVariable *GV = I.first;
1185  Builder.CreateStore(Null, GV);
1186  }
1187 
1188  Type *RetTy = FlushF->getReturnType();
1189  if (RetTy == Type::getVoidTy(*Ctx))
1190  Builder.CreateRetVoid();
1191  else if (RetTy->isIntegerTy())
1192  // Used if __llvm_gcov_flush was implicitly declared.
1193  Builder.CreateRet(ConstantInt::get(RetTy, 0));
1194  else
1195  report_fatal_error("invalid return type for __llvm_gcov_flush");
1196 
1197  return FlushF;
1198 }
static StringRef getFunctionName(TargetLowering::CallLoweringInfo &CLI)
Value * CreateInBoundsGEP(Value *Ptr, ArrayRef< Value *> IdxList, const Twine &Name="")
Definition: IRBuilder.h:1477
This routine provides some synthesis utilities to produce sequences of values.
BranchInst * CreateCondBr(Value *Cond, BasicBlock *True, BasicBlock *False, MDNode *BranchWeights=nullptr, MDNode *Unpredictable=nullptr)
Create a conditional &#39;br Cond, TrueDest, FalseDest&#39; instruction.
Definition: IRBuilder.h:854
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
MDNode * getOperand(unsigned i) const
Definition: Metadata.cpp:1081
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Definition: PassManager.h:770
LLVM_ATTRIBUTE_NORETURN void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
Definition: Error.cpp:140
This class represents lattice values for constants.
Definition: AllocatorList.h:24
StringMapEntry - This is used to represent one value that is inserted into a StringMap.
Definition: StringMap.h:126
ModulePass * createGCOVProfilerPass(const GCOVOptions &Options=GCOVOptions::getDefault())
Constant * getOrInsertFunction(StringRef Name, FunctionType *T, AttributeList AttributeList)
Look up the specified function in the module symbol table.
Definition: Module.cpp:144
LoadInst * CreateLoad(Type *Ty, Value *Ptr, const char *Name)
Provided to resolve &#39;CreateLoad(Ty, Ptr, "...")&#39; correctly, instead of converting the string to &#39;bool...
Definition: IRBuilder.h:1357
static cl::opt< bool > DefaultExitBlockBeforeBody("gcov-exit-block-before-body", cl::init(false), cl::Hidden)
A Module instance is used to store all the information related to an LLVM module. ...
Definition: Module.h:65
BasicBlock * getSuccessor(unsigned Idx) const
Return the specified successor. This instruction must be a terminator.
static GCOVOptions getDefault()
size_t find(char C, size_t From=0) const
find - Search for the first character C in the string.
Definition: SmallString.h:147
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE size_t size() const
size - Get the string size.
Definition: StringRef.h:138
Value * CreateICmpSLT(Value *LHS, Value *RHS, const Twine &Name="")
Definition: IRBuilder.h:1871
static SmallString< 128 > getFilename(const DISubprogram *SP)
Extract a filename for a DISubprogram.
This class represents a function call, abstracting a target machine&#39;s calling convention.
static PointerType * get(Type *ElementType, unsigned AddressSpace)
This constructs a pointer to an object of the specified type in a numbered address space...
Definition: Type.cpp:630
std::error_code current_path(SmallVectorImpl< char > &result)
Get the current path.
unsigned getLine() const
Definition: DebugLoc.cpp:26
uint64_t getDWOId() const
A debug info location.
Definition: DebugLoc.h:34
Metadata node.
Definition: Metadata.h:864
F(f)
const MDOperand & getOperand(unsigned I) const
Definition: Metadata.h:1069
static IntegerType * getInt64Ty(LLVMContext &C)
Definition: Type.cpp:177
static PointerType * getInt64PtrTy(LLVMContext &C, unsigned AS=0)
Definition: Type.cpp:232
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE const char * data() const
data - Get a pointer to the start of the string (which may not be null terminated).
Definition: StringRef.h:128
static Constant * get(ArrayType *T, ArrayRef< Constant *> V)
Definition: Constants.cpp:983
static Constant * getNullValue(Type *Ty)
Constructor to create a &#39;0&#39; constant of arbitrary type.
Definition: Constants.cpp:265
iterator begin()
Instruction iterator methods.
Definition: BasicBlock.h:269
IntegerType * getInt32Ty()
Fetch the type representing a 32-bit integer.
Definition: IRBuilder.h:347
Attribute::AttrKind getExtAttrForI32Param(bool Signed=true) const
Returns extension attribute kind to be used for i32 parameters corresponding to C-level int or unsign...
AnalysisUsage & addRequired()
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition: PassSupport.h:51
void append(SmallVectorImpl< char > &path, const Twine &a, const Twine &b="", const Twine &c="", const Twine &d="")
Append to path.
Definition: Path.cpp:480
A tuple of MDNodes.
Definition: Metadata.h:1326
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition: Twine.h:81
IntegerType * getInt64Ty()
Fetch the type representing a 64-bit integer.
Definition: IRBuilder.h:352
bool isImplicitCode() const
Check if the DebugLoc corresponds to an implicit code.
Definition: DebugLoc.cpp:59
Class to represent struct types.
Definition: DerivedTypes.h:201
LLVMContext & getContext() const
Get the global data context.
Definition: Module.h:244
PointerType * getPointerTo(unsigned AddrSpace=0) const
Return a pointer to the current type.
Definition: Type.cpp:652
ReturnInst * CreateRet(Value *V)
Create a &#39;ret <val>&#39; instruction.
Definition: IRBuilder.h:829
bool isIntegerTy() const
True if this is an instance of IntegerType.
Definition: Type.h:197
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition: IRBuilder.h:743
unsigned getNumOperands() const
Definition: Metadata.cpp:1077
static bool isUsingScopeBasedEH(Function &F)
Value * CreateAdd(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
Definition: IRBuilder.h:1014
DISubprogram * getDISubprogram(const MDNode *Scope)
Find subprogram that is enclosing this scope.
Definition: DebugInfo.cpp:44
StringRef getFilename() const
Type * getVoidTy()
Fetch the type representing void.
Definition: IRBuilder.h:380
bool isScopedEHPersonality(EHPersonality Pers)
Returns true if this personality uses scope-style EH IR instructions: catchswitch, catchpad/ret, and cleanuppad/ret.
StoreInst * CreateStore(Value *Val, Value *Ptr, bool isVolatile=false)
Definition: IRBuilder.h:1386
StringRef str() const
Explicit conversion to StringRef.
Definition: SmallString.h:267
Subprogram description.
Class to represent function types.
Definition: DerivedTypes.h:103
This file provides the interface for the GCOV style profiler pass.
Class to represent array types.
Definition: DerivedTypes.h:369
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:133
NamedMDNode * getNamedMetadata(const Twine &Name) const
Return the first NamedMDNode in the module with the specified name.
Definition: Module.cpp:252
GCOVBlock - Collects block information.
Definition: GCOV.h:312
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory)...
Definition: APInt.h:33
hash_code hash_value(const APFloat &Arg)
See friend declarations above.
Definition: APFloat.cpp:4431
bool hasPersonalityFn() const
Check whether this function has a personality function.
Definition: Function.h:702
iterator begin()
Definition: Function.h:656
amdgpu Simplify well known AMD library false Value * Callee
static void addEdge(SmallVectorImpl< LazyCallGraph::Edge > &Edges, DenseMap< LazyCallGraph::Node *, int > &EdgeIndexMap, LazyCallGraph::Node &N, LazyCallGraph::Edge::Kind EK)
void SetInsertPoint(BasicBlock *TheBB)
This specifies that created instructions should be appended to the end of the specified block...
Definition: IRBuilder.h:127
unsigned getNumSuccessors() const
Return the number of successors that this instruction has.
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
Definition: PassManager.h:157
StringRef getString() const
Definition: Metadata.cpp:464
const BasicBlock & getEntryBlock() const
Definition: Function.h:640
std::error_code real_path(const Twine &path, SmallVectorImpl< char > &output, bool expand_tilde=false)
Collapse all .
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:423
Type * getReturnType() const
Returns the type of the ret val.
Definition: Function.h:169
static Function * Create(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace, const Twine &N="", Module *M=nullptr)
Definition: Function.h:136
A set of analyses that are preserved following a run of a transformation pass.
Definition: PassManager.h:154
iterator_range< iterator > functions()
Definition: Module.h:606
LLVM Basic Block Representation.
Definition: BasicBlock.h:58
The instances of the Type class are immutable: once they are created, they are never changed...
Definition: Type.h:46
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:69
DISubprogram * getSubprogram() const
Get the attached subprogram.
Definition: Metadata.cpp:1508
This is an important base class in LLVM.
Definition: Constant.h:42
StringRef getKey() const
Definition: StringMap.h:137
Interval::pred_iterator pred_begin(Interval *I)
pred_begin/pred_end - define methods so that Intervals may be used just like BasicBlocks can with the...
Definition: Interval.h:113
INITIALIZE_PASS_BEGIN(GCOVProfilerLegacyPass, "insert-gcov-profiling", "Insert instrumentation for GCOV profiling", false, false) INITIALIZE_PASS_END(GCOVProfilerLegacyPass
EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
Represent the analysis usage information of a pass.
static Type * getVoidTy(LLVMContext &C)
Definition: Type.cpp:161
static FunctionType * get(Type *Result, ArrayRef< Type *> Params, bool isVarArg)
This static method is the primary way of constructing a FunctionType.
Definition: Type.cpp:297
static Constant * get(StructType *T, ArrayRef< Constant *> V)
Definition: Constants.cpp:1044
Interval::pred_iterator pred_end(Interval *I)
Definition: Interval.h:116
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
Definition: BasicBlock.h:100
ConstantInt * getInt64(uint64_t C)
Get a constant 64-bit value.
Definition: IRBuilder.h:312
MDNode * getScope() const
Definition: DebugLoc.cpp:36
static void write(bool isBE, void *P, T V)
StringRef getDirectory() const
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition: PassManager.h:160
size_t size() const
Definition: SmallVector.h:53
PointerType * getInt8PtrTy(unsigned AddrSpace=0)
Fetch the type representing a pointer to an 8-bit integer value.
Definition: IRBuilder.h:385
static PointerType * getInt8PtrTy(LLVMContext &C, unsigned AS=0)
Definition: Type.cpp:220
INITIALIZE_PASS_END(RegBankSelect, DEBUG_TYPE, "Assign register bank of generic virtual registers", false, false) RegBankSelect
raw_ostream & write(unsigned char C)
void sort(IteratorTy Start, IteratorTy End)
Definition: STLExtras.h:1116
PHINode * CreatePHI(Type *Ty, unsigned NumReservedValues, const Twine &Name="")
Definition: IRBuilder.h:1969
void addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind)
Adds the attribute to the indicated argument.
Definition: InstrTypes.h:1275
Iterator for intrusive lists based on ilist_node.
static bool functionHasLines(Function &F)
StringRef getName() const
Module.h This file contains the declarations for the Module class.
Provides information about what library functions are available for the current target.
void replace_extension(SmallVectorImpl< char > &path, const Twine &extension, Style style=Style::native)
Replace the file extension of path with extension.
Definition: Path.cpp:505
LLVM_NODISCARD std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
Definition: StringRef.h:727
void initializeGCOVProfilerLegacyPassPass(PassRegistry &)
bool isValid(std::string &Error) const
isValid - returns the error encountered during regex compilation, or matching, if any...
Definition: Regex.cpp:56
ConstantInt * getInt32(uint32_t C)
Get a constant 32-bit value.
Definition: IRBuilder.h:307
static Constant * get(Type *Ty, uint64_t V, bool isSigned=false)
If Ty is a vector type, return a Constant with a splat of the given value.
Definition: Constants.cpp:622
void appendToGlobalCtors(Module &M, Function *F, int Priority, Constant *Data=nullptr)
Append F to the list of global ctors of module M with the given Priority.
Definition: ModuleUtils.cpp:84
pred_range predecessors(BasicBlock *BB)
Definition: CFG.h:125
void setLinkage(LinkageTypes LT)
Definition: GlobalValue.h:445
Constant * CreateGlobalStringPtr(StringRef Str, const Twine &Name="", unsigned AddressSpace=0)
Same as CreateGlobalString, but return a pointer with "i8*" type instead of a pointer to array of i8...
Definition: IRBuilder.h:1642
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:133
Function * getFunction(StringRef Name) const
Look up the specified function in the module symbol table.
Definition: Module.cpp:176
IntegerType * getInt8Ty()
Fetch the type representing an 8-bit integer.
Definition: IRBuilder.h:337
bool getLibFunc(StringRef funcName, LibFunc &F) const
Searches for a particular function name.
static bool shouldKeepInEntry(BasicBlock::iterator It)
static cl::opt< std::string > DefaultGCOVVersion("default-gcov-version", cl::init("402*"), cl::Hidden, cl::ValueRequired)
ReturnInst * CreateRetVoid()
Create a &#39;ret void&#39; instruction.
Definition: IRBuilder.h:824
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
GCOVFunction - Collects function information.
Definition: GCOV.h:275
A raw_ostream that writes to a file descriptor.
Definition: raw_ostream.h:366
void setUnnamedAddr(UnnamedAddr Val)
Definition: GlobalValue.h:216
StringRef filename(StringRef path, Style style=Style::native)
Get filename.
Definition: Path.cpp:590
static IntegerType * getInt32Ty(LLVMContext &C)
Definition: Type.cpp:176
LLVM_NODISCARD bool empty() const
Definition: SmallVector.h:56
static Constant * getInBoundsGetElementPtr(Type *Ty, Constant *C, ArrayRef< Constant *> IdxList)
Create an "inbounds" getelementptr.
Definition: Constants.h:1181
#define I(x, y, z)
Definition: MD5.cpp:58
#define N
ModulePass class - This class is used to implement unstructured interprocedural optimizations and ana...
Definition: Pass.h:225
static ArrayType * get(Type *ElementType, uint64_t NumElements)
This static method is the primary way to construct an ArrayType.
Definition: Type.cpp:581
LLVM_NODISCARD std::enable_if<!is_simple_type< Y >::value, typename cast_retty< X, const Y >::ret_type >::type dyn_cast(const Y &Val)
Definition: Casting.h:323
Type * getValueType() const
Definition: GlobalValue.h:276
uint32_t Size
Definition: Profile.cpp:47
Rename collisions when linking (static functions).
Definition: GlobalValue.h:56
CallInst * CreateCall(FunctionType *FTy, Value *Callee, ArrayRef< Value *> Args=None, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:1974
BasicBlock * splitBasicBlock(iterator I, const Twine &BBName="")
Split the basic block into two basic blocks at the specified instruction.
Definition: BasicBlock.cpp:408
void close()
Manually flush the stream and close the file.
Analysis pass providing the TargetLibraryInfo.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
A raw_ostream that writes to an std::string.
Definition: raw_ostream.h:483
aarch64 promote const
LLVM Value Representation.
Definition: Value.h:73
Constant * getPersonalityFn() const
Get the personality function associated with this function.
Definition: Function.cpp:1299
succ_range successors(Instruction *I)
Definition: CFG.h:264
BranchInst * CreateBr(BasicBlock *Dest)
Create an unconditional &#39;br label X&#39; instruction.
Definition: IRBuilder.h:848
static StructType * create(LLVMContext &Context, StringRef Name)
This creates an identified struct.
Definition: Type.cpp:437
Value * CreateStructGEP(Type *Ty, Value *Ptr, unsigned Idx, const Twine &Name="")
Definition: IRBuilder.h:1631
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46
void addFnAttr(Attribute::AttrKind Kind)
Add function attributes to this function.
Definition: Function.h:230
ConstantInt * getInt8(uint8_t C)
Get a constant 8-bit value.
Definition: IRBuilder.h:297
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
inst_range instructions(Function *F)
Definition: InstIterator.h:134
A single uniqued string.
Definition: Metadata.h:604
A container for analyses that lazily runs them and caches their results.
unsigned getNumOperands() const
Return number of MDNode operands.
Definition: Metadata.h:1075
#define LLVM_DEBUG(X)
Definition: Debug.h:123
bool exists(const basic_file_status &status)
Does file exist?
Definition: Path.cpp:1022
static IntegerType * getInt8Ty(LLVMContext &C)
Definition: Type.cpp:174
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
void resize(size_type N)
Definition: SmallVector.h:351