Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.h151 size_t NumFunctions; variable
154 FunctionCoverageInfo() : Executed(0), NumFunctions(0) {} in FunctionCoverageInfo()
156 FunctionCoverageInfo(size_t Executed, size_t NumFunctions) in FunctionCoverageInfo() argument
157 : Executed(Executed), NumFunctions(NumFunctions) {} in FunctionCoverageInfo()
161 NumFunctions += RHS.NumFunctions;
168 ++NumFunctions; in addFunction()
173 size_t getNumFunctions() const { return NumFunctions; } in getNumFunctions()
175 bool isFullyCovered() const { return Executed == NumFunctions; } in isFullyCovered()
178 assert(Executed <= NumFunctions && "Covered functions over-counted"); in getPercentCovered()
179 if (NumFunctions == 0) in getPercentCovered()
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerDataFlowTrace.cpp34 size_t NumFunctions = 0; in Init() local
36 NumFunctions++; in Init()
38 FocusFuncIdx = NumFunctions - 1; in Init()
40 if (!NumFunctions || FocusFuncIdx == SIZE_MAX || Files.size() <= 1) in Init()
62 if (N >= NumFunctions) in Init()
87 NumTraceFiles, NumFunctions, NumTracesWithFocusFunction); in Init()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DProfileSummary.h53 uint32_t NumCounts, NumFunctions; variable
74 uint32_t NumCounts, uint32_t NumFunctions,
79 NumCounts(NumCounts), NumFunctions(NumFunctions), Partial(Partial), in PSK()
89 uint32_t getNumFunctions() { return NumFunctions; } in getNumFunctions()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp110 NumFunctions++; in addRecord()
181 MaxFunctionCount, NumCounts, NumFunctions); in getSummary()
187 assert(NumFunctions == 0 && in computeSummaryForProfiles()
217 MaxInternalBlockCount, MaxFunctionCount, NumCounts, NumFunctions); in getSummary()
221 NumFunctions++; in addEntryCount()
H A DSampleProfReader.cpp1255 auto NumFunctions = readNumber<uint64_t>(); in readSummary() local
1256 if (std::error_code EC = NumFunctions.getError()) in readSummary()
1271 *MaxFunctionCount, *NumBlocks, *NumFunctions); in readSummary()
1384 uint32_t NumFunctions; in readFunctionProfiles() local
1385 if (!GcovBuffer.readInt(NumFunctions)) in readFunctionProfiles()
1389 for (uint32_t I = 0; I < NumFunctions; ++I) in readFunctionProfiles()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DElimAvailExtern.cpp30 STATISTIC(NumFunctions, "Number of functions removed");
60 NumFunctions++; in eliminateAvailableExternally()
H A DInternalize.cpp41 STATISTIC(NumFunctions, "Number of functions internalized");
191 ++NumFunctions; in internalizeModule()
H A DGlobalDCE.cpp41 STATISTIC(NumFunctions, "Number of functions removed");
411 NumFunctions += DeadFunctions.size(); in run()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DProfileSummary.cpp215 uint64_t NumCounts, TotalCount, NumFunctions, MaxFunctionCount, MaxCount, in getFromMD() local
232 NumFunctions)) in getFromMD()
248 NumCounts, NumFunctions, IsPartialProfile, in getFromMD()
253 OS << "Total functions: " << NumFunctions << "\n"; in printSummary()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DInstrOrderFile.cpp69 int NumFunctions = 0; in createOrderFileData() local
72 NumFunctions++; in createOrderFileData()
78 MapTy = ArrayType::get(Type::getInt8Ty(Ctx), NumFunctions); in createOrderFileData()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DFaultMaps.rst44 uint32 : NumFunctions
45 FunctionInfo[NumFunctions] {
H A DStackMaps.rst326 uint32 : NumFunctions
329 StkSizeRecord[NumFunctions] {
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
H A DProfileCommon.h54 uint32_t NumFunctions = 0; variable
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
H A DStatistics.cpp757 unsigned NumFunctions = 0; in collectStatsForObjectFile() local
784 NumFunctions += Stats.IsFunction; in collectStatsForObjectFile()
809 printDatum(J, "#functions", NumFunctions); in collectStatsForObjectFile()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSafeStack.cpp81 STATISTIC(NumFunctions, "Total number of functions");
759 ++NumFunctions; in run()