Home
last modified time | relevance | path

Searched refs:NumRegions (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.h28 size_t NumRegions; variable
31 RegionCoverageInfo() : Covered(0), NumRegions(0) {} in RegionCoverageInfo()
33 RegionCoverageInfo(size_t Covered, size_t NumRegions) in RegionCoverageInfo() argument
34 : Covered(Covered), NumRegions(NumRegions) { in RegionCoverageInfo()
35 assert(Covered <= NumRegions && "Covered regions over-counted"); in RegionCoverageInfo()
40 NumRegions += RHS.NumRegions;
46 NumRegions = std::max(NumRegions, RH in merge()
[all...]
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerTracePC.h147 size_t NumRegions; member
149 uint8_t *Stop() { return Regions[NumRegions - 1].Stop; } in Stop()
164 for (size_t r = 0; r < Modules[m].NumRegions; r++) in IterateCounterRegions()
252 for (size_t r = 0; r < Modules[i].NumRegions; r++) { in CollectFeatures()
H A DFuzzerTracePC.cpp53 M.NumRegions = NumFullPages + NeedFirst + NeedLast;; in HandleInline8bitCountersInit()
54 assert(M.NumRegions > 0); in HandleInline8bitCountersInit()
55 M.Regions = new Module::Region[M.NumRegions]; in HandleInline8bitCountersInit()
64 assert(R == M.NumRegions); in HandleInline8bitCountersInit()
183 for (size_t r = 0; r < M.NumRegions; r++) { in UpdateObservedPCs()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dprimary32.h88 Sci->MinRegionIndex = NumRegions; in init()
107 uptr MinRegionIndex = NumRegions, MaxRegionIndex = 0; in unmapTestOnly()
273 uptr MinRegionIndex = NumRegions, MaxRegionIndex = 0; in iterateOverBlocks()
380 static const uptr NumRegions = SCUDO_MMAP_RANGE_SIZE >>
383 typedef FlatByteMap<NumRegions> ByteMap;
415 CHECK_LT(Id, NumRegions); in computeRegionId()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp241 uint64_t NumRegions; in readMappingRegionsSubArray() local
242 if (auto Err = readSize(NumRegions)) in readMappingRegionsSubArray()
245 for (size_t I = 0; I < NumRegions; ++I) { in readMappingRegionsSubArray()
482 uint64_t NumRegions; in isDummy() local
483 if (Error Err = readSize(NumRegions)) in isDummy()
485 if (NumRegions != 1) in isDummy()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp821 unsigned NumRegions = LLC.datasize / sizeof(MachO::data_in_code_entry); in printMachODataInCode()
822 for (unsigned i = 0; i < NumRegions; ++i) { in printMachODataInCode()
819 unsigned NumRegions = LLC.datasize / sizeof(MachO::data_in_code_entry); printMachODataInCode() local
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DIROutliner.cpp2644 unsigned NumRegions = CurrentGroup.Regions.size(); in findCostBenefit() local
2669 << " function " << NumRegions << " times for the " in findCostBenefit()
2672 2 * OverallArgumentNum * TargetTransformInfo::TCC_Basic * NumRegions; in findCostBenefit()