reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1970 VisitStmt(D); 1971 Record.push_back(D->getNumClauses()); 1972 Record.push_back(D->getCollapsedNumber()); 1973 VisitOMPExecutableDirective(D); 1974 Record.AddStmt(D->getIterationVariable()); 1975 Record.AddStmt(D->getLastIteration()); 1976 Record.AddStmt(D->getCalcLastIteration()); 1977 Record.AddStmt(D->getPreCond()); 1978 Record.AddStmt(D->getCond()); 1979 Record.AddStmt(D->getInit()); 1980 Record.AddStmt(D->getInc()); 1981 Record.AddStmt(D->getPreInits()); 1982 if (isOpenMPWorksharingDirective(D->getDirectiveKind()) || 1983 isOpenMPTaskLoopDirective(D->getDirectiveKind()) || 1984 isOpenMPDistributeDirective(D->getDirectiveKind())) { 1985 Record.AddStmt(D->getIsLastIterVariable()); 1986 Record.AddStmt(D->getLowerBoundVariable()); 1987 Record.AddStmt(D->getUpperBoundVariable()); 1988 Record.AddStmt(D->getStrideVariable()); 1989 Record.AddStmt(D->getEnsureUpperBound()); 1990 Record.AddStmt(D->getNextLowerBound()); 1991 Record.AddStmt(D->getNextUpperBound()); 1992 Record.AddStmt(D->getNumIterations()); 1994 if (isOpenMPLoopBoundSharingDirective(D->getDirectiveKind())) { 1995 Record.AddStmt(D->getPrevLowerBoundVariable()); 1996 Record.AddStmt(D->getPrevUpperBoundVariable()); 1997 Record.AddStmt(D->getDistInc()); 1998 Record.AddStmt(D->getPrevEnsureUpperBound()); 1999 Record.AddStmt(D->getCombinedLowerBoundVariable()); 2000 Record.AddStmt(D->getCombinedUpperBoundVariable()); 2001 Record.AddStmt(D->getCombinedEnsureUpperBound()); 2002 Record.AddStmt(D->getCombinedInit()); 2003 Record.AddStmt(D->getCombinedCond()); 2004 Record.AddStmt(D->getCombinedNextLowerBound()); 2005 Record.AddStmt(D->getCombinedNextUpperBound()); 2006 Record.AddStmt(D->getCombinedDistCond()); 2007 Record.AddStmt(D->getCombinedParForInDistCond()); 2009 for (auto I : D->counters()) { 2012 for (auto I : D->private_counters()) { 2015 for (auto I : D->inits()) { 2018 for (auto I : D->updates()) { 2021 for (auto I : D->finals()) { 2024 for (Stmt *S : D->dependent_counters()) 2026 for (Stmt *S : D->dependent_inits()) 2028 for (Stmt *S : D->finals_conditions())