Home
last modified time | relevance | path

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

/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()
/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp601 InstrProfSymtab &ProfileNames;
626 if (Error Err = CFR->template getFuncName<Endian>(ProfileNames, FuncName)) in insertFunctionRecordIfNeeded()
665 : ProfileNames(P), CompilationDir(D), Filenames(F), Records(R) {} in readCoverageHeader()
860 InstrProfSymtab &ProfileNames, StringRef CovMap, StringRef FuncRecords, in readCoverageMappingData()
872 CovMapFuncRecordReader::get<T, Endian>(Version, ProfileNames, Records, in readCoverageMappingData()
909 "Caller must provide ProfileNames"); in createCoverageReaderFromBuffer()
913 InstrProfSymtab &ProfileNames = *Reader->ProfileNames; in createCoverageReaderFromBuffer()
917 ProfileNames, Coverage, FuncRecordsRef, Reader->MappingRecords, in createCoverageReaderFromBuffer()
922 ProfileNames, Coverag in createCoverageReaderFromBuffer()
594 InstrProfSymtab &ProfileNames; global() member in __anon8cbf34230211::VersionedCovMapFuncRecordReader
853 readCoverageMappingData(InstrProfSymtab & ProfileNames,StringRef CovMap,StringRef FuncRecords,std::vector<BinaryCoverageReader::ProfileMappingRecord> & Records,StringRef CompilationDir,std::vector<std::string> & Filenames) readCoverageMappingData() argument
904 InstrProfSymtab &ProfileNames = *Reader->ProfileNames; createCoverageReaderFromBuffer() local
969 auto ProfileNames = std::make_unique<InstrProfSymtab>(); loadTestingFormat() local
1105 auto ProfileNames = std::make_unique<InstrProfSymtab>(); loadBinaryFormat() local
[all...]
/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h1217 InstrProfSymtab &ProfileNames, StringRef &FuncName) { in getFuncName()
1219 FuncName = ProfileNames.getFuncOrVarName(NameRef); in getFuncName()
1268 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const { in advanceByOne()
1271 FuncName = ProfileNames.getFuncName(NameRef, NameS);
1317 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const {
1318 return accessors::getFuncNameViaRef<ThisT, Endian>(this, ProfileNames, in getCoverageMapping()
1361 Error getFuncName(InstrProfSymtab &ProfileNames, StringRef &FuncName) const {
1362 return accessors::getFuncNameViaRef<ThisT, Endian>(this, ProfileNames,
1161 getFuncNameViaRef(const FuncRecordTy * Record,InstrProfSymtab & ProfileNames,StringRef & FuncName) getFuncNameViaRef() argument
H A DCoverageMappingReader.h188 std::unique_ptr<InstrProfSymtab> ProfileNames;
207 : ProfileNames(std::move(Symtab)), FuncRecords(std::move(FuncRecords)),
187 std::unique_ptr<InstrProfSymtab> ProfileNames; global() variable