Skip to content
  1. 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
    • Daniel Dunbar's avatar
      Don't use a formatted ostream when writing .ll either. · a5b33518
      Daniel Dunbar authored
      llvm-svn: 77474
      a5b33518
    • Daniel Dunbar's avatar
      Don't use a formatted ostream when writing .bc files. I don't really understand · d8c3178c
      Daniel Dunbar authored
      this interface design, Chris please check.
      
      llvm-svn: 77473
      d8c3178c
    • Daniel Dunbar's avatar
      Add missing '"' · 841f14b6
      Daniel Dunbar authored
      llvm-svn: 77416
      841f14b6
  2. Jul 28, 2009
    • Mike Stump's avatar
      Make longjmp a real builtin. · a4de80b8
      Mike Stump authored
      llvm-svn: 77291
      a4de80b8
    • Ted Kremenek's avatar
      (1) Enable PlistDiagnostics to take an option "PathDiagnosticClientFactory" · 04ade6f1
      Ted Kremenek authored
      object that it can use to forward PathDiagnostics for further processing. Along
      with this feature, the PlistDiagnostics object logs which files are created by
      the forwarding of the PathDiagnostics.
      
      (2) Create a new PathDiagnosticClientFactory object for HTMLDiagnostics,
      allowing other PathDiagnosticClients to forward PathDiagnostics through an
      opaque interface.
      
      (3) Create a "plist-html" diagnostics option in AnalysisConsumer to allow the
          logging of HTML files created in a hybrid Plist+HTML diagnostic client.
      
      llvm-svn: 77264
      04ade6f1
  3. Jul 27, 2009
  4. Jul 26, 2009
  5. Jul 24, 2009
  6. Jul 23, 2009
  7. Jul 21, 2009
  8. Jul 18, 2009
  9. Jul 17, 2009
  10. 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
    • Ted Kremenek's avatar
      Move the source-level CFG from libAST to libAnalysis. · 6796fbd2
      Ted Kremenek authored
      llvm-svn: 76092
      6796fbd2
  11. Jul 15, 2009
  12. Jul 14, 2009
  13. Jul 11, 2009
    • Steve Naroff's avatar
      This patch includes a conceptually simple, but very intrusive/pervasive change. · 7cae42b0
      Steve Naroff authored
      The idea is to segregate Objective-C "object" pointers from general C pointers (utilizing the recently added ObjCObjectPointerType). The fun starts in Sema::GetTypeForDeclarator(), where "SomeInterface *" is now represented by a single AST node (rather than a PointerType whose Pointee is an ObjCInterfaceType). Since a significant amount of code assumed ObjC object pointers where based on C pointers/structs, this patch is very tedious. It should also explain why it is hard to accomplish this in smaller, self-contained patches.
      
      This patch does most of the "heavy lifting" related to moving from PointerType->ObjCObjectPointerType. It doesn't include all potential "cleanups". The good news is additional cleanups can be done later (some are noted in the code). This patch is so large that I didn't want to include any changes that are purely aesthetic.
      
      By making the ObjC types truly built-in, they are much easier to work with (and require fewer "hacks"). For example, there is no need for ASTContext::isObjCIdStructType() or ASTContext::isObjCClassStructType()! We believe this change (and the follow-up cleanups) will pay dividends over time. 
      
      Given the amount of code change, I do expect some fallout from this change (though it does pass all of the clang tests). If you notice any problems, please let us know asap! Thanks.
      
      llvm-svn: 75314
      7cae42b0
  14. Jul 08, 2009
  15. Jul 07, 2009
    • Douglas Gregor's avatar
      Make ASTContext explicitly keep track of the declaration for the C · 27821cee
      Douglas Gregor authored
      FILE type, rather than using name lookup to find FILE within the
      translation unit. Within precompiled headers, FILE is treated as yet
      another "special type" (like __builtin_va_list).
      
      This change should provide a performance improvement (not verified),
      since the lookup into the translation unit declaration 
      forces the (otherwise unneeded) construction of a large hash table.
      More importantly, with precompiled headers, the construction
      of that table requires deserializing most of the top-level
      declarations from the precompiled header, which are then unused.
      
      Fixes PR 4509.
      
      llvm-svn: 74911
      27821cee
    • Douglas Gregor's avatar
      Introduce the notion of "Relocatable" precompiled headers, which are built · 0086a5a3
      Douglas Gregor authored
      with a particular system root directory and can be used with a different
      system root directory when the headers it depends on have been installed.
      Relocatable precompiled headers rewrite the file names of the headers used
      when generating the PCH file into the corresponding file names of the 
      headers available when using the PCH file.
      
      Addresses <rdar://problem/7001604>.
      
      llvm-svn: 74885
      0086a5a3
Loading