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

References

include/llvm/IR/Function.h
  294   void setEntryCount(uint64_t Count, ProfileCountType Type = PCT_Real,
lib/IR/Function.cpp
 1558         return ProfileCount(Count, PCT_Real);
lib/Transforms/IPO/SampleProfile.cpp
 1624         ProfileCount(Samples->getHeadSamples() + 1, Function::PCT_Real),
 1813   F.setEntryCount(ProfileCount(initialEntryCount, Function::PCT_Real));
lib/Transforms/Instrumentation/PGOInstrumentation.cpp
 1270   F.setEntryCount(ProfileCount(FuncEntryCount, Function::PCT_Real));
 1577       F.setEntryCount(ProfileCount(0, Function::PCT_Real));
lib/Transforms/Utils/CodeExtractor.cpp
 1521           ProfileCount(Count.getValue(), Function::PCT_Real)); // FIXME
unittests/IR/MetadataTest.cpp
 2749   F->setEntryCount(12304, Function::PCT_Real);
 2753   EXPECT_EQ(Function::PCT_Real, Count.getType());