HomeSort by relevance Sort by last modified time
    Searched defs:CallSites (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 135 SetVector<CallSite> CallSites;
155 CallSites.insert(CS);
168 << " pointers, " << CallSites.size() << " call sites\n";
201 for (SetVector<CallSite>::iterator C = CallSites.begin(),
202 Ce = CallSites.end(); C != Ce; ++C) {
229 for (SetVector<CallSite>::iterator C = CallSites.begin(),
230 Ce = CallSites.end(); C != Ce; ++C) {
231 for (SetVector<CallSite>::iterator D = CallSites.begin(); D != Ce; ++D) {
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 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)
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 351 SmallVector<std::pair<CallSite, int>, 16> CallSites;
377 CallSites.push_back(std::make_pair(CS, -1));
381 DEBUG(dbgs() << ": " << CallSites.size() << " call sites.\n");
384 if (CallSites.empty())
389 unsigned FirstCallInSCC = CallSites.size();
391 if (Function *F = CallSites[i].first.getCalledFunction())
393 std::swap(CallSites[i--], CallSites[--FirstCallInSCC]);
407 for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi) {
408 CallSite CS = CallSites[CSi].first
    [all...]

Completed in 355 milliseconds