Age | Commit message (Expand) | Author |
2009-04-10 | Various minor fixes to PCH reading and writing, with general | Douglas Gregor |
2009-04-09 | Implementation of pre-compiled headers (PCH) based on lazy | Douglas Gregor |
2009-04-09 | Propagate the ASTContext to various AST traversal and lookup functions. | Douglas Gregor |
2009-04-09 | Simple DeclContext's internal representation by always storing a | Douglas Gregor |
2009-04-08 | improve compatibility with VC+, patch by John Thompson! | Chris Lattner |
2009-04-07 | Allow us to ask for the access specifier of a translation unit | Douglas Gregor |
2009-04-07 | Move the internal DeclContext data structures into a separate header. | Douglas Gregor |
2009-03-29 | change another PointerIntPair into a PointerUnion. | Chris Lattner |
2009-03-29 | switch DeclBase::DeclCtx to the new happy and type-safe | Chris Lattner |
2009-03-29 | adjust to llvm mainline changes. | Chris Lattner |
2009-03-28 | Let getIdentifierNamespaceForKind know about aliases and have it treat them j... | Anders Carlsson |
2009-03-28 | rename NextDeclInScope to NextDeclInContext, since the pointer | Chris Lattner |
2009-03-27 | minor cleanups: make getIdentifierNamespace() be a single load | Chris Lattner |
2009-03-27 | reduce # const_casts, no functionality change. | Chris Lattner |
2009-03-27 | change Decl::DeclCtx to use a PointerIntPair instead of hand bitmangling. | Chris Lattner |
2009-03-25 | Tighten the setAccess assert. We now allow AS_none if the decl contex is not ... | Anders Carlsson |
2009-03-21 | partially inline getAttrs() to speed up PR3810 (and lots of | Chris Lattner |
2009-03-05 | rename PrettyStackTraceDecl -> PrettyStackTraceActionsDecl. | Chris Lattner |
2009-03-04 | add an a Attr::Destroy method and force clients to go through it. As part of | Chris Lattner |
2009-03-02 | improve compatibility with GCC 4.4, patch by Michel Salim (PR3697) | Chris Lattner |
2009-02-26 | Make the type associated with a ClassTemplateSpecializationDecl be a | Douglas Gregor |
2009-02-26 | Use RecordFirst/RecordLast range checks in DeclContext | Douglas Gregor |
2009-02-25 | Perform additional semantic checking of class template | Douglas Gregor |
2009-02-23 | Add copy assignment operator, caught by doug. | Chris Lattner |
2009-02-20 | optimize the 'StoredDeclsMap' for the common case where there is | Chris Lattner |
2009-02-20 | make the redeclaration case faster for the common instance of a redeclaration | Chris Lattner |
2009-02-20 | 80 cols | Chris Lattner |
2009-02-20 | slight code simplifications. | Chris Lattner |
2009-02-19 | only do one DenseMap lookup instead of two (one to find out if there is | Chris Lattner |
2009-02-19 | minor simplification. | Chris Lattner |
2009-02-19 | use early exit to reduce indentation. | Chris Lattner |
2009-02-17 | Implement basic parsing and semantic analysis for explicit | Douglas Gregor |
2009-02-17 | Move DeclContext::getParent and getLexicalParent in-line. | Argyrios Kyrtzidis |
2009-02-17 | Currently all DeclContexts are Decls as well; use cast<Decl> instead of dyn_c... | Argyrios Kyrtzidis |
2009-02-16 | DeclContext had its "casting machinery" inside the class definition so that i... | Argyrios Kyrtzidis |
2009-02-16 | Make DeclContexts maintenance a bit easier. | Argyrios Kyrtzidis |
2009-02-04 | Basic representation of C++ class templates, from Andrew Sutton. | Douglas Gregor |
2009-02-03 | Semantic analysis, ASTs, and unqualified name lookup support for C++ | Douglas Gregor |
2009-02-02 | Add a macro-based enumeration of all of the Decl nodes (like we do | Douglas Gregor |
2009-01-27 | Remove many references to ASTContext::getAllocator(), replacing them with cal... | Steve Naroff |
2009-01-20 | Allocate expresssions through ASTContext (still more work to do). | Steve Naroff |
2009-01-20 | Rename DeclContext::insert to DeclContext::makeDeclVisibleInContext and docum... | Douglas Gregor |
2009-01-20 | Remove the TopLevelDecls from TranslationUnit, since all of those decls are o... | Douglas Gregor |
2009-01-20 | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor |
2009-01-17 | Teach DeclContext how to find the primary declaration for any TagDecl | Douglas Gregor |
2009-01-14 | Fix a subtle bug in DeclContext::DestroyDecls(). | Steve Naroff |
2009-01-13 | Turn off some Destroy calls that are currenly causing double-destruction of S... | Douglas Gregor |
2009-01-12 | Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr Rak | Douglas Gregor |
2009-01-09 | Replace DeclContext's vector of ScopedDecl pointers with a linked list | Douglas Gregor |
2009-01-09 | Make sure that ScopedDecls passed to DeclContext::addDecl are added into thei... | Douglas Gregor |