Skip to content
  1. Nov 02, 2007
  2. Nov 01, 2007
  3. Oct 31, 2007
  4. Oct 30, 2007
    • Steve Naroff's avatar
      · 5448cf6d
      Steve Naroff authored
      - Add location info to category/protocol AST's
      - Rewrite categories.
      
      llvm-svn: 43501
      5448cf6d
    • Steve Naroff's avatar
      · 4cd61acc
      Steve Naroff authored
      Remove a couple FIXME's for rewriting ObjC interfaces (which are now being rewritten properly).
      
      llvm-svn: 43494
      4cd61acc
    • Steve Naroff's avatar
      · c5484043
      Steve Naroff authored
      More support for rewriting ObjC intefaces. Still some edge cases to handle...
      
      llvm-svn: 43493
      c5484043
  5. Oct 29, 2007
    • Steve Naroff's avatar
      · e0933396
      Steve Naroff authored
      Remove a bunch of TODO's that have been done for quite some time...
      
      llvm-svn: 43476
      e0933396
    • Steve Naroff's avatar
      · 33a1e80d
      Steve Naroff authored
      This commit contains lot's of small tweaks to how we pass around and store SourceLocation's for interfaces/protocols/categories/implementations.
      
      llvm-svn: 43475
      33a1e80d
  6. Oct 26, 2007
    • Steve Naroff's avatar
      · 161a92b9
      Steve Naroff authored
      Start rewriting ObjC interfaces. As a start, we comment out all the methods. This involved refining how the parser/AST passes/manages SourceLocations for ObjcMethodDecl's. 
      
      llvm-svn: 43404
      161a92b9
  7. Oct 19, 2007
  8. Oct 17, 2007
  9. Oct 16, 2007
  10. Oct 15, 2007
    • Steve Naroff's avatar
      · 126b4d83
      Steve Naroff authored
      Fix a parser bug with message expressions - need to call ParsePostfixExpressionSuffix(). 
      
      Now were correctly allow the following...
      
          i = [str rangeOfString:@"]"].length;
      
      llvm-svn: 43012
      126b4d83
  11. Oct 14, 2007
    • Steve Naroff's avatar
      · 5811baf1
      Steve Naroff authored
      - Added Sema::AddFactoryMethodToGlobalPool and Sema::AddInstanceMethodToGlobalPool and DenseMaps. This will allow us to efficiently lookup a method from a selector given no type information (for the "id" data type).
      
      - Fixed some funky "}
                          else {" indentation in Sema::ActOnAddMethodsToObjcDecl(). I'd prefer we stay away from this style...it wastes space and isn't any easier to read (from my perspective, at least:-)
      
      - Changed Parser::ParseObjCInterfaceDeclList() to only call Action::ActOnAddMethodsToObjcDecl() when it actually has methods to add (since most interface have methods, this is a very minor cleanup).
      
      llvm-svn: 42957
      5811baf1
  12. Oct 12, 2007
  13. Oct 11, 2007
  14. Oct 10, 2007
    • Steve Naroff's avatar
      · 93eb5f14
      Steve Naroff authored
      Remove Scope argument from ObjC actions that either don't need it or can now use TUScope.
      Also improve a recently added comment.
      
      llvm-svn: 42826
      93eb5f14
  15. Oct 09, 2007
  16. Oct 08, 2007
  17. Oct 07, 2007
  18. Oct 05, 2007
    • Steve Naroff's avatar
      · e61bfa8b
      Steve Naroff authored
      Layering refinements for selectors (suggested by Chris). Specifics...
      
      - Add SelectorTable, which enables us to remove MultiKeywordSelector from the public header.
      - Remove FoldingSet from IdentifierInfo.h and Preprocessor.h.
      - Remove Parser::ObjcGetUnarySelector and Parser::ObjcGetKeywordSelector, they are subsumed by SelectorTable.
      - Add MultiKeywordSelector to IdentifierInfo.cpp.
      - Move a bunch of selector related methods from ParseObjC.cpp to IdentifierInfo.cpp.
      - Added some comments.
      
      llvm-svn: 42643
      e61bfa8b
  19. Oct 04, 2007
  20. Oct 03, 2007
    • Steve Naroff's avatar
      · 4810c3a1
      Steve Naroff authored
      Finish renaming ObjC declaration actions.
      Add comments.
      Switch to new indentation style for the Action class. Since many actions take many arguments, the new style will...
      - make it easier to add/remove arguments without messing up the indentation...
      - make it easier to add comments to each argument (see ActOnMethodDeclaration for an example)...
      - in general, just makes it easier to see what is being passed.
      
      The rest of Actions will be converted "lazily"...there is no immediate need to hack all the existing methods.
      
      llvm-svn: 42587
      4810c3a1
    • Steve Naroff's avatar
      · 0c37b0cb
      Steve Naroff authored
      Rename several ObjC action methods to use the "ActOn" prefix (still a few more to do).
      Remove Action::ObjCStartCategoryInterface/ObjCFinishInterface - they are unused.
      .
      
      llvm-svn: 42559
      0c37b0cb
  21. Oct 02, 2007
  22. Sep 29, 2007
    • Fariborz Jahanian's avatar
      This patch fixes all issues mentioned in clattner's feedback of · 0886d252
      Fariborz Jahanian authored
      September 28, 2007 4:39:24 PM PDT
      Please let me know if I missed anything.
      
      llvm-svn: 42473
      0886d252
    • Fariborz Jahanian's avatar
      Removed use of hash table for class decls and do a name look up directly. · 343f7098
      Fariborz Jahanian authored
      There is still an issue if doing ScopedLookup is an overkill and we can
      just access the decl using the identifier.
      
      llvm-svn: 42463
      343f7098
    • Steve Naroff's avatar
      · 92866f4f
      Steve Naroff authored
      Add some comments to MultiKeywordSelector, make all methods private, add a friend, move some methods around.
      
      llvm-svn: 42456
      92866f4f
    • Steve Naroff's avatar
      · 8017506d
      Steve Naroff authored
      Yesterday I discovered that 78% of all selectors in "Cocoa.h" take 0/1 argument.
      
      This motivated implementing a devious clattner inspired solution:-)
      
      This approach uses a small value "Selector" class to point to an IdentifierInfo for the 0/1 case. For multi-keyword selectors, we instantiate a MultiKeywordSelector object (previously known as SelectorInfo). Now, the incremental cost for selectors is only 24,800 for Cocoa.h! This saves 156,592 bytes, or 86%!! The size reduction is also the result of getting rid of the AST slot, which was not strictly necessary (we will associate a selector with it's method using another table...most likely in Sema).
      
      This change was critical to make now, before we have too many clients.
      
      I still need to add some comments to the Selector class...will likely add later today/tomorrow.
      
      llvm-svn: 42452
      8017506d
Loading