diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-07-06 21:34:20 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-07-06 21:34:20 +0000 |
commit | 874012b1fb80dff2ec227c726a0c63d55e3db63f (patch) | |
tree | 70eab7283470c4b7f92f2ab777edf8fdea9397ff /lib/AST/ASTLocation.cpp | |
parent | 145918ca119904b6abe8b41aae0cbbf9a7247905 (diff) |
Rename 'ASTNode' -> 'ASTLocation'.
ASTLocation is a much better name for its intended purpose which to represent a "point" into the AST.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@74858 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/ASTLocation.cpp')
-rw-r--r-- | lib/AST/ASTLocation.cpp | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/lib/AST/ASTLocation.cpp b/lib/AST/ASTLocation.cpp new file mode 100644 index 0000000000..e72acf0793 --- /dev/null +++ b/lib/AST/ASTLocation.cpp @@ -0,0 +1,90 @@ +//===--- ASTLocation.h - A <Decl, Stmt> pair --------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// ASTLocation is Decl or a Stmt and its immediate Decl parent. +// +//===----------------------------------------------------------------------===// + +#include "clang/AST/ASTLocation.h" +#include "clang/AST/Decl.h" +#include "clang/AST/Stmt.h" +#include "clang/AST/Expr.h" +using namespace clang; + +static bool isContainedInStatement(Stmt *Node, Stmt *Parent) { + assert(Node && Parent && "Passed null Node or Parent"); + + if (Node == Parent) + return true; + + for (Stmt::child_iterator + I = Parent->child_begin(), E = Parent->child_end(); I != E; ++I) { + if (isContainedInStatement(Node, *I)) + return true; + } + + return false; +} + +static Decl *FindImmediateParent(Decl *D, Stmt *Node) { + assert(D && Node && "Passed null Decl or null Stmt"); + + if (VarDecl *VD = dyn_cast<VarDecl>(D)) { + Expr *Init = VD->getInit(); + if (Init == 0) + return 0; + return isContainedInStatement(Node, Init) ? D : 0; + } + + if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { + if (!FD->isThisDeclarationADefinition()) + return 0; + + for (DeclContext::decl_iterator + I = FD->decls_begin(), E = FD->decls_end(); I != E; ++I) { + Decl *Child = FindImmediateParent(*I, Node); + if (Child) + return Child; + } + + assert(FD->getBody() && "If not definition we should have exited already"); + return isContainedInStatement(Node, FD->getBody()) ? D : 0; + } + + return 0; +} + +bool ASTLocation::isImmediateParent(Decl *D, Stmt *Node) { + assert(D && Node && "Passed null Decl or null Stmt"); + return D == FindImmediateParent(D, Node); +} + +void ASTLocation::print(llvm::raw_ostream &OS) { + assert(isValid() && "ASTLocation is not valid"); + + OS << "[Decl: " << getDecl()->getDeclKindName() << " "; + if (NamedDecl *ND = dyn_cast<NamedDecl>(getDecl())) + OS << ND->getNameAsString(); + + if (getStmt()) { + ASTContext &Ctx = getDecl()->getASTContext(); + OS << " | Stmt: " << getStmt()->getStmtClassName() << " "; + getStmt()->printPretty(OS, Ctx, 0, PrintingPolicy(Ctx.getLangOptions())); + } + + OS << "] <"; + + SourceRange Range = hasStmt() ? getStmt()->getSourceRange() + : getDecl()->getSourceRange(); + SourceManager &SourceMgr = getDecl()->getASTContext().getSourceManager(); + Range.getBegin().print(OS, SourceMgr); + OS << ", "; + Range.getEnd().print(OS, SourceMgr); + OS << ">\n"; +} |