Searched refs:FunctionCount (Results 1 - 8 of 8) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DAliasAnalysisEvaluator.h34 int64_t FunctionCount; member in class:llvm::AAEvaluator
41 : FunctionCount(), NoAliasCount(), MayAliasCount(), PartialAliasCount(),
46 : FunctionCount(Arg.FunctionCount), NoAliasCount(Arg.NoAliasCount),
54 Arg.FunctionCount = 0;
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-reduce/deltas/
H A DReduceFunctions.cpp60 int FunctionCount = 0; local
65 errs() << '\t' << ++FunctionCount << ": " << F.getName() << '\n';
69 return FunctionCount;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DProfileSummaryInfo.cpp102 auto FunctionCount = F->getEntryCount();
106 return FunctionCount && isHotCount(FunctionCount.getCount());
118 if (auto FunctionCount = F->getEntryCount())
119 if (isHotCount(FunctionCount.getCount()))
147 if (auto FunctionCount = F->getEntryCount())
148 if (!isColdCount(FunctionCount.getCount()))
177 if (auto FunctionCount = F->getEntryCount()) {
179 isHotCountNthPercentile(PercentileCutoff, FunctionCount.getCount()))
182 !isColdCountNthPercentile(PercentileCutoff, FunctionCount
[all...]
H A DAliasAnalysisEvaluator.cpp100 ++FunctionCount;
336 if (FunctionCount == 0)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineSizeOpts.cpp84 if (auto FunctionCount = MF->getFunction().getEntryCount())
85 if (!PSI->isColdCount(FunctionCount.getCount()))
100 if (auto FunctionCount = MF->getFunction().getEntryCount())
102 FunctionCount.getCount()))
113 if (auto FunctionCount = MF->getFunction().getEntryCount())
115 FunctionCount.getCount()))
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/Disassembler/
H A DWebAssemblyDisassembler.cpp130 int64_t FunctionCount; local
131 if (!nextLEB(FunctionCount, Bytes, Size, false))
133 outs() << " # " << FunctionCount << " functions in section.";
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenPGO.cpp938 uint64_t FunctionCount = getRegionCount(nullptr);
939 Fn->setEntryCount(FunctionCount);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Object/
H A DWasmObjectFile.cpp1305 uint32_t FunctionCount = readVaruint32(Ctx); local
1306 if (FunctionCount != FunctionTypes.size()) {
1311 for (uint32_t i = 0; i < FunctionCount; i++) {

Completed in 109 milliseconds