aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/DeclBase.cpp
AgeCommit message (Expand)Author
2009-10-01Anonymous namespaces, sema + codegen. A lot of semantics are still broken,John McCall
2009-09-16Improved representation and support for friend class templates. Angst about ...John McCall
2009-09-10When performing unqualified name lookup into a DeclContext, also look intoDouglas Gregor
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-09-02Ensure that the tag decls of friend decls aren't added to the friending class'sJohn McCall
2009-08-31Fix bug 4784 and allow friend declarations to properly extendJohn McCall
2009-08-29Add a workaround for decls that come from friend decls pointing to undeclared...Anders Carlsson
2009-08-29For consistency, just make friend declarations AS_public.John McCall
2009-08-29Don't assert that friend declarations must have access specifiers for now.Anders Carlsson
2009-08-28Omnibus friend decl refactoring. Instead of cloning AST classes for friendJohn McCall
2009-08-28Check in UnresolvedUsingDecl.Anders Carlsson
2009-08-27When checking whether one declaration context encloses another, make sure to ...Douglas Gregor
2009-08-11Add a FriendClassDecl type for holding declarations of friend types in John McCall
2009-08-11Argument-dependent lookup for friend declarations. Add a new decl type,John McCall
2009-07-29Change uses of:Ted Kremenek
2009-07-17Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methodsTed Kremenek
2009-07-17Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ...Ted Kremenek
2009-06-30De-ASTContext-ify DeclContext.Argyrios Kyrtzidis
2009-06-30Remove the ASTContext parameter from the getBody() methods of Decl and subcla...Argyrios Kyrtzidis
2009-06-30Decl::getTranslationUnitDecl() should return itself when the Decl is a Transl...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-26See through UsingDecls in more places.Anders Carlsson
2009-06-25Improved semantic analysis and AST respresentation for functionDouglas Gregor
2009-06-20Parsing and AST support for using declarations, from John Thompson!Douglas Gregor
2009-06-18Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.Douglas Gregor
2009-06-13Improvements to TemplateArgumentListBuilder to make it work better with param...Anders Carlsson
2009-05-31Initial infrastructure for class template partial specialization. HereDouglas Gregor
2009-05-30Get rid of CXXTempVarDecl.Anders Carlsson
2009-05-28Introduced DeclContext::isDependentContext, which determines whether aDouglas Gregor
2009-04-27A couple more small changes which are probably required for Cygwin Eli Friedman
2009-04-26Implement function-try-blocks. However, there's a very subtle bug that I can'...Sebastian Redl
2009-04-24CXXTempVarDecls aren't looked up. Fixes tests.Anders Carlsson
2009-04-24Eliminate Sema::ObjCImplementations, relying instead on name lookup. What's g...Douglas Gregor
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