reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/IR/Function.h
  264     static ProfileCount Invalid;
  277     ProfileCount &setCount(uint64_t C) {
  281     static ProfileCount getInvalid() { return ProfileCount(-1, PCT_Invalid); }
  290   void setEntryCount(ProfileCount Count,
  301   ProfileCount getEntryCount(bool AllowSynthetic = false) const;
lib/Analysis/BlockFrequencyInfoImpl.cpp
  570   auto EntryCount = F.getEntryCount(AllowSynthetic);
lib/Analysis/ProfileSummaryInfo.cpp
  131   auto FunctionCount = F->getEntryCount();
  147   if (auto FunctionCount = F->getEntryCount())
  176   if (auto FunctionCount = F->getEntryCount())
  201   if (auto FunctionCount = F->getEntryCount())
  231   auto FunctionCount = F->getEntryCount();
lib/CodeGen/MachineSizeOpts.cpp
   51   if (auto FunctionCount = MF->getFunction().getEntryCount())
   67   if (auto FunctionCount = MF->getFunction().getEntryCount())
lib/IR/Function.cpp
   56 using ProfileCount = Function::ProfileCount;
 1529 void Function::setEntryCount(ProfileCount Count,
 1533   auto PrevCount = getEntryCount();
 1557           return ProfileCount::getInvalid();
 1566   return ProfileCount::getInvalid();
lib/Transforms/IPO/PartialInlining.cpp
 1384   auto CalleeEntryCount = Cloner.OrigFunc->getEntryCount();
lib/Transforms/IPO/SampleProfile.cpp
   91 using ProfileCount = Function::ProfileCount;
lib/Transforms/IPO/SyntheticCountsPropagation.cpp
   44 using ProfileCount = Function::ProfileCount;
lib/Transforms/Instrumentation/PGOInstrumentation.cpp
  123 using ProfileCount = Function::ProfileCount;
lib/Transforms/Utils/CodeExtractor.cpp
   72 using ProfileCount = Function::ProfileCount;
lib/Transforms/Utils/InlineFunction.cpp
   75 using ProfileCount = Function::ProfileCount;
 1497   auto CalleeCount = Callee->getEntryCount();
unittests/IR/MetadataTest.cpp
 2750   auto Count = F->getEntryCount();