Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DItaniumManglingCanonicalizer.cpp138 llvm::SmallDenseMap<Node*, Node*, 32> Remappings; member in __anon92513a390111::CanonicalizerAllocator
148 if (auto *N = Remappings.lookup(Result.first)) { in makeNodeSimple()
150 assert(Remappings.find(Result.first) == Remappings.end() && in makeNodeSimple()
179 Remappings.insert(std::make_pair(A, B)); in addRemapping()
/openbsd-src/gnu/llvm/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
/openbsd-src/gnu/llvm/llvm/lib/ProfileData/
H A DSampleProfReader.cpp1811 assert(Remappings && "should be initialized while creating remapper"); in applyRemapping()
1816 if (auto Key = Remappings->insert(Name)) in applyRemapping()
1825 if (auto Key = Remappings->lookup(Fname)) in lookUpNameInProfile()
1898 auto Remappings = std::make_unique<SymbolRemappingReader>(); in create() local
1899 if (Error E = Remappings->read(*B)) { in create()
1910 std::move(B), std::move(Remappings), Reader); in create()
H A DInstrProfReader.cpp851 if (Error E = Remappings.read(*RemapBuffer)) in populateRemappings()
855 if (auto Key = Remappings.insert(RealName)) { in populateRemappings()
868 if (auto Key = Remappings.lookup(RealName)) { in getRecords()
903 SymbolRemappingReader Remappings; member in llvm::InstrProfReaderItaniumRemapper