Searched refs:UnrollLoopsCheck (Results 1 – 5 of 5) sorted by relevance
22 UnrollLoopsCheck::UnrollLoopsCheck(StringRef Name, ClangTidyContext *Context) in UnrollLoopsCheck() function in clang::tidy::altera::UnrollLoopsCheck26 void UnrollLoopsCheck::registerMatchers(MatchFinder *Finder) { in registerMatchers()37 void UnrollLoopsCheck::check(const MatchFinder::MatchResult &Result) { in check()78 enum UnrollLoopsCheck::UnrollType79 UnrollLoopsCheck::unrollType(const Stmt *Statement, ASTContext *Context) { in unrollType()110 bool UnrollLoopsCheck::hasKnownBounds(const Stmt *Statement, in hasKnownBounds()149 const Expr *UnrollLoopsCheck::getCondExpr(const Stmt *Statement) { in getCondExpr()161 bool UnrollLoopsCheck::hasLargeNumIterations(const Stmt *Statement, in hasLargeNumIterations()232 bool UnrollLoopsCheck::extractValue(int &Value, const BinaryOperator *Op, in extractValue()250 bool UnrollLoopsCheck::exprHasLargeNumIterations(const Expr *Expression, in exprHasLargeNumIterations()[all …]
25 class UnrollLoopsCheck : public ClangTidyCheck {27 UnrollLoopsCheck(StringRef Name, ClangTidyContext *Context);
12 UnrollLoopsCheck.cpp
34 CheckFactories.registerCheck<UnrollLoopsCheck>("altera-unroll-loops"); in addCheckFactories()
20 "UnrollLoopsCheck.cpp",