aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/DeclBase.cpp
AgeCommit message (Expand)Author
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-08improve compatibility with VC+, patch by John Thompson!Chris Lattner
2009-04-07Allow us to ask for the access specifier of a translation unitDouglas Gregor
2009-04-07Move the internal DeclContext data structures into a separate header. Douglas Gregor
2009-03-29change another PointerIntPair into a PointerUnion.Chris 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-28Let getIdentifierNamespaceForKind know about aliases and have it treat them j...Anders Carlsson
2009-03-28rename NextDeclInScope to NextDeclInContext, since the pointerChris 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-21partially inline getAttrs() to speed up PR3810 (and lots ofChris Lattner
2009-03-05rename PrettyStackTraceDecl -> PrettyStackTraceActionsDecl.Chris Lattner
2009-03-04add an a Attr::Destroy method and force clients to go through it. As part of Chris Lattner
2009-03-02improve compatibility with GCC 4.4, patch by Michel Salim (PR3697)Chris Lattner
2009-02-26Make the type associated with a ClassTemplateSpecializationDecl be aDouglas Gregor
2009-02-26Use RecordFirst/RecordLast range checks in DeclContextDouglas Gregor
2009-02-25Perform additional semantic checking of class templateDouglas Gregor
2009-02-23Add copy assignment operator, caught by doug.Chris Lattner
2009-02-20optimize the 'StoredDeclsMap' for the common case where there is Chris Lattner
2009-02-20make the redeclaration case faster for the common instance of a redeclarationChris Lattner
2009-02-2080 colsChris Lattner
2009-02-20slight code simplifications.Chris Lattner
2009-02-19only do one DenseMap lookup instead of two (one to find out if there isChris Lattner
2009-02-19minor simplification.Chris Lattner
2009-02-19use early exit to reduce indentation.Chris Lattner
2009-02-17Implement basic parsing and semantic analysis for explicitDouglas Gregor
2009-02-17Move DeclContext::getParent and getLexicalParent in-line.Argyrios Kyrtzidis
2009-02-17Currently all DeclContexts are Decls as well; use cast<Decl> instead of dyn_c...Argyrios Kyrtzidis
2009-02-16DeclContext had its "casting machinery" inside the class definition so that i...Argyrios Kyrtzidis
2009-02-16Make DeclContexts maintenance a bit easier.Argyrios Kyrtzidis
2009-02-04Basic representation of C++ class templates, from Andrew Sutton.Douglas Gregor
2009-02-03Semantic analysis, ASTs, and unqualified name lookup support for C++Douglas Gregor
2009-02-02Add a macro-based enumeration of all of the Decl nodes (like we doDouglas Gregor
2009-01-27Remove many references to ASTContext::getAllocator(), replacing them with cal...Steve Naroff
2009-01-20Allocate expresssions through ASTContext (still more work to do).Steve Naroff
2009-01-20Rename DeclContext::insert to DeclContext::makeDeclVisibleInContext and docum...Douglas Gregor
2009-01-20Remove the TopLevelDecls from TranslationUnit, since all of those decls are o...Douglas Gregor
2009-01-20Remove ScopedDecl, collapsing all of its functionality into Decl, soDouglas Gregor
2009-01-17Teach DeclContext how to find the primary declaration for any TagDeclDouglas Gregor
2009-01-14Fix a subtle bug in DeclContext::DestroyDecls().Steve Naroff
2009-01-13Turn off some Destroy calls that are currenly causing double-destruction of S...Douglas Gregor
2009-01-12Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr RakDouglas Gregor
2009-01-09Replace DeclContext's vector of ScopedDecl pointers with a linked listDouglas Gregor
2009-01-09Make sure that ScopedDecls passed to DeclContext::addDecl are added into thei...Douglas Gregor