Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DItaniumManglingCanonicalizer.cpp139 llvm::SmallDenseMap<Node*, Node*, 32> Remappings; member in __anon1f11156d0111::CanonicalizerAllocator
149 if (auto *N = Remappings.lookup(Result.first)) { in makeNodeSimple()
151 assert(Remappings.find(Result.first) == Remappings.end() && in makeNodeSimple()
180 Remappings.insert(std::make_pair(A, B)); in addRemapping()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
H A DSampleProfReader.h266 : Buffer(std::move(B)), Remappings(std::move(SRR)), Reader(R) { in SampleProfileReaderItaniumRemapper()
267 assert(Remappings && "Remappings cannot be nullptr"); in SampleProfileReaderItaniumRemapper()
288 void insert(StringRef FunctionName) { Remappings->insert(FunctionName); } in insert()
293 return Remappings->lookup(FunctionName); in exist()
303 std::unique_ptr<SymbolRemappingReader> Remappings; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DSampleProfReader.cpp1554 assert(Remappings && "should be initialized while creating remapper"); in applyRemapping()
1559 if (auto Key = Remappings->insert(Name)) in applyRemapping()
1568 if (auto Key = Remappings->lookup(Fname)) in lookUpNameInProfile()
1642 auto Remappings = std::make_unique<SymbolRemappingReader>(); in create() local
1643 if (Error E = Remappings->read(*B.get())) { in create()
1654 std::move(B), std::move(Remappings), Reader); in create()
H A DInstrProfReader.cpp679 if (Error E = Remappings.read(*RemapBuffer)) in populateRemappings()
683 if (auto Key = Remappings.insert(RealName)) { in populateRemappings()
696 if (auto Key = Remappings.lookup(RealName)) { in getRecords()
731 SymbolRemappingReader Remappings; member in llvm::InstrProfReaderItaniumRemapper