LLVM  8.0.1
InstrProf.cpp
Go to the documentation of this file.
1 //===- InstrProf.cpp - Instrumented profiling format support --------------===//
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 file contains support for clang's instrumentation based PGO and
11 // coverage.
12 //
13 //===----------------------------------------------------------------------===//
14 
16 #include "llvm/ADT/ArrayRef.h"
17 #include "llvm/ADT/SmallString.h"
18 #include "llvm/ADT/SmallVector.h"
19 #include "llvm/ADT/StringExtras.h"
20 #include "llvm/ADT/StringRef.h"
21 #include "llvm/ADT/Triple.h"
22 #include "llvm/IR/Constant.h"
23 #include "llvm/IR/Constants.h"
24 #include "llvm/IR/Function.h"
25 #include "llvm/IR/GlobalValue.h"
26 #include "llvm/IR/GlobalVariable.h"
27 #include "llvm/IR/Instruction.h"
28 #include "llvm/IR/LLVMContext.h"
29 #include "llvm/IR/MDBuilder.h"
30 #include "llvm/IR/Metadata.h"
31 #include "llvm/IR/Module.h"
32 #include "llvm/IR/Type.h"
33 #include "llvm/Support/Casting.h"
35 #include "llvm/Support/Compiler.h"
37 #include "llvm/Support/Endian.h"
38 #include "llvm/Support/Error.h"
40 #include "llvm/Support/LEB128.h"
43 #include "llvm/Support/Path.h"
45 #include <algorithm>
46 #include <cassert>
47 #include <cstddef>
48 #include <cstdint>
49 #include <cstring>
50 #include <memory>
51 #include <string>
52 #include <system_error>
53 #include <utility>
54 #include <vector>
55 
56 using namespace llvm;
57 
59  "static-func-full-module-prefix", cl::init(true), cl::Hidden,
60  cl::desc("Use full module build paths in the profile counter names for "
61  "static functions."));
62 
63 // This option is tailored to users that have different top-level directory in
64 // profile-gen and profile-use compilation. Users need to specific the number
65 // of levels to strip. A value larger than the number of directories in the
66 // source file will strip all the directory names and only leave the basename.
67 //
68 // Note current ThinLTO module importing for the indirect-calls assumes
69 // the source directory name not being stripped. A non-zero option value here
70 // can potentially prevent some inter-module indirect-call-promotions.
72  "static-func-strip-dirname-prefix", cl::init(0), cl::Hidden,
73  cl::desc("Strip specified level of directory name from source path in "
74  "the profile counter name for static functions."));
75 
76 static std::string getInstrProfErrString(instrprof_error Err) {
77  switch (Err) {
79  return "Success";
81  return "End of File";
83  return "Unrecognized instrumentation profile encoding format";
85  return "Invalid instrumentation profile data (bad magic)";
87  return "Invalid instrumentation profile data (file header is corrupt)";
89  return "Unsupported instrumentation profile format version";
91  return "Unsupported instrumentation profile hash type";
93  return "Too much profile data";
95  return "Truncated profile data";
97  return "Malformed instrumentation profile data";
99  return "No profile data available for function";
101  return "Function control flow change detected (hash mismatch)";
103  return "Function basic block count change detected (counter mismatch)";
105  return "Counter overflow";
107  return "Function value site count change detected (counter mismatch)";
109  return "Failed to compress data (zlib)";
111  return "Failed to uncompress data (zlib)";
113  return "Empty raw profile file";
115  return "Profile uses zlib compression but the profile reader was built without zlib support";
116  }
117  llvm_unreachable("A value of instrprof_error has no message.");
118 }
119 
120 namespace {
121 
122 // FIXME: This class is only here to support the transition to llvm::Error. It
123 // will be removed once this transition is complete. Clients should prefer to
124 // deal with the Error value directly, rather than converting to error_code.
125 class InstrProfErrorCategoryType : public std::error_category {
126  const char *name() const noexcept override { return "llvm.instrprof"; }
127 
128  std::string message(int IE) const override {
129  return getInstrProfErrString(static_cast<instrprof_error>(IE));
130  }
131 };
132 
133 } // end anonymous namespace
134 
136 
138  return *ErrorCategory;
139 }
140 
141 namespace {
142 
143 const char *InstrProfSectNameCommon[] = {
144 #define INSTR_PROF_SECT_ENTRY(Kind, SectNameCommon, SectNameCoff, Prefix) \
145  SectNameCommon,
147 };
148 
149 const char *InstrProfSectNameCoff[] = {
150 #define INSTR_PROF_SECT_ENTRY(Kind, SectNameCommon, SectNameCoff, Prefix) \
151  SectNameCoff,
153 };
154 
155 const char *InstrProfSectNamePrefix[] = {
156 #define INSTR_PROF_SECT_ENTRY(Kind, SectNameCommon, SectNameCoff, Prefix) \
157  Prefix,
159 };
160 
161 } // namespace
162 
163 namespace llvm {
164 
167  bool AddSegmentInfo) {
168  std::string SectName;
169 
170  if (OF == Triple::MachO && AddSegmentInfo)
171  SectName = InstrProfSectNamePrefix[IPSK];
172 
173  if (OF == Triple::COFF)
174  SectName += InstrProfSectNameCoff[IPSK];
175  else
176  SectName += InstrProfSectNameCommon[IPSK];
177 
178  if (OF == Triple::MachO && IPSK == IPSK_data && AddSegmentInfo)
179  SectName += ",regular,live_support";
180 
181  return SectName;
182 }
183 
185  if (IE == instrprof_error::success)
186  return;
187 
188  if (FirstError == instrprof_error::success)
189  FirstError = IE;
190 
191  switch (IE) {
193  ++NumHashMismatches;
194  break;
196  ++NumCountMismatches;
197  break;
199  ++NumCounterOverflows;
200  break;
202  ++NumValueSiteCountMismatches;
203  break;
204  default:
205  llvm_unreachable("Not a soft error");
206  }
207 }
208 
209 std::string InstrProfError::message() const {
210  return getInstrProfErrString(Err);
211 }
212 
213 char InstrProfError::ID = 0;
214 
215 std::string getPGOFuncName(StringRef RawFuncName,
217  StringRef FileName,
218  uint64_t Version LLVM_ATTRIBUTE_UNUSED) {
219  return GlobalValue::getGlobalIdentifier(RawFuncName, Linkage, FileName);
220 }
221 
222 // Strip NumPrefix level of directory name from PathNameStr. If the number of
223 // directory separators is less than NumPrefix, strip all the directories and
224 // leave base file name only.
225 static StringRef stripDirPrefix(StringRef PathNameStr, uint32_t NumPrefix) {
226  uint32_t Count = NumPrefix;
227  uint32_t Pos = 0, LastPos = 0;
228  for (auto & CI : PathNameStr) {
229  ++Pos;
231  LastPos = Pos;
232  --Count;
233  }
234  if (Count == 0)
235  break;
236  }
237  return PathNameStr.substr(LastPos);
238 }
239 
240 // Return the PGOFuncName. This function has some special handling when called
241 // in LTO optimization. The following only applies when calling in LTO passes
242 // (when \c InLTO is true): LTO's internalization privatizes many global linkage
243 // symbols. This happens after value profile annotation, but those internal
244 // linkage functions should not have a source prefix.
245 // Additionally, for ThinLTO mode, exported internal functions are promoted
246 // and renamed. We need to ensure that the original internal PGO name is
247 // used when computing the GUID that is compared against the profiled GUIDs.
248 // To differentiate compiler generated internal symbols from original ones,
249 // PGOFuncName meta data are created and attached to the original internal
250 // symbols in the value profile annotation step
251 // (PGOUseFunc::annotateIndirectCallSites). If a symbol does not have the meta
252 // data, its original linkage must be non-internal.
253 std::string getPGOFuncName(const Function &F, bool InLTO, uint64_t Version) {
254  if (!InLTO) {
255  StringRef FileName(F.getParent()->getSourceFileName());
256  uint32_t StripLevel = StaticFuncFullModulePrefix ? 0 : (uint32_t)-1;
257  if (StripLevel < StaticFuncStripDirNamePrefix)
258  StripLevel = StaticFuncStripDirNamePrefix;
259  if (StripLevel)
260  FileName = stripDirPrefix(FileName, StripLevel);
261  return getPGOFuncName(F.getName(), F.getLinkage(), FileName, Version);
262  }
263 
264  // In LTO mode (when InLTO is true), first check if there is a meta data.
265  if (MDNode *MD = getPGOFuncNameMetadata(F)) {
266  StringRef S = cast<MDString>(MD->getOperand(0))->getString();
267  return S.str();
268  }
269 
270  // If there is no meta data, the function must be a global before the value
271  // profile annotation pass. Its current linkage may be internal if it is
272  // internalized in LTO mode.
274 }
275 
277  if (FileName.empty())
278  return PGOFuncName;
279  // Drop the file name including ':'. See also getPGOFuncName.
280  if (PGOFuncName.startswith(FileName))
281  PGOFuncName = PGOFuncName.drop_front(FileName.size() + 1);
282  return PGOFuncName;
283 }
284 
285 // \p FuncName is the string used as profile lookup key for the function. A
286 // symbol is created to hold the name. Return the legalized symbol name.
287 std::string getPGOFuncNameVarName(StringRef FuncName,
288  GlobalValue::LinkageTypes Linkage) {
289  std::string VarName = getInstrProfNameVarPrefix();
290  VarName += FuncName;
291 
292  if (!GlobalValue::isLocalLinkage(Linkage))
293  return VarName;
294 
295  // Now fix up illegal chars in local VarName that may upset the assembler.
296  const char *InvalidChars = "-:<>/\"'";
297  size_t found = VarName.find_first_of(InvalidChars);
298  while (found != std::string::npos) {
299  VarName[found] = '_';
300  found = VarName.find_first_of(InvalidChars, found + 1);
301  }
302  return VarName;
303 }
304 
307  StringRef PGOFuncName) {
308  // We generally want to match the function's linkage, but available_externally
309  // and extern_weak both have the wrong semantics, and anything that doesn't
310  // need to link across compilation units doesn't need to be visible at all.
311  if (Linkage == GlobalValue::ExternalWeakLinkage)
313  else if (Linkage == GlobalValue::AvailableExternallyLinkage)
315  else if (Linkage == GlobalValue::InternalLinkage ||
316  Linkage == GlobalValue::ExternalLinkage)
317  Linkage = GlobalValue::PrivateLinkage;
318 
319  auto *Value =
320  ConstantDataArray::getString(M.getContext(), PGOFuncName, false);
321  auto FuncNameVar =
322  new GlobalVariable(M, Value->getType(), true, Linkage, Value,
323  getPGOFuncNameVarName(PGOFuncName, Linkage));
324 
325  // Hide the symbol so that we correctly get a copy for each executable.
326  if (!GlobalValue::isLocalLinkage(FuncNameVar->getLinkage()))
328 
329  return FuncNameVar;
330 }
331 
333  return createPGOFuncNameVar(*F.getParent(), F.getLinkage(), PGOFuncName);
334 }
335 
337  for (Function &F : M) {
338  // Function may not have a name: like using asm("") to overwrite the name.
339  // Ignore in this case.
340  if (!F.hasName())
341  continue;
342  const std::string &PGOFuncName = getPGOFuncName(F, InLTO);
343  if (Error E = addFuncName(PGOFuncName))
344  return E;
345  MD5FuncMap.emplace_back(Function::getGUID(PGOFuncName), &F);
346  // In ThinLTO, local function may have been promoted to global and have
347  // suffix added to the function name. We need to add the stripped function
348  // name to the symbol table so that we can find a match from profile.
349  if (InLTO) {
350  auto pos = PGOFuncName.find('.');
351  if (pos != std::string::npos) {
352  const std::string &OtherFuncName = PGOFuncName.substr(0, pos);
353  if (Error E = addFuncName(OtherFuncName))
354  return E;
355  MD5FuncMap.emplace_back(Function::getGUID(OtherFuncName), &F);
356  }
357  }
358  }
359  Sorted = false;
360  finalizeSymtab();
361  return Error::success();
362 }
363 
365  finalizeSymtab();
366  auto Result =
367  std::lower_bound(AddrToMD5Map.begin(), AddrToMD5Map.end(), Address,
368  [](const std::pair<uint64_t, uint64_t> &LHS,
369  uint64_t RHS) { return LHS.first < RHS; });
370  // Raw function pointer collected by value profiler may be from
371  // external functions that are not instrumented. They won't have
372  // mapping data to be used by the deserializer. Force the value to
373  // be 0 in this case.
374  if (Result != AddrToMD5Map.end() && Result->first == Address)
375  return (uint64_t)Result->second;
376  return 0;
377 }
378 
380  bool doCompression, std::string &Result) {
381  assert(!NameStrs.empty() && "No name data to emit");
382 
383  uint8_t Header[16], *P = Header;
384  std::string UncompressedNameStrings =
385  join(NameStrs.begin(), NameStrs.end(), getInstrProfNameSeparator());
386 
387  assert(StringRef(UncompressedNameStrings)
388  .count(getInstrProfNameSeparator()) == (NameStrs.size() - 1) &&
389  "PGO name is invalid (contains separator token)");
390 
391  unsigned EncLen = encodeULEB128(UncompressedNameStrings.length(), P);
392  P += EncLen;
393 
394  auto WriteStringToResult = [&](size_t CompressedLen, StringRef InputStr) {
395  EncLen = encodeULEB128(CompressedLen, P);
396  P += EncLen;
397  char *HeaderStr = reinterpret_cast<char *>(&Header[0]);
398  unsigned HeaderLen = P - &Header[0];
399  Result.append(HeaderStr, HeaderLen);
400  Result += InputStr;
401  return Error::success();
402  };
403 
404  if (!doCompression) {
405  return WriteStringToResult(0, UncompressedNameStrings);
406  }
407 
408  SmallString<128> CompressedNameStrings;
409  Error E = zlib::compress(StringRef(UncompressedNameStrings),
410  CompressedNameStrings, zlib::BestSizeCompression);
411  if (E) {
412  consumeError(std::move(E));
413  return make_error<InstrProfError>(instrprof_error::compress_failed);
414  }
415 
416  return WriteStringToResult(CompressedNameStrings.size(),
417  CompressedNameStrings);
418 }
419 
421  auto *Arr = cast<ConstantDataArray>(NameVar->getInitializer());
422  StringRef NameStr =
423  Arr->isCString() ? Arr->getAsCString() : Arr->getAsString();
424  return NameStr;
425 }
426 
428  std::string &Result, bool doCompression) {
429  std::vector<std::string> NameStrs;
430  for (auto *NameVar : NameVars) {
431  NameStrs.push_back(getPGOFuncNameVarInitializer(NameVar));
432  }
434  NameStrs, zlib::isAvailable() && doCompression, Result);
435 }
436 
438  const uint8_t *P = reinterpret_cast<const uint8_t *>(NameStrings.data());
439  const uint8_t *EndP = reinterpret_cast<const uint8_t *>(NameStrings.data() +
440  NameStrings.size());
441  while (P < EndP) {
442  uint32_t N;
443  uint64_t UncompressedSize = decodeULEB128(P, &N);
444  P += N;
445  uint64_t CompressedSize = decodeULEB128(P, &N);
446  P += N;
447  bool isCompressed = (CompressedSize != 0);
448  SmallString<128> UncompressedNameStrings;
449  StringRef NameStrings;
450  if (isCompressed) {
452  return make_error<InstrProfError>(instrprof_error::zlib_unavailable);
453 
454  StringRef CompressedNameStrings(reinterpret_cast<const char *>(P),
455  CompressedSize);
456  if (Error E =
457  zlib::uncompress(CompressedNameStrings, UncompressedNameStrings,
458  UncompressedSize)) {
459  consumeError(std::move(E));
460  return make_error<InstrProfError>(instrprof_error::uncompress_failed);
461  }
462  P += CompressedSize;
463  NameStrings = StringRef(UncompressedNameStrings.data(),
464  UncompressedNameStrings.size());
465  } else {
466  NameStrings =
467  StringRef(reinterpret_cast<const char *>(P), UncompressedSize);
468  P += UncompressedSize;
469  }
470  // Now parse the name strings.
472  NameStrings.split(Names, getInstrProfNameSeparator());
473  for (StringRef &Name : Names)
474  if (Error E = Symtab.addFuncName(Name))
475  return E;
476 
477  while (P < EndP && *P == 0)
478  P++;
479  }
480  return Error::success();
481 }
482 
484  uint64_t Weight,
485  function_ref<void(instrprof_error)> Warn) {
486  this->sortByTargetValues();
487  Input.sortByTargetValues();
488  auto I = ValueData.begin();
489  auto IE = ValueData.end();
490  for (auto J = Input.ValueData.begin(), JE = Input.ValueData.end(); J != JE;
491  ++J) {
492  while (I != IE && I->Value < J->Value)
493  ++I;
494  if (I != IE && I->Value == J->Value) {
495  bool Overflowed;
496  I->Count = SaturatingMultiplyAdd(J->Count, Weight, I->Count, &Overflowed);
497  if (Overflowed)
499  ++I;
500  continue;
501  }
502  ValueData.insert(I, *J);
503  }
504 }
505 
506 void InstrProfValueSiteRecord::scale(uint64_t Weight,
507  function_ref<void(instrprof_error)> Warn) {
508  for (auto I = ValueData.begin(), IE = ValueData.end(); I != IE; ++I) {
509  bool Overflowed;
510  I->Count = SaturatingMultiply(I->Count, Weight, &Overflowed);
511  if (Overflowed)
513  }
514 }
515 
516 // Merge Value Profile data from Src record to this record for ValueKind.
517 // Scale merged value counts by \p Weight.
518 void InstrProfRecord::mergeValueProfData(
519  uint32_t ValueKind, InstrProfRecord &Src, uint64_t Weight,
520  function_ref<void(instrprof_error)> Warn) {
521  uint32_t ThisNumValueSites = getNumValueSites(ValueKind);
522  uint32_t OtherNumValueSites = Src.getNumValueSites(ValueKind);
523  if (ThisNumValueSites != OtherNumValueSites) {
525  return;
526  }
527  if (!ThisNumValueSites)
528  return;
529  std::vector<InstrProfValueSiteRecord> &ThisSiteRecords =
530  getOrCreateValueSitesForKind(ValueKind);
532  Src.getValueSitesForKind(ValueKind);
533  for (uint32_t I = 0; I < ThisNumValueSites; I++)
534  ThisSiteRecords[I].merge(OtherSiteRecords[I], Weight, Warn);
535 }
536 
537 void InstrProfRecord::merge(InstrProfRecord &Other, uint64_t Weight,
538  function_ref<void(instrprof_error)> Warn) {
539  // If the number of counters doesn't match we either have bad data
540  // or a hash collision.
541  if (Counts.size() != Other.Counts.size()) {
543  return;
544  }
545 
546  for (size_t I = 0, E = Other.Counts.size(); I < E; ++I) {
547  bool Overflowed;
548  Counts[I] =
549  SaturatingMultiplyAdd(Other.Counts[I], Weight, Counts[I], &Overflowed);
550  if (Overflowed)
552  }
553 
554  for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind)
555  mergeValueProfData(Kind, Other, Weight, Warn);
556 }
557 
558 void InstrProfRecord::scaleValueProfData(
559  uint32_t ValueKind, uint64_t Weight,
560  function_ref<void(instrprof_error)> Warn) {
561  for (auto &R : getValueSitesForKind(ValueKind))
562  R.scale(Weight, Warn);
563 }
564 
565 void InstrProfRecord::scale(uint64_t Weight,
566  function_ref<void(instrprof_error)> Warn) {
567  for (auto &Count : this->Counts) {
568  bool Overflowed;
569  Count = SaturatingMultiply(Count, Weight, &Overflowed);
570  if (Overflowed)
572  }
573  for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind)
574  scaleValueProfData(Kind, Weight, Warn);
575 }
576 
577 // Map indirect call target name hash to name string.
578 uint64_t InstrProfRecord::remapValue(uint64_t Value, uint32_t ValueKind,
579  InstrProfSymtab *SymTab) {
580  if (!SymTab)
581  return Value;
582 
583  if (ValueKind == IPVK_IndirectCallTarget)
584  return SymTab->getFunctionHashFromAddress(Value);
585 
586  return Value;
587 }
588 
590  InstrProfValueData *VData, uint32_t N,
592  for (uint32_t I = 0; I < N; I++) {
593  VData[I].Value = remapValue(VData[I].Value, ValueKind, ValueMap);
594  }
595  std::vector<InstrProfValueSiteRecord> &ValueSites =
596  getOrCreateValueSitesForKind(ValueKind);
597  if (N == 0)
598  ValueSites.emplace_back();
599  else
600  ValueSites.emplace_back(VData, VData + N);
601 }
602 
603 #define INSTR_PROF_COMMON_API_IMPL
605 
606 /*!
607  * ValueProfRecordClosure Interface implementation for InstrProfRecord
608  * class. These C wrappers are used as adaptors so that C++ code can be
609  * invoked as callbacks.
610  */
612  return reinterpret_cast<const InstrProfRecord *>(Record)->getNumValueKinds();
613 }
614 
616  return reinterpret_cast<const InstrProfRecord *>(Record)
617  ->getNumValueSites(VKind);
618 }
619 
621  return reinterpret_cast<const InstrProfRecord *>(Record)
622  ->getNumValueData(VKind);
623 }
624 
626  uint32_t S) {
627  return reinterpret_cast<const InstrProfRecord *>(R)
628  ->getNumValueDataForSite(VK, S);
629 }
630 
631 void getValueForSiteInstrProf(const void *R, InstrProfValueData *Dst,
632  uint32_t K, uint32_t S) {
633  reinterpret_cast<const InstrProfRecord *>(R)->getValueForSite(Dst, K, S);
634 }
635 
636 ValueProfData *allocValueProfDataInstrProf(size_t TotalSizeInBytes) {
637  ValueProfData *VD =
638  (ValueProfData *)(new (::operator new(TotalSizeInBytes)) ValueProfData());
639  memset(VD, 0, TotalSizeInBytes);
640  return VD;
641 }
642 
643 static ValueProfRecordClosure InstrProfRecordClosure = {
644  nullptr,
649  nullptr,
652 
653 // Wrapper implementation using the closure mechanism.
654 uint32_t ValueProfData::getSize(const InstrProfRecord &Record) {
655  auto Closure = InstrProfRecordClosure;
656  Closure.Record = &Record;
657  return getValueProfDataSize(&Closure);
658 }
659 
660 // Wrapper implementation using the closure mechanism.
661 std::unique_ptr<ValueProfData>
662 ValueProfData::serializeFrom(const InstrProfRecord &Record) {
663  InstrProfRecordClosure.Record = &Record;
664 
665  std::unique_ptr<ValueProfData> VPD(
666  serializeValueProfDataFrom(&InstrProfRecordClosure, nullptr));
667  return VPD;
668 }
669 
670 void ValueProfRecord::deserializeTo(InstrProfRecord &Record,
671  InstrProfSymtab *SymTab) {
672  Record.reserveSites(Kind, NumValueSites);
673 
674  InstrProfValueData *ValueData = getValueProfRecordValueData(this);
675  for (uint64_t VSite = 0; VSite < NumValueSites; ++VSite) {
676  uint8_t ValueDataCount = this->SiteCountArray[VSite];
677  Record.addValueData(Kind, VSite, ValueData, ValueDataCount, SymTab);
678  ValueData += ValueDataCount;
679  }
680 }
681 
682 // For writing/serializing, Old is the host endianness, and New is
683 // byte order intended on disk. For Reading/deserialization, Old
684 // is the on-disk source endianness, and New is the host endianness.
685 void ValueProfRecord::swapBytes(support::endianness Old,
686  support::endianness New) {
687  using namespace support;
688 
689  if (Old == New)
690  return;
691 
692  if (getHostEndianness() != Old) {
693  sys::swapByteOrder<uint32_t>(NumValueSites);
694  sys::swapByteOrder<uint32_t>(Kind);
695  }
696  uint32_t ND = getValueProfRecordNumValueData(this);
697  InstrProfValueData *VD = getValueProfRecordValueData(this);
698 
699  // No need to swap byte array: SiteCountArrray.
700  for (uint32_t I = 0; I < ND; I++) {
701  sys::swapByteOrder<uint64_t>(VD[I].Value);
702  sys::swapByteOrder<uint64_t>(VD[I].Count);
703  }
704  if (getHostEndianness() == Old) {
705  sys::swapByteOrder<uint32_t>(NumValueSites);
706  sys::swapByteOrder<uint32_t>(Kind);
707  }
708 }
709 
710 void ValueProfData::deserializeTo(InstrProfRecord &Record,
711  InstrProfSymtab *SymTab) {
712  if (NumValueKinds == 0)
713  return;
714 
715  ValueProfRecord *VR = getFirstValueProfRecord(this);
716  for (uint32_t K = 0; K < NumValueKinds; K++) {
717  VR->deserializeTo(Record, SymTab);
718  VR = getValueProfRecordNext(VR);
719  }
720 }
721 
722 template <class T>
723 static T swapToHostOrder(const unsigned char *&D, support::endianness Orig) {
724  using namespace support;
725 
726  if (Orig == little)
727  return endian::readNext<T, little, unaligned>(D);
728  else
729  return endian::readNext<T, big, unaligned>(D);
730 }
731 
732 static std::unique_ptr<ValueProfData> allocValueProfData(uint32_t TotalSize) {
733  return std::unique_ptr<ValueProfData>(new (::operator new(TotalSize))
734  ValueProfData());
735 }
736 
737 Error ValueProfData::checkIntegrity() {
738  if (NumValueKinds > IPVK_Last + 1)
739  return make_error<InstrProfError>(instrprof_error::malformed);
740  // Total size needs to be mulltiple of quadword size.
741  if (TotalSize % sizeof(uint64_t))
742  return make_error<InstrProfError>(instrprof_error::malformed);
743 
744  ValueProfRecord *VR = getFirstValueProfRecord(this);
745  for (uint32_t K = 0; K < this->NumValueKinds; K++) {
746  if (VR->Kind > IPVK_Last)
747  return make_error<InstrProfError>(instrprof_error::malformed);
748  VR = getValueProfRecordNext(VR);
749  if ((char *)VR - (char *)this > (ptrdiff_t)TotalSize)
750  return make_error<InstrProfError>(instrprof_error::malformed);
751  }
752  return Error::success();
753 }
754 
756 ValueProfData::getValueProfData(const unsigned char *D,
757  const unsigned char *const BufferEnd,
759  using namespace support;
760 
761  if (D + sizeof(ValueProfData) > BufferEnd)
762  return make_error<InstrProfError>(instrprof_error::truncated);
763 
764  const unsigned char *Header = D;
765  uint32_t TotalSize = swapToHostOrder<uint32_t>(Header, Endianness);
766  if (D + TotalSize > BufferEnd)
767  return make_error<InstrProfError>(instrprof_error::too_large);
768 
769  std::unique_ptr<ValueProfData> VPD = allocValueProfData(TotalSize);
770  memcpy(VPD.get(), D, TotalSize);
771  // Byte swap.
772  VPD->swapBytesToHost(Endianness);
773 
774  Error E = VPD->checkIntegrity();
775  if (E)
776  return std::move(E);
777 
778  return std::move(VPD);
779 }
780 
781 void ValueProfData::swapBytesToHost(support::endianness Endianness) {
782  using namespace support;
783 
784  if (Endianness == getHostEndianness())
785  return;
786 
787  sys::swapByteOrder<uint32_t>(TotalSize);
788  sys::swapByteOrder<uint32_t>(NumValueKinds);
789 
790  ValueProfRecord *VR = getFirstValueProfRecord(this);
791  for (uint32_t K = 0; K < NumValueKinds; K++) {
792  VR->swapBytes(Endianness, getHostEndianness());
793  VR = getValueProfRecordNext(VR);
794  }
795 }
796 
797 void ValueProfData::swapBytesFromHost(support::endianness Endianness) {
798  using namespace support;
799 
800  if (Endianness == getHostEndianness())
801  return;
802 
803  ValueProfRecord *VR = getFirstValueProfRecord(this);
804  for (uint32_t K = 0; K < NumValueKinds; K++) {
805  ValueProfRecord *NVR = getValueProfRecordNext(VR);
806  VR->swapBytes(getHostEndianness(), Endianness);
807  VR = NVR;
808  }
809  sys::swapByteOrder<uint32_t>(TotalSize);
810  sys::swapByteOrder<uint32_t>(NumValueKinds);
811 }
812 
814  const InstrProfRecord &InstrProfR,
815  InstrProfValueKind ValueKind, uint32_t SiteIdx,
816  uint32_t MaxMDCount) {
817  uint32_t NV = InstrProfR.getNumValueDataForSite(ValueKind, SiteIdx);
818  if (!NV)
819  return;
820 
821  uint64_t Sum = 0;
822  std::unique_ptr<InstrProfValueData[]> VD =
823  InstrProfR.getValueForSite(ValueKind, SiteIdx, &Sum);
824 
825  ArrayRef<InstrProfValueData> VDs(VD.get(), NV);
826  annotateValueSite(M, Inst, VDs, Sum, ValueKind, MaxMDCount);
827 }
828 
831  uint64_t Sum, InstrProfValueKind ValueKind,
832  uint32_t MaxMDCount) {
833  LLVMContext &Ctx = M.getContext();
834  MDBuilder MDHelper(Ctx);
836  // Tag
837  Vals.push_back(MDHelper.createString("VP"));
838  // Value Kind
839  Vals.push_back(MDHelper.createConstant(
840  ConstantInt::get(Type::getInt32Ty(Ctx), ValueKind)));
841  // Total Count
842  Vals.push_back(
843  MDHelper.createConstant(ConstantInt::get(Type::getInt64Ty(Ctx), Sum)));
844 
845  // Value Profile Data
846  uint32_t MDCount = MaxMDCount;
847  for (auto &VD : VDs) {
848  Vals.push_back(MDHelper.createConstant(
849  ConstantInt::get(Type::getInt64Ty(Ctx), VD.Value)));
850  Vals.push_back(MDHelper.createConstant(
851  ConstantInt::get(Type::getInt64Ty(Ctx), VD.Count)));
852  if (--MDCount == 0)
853  break;
854  }
855  Inst.setMetadata(LLVMContext::MD_prof, MDNode::get(Ctx, Vals));
856 }
857 
859  InstrProfValueKind ValueKind,
860  uint32_t MaxNumValueData,
861  InstrProfValueData ValueData[],
862  uint32_t &ActualNumValueData, uint64_t &TotalC) {
864  if (!MD)
865  return false;
866 
867  unsigned NOps = MD->getNumOperands();
868 
869  if (NOps < 5)
870  return false;
871 
872  // Operand 0 is a string tag "VP":
873  MDString *Tag = cast<MDString>(MD->getOperand(0));
874  if (!Tag)
875  return false;
876 
877  if (!Tag->getString().equals("VP"))
878  return false;
879 
880  // Now check kind:
881  ConstantInt *KindInt = mdconst::dyn_extract<ConstantInt>(MD->getOperand(1));
882  if (!KindInt)
883  return false;
884  if (KindInt->getZExtValue() != ValueKind)
885  return false;
886 
887  // Get total count
888  ConstantInt *TotalCInt = mdconst::dyn_extract<ConstantInt>(MD->getOperand(2));
889  if (!TotalCInt)
890  return false;
891  TotalC = TotalCInt->getZExtValue();
892 
893  ActualNumValueData = 0;
894 
895  for (unsigned I = 3; I < NOps; I += 2) {
896  if (ActualNumValueData >= MaxNumValueData)
897  break;
898  ConstantInt *Value = mdconst::dyn_extract<ConstantInt>(MD->getOperand(I));
899  ConstantInt *Count =
900  mdconst::dyn_extract<ConstantInt>(MD->getOperand(I + 1));
901  if (!Value || !Count)
902  return false;
903  ValueData[ActualNumValueData].Value = Value->getZExtValue();
904  ValueData[ActualNumValueData].Count = Count->getZExtValue();
905  ActualNumValueData++;
906  }
907  return true;
908 }
909 
912 }
913 
915  // Only for internal linkage functions.
916  if (PGOFuncName == F.getName())
917  return;
918  // Don't create duplicated meta-data.
919  if (getPGOFuncNameMetadata(F))
920  return;
921  LLVMContext &C = F.getContext();
922  MDNode *N = MDNode::get(C, MDString::get(C, PGOFuncName));
924 }
925 
926 bool needsComdatForCounter(const Function &F, const Module &M) {
927  if (F.hasComdat())
928  return true;
929 
930  if (!Triple(M.getTargetTriple()).supportsCOMDAT())
931  return false;
932 
933  // See createPGOFuncNameVar for more details. To avoid link errors, profile
934  // counters for function with available_externally linkage needs to be changed
935  // to linkonce linkage. On ELF based systems, this leads to weak symbols to be
936  // created. Without using comdat, duplicate entries won't be removed by the
937  // linker leading to increased data segement size and raw profile size. Even
938  // worse, since the referenced counter from profile per-function data object
939  // will be resolved to the common strong definition, the profile counts for
940  // available_externally functions will end up being duplicated in raw profile
941  // data. This can result in distorted profile as the counts of those dups
942  // will be accumulated by the profile merger.
944  if (Linkage != GlobalValue::ExternalWeakLinkage &&
946  return false;
947 
948  return true;
949 }
950 
951 // Check if INSTR_PROF_RAW_VERSION_VAR is defined.
952 bool isIRPGOFlagSet(const Module *M) {
953  auto IRInstrVar =
954  M->getNamedGlobal(INSTR_PROF_QUOTE(INSTR_PROF_RAW_VERSION_VAR));
955  if (!IRInstrVar || IRInstrVar->isDeclaration() ||
956  IRInstrVar->hasLocalLinkage())
957  return false;
958 
959  // Check if the flag is set.
960  if (!IRInstrVar->hasInitializer())
961  return false;
962 
963  const Constant *InitVal = IRInstrVar->getInitializer();
964  if (!InitVal)
965  return false;
966 
967  return (dyn_cast<ConstantInt>(InitVal)->getZExtValue() &
968  VARIANT_MASK_IR_PROF) != 0;
969 }
970 
971 // Check if we can safely rename this Comdat function.
972 bool canRenameComdatFunc(const Function &F, bool CheckAddressTaken) {
973  if (F.getName().empty())
974  return false;
975  if (!needsComdatForCounter(F, *(F.getParent())))
976  return false;
977  // Unsafe to rename the address-taken function (which can be used in
978  // function comparison).
979  if (CheckAddressTaken && F.hasAddressTaken())
980  return false;
981  // Only safe to do if this function may be discarded if it is not used
982  // in the compilation unit.
984  return false;
985 
986  // For AvailableExternallyLinkage functions.
987  if (!F.hasComdat()) {
989  return true;
990  }
991  return true;
992 }
993 
994 // Parse the value profile options.
996  int64_t &RangeLast) {
997  static const int64_t DefaultMemOPSizeRangeStart = 0;
998  static const int64_t DefaultMemOPSizeRangeLast = 8;
999  RangeStart = DefaultMemOPSizeRangeStart;
1000  RangeLast = DefaultMemOPSizeRangeLast;
1001 
1002  if (!MemOPSizeRange.empty()) {
1003  auto Pos = MemOPSizeRange.find(':');
1004  if (Pos != std::string::npos) {
1005  if (Pos > 0)
1006  MemOPSizeRange.substr(0, Pos).getAsInteger(10, RangeStart);
1007  if (Pos < MemOPSizeRange.size() - 1)
1008  MemOPSizeRange.substr(Pos + 1).getAsInteger(10, RangeLast);
1009  } else
1010  MemOPSizeRange.getAsInteger(10, RangeLast);
1011  }
1012  assert(RangeLast >= RangeStart);
1013 }
1014 
1015 } // end namespace llvm
void setVisibility(VisibilityTypes V)
Definition: GlobalValue.h:239
void getValueForSiteInstrProf(const void *R, InstrProfValueData *Dst, uint32_t K, uint32_t S)
Definition: InstrProf.cpp:631
cl::opt< std::string > MemOPSizeRange("memop-size-range", cl::desc("Set the range of size in memory intrinsic calls to be profiled " "precisely, in a format of <start_val>:<end_val>"), cl::init(""))
uint64_t CallInst * C
bool is_separator(char value, Style style=Style::native)
Check whether the given char is a path separator on the host OS.
Definition: Path.cpp:618
const std::string & getTargetTriple() const
Get the target triple which is a string describing the target host.
Definition: Module.h:240
A symbol table used for function PGO name look-up with keys (such as pointers, md5hash values) to the...
Definition: InstrProf.h:411
static Constant * getString(LLVMContext &Context, StringRef Initializer, bool AddNull=true)
This method constructs a CDS and initializes it with a text string.
Definition: Constants.cpp:2567
void merge(InstrProfRecord &Other, uint64_t Weight, function_ref< void(instrprof_error)> Warn)
Merge the counts in Other into this one.
Definition: InstrProf.cpp:537
static StringRef stripDirPrefix(StringRef PathNameStr, uint32_t NumPrefix)
Definition: InstrProf.cpp:225
LLVM_NODISCARD std::string str() const
str - Get the contents as an std::string.
Definition: StringRef.h:228
DiagnosticInfoOptimizationBase::Argument NV
StringRef getInstrProfNameVarPrefix()
Return the name prefix of variables containing instrumented function names.
Definition: InstrProf.h:83
uint32_t getNumValueDataInstrProf(const void *Record, uint32_t VKind)
Definition: InstrProf.cpp:620
const Constant * getInitializer() const
getInitializer - Return the initializer for this global variable.
This class represents lattice values for constants.
Definition: AllocatorList.h:24
ConstantAsMetadata * createConstant(Constant *C)
Return the given constant as metadata.
Definition: MDBuilder.cpp:25
A Module instance is used to store all the information related to an LLVM module. ...
Definition: Module.h:65
iterator begin() const
Definition: ArrayRef.h:137
void addValueData(uint32_t ValueKind, uint32_t Site, InstrProfValueData *VData, uint32_t N, InstrProfSymtab *SymTab)
Add ValueData for ValueKind at value Site.
Definition: InstrProf.cpp:589
static MDString * get(LLVMContext &Context, StringRef Str)
Definition: Metadata.cpp:454
uint32_t getNumValueDataForSite(uint32_t ValueKind, uint32_t Site) const
Return the number of value data collected for ValueKind at profiling site: Site.
Definition: InstrProf.h:795
Available for inspection, not emission.
Definition: GlobalValue.h:50
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE size_t size() const
size - Get the string size.
Definition: StringRef.h:138
bool canRenameComdatFunc(const Function &F, bool CheckAddressTaken=false)
Check if we can safely rename this Comdat function.
Definition: InstrProf.cpp:972
This file contains the declarations for metadata subclasses.
MDNode * getPGOFuncNameMetadata(const Function &F)
Return the PGOFuncName meta data associated with a function.
Definition: InstrProf.cpp:910
An efficient, type-erasing, non-owning reference to a callable.
Definition: STLExtras.h:117
const GlobalVariable * getNamedGlobal(StringRef Name) const
Return the global variable in the module with the specified name, of arbitrary type.
Definition: Module.h:402
Like Internal, but omit from symbol table.
Definition: GlobalValue.h:57
Externally visible function.
Definition: GlobalValue.h:49
constexpr support::endianness Endianness
The endianness of all multi-byte encoded values in MessagePack.
Definition: MsgPack.h:25
static std::unique_ptr< ValueProfData > allocValueProfData(uint32_t TotalSize)
Definition: InstrProf.cpp:732
static T swapToHostOrder(const unsigned char *&D, support::endianness Orig)
Definition: InstrProf.cpp:723
Metadata node.
Definition: Metadata.h:864
std::string getInstrProfSectionName(InstrProfSectKind IPSK, Triple::ObjectFormatType OF, bool AddSegmentInfo=true)
Return the name of the profile section corresponding to IPSK.
Definition: InstrProf.cpp:165
F(f)
const MDOperand & getOperand(unsigned I) const
Definition: Metadata.h:1069
static IntegerType * getInt64Ty(LLVMContext &C)
Definition: Type.cpp:177
std::string getGlobalIdentifier() const
Return the modified name for this global value suitable to be used as the key for a global lookup (e...
Definition: Globals.cpp:156
std::enable_if< std::is_unsigned< T >::value, T >::type SaturatingMultiply(T X, T Y, bool *ResultOverflowed=nullptr)
Multiply two unsigned integers, X and Y, of type T.
Definition: MathExtras.h:793
void reserveSites(uint32_t ValueKind, uint32_t NumValueSites)
Reserve space for NumValueSites sites.
Definition: InstrProf.h:831
uint32_t getNumValueSites(uint32_t ValueKind) const
Return the number of instrumented sites for ValueKind.
Definition: InstrProf.h:791
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 bool isLocalLinkage(LinkageTypes Linkage)
Definition: GlobalValue.h:321
uint32_t getNumValueKindsInstrProf(const void *Record)
ValueProfRecordClosure Interface implementation for InstrProfRecord class.
Definition: InstrProf.cpp:611
amdgpu Simplify well known AMD library false Value Value const Twine & Name
void merge(InstrProfValueSiteRecord &Input, uint64_t Weight, function_ref< void(instrprof_error)> Warn)
Merge data from another InstrProfValueSiteRecord Optionally scale merged counts by Weight...
Definition: InstrProf.cpp:483
Error compress(StringRef InputBuffer, SmallVectorImpl< char > &CompressedBuffer, int Level=DefaultCompression)
Definition: Compression.cpp:50
LLVMContext & getContext() const
Get the global data context.
Definition: Module.h:244
void scale(uint64_t Weight, function_ref< void(instrprof_error)> Warn)
Scale up profile counts (including value profile data) by Weight.
Definition: InstrProf.cpp:565
const std::error_category & instrprof_category()
Definition: InstrProf.cpp:137
MDNode * getMetadata(unsigned KindID) const
Get the current metadata attachments for the given kind, if any.
Definition: Metadata.cpp:1444
InstrProfValueKind
Definition: InstrProf.h:237
Error collectPGOFuncNameStrings(ArrayRef< std::string > NameStrs, bool doCompression, std::string &Result)
Given a vector of strings (function PGO names) NameStrs, the method generates a combined string Resul...
Definition: InstrProf.cpp:379
std::string join(IteratorT Begin, IteratorT End, StringRef Separator)
Joins the strings in the range [Begin, End), adding Separator between the elements.
Definition: StringExtras.h:371
Tagged union holding either a T or a Error.
Definition: CachePruning.h:23
InstrProfSectKind
Definition: InstrProf.h:57
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE bool startswith(StringRef Prefix) const
Check if this string starts with the given Prefix.
Definition: StringRef.h:267
StringRef getFuncNameWithoutPrefix(StringRef PGOFuncName, StringRef FileName="<unknown>")
Given a PGO function name, remove the filename prefix and return the original (static) function name...
Definition: InstrProf.cpp:276
Type * getType() const
All values are typed, get the type of this value.
Definition: Value.h:245
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:133
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this Instruction.
Definition: Instruction.h:221
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory)...
Definition: APInt.h:33
StringRef getInstrProfNameSeparator()
Return the marker used to separate PGO names during serialization.
Definition: InstrProf.h:162
auto lower_bound(R &&Range, ForwardIt I) -> decltype(adl_begin(Range))
Provide wrappers to std::lower_bound which take ranges instead of having to pass begin/end explicitly...
Definition: STLExtras.h:1282
void addError(instrprof_error IE)
Track a soft error (IE) and increment its associated counter.
Definition: InstrProf.cpp:184
LinkageTypes getLinkage() const
Definition: GlobalValue.h:451
static constexpr int BestSizeCompression
Definition: Compression.h:29
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE StringRef substr(size_t Start, size_t N=npos) const
Return a reference to the substring from [Start, Start + N).
Definition: StringRef.h:598
auto count(R &&Range, const E &Element) -> typename std::iterator_traits< decltype(adl_begin(Range))>::difference_type
Wrapper function around std::count to count the number of times an element Element occurs in the give...
Definition: STLExtras.h:1252
const std::string & getSourceFileName() const
Get the module&#39;s original source file name.
Definition: Module.h:221
bool isIRPGOFlagSet(const Module *M)
Check if INSTR_PROF_RAW_VERSION_VAR is defined.
Definition: InstrProf.cpp:952
static cl::opt< bool > StaticFuncFullModulePrefix("static-func-full-module-prefix", cl::init(true), cl::Hidden, cl::desc("Use full module build paths in the profile counter names for " "static functions."))
static ManagedStatic< InstrProfErrorCategoryType > ErrorCategory
Definition: InstrProf.cpp:135
std::string message() const override
Return the error message as a string.
Definition: InstrProf.cpp:209
StringRef getString() const
Definition: Metadata.cpp:464
ExternalWeak linkage description.
Definition: GlobalValue.h:58
uint64_t getFunctionHashFromAddress(uint64_t Address)
Return a function&#39;s hash, or 0, if the function isn&#39;t in this SymTab.
Definition: InstrProf.cpp:364
void getMemOPSizeRangeFromOption(StringRef Str, int64_t &RangeStart, int64_t &RangeLast)
Definition: InstrProf.cpp:995
bool needsComdatForCounter(const Function &F, const Module &M)
Check if we can use Comdat for profile variables.
Definition: InstrProf.cpp:926
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata *> MDs)
Definition: Metadata.h:1166
bool isAvailable()
Definition: Compression.cpp:48
#define P(N)
Same, but only replaced by something equivalent.
Definition: GlobalValue.h:52
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:423
bool getValueProfDataFromInst(const Instruction &Inst, InstrProfValueKind ValueKind, uint32_t MaxNumValueData, InstrProfValueData ValueData[], uint32_t &ActualNumValueData, uint64_t &TotalC)
Extract the value profile data from Inst which is annotated with value profile meta data...
Definition: InstrProf.cpp:858
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
Definition: Constants.h:149
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
Definition: ArrayRef.h:291
void scale(uint64_t Weight, function_ref< void(instrprof_error)> Warn)
Scale up value profile data counts.
Definition: InstrProf.cpp:506
std::string getPGOFuncNameVarName(StringRef FuncName, GlobalValue::LinkageTypes Linkage)
Return the name of the global variable used to store a function name in PGO instrumentation.
Definition: InstrProf.cpp:287
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:69
size_t size() const
size - Get the array size.
Definition: ArrayRef.h:149
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
This is an important base class in LLVM.
Definition: Constant.h:42
ValueKind
Value kinds.
This file contains the declarations for the subclasses of Constant, which represent the different fla...
static ValueProfRecordClosure InstrProfRecordClosure
Definition: InstrProf.cpp:643
ValueProfData * allocValueProfDataInstrProf(size_t TotalSizeInBytes)
Definition: InstrProf.cpp:636
static ManagedStatic< _object_error_category > error_category
Definition: Error.cpp:75
uint64_t decodeULEB128(const uint8_t *p, unsigned *n=nullptr, const uint8_t *end=nullptr, const char **error=nullptr)
Utility function to decode a ULEB128 value.
Definition: LEB128.h:129
std::list< InstrProfValueData > ValueData
Value profiling data pairs at a given value site.
Definition: InstrProf.h:596
LLVMContext & getContext() const
getContext - Return a reference to the LLVMContext associated with this function. ...
Definition: Function.cpp:193
void annotateValueSite(Module &M, Instruction &Inst, const InstrProfRecord &InstrProfR, InstrProfValueKind ValueKind, uint32_t SiteIndx, uint32_t MaxMDCount=3)
Get the value profile data for value site SiteIdx from InstrProfR and annotate the instruction Inst w...
Definition: InstrProf.cpp:813
Value(Type *Ty, unsigned scid)
Definition: Value.cpp:53
void consumeError(Error Err)
Consume a Error without doing anything.
Definition: Error.h:982
size_t size() const
Definition: SmallVector.h:53
void createPGOFuncNameMetadata(Function &F, StringRef PGOFuncName)
Create the PGOFuncName meta data if PGOFuncName is different from function&#39;s raw name.
Definition: InstrProf.cpp:914
Error readPGOFuncNameStrings(StringRef NameStrings, InstrProfSymtab &Symtab)
NameStrings is a string composed of one of more sub-strings encoded in the format described above...
Definition: InstrProf.cpp:437
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
void setMetadata(unsigned KindID, MDNode *Node)
Set the metadata of the specified kind to the specified node.
Definition: Metadata.cpp:1226
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
bool isDiscardableIfUnused() const
Definition: GlobalValue.h:453
std::enable_if< std::numeric_limits< T >::is_signed, bool >::type getAsInteger(unsigned Radix, T &Result) const
Parse the current string as an integer of the specified radix.
Definition: StringRef.h:497
std::enable_if< std::is_unsigned< T >::value, T >::type SaturatingMultiplyAdd(T X, T Y, T A, bool *ResultOverflowed=nullptr)
Multiply two unsigned integers, X and Y, and add the unsigned integer, A to the product.
Definition: MathExtras.h:839
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE StringRef drop_front(size_t N=1) const
Return a StringRef equal to &#39;this&#39; but with the first N elements dropped.
Definition: StringRef.h:645
Error create(object::SectionRef &Section)
Create InstrProfSymtab from an object file section which contains function PGO names.
static ErrorSuccess success()
Create a success value.
Definition: Error.h:327
See the file comment.
Definition: ValueMap.h:86
This is the shared class of boolean and integer constants.
Definition: Constants.h:84
unsigned encodeULEB128(uint64_t Value, raw_ostream &OS, unsigned PadTo=0)
Utility function to encode a ULEB128 value to an output stream.
Definition: LEB128.h:81
This is a &#39;vector&#39; (really, a variable-sized array), optimized for the case when the array is small...
Definition: SmallVector.h:847
Keep one copy of function when linking (inline)
Definition: GlobalValue.h:51
Module.h This file contains the declarations for the Module class.
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
iterator end() const
Definition: ArrayRef.h:138
static cl::opt< unsigned > StaticFuncStripDirNamePrefix("static-func-strip-dirname-prefix", cl::init(0), cl::Hidden, cl::desc("Strip specified level of directory name from source path in " "the profile counter name for static functions."))
static std::string getInstrProfErrString(instrprof_error Err)
Definition: InstrProf.cpp:76
StringRef getPGOFuncNameMetadataName()
Definition: InstrProf.h:264
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
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
LinkageTypes
An enumeration for the kinds of linkage for global values.
Definition: GlobalValue.h:48
static char ID
Definition: InstrProf.h:333
GUID getGUID() const
Return a 64-bit global unique ID constructed from global value name (i.e.
Definition: GlobalValue.h:501
void sortByTargetValues()
Sort ValueData ascending by Value.
Definition: InstrProf.h:604
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE bool equals(StringRef RHS) const
equals - Check for string equality, this is more efficient than compare() when the relative ordering ...
Definition: StringRef.h:169
bool hasComdat() const
Definition: GlobalObject.h:100
void setMetadata(unsigned KindID, MDNode *MD)
Set a particular kind of metadata attachment.
Definition: Metadata.cpp:1434
std::vector< uint64_t > Counts
Definition: InstrProf.h:623
pointer data()
Return a pointer to the vector&#39;s buffer, even if empty().
Definition: SmallVector.h:149
Profiling information for a single function.
Definition: InstrProf.h:622
static IntegerType * getInt32Ty(LLVMContext &C)
Definition: Type.cpp:176
std::string getPGOFuncName(const Function &F, bool InLTO=false, uint64_t Version=INSTR_PROF_INDEX_VERSION)
Return the modified name for function F suitable to be used the key for profile lookup.
Definition: InstrProf.cpp:253
instrprof_error
Definition: InstrProf.h:280
MDString * createString(StringRef Str)
Return the given string as metadata.
Definition: MDBuilder.cpp:21
Error addFuncName(StringRef FuncName)
Update the symtab by adding FuncName to the table.
Definition: InstrProf.h:472
StringRef getName() const
Return a constant reference to the value&#39;s name.
Definition: Value.cpp:214
#define I(x, y, z)
Definition: MD5.cpp:58
#define N
GlobalVariable * createPGOFuncNameVar(Function &F, StringRef PGOFuncName)
Create and return the global variable for function name used in PGO instrumentation.
Definition: InstrProf.cpp:332
Rename collisions when linking (static functions).
Definition: GlobalValue.h:56
const unsigned Kind
bool hasAddressTaken(const User **=nullptr) const
hasAddressTaken - returns true if there are any uses of this function other than direct calls or invo...
Definition: Function.cpp:1254
uint32_t getNumValueSitesInstrProf(const void *Record, uint32_t VKind)
Definition: InstrProf.cpp:615
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
ObjectFormatType
Definition: Triple.h:216
Module * getParent()
Get the module that this global value is contained inside of...
Definition: GlobalValue.h:566
LLVM Value Representation.
Definition: Value.h:73
static const char * name
Lightweight error class with error context and mandatory checking.
Definition: Error.h:158
support::endianness getHostEndianness()
Definition: InstrProf.h:837
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
A single uniqued string.
Definition: Metadata.h:604
ManagedStatic - This transparently changes the behavior of global statics to be lazily constructed on...
Definition: ManagedStatic.h:61
std::unique_ptr< InstrProfValueData[]> getValueForSite(uint32_t ValueKind, uint32_t Site, uint64_t *TotalC=nullptr) const
Return the array of profiled values at Site.
Definition: InstrProf.h:801
#define LLVM_ATTRIBUTE_UNUSED
Definition: Compiler.h:160
unsigned getNumOperands() const
Return number of MDNode operands.
Definition: Metadata.h:1075
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE size_t find(char C, size_t From=0) const
Search for the first character C in the string.
Definition: StringRef.h:298
uint32_t getNumValueDataForSiteInstrProf(const void *R, uint32_t VK, uint32_t S)
Definition: InstrProf.cpp:625
Error uncompress(StringRef InputBuffer, char *UncompressedBuffer, size_t &UncompressedSize)
Definition: Compression.cpp:64
const uint64_t Version
Definition: InstrProf.h:895
StringRef getPGOFuncNameVarInitializer(GlobalVariable *NameVar)
Return the initializer in string of the PGO name var NameVar.
Definition: InstrProf.cpp:420
bool empty() const
empty - Check if the array is empty.
Definition: ArrayRef.h:144