Skip to content
  1. Sep 30, 2009
  2. Sep 25, 2009
  3. Sep 22, 2009
  4. Sep 19, 2009
  5. Sep 12, 2009
  6. Sep 09, 2009
  7. Aug 24, 2009
  8. Aug 21, 2009
  9. Aug 19, 2009
  10. Aug 13, 2009
  11. Aug 06, 2009
  12. Jul 31, 2009
  13. Jul 30, 2009
  14. 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
    • Owen Anderson's avatar
      Update for LLVM API change. · ade90fd1
      Owen Anderson authored
      llvm-svn: 77492
      ade90fd1
  15. Jul 28, 2009
  16. Jul 25, 2009
  17. Jul 17, 2009
  18. Jul 16, 2009
    • Ted Kremenek's avatar
      Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. · e3fb4b65
      Ted Kremenek authored
      This method is intended to eventually replace the individual
      Type::getAsXXXType<> methods.
      
      The motivation behind this change is twofold:
      
      1) Reduce redundant implementations of Type::getAsXXXType() methods. Most of
      them are basically copy-and-paste.
      
      2) By centralizing the implementation of the getAs<Type> logic we can more
      smoothly move over to Doug Gregor's proposed canonical type smart pointer
      scheme.
      
      Along with this patch:
      
      a) Removed 'Type::getAsPointerType()'; now clients use getAs<PointerType>.
      b) Removed 'Type::getAsBlockPointerTypE()'; now clients use getAs<BlockPointerType>.
      
      llvm-svn: 76098
      e3fb4b65
  19. Jul 15, 2009
  20. Jul 13, 2009
  21. Jul 08, 2009
  22. Jun 06, 2009
    • Mike Stump's avatar
      As an optimization, we maintain a cache of generated · cbc2bcaf
      Mike Stump authored
      ___Block_byref_id_object_dispose and ___Block_byref_id_object_copy
      functions so that we can simply reuse instead of creating a new one.
      Additionally, add an assert to ensure no one yet tries to align a
      __block variable beyond the alignment of a pointer as the codegen is
      incomplete.
      
      llvm-svn: 72974
      cbc2bcaf
  23. May 16, 2009
  24. May 13, 2009
  25. May 01, 2009
  26. Apr 23, 2009
  27. Apr 17, 2009
  28. Apr 16, 2009
  29. Apr 15, 2009
  30. Apr 14, 2009
    • Daniel Dunbar's avatar
      Audit __private_extern__ handling. · 0ca16601
      Daniel Dunbar authored
       - Exposed quite a few Sema issues and a CodeGen crash.
      
       - See FIXMEs in test case, and in SemaDecl.cpp (PR3983).
      
      I'm skeptical that __private_extern__ should actually be a storage
      class value. I think that __private_extern__ basically amounts to
        extern A __attribute__((visibility("hidden")))
      and would be better off handled (a) as that, or (b) with an extra bit
      in the VarDecl.
      
      llvm-svn: 69020
      0ca16601
  31. Apr 11, 2009
Loading