Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp543 InstrProfSymtab &ProfileNames; member in __anon758227600211::VersionedCovMapFuncRecordReader
607 : ProfileNames(P), CompilationDir(D), Filenames(F), Records(R) {} in VersionedCovMapFuncRecordReader()
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()
855 Reader->ProfileNames, Coverage, FuncRecordsRef, in createCoverageReaderFromBuffer()
885 InstrProfSymtab ProfileNames; in loadTestingFormat() local
1002 InstrProfSymtab ProfileNames; in loadBinaryFormat() local
[all …]
/llvm-project-15.0.7/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h793 InstrProfSymtab &ProfileNames, StringRef &FuncName) { in getFuncNameViaRef() argument
795 FuncName = ProfileNames.getFuncName(NameRef); in getFuncNameViaRef()
844 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
847 FuncName = ProfileNames.getFuncName(NameRef, NameS); in getFuncName()
892 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
893 return accessors::getFuncNameViaRef<ThisT, Endian>(this, ProfileNames, in getFuncName()
936 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
937 return accessors::getFuncNameViaRef<ThisT, Endian>(this, ProfileNames, in getFuncName()
H A DCoverageMappingReader.h187 InstrProfSymtab ProfileNames; variable
213 InstrProfSymtab &&ProfileNames,