Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cov/
H A DTestingSupport.cpp51 SectionRef ProfileNames, CoverageMapping, CoverageRecords; in convertForTestingMain() local
64 ProfileNames = Section; in convertForTestingMain()
79 uint64_t ProfileNamesAddress = ProfileNames.getAddress(); in convertForTestingMain()
95 if (Expected<StringRef> E = ProfileNames.getContents()) in convertForTestingMain()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp542 InstrProfSymtab &ProfileNames; member in __anon366bb6e40211::VersionedCovMapFuncRecordReader
605 : ProfileNames(P), CompilationDir(D), Filenames(F), Records(R) {} in VersionedCovMapFuncRecordReader()
828 InstrProfSymtab &&ProfileNames, uint8_t BytesInAddress, in createCoverageReaderFromBuffer() argument
832 Reader->ProfileNames = std::move(ProfileNames); in createCoverageReaderFromBuffer()
837 Reader->ProfileNames, Coverage, FuncRecordsRef, in createCoverageReaderFromBuffer()
842 Reader->ProfileNames, Coverage, FuncRecordsRef, in createCoverageReaderFromBuffer()
848 Reader->ProfileNames, Coverage, FuncRecordsRef, in createCoverageReaderFromBuffer()
853 Reader->ProfileNames, Coverage, FuncRecordsRef, in createCoverageReaderFromBuffer()
883 InstrProfSymtab ProfileNames; in loadTestingFormat() local
1000 InstrProfSymtab ProfileNames; in loadBinaryFormat() local
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h794 InstrProfSymtab &ProfileNames, StringRef &FuncName) { in getFuncNameViaRef() argument
796 FuncName = ProfileNames.getFuncName(NameRef); in getFuncNameViaRef()
845 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
848 FuncName = ProfileNames.getFuncName(NameRef, NameS); in getFuncName()
893 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
894 return accessors::getFuncNameViaRef<ThisT, Endian>(this, ProfileNames, in getFuncName()
937 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
938 return accessors::getFuncNameViaRef<ThisT, Endian>(this, ProfileNames, in getFuncName()
H A DCoverageMappingReader.h187 InstrProfSymtab ProfileNames; variable
213 InstrProfSymtab &&ProfileNames,