Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h238 unsigned FileID, ExpandedFileID; member
242 CounterMappingRegion(Counter Count, unsigned FileID, unsigned ExpandedFileID, in CounterMappingRegion()
245 : Count(Count), FileID(FileID), ExpandedFileID(ExpandedFileID), in CounterMappingRegion()
250 unsigned ExpandedFileID, unsigned LineStart, in CounterMappingRegion()
254 ExpandedFileID(ExpandedFileID), LineStart(LineStart), in CounterMappingRegion()
266 makeExpansion(unsigned FileID, unsigned ExpandedFileID, unsigned LineStart, in makeExpansion()
268 return CounterMappingRegion(Counter(), FileID, ExpandedFileID, LineStart, in makeExpansion()
430 : FileID(Region.ExpandedFileID), Region(Region), Function(Function) {} in ExpansionRecord()
/llvm-project-15.0.7/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingWriter.cpp214 assert(I->ExpandedFileID <= in write()
221 (I->ExpandedFileID in write()
H A DCoverageMappingReader.cpp248 uint64_t ExpandedFileID = 0; in readMappingRegionsSubArray() local
268 ExpandedFileID = EncodedCounterAndRegion >> in readMappingRegionsSubArray()
270 if (ExpandedFileID >= NumFileIDs) in readMappingRegionsSubArray()
334 dbgs() << "Expands to file " << ExpandedFileID; in readMappingRegionsSubArray()
340 auto CMR = CounterMappingRegion(C, C2, InferredFileID, ExpandedFileID, in readMappingRegionsSubArray()
404 assert(!FileIDExpansionRegionMapping[R.ExpandedFileID]); in read()
405 FileIDExpansionRegionMapping[R.ExpandedFileID] = &R; in read()
H A DCoverageMapping.cpp683 IsNotExpandedFile[CR.ExpandedFileID] = false; in findMainViewFileID()
724 if (FileIDs.test(CR.FileID) && (CR.FileID == CR.ExpandedFileID)) in getCoverageForFile()
/llvm-project-15.0.7/llvm/tools/llvm-cov/
H A DCoverageExporterJson.cpp89 Region.FileID, Region.ExpandedFileID, in renderRegion()
98 Region.ExpandedFileID, int64_t(Region.Kind)}); in renderBranch()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp469 auto ExpandedFileID = getCoverageFileID(ExpandedLoc); in emitExpansionRegions() local
470 assert(ExpandedFileID && "expansion in uncovered file"); in emitExpansionRegions()
480 *ParentFileID, *ExpandedFileID, SR.LineStart, SR.ColumnStart, in emitExpansionRegions()
1573 OS << " (Expanded file = " << R.ExpandedFileID << ")"; in dump()