-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLoopUtils.h
77 lines (62 loc) · 2.55 KB
/
LoopUtils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
This file is part of the clazy static checker.
Copyright (C) 2015 Klarälvdalens Datakonsult AB, a KDAB Group company, [email protected]
Author: Sérgio Martins <[email protected]>
Copyright (C) 2015 Sergio Martins <[email protected]>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef CLAZY_LOOP_UTILS_H
#define CLAZY_LOOP_UTILS_H
#include "clazy_stl.h"
#include <clang/AST/StmtCXX.h>
namespace clang {
class Stmt;
class CompilerInstance;
class SourceLocation;
class Expr;
class ParentMap;
}
namespace LoopUtils {
/**
* Returns the body of a for, range-foor, while or do-while loop
*/
clang::Stmt *bodyFromLoop(clang::Stmt *);
/**
* Recursively goes through stmt's children and returns true if it finds a "break", "continue" or a "return" stmt
* All child statements that are on a source code line <
* If onlyBeforThisLoc is valid, then this function will only return true if the break/return/continue happens before
*/
bool loopCanBeInterrupted(clang::Stmt *loop, const clang::CompilerInstance &ci,
clang::SourceLocation onlyBeforeThisLoc);
/**
* Returns true if stmt is a for, while or do-while loop
*/
inline bool isLoop(clang::Stmt *stmt)
{
return llvm::isa<clang::DoStmt>(stmt) || llvm::isa<clang::WhileStmt>(stmt) ||
llvm::isa<clang::ForStmt>(stmt) || llvm::isa<clang::CXXForRangeStmt>(stmt);
}
/**
* Returns the container expression for a range-loop or Q_FOREACH
*
* Q_FOREACH (auto f, expression) or for (auto i : expression)
*/
clang::Expr* containerExprForLoop(clang::Stmt *loop);
/**
* Returns true of stmt is inside a for, while or do-while loop.
* If yes, returns the loop statement, otherwise nullptr.
*/
clang::Stmt* isInLoop(clang::ParentMap *pmap, clang::Stmt *stmt);
}
#endif