Home | History | Annotate | Download | only in IPA

Lines Matching refs:CallSites

172   DenseMap<Value*, CallGraphNode*> CallSites;
207 CallSites.count(I->first) ||
236 assert(!CallSites.count(I->first) &&
238 CallSites.insert(std::make_pair(I->first, I->second));
242 // Loop over all of the instructions in the function, getting the callsites.
252 // matches up to expectations and remove it from CallSites.
254 CallSites.find(CS.getInstruction());
255 if (ExistingIt != CallSites.end()) {
258 // Remove from CallSites since we have now seen it.
259 CallSites.erase(ExistingIt);
330 // After scanning this function, if we still have entries in callsites, then
333 assert(CallSites.empty() && "Dangling pointers found in call sites map");
338 CallSites.clear();