Skip to content
  1. Jun 03, 2008
  2. Jun 01, 2008
  3. May 30, 2008
  4. May 29, 2008
  5. May 27, 2008
  6. May 20, 2008
  7. May 18, 2008
  8. May 16, 2008
    • Eli Friedman's avatar
      Sema-based fix for PR2334. The issue is that even if the two sides of · 928ab4d5
      Eli Friedman authored
      the condidtional have compatible types, they are not necessarily the 
      same type.  Therefore, we cast to the composite type.  As a hack, for 
      the moment we assume that the composite type is the type of the 
      left-hand expression; this isn't correct, but it's good enough for most 
      purposes.
      
      llvm-svn: 51202
      928ab4d5
  9. May 14, 2008
  10. May 13, 2008
  11. May 12, 2008
  12. May 09, 2008
  13. Apr 27, 2008
    • Argyrios Kyrtzidis's avatar
      Parsing of namespaces: · 08114898
      Argyrios Kyrtzidis authored
      -NamespaceDecl for the AST
      -Checks for name clashes between namespaces and tag/normal declarations.
      
      This commit doesn't implement proper name lookup for namespaces.
      
      llvm-svn: 50321
      08114898
  14. Apr 19, 2008
  15. Apr 10, 2008
  16. Apr 08, 2008
  17. Apr 07, 2008
  18. Apr 04, 2008
  19. Apr 03, 2008
  20. Apr 02, 2008
    • Chris Lattner's avatar
      simplify some code by using PointerLikeType. · 182f660d
      Chris Lattner authored
      llvm-svn: 49101
      182f660d
    • 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
    • Chris Lattner's avatar
      Various parts of the standard require something to be an "incomplete or · b3a176da
      Chris Lattner authored
      object type".  Add a predicate that checks exactly this, as it is equivalent
      to checking ot see if the type is *not* a function type, which is faster
      to check.
      
      llvm-svn: 49082
      b3a176da
    • Chris Lattner's avatar
      Fix several bugs in array -> pointer decomposition. · a21ad805
      Chris Lattner authored
      First, we got several CVR propagation cases wrong, which Eli pointed
      out in PR2039.
      
      Second, we didn't propagate address space qualifiers correctly, leading
      to incorrect lowering of code in CodeGen/address-space.c.
      
      Third, we didn't uniformly propagate the specifier in the array to the
      pointer ("int[restrict 4]" -> "int *restrict").
      
      This adds an ASTContext::getArrayDecayedType member that handles the 
      non-trivial logic for this seemingly simple operation.
      
      llvm-svn: 49078
      a21ad805
    • Chris Lattner's avatar
      rename some variables, fix 80 col violation. No · 24d5bfe0
      Chris Lattner authored
      functionality change.
      
      llvm-svn: 49072
      24d5bfe0
    • 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
  21. Mar 31, 2008
    • Chris Lattner's avatar
      rename Decl::CompatibleAlias -> ObjCCompatibleAlias. · 59a2594f
      Chris Lattner authored
      Fix objc ivar lookup.  Ivar lookup should occur between lookup
      of method-local values and lookup of globals.  Emulate this with
      some logic in the handling of Sema::ActOnIdentifierExpr.
      
      Two todo's left:
       1) sema shouldn't turn a bare reference to an ivar into "self->ivar"
          in the AST.  This is a hack.
       2) The new ScopedDecl::isDefinedOutsideFunctionOrMethod method does
          not correctly handle typedefs and enum constants yet.
      
      llvm-svn: 48972
      59a2594f
  22. Mar 20, 2008
  23. Mar 17, 2008
Loading