Skip to content
  1. Jul 15, 2009
    • Steve Naroff's avatar
      Implement the ObjC pseudo built-in types as clang "BuiltinType's". I say... · 1329fa0e
      Steve Naroff authored
      Implement the ObjC pseudo built-in types as clang "BuiltinType's". I say pseudo built-in types, since Sema still injects a typedef for recognition (i.e. they aren't truly built-ins from a parser perspective).
      
      This removes the static data/methods on ObjCObjectPointerType while preserving the nice API (no need to fiddle with ASTContext:-).
      
      This patch also adds Type::isObjCBuiltinType().
      
      This should be the last fairly large patch related to recrafting the ObjC type system. The follow-on patches should be fairly small.
      
      llvm-svn: 75808
      1329fa0e
  2. Jul 14, 2009
  3. Jul 13, 2009
  4. Jul 11, 2009
    • Anders Carlsson's avatar
      Implement more of C++0x 'auto'. A variable with an auto type specifier must... · ae01993a
      Anders Carlsson authored
      Implement more of C++0x 'auto'. A variable with an auto type specifier must have an initializer. Also, move some tests around to match the C++0x draft better.
      
      llvm-svn: 75322
      ae01993a
    • Ted Kremenek's avatar
      Fix warning when compiling with optimizations: · f5145921
      Ted Kremenek authored
        warning: ‘OPT’ may be used uninitialized in this function
      
      Now OPT is initialized to NULL. I'm not certain if this is the correct fix;
      others please review.
      
      llvm-svn: 75321
      f5145921
    • Anders Carlsson's avatar
      Remove some unused code from an experiment that I didn't like. · 9890fb5b
      Anders Carlsson authored
      llvm-svn: 75315
      9890fb5b
    • 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
  5. Jul 10, 2009
  6. Jul 09, 2009
  7. Jul 08, 2009
  8. Jul 07, 2009
  9. Jul 06, 2009
Loading