Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp542 InstrProfSymtab &ProfileNames; member in __anon24a89c3b0211::VersionedCovMapFuncRecordReader
567 if (Error Err = CFR->template getFuncName<Endian>(ProfileNames, FuncName)) in insertFunctionRecordIfNeeded()
605 : ProfileNames(P), CompilationDir(D), Filenames(F), Records(R) {} in VersionedCovMapFuncRecordReader()
782 InstrProfSymtab &ProfileNames, StringRef CovMap, StringRef FuncRecords, in readCoverageMappingData() argument
794 CovMapFuncRecordReader::get<T, Endian>(Version, ProfileNames, Records, in readCoverageMappingData()
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()
[all …]
/netbsd-src/external/apache2/llvm/dist/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.h185 InstrProfSymtab ProfileNames; variable
210 InstrProfSymtab &&ProfileNames,