Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
69 assert(!AllChildContext.count(Hash) && "Node to remove must exist"); in moveToChildContext()
72 AllChildContext[Hash] = NodeToMove; in moveToChildContext()
73 ContextTrieNode &NewNode = AllChildContext[Hash]; in moveToChildContext()
113 AllChildContext.erase(Hash); in removeChildContext()
117 return AllChildContext; in getAllChildContext()
145 for (auto &It : AllChildContext) { in dump()
164 auto It = AllChildContext.find(Hash); in getOrCreateChildContext()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DSampleContextTracker.h69 std::map<uint32_t, ContextTrieNode> AllChildContext; variable