Home | History | Annotate | Download | only in Analysis

Lines Matching refs:CallSites

180   DenseMap<Value*, CallGraphNode*> CallSites;
214 CallSites.count(I->first) ||
248 assert(!CallSites.count(I->first) &&
256 CallSites.insert(std::make_pair(I->first, I->second));
261 // Loop over all of the instructions in the function, getting the callsites.
273 // matches up to expectations and remove it from CallSites.
275 CallSites.find(CS.getInstruction());
276 if (ExistingIt != CallSites.end()) {
279 // Remove from CallSites since we have now seen it.
280 CallSites.erase(ExistingIt);
351 // After scanning this function, if we still have entries in callsites, then
354 assert(CallSites.empty() && "Dangling pointers found in call sites map");
359 CallSites.clear();