Searched refs:NumFunctions (Results 1 - 15 of 15) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.h110 size_t NumFunctions; member in class:llvm::FunctionCoverageInfo
113 FunctionCoverageInfo() : Executed(0), NumFunctions(0) {}
115 FunctionCoverageInfo(size_t Executed, size_t NumFunctions) argument
116 : Executed(Executed), NumFunctions(NumFunctions) {}
120 NumFunctions += RHS.NumFunctions;
127 ++NumFunctions;
132 size_t getNumFunctions() const { return NumFunctions; }
134 bool isFullyCovered() const { return Executed == NumFunctions; }
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DProfileSummary.h53 uint32_t NumCounts, NumFunctions; member in class:llvm::ProfileSummary
74 uint32_t NumCounts, uint32_t NumFunctions,
79 NumCounts(NumCounts), NumFunctions(NumFunctions), Partial(Partial),
89 uint32_t getNumFunctions() { return NumFunctions; }
71 ProfileSummary(Kind K, SummaryEntryVector DetailedSummary, uint64_t TotalCount, uint64_t MaxCount, uint64_t MaxInternalCount, uint64_t MaxFunctionCount, uint32_t NumCounts, uint32_t NumFunctions, bool Partial = false, double PartialProfileRatio = 0) argument
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.cpp88 Vector<double> BlockCoverage::FunctionWeights(size_t NumFunctions) const {
89 Vector<double> Res(NumFunctions);
93 assert(FunctionID < NumFunctions);
176 size_t NumFunctions = 0;
179 NumFunctions++;
181 FocusFuncIdx = NumFunctions - 1;
183 if (!NumFunctions)
192 auto Weights = Coverage.FunctionWeights(NumFunctions);
193 Vector<double> Intervals(NumFunctions + 1);
199 assert(FocusFuncIdx < NumFunctions);
[all...]
H A DFuzzerDataFlowTrace.h78 Vector<double> FunctionWeights(size_t NumFunctions) const;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp62 NumFunctions++;
111 MaxFunctionCount, NumCounts, NumFunctions);
118 MaxInternalBlockCount, MaxFunctionCount, NumCounts, NumFunctions);
123 NumFunctions++;
H A DSampleProfReader.cpp996 auto NumFunctions = readNumber<uint64_t>();
997 if (std::error_code EC = NumFunctions.getError())
1012 *MaxFunctionCount, *NumBlocks, *NumFunctions);
1125 uint32_t NumFunctions;
1126 if (!GcovBuffer.readInt(NumFunctions))
1130 for (uint32_t I = 0; I < NumFunctions; ++I)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DElimAvailExtern.cpp30 STATISTIC(NumFunctions, "Number of functions removed");
60 NumFunctions++;
H A DInternalize.cpp41 STATISTIC(NumFunctions, "Number of functions internalized");
191 ++NumFunctions;
H A DGlobalDCE.cpp41 STATISTIC(NumFunctions, "Number of functions removed");
411 NumFunctions += DeadFunctions.size();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DProfileSummary.cpp93 Components.push_back(getKeyValMD(Context, "NumFunctions", getNumFunctions()));
215 uint64_t NumCounts, TotalCount, NumFunctions, MaxFunctionCount, MaxCount,
231 if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(I++)), "NumFunctions",
232 NumFunctions))
248 NumCounts, NumFunctions, IsPartialProfile,
253 OS << "Total functions: " << NumFunctions << "\n"; local
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DProfileCommon.h53 uint32_t NumFunctions = 0; member in class:llvm::ProfileSummaryBuilder
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrOrderFile.cpp69 int NumFunctions = 0; local
72 NumFunctions++;
78 MapTy = ArrayType::get(Type::getInt8Ty(Ctx), NumFunctions);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A DStatistics.cpp547 unsigned NumFunctions = 0; local
574 NumFunctions += Stats.IsFunction;
597 printDatum(OS, "#functions", NumFunctions);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSafeStack.cpp80 STATISTIC(NumFunctions, "Total number of functions");
757 ++NumFunctions;
/freebsd-13-stable/sys/dev/mpr/mpi/
H A Dmpi2_cnfg.h1269 * one and check the value returned for NumFunctions at runtime.
1278 U8 NumFunctions; /* 0x04 */ member in struct:_MPI2_CONFIG_PAGE_IO_UNIT_10

Completed in 140 milliseconds