/external/llvm/tools/llvm-cov/ |
D | CoverageSummaryInfo.h | 100 size_t NumFunctions; member 102 FunctionCoverageInfo() : Executed(0), NumFunctions(0) {} in FunctionCoverageInfo() 104 FunctionCoverageInfo(size_t Executed, size_t NumFunctions) in FunctionCoverageInfo() 105 : Executed(Executed), NumFunctions(NumFunctions) {} in FunctionCoverageInfo() 110 ++NumFunctions; in addFunction() 113 bool isFullyCovered() const { return Executed == NumFunctions; } in isFullyCovered() 116 if (NumFunctions == 0) in getPercentCovered() 118 return double(Executed) / double(NumFunctions) * 100.0; in getPercentCovered()
|
/external/rust/crates/libfuzzer-sys/libfuzzer/ |
D | FuzzerDataFlowTrace.cpp | 89 Vector<double> BlockCoverage::FunctionWeights(size_t NumFunctions) const { in FunctionWeights() 90 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 Vector<double> Intervals(NumFunctions + 1); in Init() 200 assert(FocusFuncIdx < NumFunctions); in Init() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | ProfileSummary.h | 51 uint32_t NumCounts, NumFunctions; variable 61 uint32_t NumCounts, uint32_t NumFunctions) in ProfileSummary() argument 65 NumCounts(NumCounts), NumFunctions(NumFunctions) {} in ProfileSummary() 73 uint32_t getNumFunctions() { return NumFunctions; } in getNumFunctions()
|
/external/llvm/include/llvm/IR/ |
D | ProfileSummary.h | 56 uint32_t NumCounts, NumFunctions; variable 65 uint32_t NumCounts, uint32_t NumFunctions) in ProfileSummary() argument 69 NumCounts(NumCounts), NumFunctions(NumFunctions) {} in ProfileSummary() 76 uint32_t getNumFunctions() { return NumFunctions; } in getNumFunctions()
|
/external/llvm/lib/ProfileData/ |
D | ProfileSummaryBuilder.cpp | 50 NumFunctions++; in addRecord() 95 MaxFunctionCount, NumCounts, NumFunctions); in getSummary() 102 MaxInternalBlockCount, MaxFunctionCount, NumCounts, NumFunctions); in getSummary() 107 NumFunctions++; in addEntryCount()
|
D | SampleProfReader.cpp | 459 auto NumFunctions = readNumber<uint64_t>(); in readSummary() local 460 if (std::error_code EC = NumFunctions.getError()) in readSummary() 475 *MaxFunctionCount, *NumBlocks, *NumFunctions); in readSummary() 574 uint32_t NumFunctions; in readFunctionProfiles() local 575 if (!GcovBuffer.readInt(NumFunctions)) in readFunctionProfiles() 579 for (uint32_t I = 0; I < NumFunctions; ++I) in readFunctionProfiles()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
D | ProfileSummaryBuilder.cpp | 49 NumFunctions++; in addRecord() 98 MaxFunctionCount, NumCounts, NumFunctions); in getSummary() 105 MaxInternalBlockCount, MaxFunctionCount, NumCounts, NumFunctions); in getSummary() 110 NumFunctions++; in addEntryCount()
|
D | SampleProfReader.cpp | 927 auto NumFunctions = readNumber<uint64_t>(); in readSummary() local 928 if (std::error_code EC = NumFunctions.getError()) in readSummary() 943 *MaxFunctionCount, *NumBlocks, *NumFunctions); in readSummary() 1056 uint32_t NumFunctions; in readFunctionProfiles() local 1057 if (!GcovBuffer.readInt(NumFunctions)) in readFunctionProfiles() 1061 for (uint32_t I = 0; I < NumFunctions; ++I) in readFunctionProfiles()
|
/external/llvm/lib/Transforms/IPO/ |
D | ElimAvailExtern.cpp | 27 STATISTIC(NumFunctions, "Number of functions removed"); 57 NumFunctions++; in eliminateAvailableExternally()
|
D | Internalize.cpp | 41 STATISTIC(NumFunctions, "Number of functions internalized"); 194 ++NumFunctions; in internalizeModule()
|
D | GlobalDCE.cpp | 34 STATISTIC(NumFunctions, "Number of functions removed"); 172 NumFunctions += DeadFunctions.size(); in run()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | ElimAvailExtern.cpp | 30 STATISTIC(NumFunctions, "Number of functions removed"); 60 NumFunctions++; in eliminateAvailableExternally()
|
D | Internalize.cpp | 41 STATISTIC(NumFunctions, "Number of functions internalized"); 191 ++NumFunctions; in internalizeModule()
|
/external/llvm/include/llvm/ProfileData/ |
D | ProfileCommon.h | 58 MaxFunctionCount(0), NumCounts(0), NumFunctions(0) {} in ProfileSummaryBuilder() 63 uint32_t NumCounts, NumFunctions; variable
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | InstrOrderFile.cpp | 70 int NumFunctions = 0; in createOrderFileData() local 73 NumFunctions++; in createOrderFileData() 79 MapTy = ArrayType::get(Type::getInt8Ty(Ctx), NumFunctions); in createOrderFileData()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | ProfileSummary.cpp | 161 uint64_t NumCounts, TotalCount, NumFunctions, MaxFunctionCount, MaxCount, in getFromMD() local 177 NumFunctions)) in getFromMD() 185 NumCounts, NumFunctions); in getFromMD()
|
/external/llvm/lib/IR/ |
D | ProfileSummary.cpp | 166 uint64_t NumCounts, TotalCount, NumFunctions, MaxFunctionCount, MaxCount, in getFromMD() local 182 NumFunctions)) in getFromMD() 190 NumFunctions); in getFromMD()
|
/external/llvm/test/Transforms/SampleProfile/ |
D | summary.ll | 10 ; CHECK-DAG: {{![0-9]+}} = !{!"NumFunctions", i64 2}
|
/external/llvm/test/Transforms/PGOProfile/ |
D | PR28219.ll | 10 ; CHECK-DAG: {{![0-9]+}} = !{!"NumFunctions", i64 2}
|
/external/llvm/test/Analysis/ProfileSummary/ |
D | basic.ll | 34 !9 = !{!"NumFunctions", i64 3}
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/ |
D | ProfileCommon.h | 53 uint32_t NumFunctions = 0; variable
|
/external/llvm/docs/ |
D | FaultMaps.rst | 44 uint32 : NumFunctions 45 FunctionInfo[NumFunctions] {
|
/external/llvm/test/Transforms/Inline/ |
D | inline-cold-callee.ll | 47 !9 = !{!"NumFunctions", i64 3}
|
D | inline-hot-callsite.ll | 47 !9 = !{!"NumFunctions", i64 3}
|
D | inline-hot-callee.ll | 47 !9 = !{!"NumFunctions", i64 3}
|