Skip to content
  1. Dec 22, 2021
  2. Dec 13, 2021
  3. Dec 08, 2021
  4. Oct 21, 2021
    • David Blaikie's avatar
      Recommit: Compress formatting of array type names (int [4] -> int[4]) · aee49255
      David Blaikie authored
      Based on post-commit review discussion on
      2bd84938 with Richard Smith.
      
      Other uses of forcing HasEmptyPlaceHolder to false seem OK to me -
      they're all around pointer/reference types where the pointer/reference
      token will appear at the rightmost side of the left side of the type
      name, so they make nested types (eg: the "int" in "int *") behave as
      though there is a non-empty placeholder (because the "*" is essentially
      the placeholder as far as the "int" is concerned).
      
      This was originally committed in 277623f4
      
      Reverted in f9ad1d1c due to breakages
      outside of clang - lldb seems to have some strange/strong dependence on
      "char [N]" versus "char[N]" when printing strings (not due to that name
      appearing in DWARF, but probably due to using clang to stringify type
      names) that'll need to be addressed, plus a few other odds and ends in
      other subprojects (clang-tools-extra, compiler-rt, etc).
      aee49255
  5. Oct 14, 2021
    • David Blaikie's avatar
      Revert "Compress formatting of array type names (int [4] -> int[4])" · f9ad1d1c
      David Blaikie authored
      Looks like lldb has some issues with this - somehow it causes lldb to
      treat a "char[N]" type as an array of chars (prints them out
      individually) but a "char [N]" is printed as a string. (even though the
      DWARF doesn't have this string in it - it's something to do with the
      string lldb generates for itself using clang)
      
      This reverts commit 277623f4.
      f9ad1d1c
    • David Blaikie's avatar
      Compress formatting of array type names (int [4] -> int[4]) · 277623f4
      David Blaikie authored
      Based on post-commit review discussion on
      2bd84938 with Richard Smith.
      
      Other uses of forcing HasEmptyPlaceHolder to false seem OK to me -
      they're all around pointer/reference types where the pointer/reference
      token will appear at the rightmost side of the left side of the type
      name, so they make nested types (eg: the "int" in "int *") behave as
      though there is a non-empty placeholder (because the "*" is essentially
      the placeholder as far as the "int" is concerned).
      277623f4
  6. Sep 28, 2021
  7. Sep 23, 2021
  8. Sep 22, 2021
  9. Sep 21, 2021
  10. Sep 20, 2021
  11. Sep 14, 2021
  12. Aug 06, 2021
  13. Dec 04, 2020
    • Erik Pilkington's avatar
      [Sema] Fold VLAs to constant arrays in a few more contexts · 090dd647
      Erik Pilkington authored
      552c6c23 removed support for promoting VLAs to constant arrays when the bounds
      isn't an ICE, since this can result in miscompiling a conforming program that
      assumes that the array is a VLA. Promoting VLAs for fields is still supported,
      since clang doesn't support VLAs in fields, so no conforming program could have
      a field VLA.
      
      This change is really disruptive, so this commit carves out two more cases
      where we promote VLAs which can't miscompile a conforming program:
      
       - When the VLA appears in an ivar -- this seems like a corollary to the field thing
       - When the VLA has an initializer -- VLAs can't have an initializer
      
      Differential revision: https://reviews.llvm.org/D90871
      090dd647
  14. Oct 28, 2020
  15. Oct 16, 2020
    • Richard Smith's avatar
      PR44406: Follow behavior of array bound constant folding in more recent versions of GCC. · 552c6c23
      Richard Smith authored
      Old GCC used to aggressively fold VLAs to constant-bound arrays at block
      scope in GNU mode. That's non-conforming, and more modern versions of
      GCC only do this at file scope. Update Clang to do the same.
      
      Also promote the warning for this from off-by-default to on-by-default
      in all cases; more recent versions of GCC likewise warn on this by
      default.
      
      This is still slightly more permissive than GCC, as pointed out in
      PR44406, as we still fold VLAs to constant arrays in structs, but that
      seems justifiable given that we don't support VLA-in-struct (and don't
      intend to ever support it), but GCC does.
      
      Differential Revision: https://reviews.llvm.org/D89523
      552c6c23
  16. Apr 29, 2020
    • Richard Smith's avatar
      Improve diagnostics for missing import / #include of module. · 0a088ead
      Richard Smith authored
      Fix a few bugs where we would fail to properly determine header to
      module correspondence when determining whether to suggest a #include or
      import, and suggest a #include more often in language modes where there
      is no import syntax. Generally, if the target is in a header with
      include guards or #pragma once, we should suggest either #including or
      importing that header, and not importing a module that happens to
      textually include it.
      
      In passing, improve the notes we attach to the corresponding
      diagnostics: calling an entity that we couldn't see "previous" is
      confusing.
      0a088ead
  17. Apr 01, 2020
  18. Mar 28, 2020
  19. Feb 19, 2020
    • Richard Smith's avatar
      Add -std=c++20 flag, replace C++2a with C++20 throughout the Clang · 24ad1215
      Richard Smith authored
      user interface and documentation, and update __cplusplus for C++20.
      
      WG21 considers the C++20 standard to be finished (even though it still
      has some more steps to pass through in the ISO process).
      
      The old flag names are accepted for compatibility, as usual, and we
      still have lots of references to C++2a in comments and identifiers;
      those can be cleaned up separately.
      24ad1215
  20. Jan 10, 2020
    • Richard Smith's avatar
      When diagnosing the lack of a viable conversion function, also list · 25195541
      Richard Smith authored
      explicit functions that are not candidates.
      
      It's not always obvious that the reason a conversion was not possible is
      because the function you wanted to call is 'explicit', so explicitly say
      if that's the case.
      
      It would be nice to rank the explicit candidates higher in the
      diagnostic if an implicit conversion sequence exists for their
      arguments, but unfortunately we can't determine that without potentially
      triggering non-immediate-context errors that we're not permitted to
      produce.
      25195541
  21. Jun 14, 2019
    • Richard Smith's avatar
      C++ DR712 and others: handle non-odr-use resulting from an lvalue-to-rvalue... · 24cdcadc
      Richard Smith authored
      C++ DR712 and others: handle non-odr-use resulting from an lvalue-to-rvalue conversion applied to a member access or similar not-quite-trivial lvalue expression.
      
      Summary:
      When a variable is named in a context where we can't directly emit a
      reference to it (because we don't know for sure that it's going to be
      defined, or it's from an enclosing function and not captured, or the
      reference might not "work" for some reason), we emit a copy of the
      variable as a global and use that for the known-to-be-read-only access.
      
      This reinstates r363295, reverted in r363352, with a fix for PR42276:
      we now produce a proper name for a non-odr-use reference to a static
      constexpr data member. The name <mangled-name>.const is used in that
      case; such names are reserved to the implementation for cases such as
      this and should demangle nicely.
      
      Reviewers: rjmccall
      
      Subscribers: jdoerfert, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D63157
      
      llvm-svn: 363428
      24cdcadc
    • Nico Weber's avatar
      Revert 363295, it caused PR42276. Also revert follow-ups 363337, 363340. · 3d02b895
      Nico Weber authored
      Revert 363340 "Remove unused SK_LValueToRValue initialization step."
      Revert 363337 "PR23833, DR2140: an lvalue-to-rvalue conversion on a glvalue of type"
      Revert 363295 "C++ DR712 and others: handle non-odr-use resulting from an lvalue-to-rvalue conversion applied to a member access or similar not-quite-trivial lvalue expression."
      
      llvm-svn: 363352
      3d02b895
  22. Jun 13, 2019
    • Richard Smith's avatar
      C++ DR712 and others: handle non-odr-use resulting from an lvalue-to-rvalue... · 17965d42
      Richard Smith authored
      C++ DR712 and others: handle non-odr-use resulting from an lvalue-to-rvalue conversion applied to a member access or similar not-quite-trivial lvalue expression.
      
      Summary:
      When a variable is named in a context where we can't directly emit a
      reference to it (because we don't know for sure that it's going to be
      defined, or it's from an enclosing function and not captured, or the
      reference might not "work" for some reason), we emit a copy of the
      variable as a global and use that for the known-to-be-read-only access.
      
      Reviewers: rjmccall
      
      Subscribers: jdoerfert, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D63157
      
      llvm-svn: 363295
      17965d42
  23. May 09, 2019
    • Richard Smith's avatar
      [c++20] Implement P0846R0: allow (ADL-only) calls to template-ids whose · b23c5e8c
      Richard Smith authored
      template name is not visible to unqualified lookup.
      
      In order to support this without a severe degradation in our ability to
      diagnose typos in template names, this change significantly restructures
      the way we handle template-id-shaped syntax for which lookup of the
      template name finds nothing.
      
      Instead of eagerly diagnosing an undeclared template name, we now form a
      placeholder template-name representing a name that is known to not find
      any templates. When the parser sees such a name, it attempts to
      disambiguate whether we have a less-than comparison or a template-id.
      Any diagnostics or typo-correction for the name are delayed until its
      point of use.
      
      The upshot should be a small improvement of our diagostic quality
      overall: we now take more syntactic context into account when trying to
      resolve an undeclared identifier on the left hand side of a '<'. In
      fact, this works well enough that the backwards-compatible portion (for
      an undeclared identifier rather than a lookup that finds functions but
      no function templates) is enabled in all language modes.
      
      llvm-svn: 360308
      b23c5e8c
  24. Apr 22, 2019
    • Bruno Ricci's avatar
      [Sema] ADL: Associated namespaces for class types and enumeration types (CWG 1691) · af3e50ad
      Bruno Ricci authored
      CWG 1691 changed the definition of the namespaces associated with a class
      type or enumeration type.
      
      For a class type, the associated namespaces are the innermost enclosing
      namespaces of the associated classes. For an enumeration type, the associated
      namespace is the innermost enclosing namespace of its declaration.
      
      This also fixes CWG 1690 and CWG 1692.
      
      Differential Revision: https://reviews.llvm.org/D60573
      
      Reviewed By: rjmccall, rsmith
      
      llvm-svn: 358882
      af3e50ad
    • Bruno Ricci's avatar
      [Sema][NFC] Add more tests for the behavior of argument-dependent name lookup · 1f30dba1
      Bruno Ricci authored
      The goal here is to exercise each rule in [basic.lookup.argdep] at least once.
      These new tests expose what I believe are 2 issues:
      
      1. CWG 1691 needs to be implemented (p2:  [...] Its associated namespaces are
         the innermost enclosing namespaces of its associated classes [...]) The
         corresponding tests are adl_class_type::X2 and adl_class_type::X5.
      
      2. The end of paragraph 2 ([...] Additionally, if the aforementioned set of
         overloaded functions is named with a template-id, its associated classes
         and namespaces also include those of its type template-arguments and its
         template template-arguments.) is not implemented. Closely related, the
         restriction on non-dependent parameter types in this same paragraph needs
         to be removed. The corresponding tests are in adl_overload_set (both issues
         are from CWG 997).
      
      Differential Revision: https://reviews.llvm.org/D60570
      
      Reviewed By: riccibruno, Quuxplusone
      
      llvm-svn: 358881
      1f30dba1
  25. Apr 18, 2019
  26. Apr 14, 2019
  27. Jun 22, 2018
    • Richard Smith's avatar
      Restore pre-r335182 behavior for naming inherited constructors as · 69bc9aa2
      Richard Smith authored
      members of dependent contexts.
      
      This permits cases where the names before and after the '::' in a
      dependent inherited constructor using-declaration do not match, but
      where we can nonetheless tell when parsing the template that a
      constructor is being named. Under (open) core language DR 2070, such
      cases will probably be ill-formed, but r335182 does not quite give
      that result and didn't intend to change this, so restore the old
      behavior for now.
      
      llvm-svn: 335381
      69bc9aa2
  28. Sep 30, 2017
  29. Sep 23, 2017
    • Richard Smith's avatar
      Correctly compute linkage for members of internal linkage classes. · cdb06f21
      Richard Smith authored
      We used to give such members no linkage instead of giving them the linkage of
      the class.
      
      llvm-svn: 314054
      cdb06f21
    • Richard Smith's avatar
      DR1113: anonymous namespaces formally give their contents internal linkage. · df963a38
      Richard Smith authored
      This doesn't affect our code generation in any material way -- we already give
      such declarations internal linkage from a codegen perspective -- but it has
      some subtle effects on code validity.
      
      We suppress the 'L' (internal linkage) marker for mangled names in anonymous
      namespaces, because it is redundant (the information is already carried by the
      namespace); this deviates from GCC's behavior if a variable or function in an
      anonymous namespace is redundantly declared 'static' (where GCC does include
      the 'L'), but GCC's behavior is incoherent because such a declaration can be
      validly declared with or without the 'static'.
      
      We still deviate from the standard in one regard here: extern "C" declarations
      in anonymous namespaces are still granted external linkage. Changing those does
      not appear to have been an intentional consequence of the standard change in
      DR1113.
      
      llvm-svn: 314037
      df963a38
  30. Sep 22, 2017
  31. Sep 20, 2017
    • Richard Smith's avatar
      Implement C++ [basic.link]p8. · 405e2dbf
      Richard Smith authored
      If a function or variable has a type with no linkage (and is not extern "C"),
      any use of it requires a definition within the same translation unit; the idea
      is that it is not possible to define the entity elsewhere, so any such use is
      necessarily an error.
      
      There is an exception, though: some types formally have no linkage but
      nonetheless can be referenced from other translation units (for example, this
      happens to anonymous structures defined within inline functions). For entities
      with those types, we suppress the diagnostic except under -pedantic.
      
      llvm-svn: 313729
      405e2dbf
  32. Sep 07, 2017
  33. Mar 10, 2017
Loading