Home
last modified time | relevance | path

Searched refs:ProfileNames (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DTestingSupport.cpp54 SectionRef ProfileNames, CoverageMapping, CoverageRecords; in convertForTestingMain()
88 ProfileNames = Section; in convertForTestingMain()
101 uint64_t ProfileNamesAddress = ProfileNames.getAddress(); in convertForTestingMain()
117 if (Expected<StringRef> E = ProfileNames.getContents()) in convertForTestingMain()
52 SectionRef ProfileNames, CoverageMapping, CoverageRecords; convertForTestingMain() local
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp601 InstrProfSymtab &ProfileNames; member in __anond42594300211::VersionedCovMapFuncRecordReader
626 if (Error Err = CFR->template getFuncName<Endian>(ProfileNames, FuncName)) in insertFunctionRecordIfNeeded()
665 : ProfileNames(P), CompilationDir(D), Filenames(F), Records(R) {} in VersionedCovMapFuncRecordReader()
860 InstrProfSymtab &ProfileNames, StringRef CovMap, StringRef FuncRecords, in readCoverageMappingData() argument
872 CovMapFuncRecordReader::get<T, Endian>(Version, ProfileNames, Records, in readCoverageMappingData()
913 InstrProfSymtab &ProfileNames = *Reader->ProfileNames; in createCoverageReaderFromBuffer() local
917 ProfileNames, Coverage, FuncRecordsRef, Reader->MappingRecords, in createCoverageReaderFromBuffer()
922 ProfileNames, Coverage, FuncRecordsRef, Reader->MappingRecords, in createCoverageReaderFromBuffer()
927 ProfileNames, Coverage, FuncRecordsRef, Reader->MappingRecords, in createCoverageReaderFromBuffer()
932 ProfileNames, Coverage, FuncRecordsRef, Reader->MappingRecords, in createCoverageReaderFromBuffer()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h1237 InstrProfSymtab &ProfileNames, StringRef &FuncName) { in getFuncNameViaRef() argument
1239 FuncName = ProfileNames.getFuncOrVarName(NameRef); in getFuncNameViaRef()
1288 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
1291 FuncName = ProfileNames.getFuncName(NameRef, NameS); in getFuncName()
1337 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
1338 return accessors::getFuncNameViaRef<ThisT, Endian>(this, ProfileNames, in getFuncName()
1381 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
1382 return accessors::getFuncNameViaRef<ThisT, Endian>(this, ProfileNames, in getFuncName()
H A DCoverageMappingReader.h189 std::unique_ptr<InstrProfSymtab> ProfileNames; variable
208 : ProfileNames(std::move(Symtab)), FuncRecords(std::move(FuncRecords)), in BinaryCoverageReader()