Skip to content
  1. Nov 03, 2009
  2. 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
  3. Mar 24, 2009
  4. Dec 22, 2008
  5. Dec 19, 2008
  6. Dec 18, 2008
  7. Nov 27, 2008
    • Douglas Gregor's avatar
      Add implicit conversions for Objective-C qualified ids, e.g., · a29dc05e
      Douglas Gregor authored
        id<P0>
      
      The intended overloading behavior of these entities isn't entirely
      clear, and GCC seems to have some strange limitations (e.g., the
      inability to overload on id<P0> vs. id<P1>). We'll want to revisit
      these semantics and determine just how Objective-C++ overloading
      should really work.
      
      llvm-svn: 60142
      a29dc05e
    • Douglas Gregor's avatar
      Implement implicit conversions for Objective-C specific types, e.g., · 237f96c4
      Douglas Gregor authored
      converting a pointer to one Objective-C interface into a pointer to another
      Objective-C interface, and conversions with 'id'. The semantics seems
      to match GCC, although they seem somewhat ad hoc.
      
      Fixed a few cases where we assumed the C++ definition of isObjectType,
      but were getting the C definition, causing failures in trouble with
      conversions to void pointers.
      
      llvm-svn: 60130
      237f96c4
Loading