blob: 73759dc95cb020b015ef942a47ab3bd8aa90625e [file] [log] [blame]
Chris Lattnerc3a65402009-07-12 22:33:12 +00001//===--- Program.cpp - Entity originator and misc -------------------------===//
Argyrios Kyrtzidis9eec4ed2009-07-05 22:22:19 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Storage for Entities and utility functions
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Index/Program.h"
15#include "ProgramImpl.h"
16#include "clang/Index/EntityHandler.h"
17#include "clang/Index/TranslationUnit.h"
18#include "clang/AST/DeclBase.h"
19#include "clang/AST/ASTContext.h"
20#include "llvm/Support/raw_ostream.h"
21using namespace clang;
22using namespace idx;
23
24// Out-of-line to give the virtual tables a home.
25EntityHandler::~EntityHandler() { }
26TranslationUnit::~TranslationUnit() { }
27
Argyrios Kyrtzidisf7cf15c2009-07-21 00:07:06 +000028void EntityHandler::HandleEntity(Entity Ent) { }
29
Argyrios Kyrtzidis9eec4ed2009-07-05 22:22:19 +000030Program::Program() : Impl(new ProgramImpl()) { }
31
32Program::~Program() {
33 delete static_cast<ProgramImpl *>(Impl);
34}
35
36static void FindEntitiesInDC(DeclContext *DC, Program &Prog, EntityHandler *Handler) {
37 for (DeclContext::decl_iterator
38 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I) {
Argyrios Kyrtzidisf7cf15c2009-07-21 00:07:06 +000039 if (I->getLocation().isInvalid())
40 continue;
41 Entity Ent = Entity::get(*I, Prog);
42 if (Ent.isValid())
Argyrios Kyrtzidis9eec4ed2009-07-05 22:22:19 +000043 Handler->HandleEntity(Ent);
44 if (DeclContext *SubDC = dyn_cast<DeclContext>(*I))
45 FindEntitiesInDC(SubDC, Prog, Handler);
46 }
47}
48
49/// \brief Traverses the AST and passes all the entities to the Handler.
50void Program::FindEntities(ASTContext &Ctx, EntityHandler *Handler) {
51 FindEntitiesInDC(Ctx.getTranslationUnitDecl(), *this, Handler);
52}