Skip to content
  1. Jan 22, 2010
  2. Jan 20, 2010
  3. Jan 16, 2010
  4. Dec 11, 2009
  5. Dec 10, 2009
  6. Dec 08, 2009
  7. Dec 02, 2009
  8. Dec 01, 2009
  9. Nov 29, 2009
  10. Nov 21, 2009
  11. Nov 18, 2009
  12. Nov 17, 2009
    • Ted Kremenek's avatar
      Do not register ObjCInterfaceDecls implicitly created by @class in the · 707ece60
      Ted Kremenek authored
      current DeclContext.  These "imaginary" declarations pose issues for
      clients searching DeclContext for actual declarations.  Instead,
      register them for name lookup, and add the ObjCInterfaceDecl later to
      the DeclContext when we hit an actual @interface declaration.
      
      This also fixes a bug where the invariant that the Decls in a
      DeclContext are sorted in order of their appearance is no longer
      violated.  What could happen is that an @class causes an
      ObjCInterfaceDecl to get added first to the DeclContext, then the
      ObjCClassDecl itself is added, and then later the SourceLocation of
      the ObjCInterfaceDecl is updated with the correct location (which is
      later in the file).  This breaks an assumed invariant in
      ResolveLocation.cpp (and possibly other clients).
      
      llvm-svn: 89160
      707ece60
    • John McCall's avatar
      Instead of hanging a using declaration's target decls directly off the using · 3f746828
      John McCall authored
      decl, create shadow declarations and put them in scope like normal.
      Work in progress.
      
      llvm-svn: 89048
      3f746828
  13. Oct 23, 2009
    • John McCall's avatar
      Remove OriginalTypeParmDecl; the original type is the one specified · 856bbea3
      John McCall authored
      in the DeclaratorInfo, if one is present.
      
      Preserve source information through template instantiation.  This is made
      more complicated by the possibility that ParmVarDecls don't have DIs, which
      is possibly worth fixing in the future.
      
      Also preserve source information for function parameters in ObjC method
      declarations.
      
      llvm-svn: 84971
      856bbea3
  14. Oct 01, 2009
  15. Sep 17, 2009
  16. Sep 10, 2009
  17. Sep 09, 2009
  18. Sep 02, 2009
  19. Sep 01, 2009
  20. Aug 29, 2009
  21. Aug 28, 2009
    • John McCall's avatar
      Omnibus friend decl refactoring. Instead of cloning AST classes for friend · aa74a0c3
      John McCall authored
      declarations of same, introduce a single AST class and add appropriate bits
      (encoded in the namespace) for whether a decl is "real" or not.  Much hackery
      about previously-declared / not-previously-declared, but it's essentially
      mandated by the standard that friends alter lookup, and this is at least
      fairly non-intrusive.
      
      Refactor the Sema methods specific to friends for cleaner flow and less nesting.
      
      Incidentally solve a few bugs, but I remain confident that we can put them back.
      
      llvm-svn: 80353
      aa74a0c3
    • Anders Carlsson's avatar
      Check in UnresolvedUsingDecl. · 8305c1fa
      Anders Carlsson authored
      llvm-svn: 80336
      8305c1fa
  22. Aug 27, 2009
  23. Aug 11, 2009
  24. Jul 29, 2009
    • Ted Kremenek's avatar
      Change uses of: · c23c7e6a
      Ted Kremenek authored
        Type::getAsReferenceType() -> Type::getAs<ReferenceType>()
        Type::getAsRecordType() -> Type::getAs<RecordType>()
        Type::getAsPointerType() -> Type::getAs<PointerType>()
        Type::getAsBlockPointerType() -> Type::getAs<BlockPointerType>()
        Type::getAsLValueReferenceType() -> Type::getAs<LValueReferenceType>()
        Type::getAsRValueReferenceType() -> Type::getAs<RValueReferenceType>()
        Type::getAsMemberPointerType() -> Type::getAs<MemberPointerType>()
        Type::getAsReferenceType() -> Type::getAs<ReferenceType>()
        Type::getAsTagType() -> Type::getAs<TagType>()
        
      And remove Type::getAsReferenceType(), etc.
      
      This change is similar to one I made a couple weeks ago, but that was partly
      reverted pending some additional design discussion. With Doug's pending smart
      pointer changes for Types, it seemed natural to take this approach.
      
      llvm-svn: 77510
      c23c7e6a
  25. Jul 17, 2009
  26. Jun 30, 2009
  27. Jun 29, 2009
    • Argyrios Kyrtzidis's avatar
      -Keep a reference to the ASTContext inside the TranslationUnitDecl. · 743e7db7
      Argyrios Kyrtzidis authored
      -Introduce Decl::getASTContext() which returns the reference from the TranslationUnitDecl that it is contained in.
      
      The general idea is that Decls can point to their own ASTContext so that it is no longer required to "manually" keep track and make sure that you pass the correct ASTContext to Decls' methods, e.g. methods like Decl::getAttrs should eventually not require a ASTContext parameter.
      
      llvm-svn: 74434
      743e7db7
  28. Jun 26, 2009
    • Anders Carlsson's avatar
      See through UsingDecls in more places. · f057cb23
      Anders Carlsson authored
      llvm-svn: 74269
      f057cb23
    • Douglas Gregor's avatar
      Improved semantic analysis and AST respresentation for function · ad3f2fcf
      Douglas Gregor authored
      templates.
      
      For example, this now type-checks (but does not instantiate the body
      of deref<int>):
      
        template<typename T> T& deref(T* t) { return *t; }
      
        void test(int *ip) {
          int &ir = deref(ip);
        }
      
      Specific changes/additions:
        * Template argument deduction from a call to a function template.
        * Instantiation of a function template specializations (just the
        declarations) from the template arguments deduced from a call.
        * FunctionTemplateDecls are stored directly in declaration contexts
        and found via name lookup (all forms), rather than finding the
        FunctionDecl and then realizing it is a template. This is
        responsible for most of the churn, since some of the core
        declaration matching and lookup code assumes that all functions are
        FunctionDecls.
      
      llvm-svn: 74213
      ad3f2fcf
  29. Jun 20, 2009
Loading