Home
last modified time | relevance | path

Searched refs:AllChildContext (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleContextTracker.cpp36 auto It = AllChildContext.find(Hash); in getChildContext()
37 if (It != AllChildContext.end()) in getChildContext()
49 for (auto &It : AllChildContext) { in getHottestChildContext()
71 std::map<uint64_t, ContextTrieNode> &AllChildContext = in moveContextSamples() local
73 assert(!AllChildContext.count(Hash) && "Node to remove must exist"); in moveContextSamples()
74 AllChildContext[Hash] = NodeToMove; in moveContextSamples()
75 ContextTrieNode &NewNode = AllChildContext[Hash]; in moveContextSamples()
109 AllChildContext.erase(Hash); in removeChildContext()
113 return AllChildContext; in getAllChildContext()
157 for (auto &It : AllChildContext) { in dumpNode()
[all …]
/src/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DSampleContextTracker.h64 std::map<uint64_t, ContextTrieNode> AllChildContext;