Home | History | Annotate | Download | only in Frontend

Lines Matching refs:Visited

60           "The # of visited basic blocks in the analyzed functions.");
238 getInliningModeForFunction(const Decl *D, const SetOfConstDecls &Visited);
241 /// use it to define the order in which the functions should be visited.
385 const SetOfConstDecls &Visited,
414 // Otherwise, if we visited the function before, do not reanalyze it.
415 return Visited.count(D);
420 const SetOfConstDecls &Visited) {
424 if (Visited.count(D) && isa<ObjCMethodDecl>(D)) {
445 // the previously processed functions. Use external Visited set to identify
449 SetOfConstDecls Visited;
465 if (shouldSkipFunction(D, Visited, VisitedAsTopLevel))
471 HandleCode(D, AM_Path, getInliningModeForFunction(D, Visited),
474 // Add the visited callees to the global visited set.
478 Visited.insert(isa<ObjCMethodDecl>(Callee) ? Callee