Skip to content
  1. Apr 06, 2008
    • Chris Lattner's avatar
      This patch contains these changes: · 0a5ff0d3
      Chris Lattner authored
      -Renamed ContextDecl -> DeclContext
      -Removed DeclContext pointer from FieldDecl
      -EnumDecl inherits from DeclContext, instead of TagDecl
      
      Patch by Argiris Kirtzidis!
      
      llvm-svn: 49261
      0a5ff0d3
  2. Apr 04, 2008
    • Chris Lattner's avatar
      Introduce ContextDecl, patch by Argiris Kirtzidis! · c5ffed4a
      Chris Lattner authored
      -Added ContextDecl (no TranslationUnitDecl)
      -ScopedDecl class has a ContextDecl member
      -FieldDecl class has a ContextDecl member, so that a Field or a ObjCIvar can be traced back to their RecordDecl/ObjCInterfaceDecl easily
      -FunctionDecl, ObjCMethodDecl, TagDecl, ObjCInterfaceDecl inherit from ContextDecl. With TagDecl as ContextDecl, enum constants have a EnumDecl as their context.
      -Moved Decl class to a "DeclBase.h" along with ContextDecl class
      -CurContext is handled by Sema
      
      llvm-svn: 49208
      c5ffed4a
  3. Apr 02, 2008
    • Steve Naroff's avatar
      Change ObjCInterfaceDecl to inherit from NamedDecl (not TypeDecl). While... · 77892753
      Steve Naroff authored
      Change ObjCInterfaceDecl to inherit from NamedDecl (not TypeDecl). While ObjCInterfaceDecl is arguably a TypeDecl, it isn't a ScopedDecl. Since TypeDecl's are scoped, it makes sense to simply treat them as NamedDecl's. I could have fiddled a bit more with the hierarchy (in terms of creating a non-scoped TypeDecl), however this probably isn't worth the effort. 
      
      I also finished unifying access to scope decl change by converting Sema::getObjCInterfaceDecl() to use Sema::LookupDecl(). This is much cleaner now:-)
      
      llvm-svn: 49107
      77892753
    • Steve Naroff's avatar
      · 2fc93f5c
      Steve Naroff authored
      Two changes to Sema::LookupDecl() interface. 
      (1) Remove IdLoc (it's never used). 
      (2) Add a bool to enable/disable lazy builtin creaation (defaults to true).
      
      This enables us to use LookupDecl() in Sema::isTypeName(), which is also part of this commit.
      
      To make this work, I changed isTypeName() to be a non-const member function. I'm not happy with this, however I fiddled with making LookupDecl() and friends const and it got ugly pretty quickly. We can certainly add it back if/when someone has time to fiddle with it. For now, I thought this simplification was more important than retaining the const-ness. 
      
      llvm-svn: 49087
      2fc93f5c
    • Steve Naroff's avatar
      Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass... · 257520b1
      Steve Naroff authored
      Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass (to inherit from NamedDecl, instead of ScopedDecl). 
      
      - Added a DenseMap to associate an IdentifierInfo with the ObjCCompatibleAliasDecl.
      - Renamed LookupScopedDecl->LookupDecl and changed it's return type to Decl. Also added lookup for ObjCCompatibleAliasDecl's.
      - Removed Sema::LookupInterfaceDecl(). Converted clients to used LookupDecl().
      - Some minor indentation changes.
      
      Will deal with ObjCInterfaceDecl and getObjCInterfaceDecl() in a separate commit...
      
      llvm-svn: 49058
      257520b1
  4. Mar 17, 2008
  5. Mar 16, 2008
  6. Mar 15, 2008
  7. Feb 29, 2008
  8. Feb 25, 2008
  9. Feb 17, 2008
  10. Feb 10, 2008
    • Steve Naroff's avatar
      · 15833ed1
      Steve Naroff authored
      Add a diagnostics helper to remove some redundant code.
      
      llvm-svn: 46936
      15833ed1
  11. Feb 08, 2008
    • Steve Naroff's avatar
      · a3699224
      Steve Naroff authored
      A bunch-o changes to fix <rdar://problem/5716046> incomplete implementation of ObjC class warning is incomplete
      
      As part of this fix, I made a low-level change to the text diagnostics machinery (to basically avoid printing duplicate source lines/carets when you have multiple diagnostics that refer to the same exact place). For now, this only happens with we don't have a source range (could be extended to support source ranges as well). 
      
      llvm-svn: 46897
      a3699224
  12. Jan 21, 2008
  13. Jan 17, 2008
  14. Jan 10, 2008
  15. Jan 07, 2008
  16. Dec 29, 2007
  17. Dec 20, 2007
  18. Dec 19, 2007
    • Steve Naroff's avatar
      · fa5751f8
      Steve Naroff authored
      Various tweaks to the get/lookup instance/class method API's.
      
      llvm-svn: 45224
      fa5751f8
  19. Dec 18, 2007
    • Steve Naroff's avatar
      · 1d2538cb
      Steve Naroff authored
      Improve how we find private method decls. This involved:
      
      - Changed Sema::ObjcActOnStartOfMethodDef() to register the methods with the global pools.
      - Changed Sema::ActOnInstanceMessage() to look in global pools (should be much less error prone).
      - Added a test case to message.m (for lookup that was broken).
      
      Misc changes while I was investigating this...
      
      - Changed Sema::ActOnAtEnd() to call AddFactoryMethodToGlobalPool (this looked like a cut/paste error).
      - Added a comment and tweaked another where I was using the first person.
      
      llvm-svn: 45142
      1d2538cb
  20. Dec 15, 2007
    • Steve Naroff's avatar
      · 3ce37a6b
      Steve Naroff authored
      - Remove getInstanceMethods/getClassMethods API on ObjcInterfaceDecl, ObjcProtocolDecl, and ObjcCategoryDecl. These methods are replaced by the respective iterators on each class.
      - Add getInstanceMethodForSelector to ObjcInterfaceDecl, ObjcProtocolDecl, and ObjcCatgoryDecl. This hook will do a "shallow" lookup. This is a convenience method that reducing some of the iterator usage.
      - Various changes to convert all clients to the above API's...
       
      
      llvm-svn: 45046
      3ce37a6b
  21. Dec 12, 2007
Loading