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

/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DItaniumManglingCanonicalizer.cpp138 llvm::SmallDenseMap<Node*, Node*, 32> Remappings; member in class:__anon2455::CanonicalizerAllocator
148 if (auto *N = Remappings.lookup(Result.first)) {
150 assert(Remappings.find(Result.first) == Remappings.end() &&
179 Remappings.insert(std::make_pair(A, B));
/openbsd-current/gnu/llvm/llvm/include/llvm/ProfileData/
H A DSampleProfReader.h266 : Buffer(std::move(B)), Remappings(std::move(SRR)), Reader(R) {
267 assert(Remappings && "Remappings cannot be nullptr");
288 void insert(StringRef FunctionName) { Remappings->insert(FunctionName); }
293 return Remappings->lookup(FunctionName);
303 std::unique_ptr<SymbolRemappingReader> Remappings; member in class:llvm::sampleprof::SampleProfileReaderItaniumRemapper
/openbsd-current/gnu/llvm/llvm/lib/ProfileData/
H A DSampleProfReader.cpp1811 assert(Remappings && "should be initialized while creating remapper");
1816 if (auto Key = Remappings->insert(Name))
1825 if (auto Key = Remappings->lookup(Fname))
1898 auto Remappings = std::make_unique<SymbolRemappingReader>();
1899 if (Error E = Remappings->read(*B)) {
1910 std::move(B), std::move(Remappings), Reader);
H A DInstrProfReader.cpp851 if (Error E = Remappings.read(*RemapBuffer))
855 if (auto Key = Remappings.insert(RealName)) {
868 if (auto Key = Remappings.lookup(RealName)) {
898 /// The memory buffer containing the remapping configuration. Remappings
903 SymbolRemappingReader Remappings;

Completed in 86 milliseconds