aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/DeclBase.h
AgeCommit message (Expand)Author
2009-07-27Make ObjCImplDecl inherit from ObjCContainerDecl.Argyrios Kyrtzidis
2009-07-21Add an assertion for the return value of Decl::getNextRedeclaration().Argyrios Kyrtzidis
2009-07-18Fix a comment.Argyrios Kyrtzidis
2009-07-18Introduce a redecl_iterator in Decl class, so that we can do a "iterate over ...Argyrios Kyrtzidis
2009-07-18Move the functionality of ASTContext::getCanonicalDecl(), into a virtual meth...Argyrios Kyrtzidis
2009-07-17ObjCCategoryImplDecl and ObjCImplementation do not derive directly from DeclC...Argyrios Kyrtzidis
2009-07-05Introduce the virtual method Decl::getPrimaryDecl().Argyrios Kyrtzidis
2009-06-30De-ASTContext-ify DeclContext.Argyrios Kyrtzidis
2009-06-30Introduce DeclContext::getParentASTContext().Argyrios Kyrtzidis
2009-06-30Remove the ASTContext parameter from the getBody() methods of Decl and subcla...Argyrios Kyrtzidis
2009-06-30Remove the ASTContext parameter from the printing related methods of Decl.Argyrios Kyrtzidis
2009-06-30Remove the ASTContext parameter from the attribute-related methods of Decl.Argyrios Kyrtzidis
2009-06-29-Keep a reference to the ASTContext inside the TranslationUnitDecl.Argyrios Kyrtzidis
2009-06-25Improved semantic analysis and AST respresentation for functionDouglas Gregor
2009-06-20Introduce Decl::getSourceRange() which, like Stmt::getSourceRange(), represen...Argyrios Kyrtzidis
2009-06-20Parsing and AST support for using declarations, from John Thompson!Douglas Gregor
2009-06-19Keep track of when declarations are "used" according to C andDouglas Gregor
2009-06-18Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.Douglas Gregor
2009-06-17Move CXXMethodDecl::OutOfLineDefinition into Decl::OutOfLine.Argyrios Kyrtzidis
2009-06-13Improvements to TemplateArgumentListBuilder to make it work better with param...Anders Carlsson
2009-05-30Expose an API to print a group of decls (like "int a,b;"). Eli Friedman
2009-05-30Refactor and clean up the AST printer, so that it uses a DeclVisitor,Douglas Gregor
2009-05-28Introduced DeclContext::isDependentContext, which determines whether aDouglas Gregor
2009-04-26Implement function-try-blocks. However, there's a very subtle bug that I can'...Sebastian Redl
2009-04-24Eliminate Sema::ObjCImplementations, relying instead on name lookup. What's g...Douglas Gregor
2009-04-22Remove the serialization code that predates precompiledDouglas Gregor
2009-04-18FunctionDecl::getBody() is getting an ASTContext argument for use inDouglas Gregor
2009-04-12add a new Decl::hasAttr<T>() predicate.Chris Lattner
2009-04-10Various minor fixes to PCH reading and writing, with generalDouglas Gregor
2009-04-09Implementation of pre-compiled headers (PCH) based on lazyDouglas Gregor
2009-04-09Propagate the ASTContext to various AST traversal and lookup functions.Douglas Gregor
2009-04-09Simple DeclContext's internal representation by always storing aDouglas Gregor
2009-04-07Move the internal DeclContext data structures into a separate header. Douglas Gregor
2009-03-29Push DeclGroup much farther throughout the compiler. Now the variousChris Lattner
2009-03-29switch DeclBase::DeclCtx to the new happy and type-safeChris Lattner
2009-03-29adjust to llvm mainline changes.Chris Lattner
2009-03-28rename NextDeclInScope to NextDeclInContext, since the pointerChris Lattner
2009-03-28simplify getNextDeclInScopeChris Lattner
2009-03-27minor cleanups: make getIdentifierNamespace() be a single loadChris Lattner
2009-03-27reduce # const_casts, no functionality change.Chris Lattner
2009-03-27change Decl::DeclCtx to use a PointerIntPair instead of hand bitmangling.Chris Lattner
2009-03-25Tighten the setAccess assert. We now allow AS_none if the decl contex is not ...Anders Carlsson
2009-03-25It doesn't make sense to set the access specifier to AS_none (I think)Anders Carlsson
2009-03-21partially inline getAttrs() to speed up PR3810 (and lots ofChris Lattner
2009-03-12API fix: All "bodies" for functions, Objective-C methods, blocks, are assumed toTed Kremenek
2009-03-11Eliminate CXXClassVarDecl. It doesn't add anythingDouglas Gregor
2009-03-05rename PrettyStackTraceDecl -> PrettyStackTraceActionsDecl.Chris Lattner
2009-03-04Woot, save 8 bytes in Decl on 64-bit by reordering fields. ThisDaniel Dunbar
2009-02-26Use RecordFirst/RecordLast range checks in DeclContextDouglas Gregor
2009-02-25Perform additional semantic checking of class templateDouglas Gregor