Home | History | Annotate | Download | only in Frontend

Lines Matching refs:Visited

310   getInliningModeForFunction(const Decl *D, const SetOfConstDecls &Visited);
313 /// use it to define the order in which the functions should be visited.
417 const SetOfConstDecls &Visited,
432 // Otherwise, if we visited the function before, do not reanalyze it.
433 return Visited.count(D);
438 const SetOfConstDecls &Visited) {
442 if (Visited.count(D)) {
465 // the previously processed functions. Use external Visited set to identify
469 SetOfConstDecls Visited;
485 if (shouldSkipFunction(D, Visited, VisitedAsTopLevel))
491 HandleCode(D, AM_Path, getInliningModeForFunction(D, Visited),
494 // Add the visited callees to the global visited set.
497 Visited.insert(*I);
668 SetOfConstDecls *Visited) {
672 ActionExprEngine(D, false, IMode, Visited);
676 ActionExprEngine(D, true, IMode, Visited);
680 ActionExprEngine(D, false, IMode, Visited);
681 ActionExprEngine(D, true, IMode, Visited);