Searched refs:Remappings (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DItaniumManglingCanonicalizer.cpp139 llvm::SmallDenseMap<Node*, Node*, 32> Remappings; member in class:__anon3793::CanonicalizerAllocator
149 if (auto *N = Remappings.lookup(Result.first)) {
151 assert(Remappings.find(Result.first) == Remappings.end() &&
180 Remappings.insert(std::make_pair(A, B));
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProfReader.h248 : Buffer(std::move(B)), Remappings(std::move(SRR)), Reader(R) {
249 assert(Remappings && "Remappings cannot be nullptr");
270 void insert(StringRef FunctionName) { Remappings->insert(FunctionName); }
275 return Remappings->lookup(FunctionName);
285 std::unique_ptr<SymbolRemappingReader> Remappings; member in class:llvm::sampleprof::SampleProfileReaderItaniumRemapper
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp1293 assert(Remappings && "should be initialized while creating remapper");
1295 if (auto Key = Remappings->insert(Sample.first()))
1303 if (auto Key = Remappings->lookup(Fname))
1377 auto Remappings = std::make_unique<SymbolRemappingReader>(); local
1378 if (Error E = Remappings->read(*B.get())) {
1389 std::move(B), std::move(Remappings), Reader);
H A DInstrProfReader.cpp673 if (Error E = Remappings.read(*RemapBuffer))
677 if (auto Key = Remappings.insert(RealName)) {
690 if (auto Key = Remappings.lookup(RealName)) {
720 /// The memory buffer containing the remapping configuration. Remappings
725 SymbolRemappingReader Remappings;

Completed in 111 milliseconds