Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/tools/llvm-cov/
H A DTestingSupport.cpp54 SectionRef ProfileNames, CoverageMapping, CoverageRecords; in convertForTestingMain() local
88 ProfileNames = Section; in convertForTestingMain()
101 uint64_t ProfileNamesAddress = ProfileNames.getAddress(); in convertForTestingMain()
117 if (Expected<StringRef> E = ProfileNames.getContents()) in convertForTestingMain()
/src/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp594 InstrProfSymtab &ProfileNames; member in __anonde929b050211::VersionedCovMapFuncRecordReader
619 if (Error Err = CFR->template getFuncName<Endian>(ProfileNames, FuncName)) in insertFunctionRecordIfNeeded()
658 : ProfileNames(P), CompilationDir(D), Filenames(F), Records(R) {} in VersionedCovMapFuncRecordReader()
853 InstrProfSymtab &ProfileNames, StringRef CovMap, StringRef FuncRecords, in readCoverageMappingData() argument
865 CovMapFuncRecordReader::get<T, Endian>(Version, ProfileNames, Records, in readCoverageMappingData()
904 InstrProfSymtab &ProfileNames = *Reader->ProfileNames; in createCoverageReaderFromBuffer() local
908 ProfileNames, Coverage, FuncRecordsRef, Reader->MappingRecords, in createCoverageReaderFromBuffer()
913 ProfileNames, Coverage, FuncRecordsRef, Reader->MappingRecords, in createCoverageReaderFromBuffer()
918 ProfileNames, Coverage, FuncRecordsRef, Reader->MappingRecords, in createCoverageReaderFromBuffer()
923 ProfileNames, Coverage, FuncRecordsRef, Reader->MappingRecords, in createCoverageReaderFromBuffer()
[all …]
/src/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h1161 InstrProfSymtab &ProfileNames, StringRef &FuncName) { in getFuncNameViaRef() argument
1163 FuncName = ProfileNames.getFuncOrVarName(NameRef); in getFuncNameViaRef()
1212 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
1215 FuncName = ProfileNames.getFuncName(NameRef, NameS); in getFuncName()
1261 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
1262 return accessors::getFuncNameViaRef<ThisT, Endian>(this, ProfileNames, in getFuncName()
1305 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in getFuncName()
1306 return accessors::getFuncNameViaRef<ThisT, Endian>(this, ProfileNames, in getFuncName()
H A DCoverageMappingReader.h187 std::unique_ptr<InstrProfSymtab> ProfileNames; variable
200 : ProfileNames(std::move(Symtab)), FuncRecords(std::move(FuncRecords)) {} in BinaryCoverageReader()