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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DItaniumManglingCanonicalizer.cpp144 llvm::SmallDenseMap<Node*, Node*, 32> Remappings; member in class:__anon1984::CanonicalizerAllocator
154 if (auto *N = Remappings.lookup(Result.first)) {
156 assert(Remappings.find(Result.first) == Remappings.end() &&
185 Remappings.insert(std::make_pair(A, B));
/freebsd-11-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-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp1224 assert(Remappings && "should be initialized while creating remapper");
1226 if (auto Key = Remappings->insert(Sample.first()))
1234 if (auto Key = Remappings->lookup(Fname))
1308 auto Remappings = std::make_unique<SymbolRemappingReader>(); local
1309 if (Error E = Remappings->read(*B.get())) {
1320 std::move(B), std::move(Remappings), Reader);
H A DInstrProfReader.cpp672 if (Error E = Remappings.read(*RemapBuffer))
676 if (auto Key = Remappings.insert(RealName)) {
689 if (auto Key = Remappings.lookup(RealName)) {
719 /// The memory buffer containing the remapping configuration. Remappings
724 SymbolRemappingReader Remappings;

Completed in 202 milliseconds