HomeSort by: relevance | last modified time | path
    Searched refs:Remappings (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
ItaniumManglingCanonicalizer.cpp 139 llvm::SmallDenseMap<Node*, Node*, 32> Remappings;
149 if (auto *N = Remappings.lookup(Result.first)) {
151 assert(Remappings.find(Result.first) == Remappings.end() &&
180 Remappings.insert(std::make_pair(A, B));
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
SampleProfReader.h 266 : Buffer(std::move(B)), Remappings(std::move(SRR)), Reader(R) {
267 assert(Remappings && "Remappings cannot be nullptr");
282 /// Apply remappings to the profile read by Reader.
288 void insert(StringRef FunctionName) { Remappings->insert(FunctionName); }
293 return Remappings->lookup(FunctionName);
303 std::unique_ptr<SymbolRemappingReader> Remappings;
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
InstrProfReader.cpp 626 /// A remapper that does not apply any remappings.
641 /// A remapper that applies remappings based on a symbol remapping file.
679 if (Error E = Remappings.read(*RemapBuffer))
683 if (auto Key = Remappings.insert(RealName)) {
696 if (auto Key = Remappings.lookup(RealName)) {
726 /// The memory buffer containing the remapping configuration. Remappings
731 SymbolRemappingReader Remappings;
SampleProfReader.cpp 1554 assert(Remappings && "should be initialized while creating remapper");
1559 if (auto Key = Remappings->insert(Name))
1568 if (auto Key = Remappings->lookup(Fname))
1642 auto Remappings = std::make_unique<SymbolRemappingReader>();
1643 if (Error E = Remappings->read(*B.get())) {
1654 std::move(B), std::move(Remappings), Reader);

Completed in 26 milliseconds