Lines Matching refs:CallSites
180 DenseMap<Value*, CallGraphNode*> CallSites;
215 CallSites.count(I->first) ||
244 assert(!CallSites.count(I->first) &&
246 CallSites.insert(std::make_pair(I->first, I->second));
250 // Loop over all of the instructions in the function, getting the callsites.
262 // matches up to expectations and remove it from CallSites.
264 CallSites.find(CS.getInstruction());
265 if (ExistingIt != CallSites.end()) {
268 // Remove from CallSites since we have now seen it.
269 CallSites.erase(ExistingIt);
340 // After scanning this function, if we still have entries in callsites, then
343 assert(CallSites.empty() && "Dangling pointers found in call sites map");
348 CallSites.clear();