Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-cov/
H A DTestingSupport.cpp52 SectionRef ProfileNames, CoverageMapping, CoverageRecords; in convertForTestingMain() local
65 ProfileNames = Section; in convertForTestingMain()
80 uint64_t ProfileNamesAddress = ProfileNames.getAddress(); in convertForTestingMain()
96 if (Expected<StringRef> E = ProfileNames.getContents()) in convertForTestingMain()
/openbsd-src/gnu/llvm/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp543 InstrProfSymtab &ProfileNames; member in __anon8fdc2a070211::VersionedCovMapFuncRecordReader
568 if (Error Err = CFR->template getFuncName<Endian>(ProfileNames, FuncName)) in insertFunctionRecordIfNeeded()
607 : ProfileNames(P), CompilationDir(D), Filenames(F), Records(R) {} in VersionedCovMapFuncRecordReader()
784 InstrProfSymtab &ProfileNames, StringRef CovMap, StringRef FuncRecords, in readCoverageMappingData() argument
796 CovMapFuncRecordReader::get<T, Endian>(Version, ProfileNames, Records, in readCoverageMappingData()
830 InstrProfSymtab &&ProfileNames, uint8_t BytesInAddress, in createCoverageReaderFromBuffer() argument
834 Reader->ProfileNames = std::move(ProfileNames); in createCoverageReaderFromBuffer()
839 Reader->ProfileNames, Coverage, FuncRecordsRef, in createCoverageReaderFromBuffer()
844 Reader->ProfileNames, Coverage, FuncRecordsRef, in createCoverageReaderFromBuffer()
850 Reader->ProfileNames, Coverage, FuncRecordsRef, in createCoverageReaderFromBuffer()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h805 InstrProfSymtab &ProfileNames, StringRef &FuncName) { in getFuncNameViaRef() argument
807 FuncName = ProfileNames.getFuncName(NameRef); in getFuncNameViaRef()
856 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
859 FuncName = ProfileNames.getFuncName(NameRef, NameS); in getFuncName()
904 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
905 return accessors::getFuncNameViaRef<ThisT, Endian>(this, ProfileNames, in getFuncName()
948 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
949 return accessors::getFuncNameViaRef<ThisT, Endian>(this, ProfileNames, in getFuncName()
H A DCoverageMappingReader.h187 InstrProfSymtab ProfileNames; variable
214 InstrProfSymtab &&ProfileNames,