Skip to content
  1. Nov 30, 2013
  2. Nov 27, 2013
  3. Oct 29, 2013
  4. Oct 15, 2013
  5. Sep 06, 2013
  6. Feb 22, 2013
  7. Feb 20, 2013
  8. Jan 29, 2013
  9. Jan 17, 2013
  10. Jan 14, 2013
    • Richard Smith's avatar
      Accept [[gnu::*]] for all __attribute__((*))s which are: · 368ca52c
      Richard Smith authored
       1) Supported by Clang, and
       2) Supported by GCC, and
       3) Documented in GCC's manual.
      
      g++ allows its C++11-style attributes to appertain only to the entity being
      declared, and never to a type (even for a type attribute), so we do the same.
      
      llvm-svn: 172382
      368ca52c
  11. Jan 07, 2013
    • Michael Han's avatar
      Add fixit hints for misplaced C++11 attributes around class specifiers. · 309af291
      Michael Han authored
      Following r168626, in class declaration or definition, there are a combination of syntactic locations 
      where C++11 attributes could appear, and among those the only valid location permitted by standard is
      between class-key and class-name. So for those attributes appear at wrong locations, fixit is used to 
      move them to expected location and we recover by applying them to the class specifier.
       
      
      llvm-svn: 171757
      309af291
  12. Nov 29, 2012
  13. Nov 26, 2012
    • Michael Han's avatar
      Improve diagnostic on C++11 attribute specifiers that appear at wrong... · 9407e50b
      Michael Han authored
      Improve diagnostic on C++11 attribute specifiers that appear at wrong syntactic locations around class specifiers.
      
      This change list implemented logic that explicitly detects several combinations of locations where C++11 attribute
      specifiers might be incorrectly placed within a class specifier. Previously we emit generic diagnostics like 
      "expected identifier" for such cases; now we emit specific diagnostic against the misplaced attributes, this also 
      fixed a bug in old code where attributes appear at legitimate locations were incorrectly rejected.
      
      Thanks to Richard Smith for reviewing!
      
      llvm-svn: 168626
      9407e50b
  14. Nov 06, 2012
  15. Oct 03, 2012
    • Michael Han's avatar
      Improve C++11 attribute parsing. · 23214e50
      Michael Han authored
      - General C++11 attributes were previously parsed and ignored. Now they are parsed and stored in AST.
      - Add support to parse arguments of attributes that in 'gnu' namespace.
      - Differentiate unknown attributes and known attributes that can't be applied to statements when emitting diagnostic.
      
      llvm-svn: 165082
      23214e50
  16. Jun 24, 2012
  17. Jun 23, 2012
    • Alexis Hunt's avatar
      Clean up a large number of C++11 attribute parse issues, including parsing · 6aa9beef
      Alexis Hunt authored
      attributes in more places where we didn't and catching a lot more issues.
      
      This implements nearly every aspect of C++11 attribute parsing, except for:
       - Attributes are permitted on explicit instantiations inside the declarator
         (but not preceding the decl-spec)
       - Attributes are permitted on friend declarations of functions.
       - Multiple instances of the same attribute in an attribute-list (e.g.
         [[noreturn, noreturn]], not [[noreturn]] [[noreturn]] which is conforming)
         are allowed.
      The first two are marked as expected-FIXME in the test file and the latter
      is probably a defect and is currently untested.
      
      Thanks to Richard Smith for providing the lion's share of the testcases.
      
      llvm-svn: 159072
      6aa9beef
  18. Apr 11, 2012
  19. Apr 10, 2012
    • Richard Smith's avatar
      Parsing of C++11 attributes: · 3dff251d
      Richard Smith authored
       * Alternative tokens (such as 'compl') are treated as identifiers in
         attribute names.
       * An attribute-list can start with a comma.
       * An ellipsis may not be used with either of our currently-supported
         C++11 attributes.
      
      llvm-svn: 154381
      3dff251d
    • Richard Smith's avatar
      Disambiguation of '[[': · 7bdcc4a9
      Richard Smith authored
       * In C++11, '[[' is ill-formed unless it starts an attribute-specifier. Reject
         array sizes and array indexes which begin with a lambda-expression. Recover by
         parsing the lambda as a lambda.
       * In Objective-C++11, either '[' could be the start of a message-send.
         Fully disambiguate this case: it turns out that the grammars of message-sends,
         lambdas and attributes do not actually overlap. Accept any occurrence of '[['
         where either '[' starts a message send, but reject a lambda in an array index
         just like in C++11 mode.
      
      Implement a couple of changes to the attribute wording which occurred after our
      attributes implementation landed:
       * In a function-declaration, the attributes go after the exception specification,
         not after the right paren.
       * A reference type can have attributes applied.
       * An 'identifier' in an attribute can also be a keyword. Support for alternative
         tokens (iso646 keywords) in attributes to follow.
      
      And some bug fixes:
       * Parse attributes after declarator-ids, even if they are not simple identifiers.
       * Do not accept attributes after a parenthesized declarator.
       * Accept attributes after an array size in a new-type-id.
       * Partially disamiguate 'delete' followed by a lambda. More work is required
         here for the case where the lambda-introducer is '[]'.
      
      llvm-svn: 154369
      7bdcc4a9
  20. Feb 04, 2012
    • Richard Smith's avatar
      In C++11 mode, when an integral constant expression is desired and we have a · f4c51d9d
      Richard Smith authored
      value of class type, look for a unique conversion operator converting to
      integral or unscoped enumeration type and use that. Implements [expr.const]p5.
      
      Sema::VerifyIntegerConstantExpression now performs the conversion and returns
      the converted result. Some important callers of Expr::isIntegralConstantExpr
      have been switched over to using it (including all of those required for C++11
      conformance); this switch brings a side-benefit of improved diagnostics and, in
      several cases, simpler code. However, some language extensions and attributes
      have not been moved across and will not perform implicit conversions on
      constant expressions of literal class type where an ICE is required.
      
      In passing, fix static_assert to perform a contextual conversion to bool on its
      argument.
      
      llvm-svn: 149776
      f4c51d9d
  21. Jan 04, 2012
  22. Oct 14, 2011
  23. Sep 29, 2011
  24. Aug 04, 2011
  25. Feb 28, 2011
  26. Feb 19, 2011
  27. Jan 23, 2011
  28. Dec 15, 2009
  29. 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
Loading