Skip to content
  1. Nov 13, 2007
  2. Nov 12, 2007
    • Steve Naroff's avatar
      · e3d1ab29
      Steve Naroff authored
      - Minor cleanup to yesterday's changes to Sema::ObjcActOnStartOfMethodDef();
      - Add Sema::CurMethodDecl, in preparation for adding ObjcIvarRefExpr.
      - Add ObjcInterfaceDecl::lookupInstanceVariable(), in prep for adding ivars.
      - A couple renames in ObjcInterfaceDecl, while I was in the vicinity:-)
      
      llvm-svn: 44015
      e3d1ab29
  3. Nov 11, 2007
    • Steve Naroff's avatar
      · cac26f4f
      Steve Naroff authored
      This is the last 5% of the solution to teaching Sema::ActOnInstanceMessage() about private methods (r43989).
      
      While the diff is large, the idea is very simple. When we parse method definitions (in an @implementation), we need to add them incrementally (rather than wait until the @end).
      
      Other details...
      
      - Renamed Sema::ActOnAddMethodsToObjcDecl() to Sema::ActOnAtEnd(). The methods are now optional arguments.
      - Removed Parser::AllImplMethods (a nice cleanup).
      - Added location info to ObjcImplementationDecl (since we will need it very soon:-)
      - Modified message.m test to no longer allow the bogus diagnostic.
      
      llvm-svn: 43995
      cac26f4f
  4. Nov 10, 2007
    • Fariborz Jahanian's avatar
      pretty priting for method definitions. · 16e31230
      Fariborz Jahanian authored
      llvm-svn: 43986
      16e31230
    • Ted Kremenek's avatar
      Modifed the test serialization driver to... · 11d700bf
      Ted Kremenek authored
      (1) serialize out top-level decls BEFORE serializing out translation unit
      structures like ASTContext.
      
      (2) deserialize out translation unit structures like ASTContext before
      top-level decls by first skipping the decls in the bitstream, deserializing
      ASTContext and friends, and then jumping back to the bitstream block with the
      decls and then deserializing them.
      
      Change (1) allows us to utilize the pointer-tracking system in the Serializer
      to only serialize out metadata that is actually referenced by the ASTS.
      
      Change (2) allows us to deserialize the metadata first as before, which
      signficantly reduces the amount of pointer backpatching the deserializer
      would have to do if the decls were deserialized first.
      
      llvm-svn: 43974
      11d700bf
  5. Nov 09, 2007
    • Steve Naroff's avatar
      · 20113384
      Steve Naroff authored
      Rewrite global variable initializers. 
      
      llvm-svn: 43947
      20113384
    • Steve Naroff's avatar
      · 1b232132
      Steve Naroff authored
      - add typedef guards.
      - tweak scanForProtocolRefs heuristic.
      - disable RewriteInclude() for now.
      
      llvm-svn: 43942
      1b232132
  6. Nov 08, 2007
  7. Nov 07, 2007
  8. Nov 06, 2007
  9. Nov 05, 2007
  10. Nov 04, 2007
    • Steve Naroff's avatar
      · f36987c7
      Steve Naroff authored
      Two additions...
      
      - Synthesize the funky cast for objc_msgSend(). For the basic case, it looks like...
      
      ((id (*)(id, SEL))(void *)objc_msgSend)(obj, sel);
      
      The "void *" cast is needed to workaround a GCC "bandaid" (Chris says it has something to do with the inliner). Without the extra "void *" cast, we get spurious warnings/notes that look like...
      
      xx.m:17: warning: function called through a non-compatible type
      xx.m:17: note: if this code is reached, the program will abort
      
      - Add prototypes for the ObjC functions we call, objc_msgSend/objc_getClass for now (don't depend on them being included).
      
      llvm-svn: 43685
      f36987c7
  11. Nov 03, 2007
  12. Nov 01, 2007
    • Steve Naroff's avatar
      · 63006473
      Steve Naroff authored
      - Remove _interface_ prefix for the synthesized tag names.
      - Also removed a tab from the generated struct (minor).
      
      llvm-svn: 43616
      63006473
    • Steve Naroff's avatar
      · 50d4205f
      Steve Naroff authored
      Implement rewrite rule for commenting out protocol references. For example:
      
      extern id /*<NSObject>*/ NSAllocateObject(Class aClass, unsigned extraBytes, NSZone *zone);
      
      extern void NSDeallocateObject(id /*<NSObject>*/object);
      
      extern id /*<NSObject>*/ NSCopyObject(id /*<NSObject>*/object, unsigned extraBytes, NSZone *zone);
      
      llvm-svn: 43612
      50d4205f
    • Steve Naroff's avatar
      · 2f55b987
      Steve Naroff authored
      Tweak RewriteInterfaceDecl() to generate a typedef (if one hasn't already been generated).
      
      llvm-svn: 43600
      2f55b987
    • Fariborz Jahanian's avatar
      1) More additions for objective-c's qualifier type. · 7a9c4748
      Fariborz Jahanian authored
      2) Fixed a test failure (which should have failed all along!).
      
      llvm-svn: 43589
      7a9c4748
    • Fariborz Jahanian's avatar
Loading