Skip to content
  1. Dec 01, 2009
  2. Nov 30, 2009
  3. Nov 29, 2009
  4. Nov 24, 2009
    • John McCall's avatar
      Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and · e66edc18
      John McCall authored
      DependentScopeDeclRefExpr support storing templateids.  Unite the common   
      code paths between ActOnDeclarationNameExpr and ActOnTemplateIdExpr.
      
      This gets us to a point where we don't need to store function templates in
      the AST using TemplateNames, which is critical to ripping out OverloadedFunction.
      
      Also resolves a few FIXMEs.
      
      llvm-svn: 89785
      e66edc18
  5. Nov 23, 2009
  6. Nov 22, 2009
  7. Nov 21, 2009
    • John McCall's avatar
      "Incremental" progress on using expressions, by which I mean totally ripping · d14a8642
      John McCall authored
      into pretty much everything about overload resolution in order to wean
      BuildDeclarationNameExpr off LookupResult::getAsSingleDecl().  Replace  
      UnresolvedFunctionNameExpr with UnresolvedLookupExpr, which generalizes the
      idea of a non-member lookup that we haven't totally resolved yet, whether by
      overloading, argument-dependent lookup, or (eventually) the presence of   
      a function template in the lookup results.  
      
      Incidentally fixes a problem with argument-dependent lookup where we were 
      still performing ADL even when the lookup results contained something from
      a block scope.  
      
      Incidentally improves a diagnostic when using an ObjC ivar from a class method.
      This just fell out from rewriting BuildDeclarationNameExpr's interaction with
      lookup, and I'm too apathetic to break it out.
      
      The only remaining uses of OverloadedFunctionDecl that I know of are in
      TemplateName and MemberExpr.
      
      llvm-svn: 89544
      d14a8642
  8. Nov 19, 2009
  9. Nov 18, 2009
  10. Nov 17, 2009
  11. Nov 13, 2009
    • Daniel Dunbar's avatar
      Rework Sema code completion interface. · 242ea9a0
      Daniel Dunbar authored
       - Provide Sema in callbacks, instead of requiring it in constructor. This
         eliminates the need for a factory function. Clients now just pass the object
         to consume the results in directly.
      
       - CodeCompleteConsumer is cheap to construct, so building it whenever we are
         doing code completion is reasonable.
      
      Doug, please review.
      
      llvm-svn: 87099
      242ea9a0
  12. Nov 09, 2009
  13. Nov 07, 2009
  14. Oct 30, 2009
  15. Oct 29, 2009
  16. Oct 23, 2009
    • Douglas Gregor's avatar
      Eliminate QualifiedDeclRefExpr, which captured the notion of a · 4bd90e53
      Douglas Gregor authored
      qualified reference to a declaration that is not a non-static data
      member or non-static member function, e.g., 
      
        namespace N { int i; }
        int j = N::i;
      
      Instead, extend DeclRefExpr to optionally store the qualifier. Most
      clients won't see or care about the difference (since
      QualifierDeclRefExpr inherited DeclRefExpr). However, this reduces the
      number of top-level expression types that clients need to cope with,
      brings the implementation of DeclRefExpr into line with MemberExpr,
      and simplifies and unifies our handling of declaration references.
      
      Extended DeclRefExpr to (optionally) store explicitly-specified
      template arguments. This occurs when naming a declaration via a
      template-id (which will be stored in a TemplateIdRefExpr) that,
      following template argument deduction and (possibly) overload
      resolution, is replaced with a DeclRefExpr that refers to a template
      specialization but maintains the template arguments as written.
      
      llvm-svn: 84962
      4bd90e53
  17. Oct 18, 2009
  18. Oct 10, 2009
    • Douglas Gregor's avatar
      Minor tweaks for code-completion: · 58acf32a
      Douglas Gregor authored
        - Filter out unnamed declarations
        - Filter out declarations whose names are reserved for the
        implementation (e.g., __bar, _Foo) 
        - Place OVERLOAD: or COMPLETION: at the beginning of each
        code-completion result, so we can easily separate them from other
        compilation results.
      
      llvm-svn: 83680
      58acf32a
  19. Oct 09, 2009
  20. Oct 08, 2009
  21. Sep 28, 2009
  22. Sep 24, 2009
  23. Sep 23, 2009
Loading