Home
last modified time | relevance | path

Searched refs:Remappings (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DItaniumManglingCanonicalizer.cpp140 llvm::SmallDenseMap<Node*, Node*, 32> Remappings; member in __anoncaa48b060111::CanonicalizerAllocator
150 if (auto *N = Remappings.lookup(Result.first)) { in makeNodeSimple()
152 assert(!Remappings.contains(Result.first) && in makeNodeSimple()
181 Remappings.insert(std::make_pair(A, B)); in addRemapping()
H A DSampleProfReader.cpp1775 assert(Remappings && "should be initialized while creating remapper"); in applyRemapping()
1781 if (auto Key = Remappings->insert(NameStr)) in applyRemapping()
1791 if (auto Key = Remappings->lookup(Fname)) { in lookUpNameInProfile()
1869 auto Remappings = std::make_unique<SymbolRemappingReader>(); in create() local
1870 if (Error E = Remappings->read(*B)) { in create()
1881 std::move(B), std::move(Remappings), Reader); in create()
H A DInstrProfReader.cpp1037 if (Error E = Remappings.read(*RemapBuffer)) in populateRemappings()
1041 if (auto Key = Remappings.insert(RealName)) { in populateRemappings()
1054 if (auto Key = Remappings.lookup(RealName)) { in getRecords()
1089 SymbolRemappingReader Remappings; member in llvm::InstrProfReaderItaniumRemapper
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProfReader.h270 : Buffer(std::move(B)), Remappings(std::move(SRR)), Reader(R) { in SampleProfileReaderItaniumRemapper()
271 assert(Remappings && "Remappings cannot be nullptr"); in SampleProfileReaderItaniumRemapper()
292 void insert(StringRef FunctionName) { Remappings->insert(FunctionName); } in insert()
297 return Remappings->lookup(FunctionName); in exist()
307 std::unique_ptr<SymbolRemappingReader> Remappings; variable
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp872 std::vector<std::pair<std::string, std::string>> Remappings; in run() local
883 Remappings.push_back( in run()
887 PathRemappings = Remappings; in run()