Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h206 unsigned FileID, ExpandedFileID; member
210 CounterMappingRegion(Counter Count, unsigned FileID, unsigned ExpandedFileID, in CounterMappingRegion()
213 : Count(Count), FileID(FileID), ExpandedFileID(ExpandedFileID), in CounterMappingRegion()
225 makeExpansion(unsigned FileID, unsigned ExpandedFileID, unsigned LineStart, in makeExpansion()
227 return CounterMappingRegion(Counter(), FileID, ExpandedFileID, LineStart, in makeExpansion()
364 : FileID(Region.ExpandedFileID), Region(Region), Function(Function) {} in ExpansionRecord()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h225 unsigned FileID, ExpandedFileID; member
229 CounterMappingRegion(Counter Count, unsigned FileID, unsigned ExpandedFileID, in CounterMappingRegion()
232 : Count(Count), FileID(FileID), ExpandedFileID(ExpandedFileID), in CounterMappingRegion()
244 makeExpansion(unsigned FileID, unsigned ExpandedFileID, unsigned LineStart, in makeExpansion()
246 return CounterMappingRegion(Counter(), FileID, ExpandedFileID, LineStart, in makeExpansion()
374 : FileID(Region.ExpandedFileID), Region(Region), Function(Function) {} in ExpansionRecord()
/external/llvm/lib/ProfileData/Coverage/
DCoverageMappingReader.cpp156 uint64_t ExpandedFileID = 0; in readMappingRegionsSubArray() local
164 ExpandedFileID = EncodedCounterAndRegion >> in readMappingRegionsSubArray()
166 if (ExpandedFileID >= NumFileIDs) in readMappingRegionsSubArray()
215 dbgs() << "Expands to file " << ExpandedFileID; in readMappingRegionsSubArray()
222 C, InferredFileID, ExpandedFileID, LineStart, ColumnStart, in readMappingRegionsSubArray()
283 assert(!FileIDExpansionRegionMapping[R.ExpandedFileID]); in read()
284 FileIDExpansionRegionMapping[R.ExpandedFileID] = &R; in read()
DCoverageMappingWriter.cpp154 assert(I->ExpandedFileID <= in write()
161 (I->ExpandedFileID in write()
DCoverageMapping.cpp438 IsNotExpandedFile[CR.ExpandedFileID] = false; in findMainViewFileID()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/Coverage/
DCoverageMappingReader.cpp170 uint64_t ExpandedFileID = 0; in readMappingRegionsSubArray() local
178 ExpandedFileID = EncodedCounterAndRegion >> in readMappingRegionsSubArray()
180 if (ExpandedFileID >= NumFileIDs) in readMappingRegionsSubArray()
236 dbgs() << "Expands to file " << ExpandedFileID; in readMappingRegionsSubArray()
242 auto CMR = CounterMappingRegion(C, InferredFileID, ExpandedFileID, in readMappingRegionsSubArray()
306 assert(!FileIDExpansionRegionMapping[R.ExpandedFileID]); in read()
307 FileIDExpansionRegionMapping[R.ExpandedFileID] = &R; in read()
DCoverageMappingWriter.cpp179 assert(I->ExpandedFileID <= in write()
186 (I->ExpandedFileID in write()
DCoverageMapping.cpp580 IsNotExpandedFile[CR.ExpandedFileID] = false; in findMainViewFileID()
/external/clang/lib/CodeGen/
DCoverageMappingGen.cpp295 auto ExpandedFileID = getCoverageFileID(ExpandedLoc); in emitExpansionRegions() local
296 assert(ExpandedFileID && "expansion in uncovered file"); in emitExpansionRegions()
308 *ParentFileID, *ExpandedFileID, LineStart, ColumnStart, LineEnd, in emitExpansionRegions()
955 OS << " (Expanded file = " << R.ExpandedFileID << ")"; in dump()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
DCoverageExporterJson.cpp331 emitArrayElement(Region.ExpandedFileID); in renderRegion()