| /freebsd-src/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | CoverageSummaryInfo.h | 192 size_t NumFunctions; variable 195 FunctionCoverageInfo() : Executed(0), NumFunctions(0) {} in FunctionCoverageInfo() 197 FunctionCoverageInfo(size_t Executed, size_t NumFunctions) in FunctionCoverageInfo() argument 198 : Executed(Executed), NumFunctions(NumFunctions) {} in FunctionCoverageInfo() 202 NumFunctions += RHS.NumFunctions; 209 ++NumFunctions; in addFunction() 214 size_t getNumFunctions() const { return NumFunctions; } in getNumFunctions() 216 bool isFullyCovered() const { return Executed == NumFunctions; } in isFullyCovered() 219 assert(Executed <= NumFunctions && "Covered functions over-counted"); in getPercentCovered() 220 if (NumFunctions == 0) in getPercentCovered() [all …]
|
| /freebsd-src/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerDataFlowTrace.cpp | 89 std::vector<double> BlockCoverage::FunctionWeights(size_t NumFunctions) const { in FunctionWeights() 90 std::vector<double> Res(NumFunctions); in FunctionWeights() 94 assert(FunctionID < NumFunctions); in FunctionWeights() 177 size_t NumFunctions = 0; in Init() local 180 NumFunctions++; in Init() 182 FocusFuncIdx = NumFunctions - 1; in Init() 184 if (!NumFunctions) in Init() 193 auto Weights = Coverage.FunctionWeights(NumFunctions); in Init() 194 std::vector<double> Intervals(NumFunctions + 1); in Init() 200 assert(FocusFuncIdx < NumFunctions); in Init() [all …]
|
| H A D | FuzzerDataFlowTrace.h | 80 std::vector<double> FunctionWeights(size_t NumFunctions) const;
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | ProfileSummary.h | 53 const uint32_t NumCounts, NumFunctions; variable 74 uint32_t NumCounts, uint32_t NumFunctions, 79 NumFunctions(NumFunctions), Partial(Partial), in PSK() 89 uint32_t getNumFunctions() const { return NumFunctions; } in getNumFunctions()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | ProfileSummaryBuilder.cpp | 112 NumFunctions++; in addRecord() 189 MaxFunctionCount, NumCounts, NumFunctions); in getSummary() 195 assert(NumFunctions == 0 && in computeSummaryForProfiles() 223 MaxInternalBlockCount, MaxFunctionCount, NumCounts, NumFunctions); in getSummary() 229 NumFunctions++; in addEntryCount()
|
| H A D | SampleProfReader.cpp | 1482 auto NumFunctions = readNumber<uint64_t>(); in readSummary() 1483 if (std::error_code EC = NumFunctions.getError()) in readSummary() 1498 *MaxFunctionCount, *NumBlocks, *NumFunctions); in readSummary() 1604 uint32_t NumFunctions; in readFunctionProfiles() 1605 if (!GcovBuffer.readInt(NumFunctions)) in readFunctionProfiles() 1609 for (uint32_t I = 0; I < NumFunctions; ++I) in readFunctionProfiles() 1481 auto NumFunctions = readNumber<uint64_t>(); readSummary() local 1603 uint32_t NumFunctions; readFunctionProfiles() local
|
| H A D | InstrProfReader.cpp | 1426 // Expect at least two 64 bit fields: Weight and NumFunctions 1432 const uint64_t NumFunctions = in getFunctionCounts() 1434 // Expect at least NumFunctions 64 bit fields in getFunctionCounts() 1435 if (Ptr + NumFunctions * sizeof(uint64_t) > PtrEnd) in getFunctionCounts() 1437 for (unsigned j = 0; j < NumFunctions; j++) { 1287 const uint64_t NumFunctions = readHeader() local
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | InstrOrderFile.cpp | 58 int NumFunctions = 0; in createOrderFileData() local 61 NumFunctions++; in createOrderFileData() 67 MapTy = ArrayType::get(Type::getInt8Ty(Ctx), NumFunctions); in createOrderFileData()
|
| H A D | BlockCoverageInference.cpp | 43 STATISTIC(NumFunctions, "Number of total functions that BCI has processed"); 56 ++NumFunctions; in BlockCoverageInference()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ProfileSummary.cpp | 92 Components.push_back(getKeyValMD(Context, "NumFunctions", getNumFunctions())); in getMD() 214 uint64_t NumCounts, TotalCount, NumFunctions, MaxFunctionCount, MaxCount, in getFromMD() local 230 if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(I++)), "NumFunctions", in getFromMD() 231 NumFunctions)) in getFromMD() 247 NumCounts, NumFunctions, IsPartialProfile, in getFromMD() 252 OS << "Total functions: " << NumFunctions << "\n"; in printSummary()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | Internalize.cpp | 40 STATISTIC(NumFunctions, "Number of functions internalized"); 243 ++NumFunctions; in internalizeModule()
|
| H A D | GlobalDCE.cpp | 38 STATISTIC(NumFunctions, "Number of functions removed"); 372 NumFunctions += DeadFunctions.size(); in run()
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | ProfileCommon.h | 59 uint32_t NumFunctions = 0; variable
|
| /freebsd-src/contrib/llvm-project/llvm/tools/llvm-dwarfdump/ |
| H A D | Statistics.cpp | 973 SaturatingUINT64 NumFunctions = 0; in collectStatsForObjectFile() 1000 NumFunctions += Stats.IsFunction; in collectStatsForObjectFile() 1025 printDatum(J, "#functions", NumFunctions.Value); in collectStatsForObjectFile() 903 SaturatingUINT64 NumFunctions = 0; collectStatsForObjectFile() local
|
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | SafeStack.cpp | 82 STATISTIC(NumFunctions, "Total number of functions"); 757 ++NumFunctions; in run()
|
| /freebsd-src/sys/dev/mpr/mpi/ |
| H A D | mpi2_cnfg.h | 1276 U8 NumFunctions; /* 0x04 */ member
|