Skip to content
  1. Mar 30, 2010
  2. Mar 24, 2010
  3. Mar 11, 2010
  4. Mar 10, 2010
    • John McCall's avatar
      Create a new InjectedClassNameType to represent bare-word references to the · e78aac41
      John McCall authored
      injected class name of a class template or class template partial specialization.
      This is a non-canonical type;  the canonical type is still a template 
      specialization type.  This becomes the TypeForDecl of the pattern declaration,
      which cleans up some amount of code (and complicates some other parts, but
      whatever).
      
      Fixes PR6326 and probably a few others, primarily by re-establishing a few
      invariants about TypeLoc sizes.     
      
      llvm-svn: 98134
      e78aac41
  5. Mar 05, 2010
  6. Feb 22, 2010
  7. Feb 17, 2010
  8. Feb 11, 2010
  9. Jan 22, 2010
  10. Jan 20, 2010
  11. Jan 16, 2010
  12. Dec 11, 2009
  13. Dec 10, 2009
  14. Dec 08, 2009
  15. Dec 02, 2009
  16. Dec 01, 2009
  17. Nov 29, 2009
  18. Nov 21, 2009
  19. Nov 18, 2009
  20. 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
  21. 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
  22. Oct 01, 2009
  23. Sep 17, 2009
  24. Sep 10, 2009
  25. Sep 09, 2009
  26. Sep 02, 2009
  27. Sep 01, 2009
  28. Aug 29, 2009
  29. 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
  30. Aug 27, 2009
  31. Aug 11, 2009
  32. 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
  33. Jul 17, 2009
Loading