Lines Matching refs:Hash
35 uint32_t Hash = nodeHash(CalleeName, CallSite); in getChildContext() local
36 auto It = AllChildContext.find(Hash); in getChildContext()
68 uint32_t Hash = nodeHash(NodeToMove.getFuncName(), CallSite); in moveToChildContext() local
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()
111 uint32_t Hash = nodeHash(CalleeName, CallSite); in removeChildContext() local
113 AllChildContext.erase(Hash); in removeChildContext()
163 uint32_t Hash = nodeHash(CalleeName, CallSite); in getOrCreateChildContext() local
164 auto It = AllChildContext.find(Hash); in getOrCreateChildContext()
174 AllChildContext[Hash] = ContextTrieNode(this, CalleeName, nullptr, CallSite); in getOrCreateChildContext()
175 return &AllChildContext[Hash]; in getOrCreateChildContext()