Skip to content
  1. Nov 03, 2009
    • Daniel Dunbar's avatar
      Switch XFAIL format to match LLVM. · a530841b
      Daniel Dunbar authored
      llvm-svn: 85880
      a530841b
    • Douglas Gregor's avatar
      Introduce a new class, UnqualifiedId, that provides a parsed · 7861a803
      Douglas Gregor authored
      representation of a C++ unqualified-id, along with a single parsing
      function (Parser::ParseUnqualifiedId) that will parse all of the
      various forms of unqualified-id in C++.
      
      Replace the representation of the declarator name in Declarator with
      the new UnqualifiedId class, simplifying declarator-id parsing
      considerably and providing more source-location information to
      Sema. In the future, I hope to migrate all of the other
      unqualified-id-parsing code over to this single representation, then
      begin to merge actions that are currently only different because we
      didn't have a unqualified notion of the name in the parser.
      
      llvm-svn: 85851
      7861a803
  2. Nov 01, 2009
  3. Oct 31, 2009
    • Douglas Gregor's avatar
      Implement "incremental" template instantiation for non-type template · 954de179
      Douglas Gregor authored
      parameters and template type parameters, which occurs when
      substituting into the declarations of member templates inside class
      templates. This eliminates errors about our inability to "reduce
      non-type template parameter depth", fixing PR5311.
      
      Also fixes a bug when instantiating a template type parameter
      declaration in a member template, where we weren't properly reducing
      the template parameter's depth.
      
      LLVM's StringSwitch header now parses.
      
      llvm-svn: 85669
      954de179
  4. Oct 30, 2009
  5. Oct 29, 2009
  6. Oct 27, 2009
  7. Oct 24, 2009
  8. Oct 23, 2009
  9. Oct 22, 2009
  10. Oct 20, 2009
  11. Oct 17, 2009
  12. Oct 16, 2009
  13. Oct 15, 2009
  14. Oct 14, 2009
    • Douglas Gregor's avatar
      When mapping from an injected-class-name to its corresponding · 568a071d
      Douglas Gregor authored
      template, make sure to get the template that corresponds to *this*
      declaration of the class template or specialization, rather than the
      canonical specialization. Fixes PR5187.
      
      llvm-svn: 84119
      568a071d
    • Douglas Gregor's avatar
      Implement support for overloaded operator uses that result to a call · 4aa2dc41
      Douglas Gregor authored
      to a member operator template. We missed updating this call site when
      adding support for function templates; bug exposed by a test for
      PR5072.
      
      llvm-svn: 84111
      4aa2dc41
    • Douglas Gregor's avatar
      Improve diagnostics when the parser encounters a declarator with an · 15e5602e
      Douglas Gregor authored
      unknown type name, e.g.,
      
        foo::bar x;
      
      when "bar" does not refer to a type in "foo". 
      
      With this change, the parser now calls into the action to perform
      diagnostics and can try to recover by substituting in an appropriate
      type. For example, this allows us to easily diagnose some missing
      "typename" specifiers, which we now do:
      
        test/SemaCXX/unknown-type-name.cpp:29:1: error: missing 'typename'
              prior to dependent type name 'A<T>::type'
        A<T>::type A<T>::f() { return type(); }
        ^~~~~~~~~~
        typename 
      
      Fixes PR3990.
      
      llvm-svn: 84053
      15e5602e
  15. Oct 13, 2009
    • Douglas Gregor's avatar
      Unify our diagnostic printing for errors of the form, "we didn't like · e40876a5
      Douglas Gregor authored
      what we found when we looked into <blah>", where <blah> is a
      DeclContext*. We can now format DeclContext*'s in nice ways, e.g.,
      "namespace N", "the global namespace", "'class Foo'".
      
      This is part of PR3990, but we're not quite there yet.
      
      llvm-svn: 84028
      e40876a5
    • Douglas Gregor's avatar
      Improve the internal representation and semantic analysis of friend · 3a88c1d7
      Douglas Gregor authored
      function templates.
      
      This commit ensures that friend function templates are constructed as
      FunctionTemplateDecls rather than partial FunctionDecls (as they
      previously were). It then implements template instantiation for friend
      function templates, injecting the friend function template only when
      no previous declaration exists at the time of instantiation. 
      
      Oh, and make sure that explicit specialization declarations are not
      friends.
      
      llvm-svn: 83970
      3a88c1d7
  16. Oct 12, 2009
  17. Oct 09, 2009
  18. Oct 08, 2009
  19. Oct 07, 2009
  20. Oct 02, 2009
  21. Sep 30, 2009
    • Douglas Gregor's avatar
      When overload resolution fails for an overloaded operator, show the · 66950a32
      Douglas Gregor authored
      overload candidates (but not the built-in ones). We still rely on the
      underlying built-in semantic analysis to produce the initial
      diagnostic, then print the candidates following that diagnostic. 
      
      One side advantage of this approach is that we can perform more validation
      of C++'s operator overloading with built-in candidates vs. the
      semantic analysis for those built-in operators: when there are no
      viable candidates, we know to expect an error from the built-in
      operator handling code. Otherwise, we are not modeling the built-in
      semantics properly within operator overloading. This is checked as:
      
            assert(Result.isInvalid() && 
                   "C++ binary operator overloading is missing
                   candidates!");
            if (Result.isInvalid())
              PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/false);
      
      The assert() catches cases where we're wrong in a +Asserts build. The
      "if" makes sure that, if this happens in a production clang
      (-Asserts), we still build the proper built-in operator and continue
      on our merry way. This is effectively what happened before this
      change, but we've added the assert() to catch more flies.
      
      llvm-svn: 83175
      66950a32
  22. Sep 29, 2009
  23. Sep 28, 2009
Loading