Home
last modified time | relevance | path

Searched refs:ExpandedFileID (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h275 unsigned ExpandedFileID = 0; member
280 CounterMappingRegion(Counter Count, unsigned FileID, unsigned ExpandedFileID, in CounterMappingRegion()
283 : Count(Count), FileID(FileID), ExpandedFileID(ExpandedFileID), in CounterMappingRegion()
289 unsigned ExpandedFileID, unsigned LineStart, in CounterMappingRegion()
293 FileID(FileID), ExpandedFileID(ExpandedFileID), LineStart(LineStart), in CounterMappingRegion()
312 makeExpansion(unsigned FileID, unsigned ExpandedFileID, unsigned LineStart, in makeExpansion()
314 return CounterMappingRegion(Counter(), FileID, ExpandedFileID, LineStart, in makeExpansion()
691 : FileID(Region.ExpandedFileID), Region(Region), Function(Function) {} in ExpansionRecord()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageExporterJson.cpp92 Region.FileID, Region.ExpandedFileID, in renderRegion()
101 Region.ExpandedFileID, int64_t(Region.Kind)}); in renderBranch()
114 CMR.ColumnEnd, CMR.ExpandedFileID, int64_t(CMR.Kind), in renderMCDCRecord()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingWriter.cpp223 assert(I->ExpandedFileID <= in write()
230 (I->ExpandedFileID in write()
H A DCoverageMappingReader.cpp256 uint64_t ExpandedFileID = 0; in readMappingRegionsSubArray() local
276 ExpandedFileID = EncodedCounterAndRegion >> in readMappingRegionsSubArray()
278 if (ExpandedFileID >= NumFileIDs) in readMappingRegionsSubArray()
366 dbgs() << "Expands to file " << ExpandedFileID; in readMappingRegionsSubArray()
378 InferredFileID, ExpandedFileID, LineStart, ColumnStart, in readMappingRegionsSubArray()
443 assert(!FileIDExpansionRegionMapping[R.ExpandedFileID]); in read()
444 FileIDExpansionRegionMapping[R.ExpandedFileID] = &R; in read()
H A DCoverageMapping.cpp681 ExpandedFileIDs.insert(Expansion.ExpandedFileID); in recordExpansion()
1321 IsNotExpandedFile[CR.ExpandedFileID] = false; in findMainViewFileID()
1363 if (FileIDs.test(CR.FileID) && (CR.FileID == CR.ExpandedFileID)) in getCoverageForFile()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp513 auto ExpandedFileID = getCoverageFileID(ExpandedLoc); in emitExpansionRegions() local
514 assert(ExpandedFileID && "expansion in uncovered file"); in emitExpansionRegions()
524 *ParentFileID, *ExpandedFileID, SR.LineStart, SR.ColumnStart, in emitExpansionRegions()
2147 OS << " (Expanded file = " << R.ExpandedFileID << ")"; in dump()