OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ProfileCount
(Results
1 - 13
of
13
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
SyntheticCountsPropagation.cpp
43
using
ProfileCount
= Function::
ProfileCount
;
140
Entry.first->setEntryCount(
ProfileCount
(
SampleProfile.cpp
104
using
ProfileCount
= Function::
ProfileCount
;
1952
F.setEntryCount(
ProfileCount
(initialEntryCount, Function::PCT_Real));
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Function.h
292
class
ProfileCount
{
296
static
ProfileCount
Invalid;
299
ProfileCount
() : Count(-1), PCT(PCT_Invalid) {}
300
ProfileCount
(uint64_t Count, ProfileCountType PCT)
309
ProfileCount
&setCount(uint64_t C) {
313
static
ProfileCount
getInvalid() { return
ProfileCount
(-1, PCT_Invalid); }
322
void setEntryCount(
ProfileCount
Count,
333
ProfileCount
getEntryCount(bool AllowSynthetic = false) const;
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
SampleProfileLoaderBaseImpl.h
46
using
ProfileCount
= Function::
ProfileCount
;
832
ProfileCount
(Samples->getHeadSamples() + 1, Function::PCT_Real),
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
FunctionImportUtils.cpp
207
F->setEntryCount(Function::
ProfileCount
(FS->entryCount(),
CodeExtractor.cpp
75
using
ProfileCount
= Function::
ProfileCount
;
1708
ProfileCount
(Count.getValue(), Function::PCT_Real)); // FIXME
InlineFunction.cpp
78
using
ProfileCount
= Function::
ProfileCount
;
1604
const
ProfileCount
&CalleeEntryCount,
/src/external/apache2/llvm/dist/llvm/lib/IR/
Function.cpp
73
using
ProfileCount
= Function::
ProfileCount
;
1802
void Function::setEntryCount(
ProfileCount
Count,
1822
setEntryCount(
ProfileCount
(Count, Type), Imports);
1825
ProfileCount
Function::getEntryCount(bool AllowSynthetic) const {
1835
return
ProfileCount
::getInvalid();
1836
return
ProfileCount
(Count, PCT_Real);
1841
return
ProfileCount
(Count, PCT_Synthetic);
1844
return
ProfileCount
::getInvalid();
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
ModuleSummaryAnalysis.cpp
125
static CalleeInfo::HotnessType getHotness(uint64_t
ProfileCount
,
129
if (PSI->isHotCount(
ProfileCount
))
131
if (PSI->isColdCount(
ProfileCount
))
InlineCost.cpp
640
auto
ProfileCount
= BFI->getBlockProfileCount(BB);
641
assert(
ProfileCount
.hasValue());
642
if (
ProfileCount
.getValue() == 0)
765
auto
ProfileCount
= CalleeBFI->getBlockProfileCount(&BB);
766
assert(
ProfileCount
.hasValue());
767
CurrentSavings *=
ProfileCount
.getValue();
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
ControlHeightReduction.cpp
385
uint64_t
ProfileCount
);
1697
Optional<uint64_t>
ProfileCount
= BFI.getBlockProfileCount(EntryBlock);
1750
ProfileCount
?
ProfileCount
.getValue() : 0);
1838
uint64_t
ProfileCount
) {
1855
Stats.WeightedNumBranchesDelta += (NumCHRedBranches - 1) *
ProfileCount
;
PGOInstrumentation.cpp
124
using
ProfileCount
= Function::
ProfileCount
;
1422
F.setEntryCount(
ProfileCount
(FuncEntryCount, Function::PCT_Real));
1712
F.setEntryCount(
ProfileCount
(NewEntryCount, Function::PCT_Real));
1869
F.setEntryCount(
ProfileCount
(0, Function::PCT_Real));
1879
ProfileCount
(HotThreshold * MultiplyFactor, Function::PCT_Real));
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h
1406
if (Optional<uint64_t>
ProfileCount
=
1409
OS << ", count = " <<
ProfileCount
.getValue();
Completed in 72 milliseconds
Indexes created Tue Jun 09 00:24:00 UTC 2026