Skip to content
  1. Apr 30, 2010
  2. Feb 26, 2010
    • John McCall's avatar
      Fix an assertion-on-error during tentative constructor parsing by · 1f476a17
      John McCall authored
      propagating error conditions out of the various annotate-me-a-snowflake
      routines.  Generally (but not universally) removes redundant diagnostics
      as well as, you know, not crashing on bad code.  On the other hand,
      I have just signed myself up to fix fiddly parser errors for the next
      week.  Again.
      
      llvm-svn: 97221
      1f476a17
  3. Feb 05, 2010
  4. Dec 19, 2009
  5. Nov 21, 2009
    • Alexis Hunt's avatar
      Added rudimentary C++0x attribute support. · 96d5c764
      Alexis Hunt authored
      The following attributes are currently supported in C++0x attribute
      lists (and in GNU ones as well):
       - align() - semantics believed to be conformant to n3000, except for
         redeclarations and what entities it may apply to
       - final - semantics believed to be conformant to CWG issue 817's proposed
         wording, except for redeclarations
       - noreturn - semantics believed to be conformant to n3000, except for
         redeclarations
       - carries_dependency - currently ignored (this is an optimization hint)
      
      llvm-svn: 89543
      96d5c764
  6. Nov 05, 2009
  7. Sep 09, 2009
  8. Aug 26, 2009
    • Douglas Gregor's avatar
      Improve support for out-of-line definitions of nested templates and · e861bac0
      Douglas Gregor authored
      their members, including member class template, member function
      templates, and member classes and functions of member templates.
      
      To actually parse the nested-name-specifiers that qualify the name of
      an out-of-line definition of a member template, e.g.,
      
        template<typename X> template<typename Y>
        X Outer<X>::Inner1<Y>::foo(Y) {
          return X();
        }
      
      we need to look for the template names (e.g., "Inner1") as a member of
      the current instantiation (Outer<X>), even before we have entered the
      scope of the current instantiation. Since we can't do this in general
      (i.e., we should not be looking into all dependent
      nested-name-specifiers as if they were the current instantiation), we
      rely on the parser to tell us when it is parsing a declaration
      specifier sequence, and, therefore, when we should consider the
      current scope specifier to be a current instantiation.
      
      Printing of complicated, dependent nested-name-specifiers may be
      somewhat broken by this commit; I'll add tests for this issue and fix
      the problem (if it still exists) in a subsequent commit.
      
      llvm-svn: 80044
      e861bac0
  9. Jul 21, 2009
  10. Jul 14, 2009
  11. Jun 24, 2009
  12. Jun 09, 2009
  13. May 22, 2009
  14. Mar 28, 2009
    • Douglas Gregor's avatar
      Initial implementation of parsing, semantic analysis, and template · 333489bb
      Douglas Gregor authored
      instantiation for C++ typename-specifiers such as
      
        typename T::type
      
      The parsing of typename-specifiers is relatively easy thanks to
      annotation tokens. When we see the "typename", we parse the
      typename-specifier and produce a typename annotation token. There are
      only a few places where we need to handle this. We currently parse the
      typename-specifier form that terminates in an identifier, but not the
      simple-template-id form, e.g.,
      
        typename T::template apply<U, V>
      
      Parsing of nested-name-specifiers has a similar problem, since at this
      point we don't have any representation of a class template
      specialization whose template-name is unknown.
      
      Semantic analysis is only partially complete, with some support for
      template instantiation that works for simple examples. 
      
      llvm-svn: 67875
      333489bb
  15. Mar 27, 2009
  16. Mar 11, 2009
  17. Feb 10, 2009
    • Douglas Gregor's avatar
      Teach the type-id/expression disambiguator about different · 97f34576
      Douglas Gregor authored
      disambiguation contexts, so that we properly parse template arguments
      such as
      
        A<int()>
      
      as type-ids rather than as expressions. Since this can be confusing
      (especially when the template parameter is a non-type template
      parameter), we try to give a friendly error message.
      
      Almost, eliminate a redundant error message (that should have been a
      note) and add some ultra-basic checks for non-type template
      arguments.
      
      llvm-svn: 64189
      97f34576
  18. Jan 29, 2009
  19. Jan 27, 2009
  20. Jan 25, 2009
  21. Jan 06, 2009
  22. Jan 05, 2009
  23. Dec 17, 2008
    • Douglas Gregor's avatar
      Removed the warning · ec8806e8
      Douglas Gregor authored
        warning: statement was disambiguated as declaration
      
      because it is currently firing in cases where the declaration would
      not actually parse as a statement. We'd love to bring this warning
      back if we can make it more accurate.
      
      llvm-svn: 61137
      ec8806e8
  24. Nov 22, 2008
  25. Nov 18, 2008
  26. Nov 08, 2008
  27. Oct 18, 2008
  28. Oct 16, 2008
  29. Oct 06, 2008
  30. Oct 05, 2008
Loading