/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cov/ |
H A D | CoverageSummaryInfo.h | 151 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 D | FuzzerDataFlowTrace.cpp | 34 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 D | ProfileSummary.h | 53 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 D | ProfileSummaryBuilder.cpp | 110 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 D | SampleProfReader.cpp | 1255 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 D | ElimAvailExtern.cpp | 30 STATISTIC(NumFunctions, "Number of functions removed"); 60 NumFunctions++; in eliminateAvailableExternally()
|
H A D | Internalize.cpp | 41 STATISTIC(NumFunctions, "Number of functions internalized"); 191 ++NumFunctions; in internalizeModule()
|
H A D | GlobalDCE.cpp | 41 STATISTIC(NumFunctions, "Number of functions removed"); 411 NumFunctions += DeadFunctions.size(); in run()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | ProfileSummary.cpp | 215 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 D | InstrOrderFile.cpp | 69 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 D | FaultMaps.rst | 44 uint32 : NumFunctions 45 FunctionInfo[NumFunctions] {
|
H A D | StackMaps.rst | 326 uint32 : NumFunctions 329 StkSizeRecord[NumFunctions] {
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/ |
H A D | ProfileCommon.h | 54 uint32_t NumFunctions = 0; variable
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/ |
H A D | Statistics.cpp | 757 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 D | SafeStack.cpp | 81 STATISTIC(NumFunctions, "Total number of functions"); 759 ++NumFunctions; in run()
|