Add ParentMap:getParentIgnoreParens().

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71469 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2009-05-11 19:49:27 +00:00
Родитель d0f8a8d170
Коммит b1b9f680f5
2 изменённых файлов: 12 добавлений и 2 удалений

Просмотреть файл

@ -24,11 +24,16 @@ public:
ParentMap(Stmt* ASTRoot);
~ParentMap();
Stmt* getParent(Stmt*) const;
Stmt *getParent(Stmt*) const;
Stmt *getParentIgnoreParens(Stmt *) const;
const Stmt* getParent(const Stmt* S) const {
const Stmt *getParent(const Stmt* S) const {
return getParent(const_cast<Stmt*>(S));
}
const Stmt *getParentIgnoreParens(const Stmt *S) const {
return getParentIgnoreParens(const_cast<Stmt*>(S));
}
bool hasParent(Stmt* S) const {
return getParent(S) != 0;

Просмотреть файл

@ -46,6 +46,11 @@ Stmt* ParentMap::getParent(Stmt* S) const {
return I == M->end() ? 0 : I->second;
}
Stmt *ParentMap::getParentIgnoreParens(Stmt *S) const {
do { S = getParent(S); } while (S && isa<ParenExpr>(S));
return S;
}
bool ParentMap::isConsumedExpr(Expr* E) const {
Stmt *P = getParent(E);
Stmt *DirectChild = E;