Lines Matching defs:Calls
207 DenseMap<Value *, CallGraphNode *> Calls;
271 Calls.count(Call)) {
286 assert(!Calls.count(Call) && "Call site occurs in node multiple times");
292 Calls.insert(std::make_pair(Call, I->second));
320 // matches up to expectations and remove it from Calls.
322 Calls.find(Call);
323 if (ExistingIt != Calls.end()) {
326 // Remove from Calls since we have now seen it.
327 Calls.erase(ExistingIt);
402 assert(Calls.empty() && "Dangling pointers found in call sites map");
407 Calls.clear();