Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DItaniumManglingCanonicalizer.cpp140 llvm::SmallDenseMap<Node*, Node*, 32> Remappings; member in __anonef03fe500111::CanonicalizerAllocator
150 if (auto *N = Remappings.lookup(Result.first)) { in makeNodeSimple()
152 assert(!Remappings.contains(Result.first) && in makeNodeSimple()
181 Remappings.insert(std::make_pair(A, B)); in addRemapping()
H A DSampleProfReader.cpp1860 assert(Remappings && "should be initialized while creating remapper"); in applyRemapping()
1866 if (auto Key = Remappings->insert(NameStr)) in applyRemapping()
1876 if (auto Key = Remappings->lookup(Fname)) { in lookUpNameInProfile()
1954 auto Remappings = std::make_unique<SymbolRemappingReader>(); in create() local
1955 if (Error E = Remappings->read(*B)) { in create()
1966 std::move(B), std::move(Remappings), Reader); in create()
H A DInstrProfReader.cpp1105 if (Error E = Remappings.read(*RemapBuffer)) in populateRemappings()
1109 if (auto Key = Remappings.insert(RealName)) { in populateRemappings()
1122 if (auto Key = Remappings.lookup(RealName)) { in getRecords()
1157 SymbolRemappingReader Remappings; member in llvm::InstrProfReaderItaniumRemapper
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProfReader.h271 : Buffer(std::move(B)), Remappings(std::move(SRR)), Reader(R) { in SampleProfileReaderItaniumRemapper()
272 assert(Remappings && "Remappings cannot be nullptr"); in SampleProfileReaderItaniumRemapper()
293 void insert(StringRef FunctionName) { Remappings->insert(FunctionName); } in insert()
298 return Remappings->lookup(FunctionName); in exist()
308 std::unique_ptr<SymbolRemappingReader> Remappings; variable
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp859 std::vector<std::pair<std::string, std::string>> Remappings; in run() local
870 Remappings.push_back( in run()
874 PathRemappings = Remappings; in run()