Skip to content
  1. Dec 22, 2021
  2. Dec 20, 2021
  3. Dec 16, 2021
    • Nathan Sidwell's avatar
      [clang] p2085 out-of-class comparison operator defaulting · 5fbe21a7
      Nathan Sidwell authored
      This implements p2085, allowing out-of-class defaulting of comparison
      operators, primarily so they need not be inline, IIUC intent. this was
      mostly straigh forward, but required reimplementing
      Sema::CheckExplicitlyDefaultedComparison, as now there's a case where
      we have no a priori clue as to what class a defaulted comparison may
      be for. We have to inspect the parameter types to find out. Eg:
      
      class X { ... };
      bool operator==(X, X) = default;
      
      Thus reimplemented the parameter type checking, and added 'is this a
      friend' functionality for the above case.
      
      Reviewed By: mizvekov
      
      Differential Revision: https://reviews.llvm.org/D104478
      5fbe21a7
  4. Dec 15, 2021
  5. Dec 13, 2021
  6. Dec 09, 2021
  7. Dec 08, 2021
  8. Dec 07, 2021
    • Corentin Jabot's avatar
      Do not check if we are in a discared context in non-immediate contexts · 23343145
      Corentin Jabot authored
      This fixes in a regression introduced by 6eeda06c.
      
      When deducing the return type of nested function calls, only the
      return type of the outermost expression should be ignored.
      
      Instead of assuming all contextes nested in a discared statements
      are themselves discarded, only assume that in immediate contexts.
      
      Similarly, only consider contextes immediately in an immediate or
      discarded statement as being themselves immediate.
      23343145
  9. Dec 06, 2021
    • Aaron Ballman's avatar
      Introduce _BitInt, deprecate _ExtInt · 6c75ab5f
      Aaron Ballman authored
      WG14 adopted the _ExtInt feature from Clang for C23, but renamed the
      type to be _BitInt. This patch does the vast majority of the work to
      rename _ExtInt to _BitInt, which accounts for most of its size. The new
      type is exposed in older C modes and all C++ modes as a conforming
      extension. However, there are functional changes worth calling out:
      
      * Deprecates _ExtInt with a fix-it to help users migrate to _BitInt.
      * Updates the mangling for the type.
      * Updates the documentation and adds a release note to warn users what
      is going on.
      * Adds new diagnostics for use of _BitInt to call out when it's used as
      a Clang extension or as a pre-C23 compatibility concern.
      * Adds new tests for the new diagnostic behaviors.
      
      I want to call out the ABI break specifically. We do not believe that
      this break will cause a significant imposition for early adopters of
      the feature, and so this is being done as a full break. If it turns out
      there are critical uses where recompilation is not an option for some
      reason, we can consider using ABI tags to ease the transition.
      6c75ab5f
  10. Nov 19, 2021
  11. Nov 15, 2021
  12. Nov 13, 2021
    • Matheus Izvekov's avatar
      [clang] retain type sugar in auto / template argument deduction · 4d8fff47
      Matheus Izvekov authored
      
      
      This implements the following changes:
      * AutoType retains sugared deduced-as-type.
      * Template argument deduction machinery analyses the sugared type all the way
      down. It would previously lose the sugar on first recursion.
      * Undeduced AutoType will be properly canonicalized, including the constraint
      template arguments.
      * Remove the decltype node created from the decltype(auto) deduction.
      
      As a result, we start seeing sugared types in a lot more test cases,
      including some which showed very unfriendly `type-parameter-*-*` types.
      
      Signed-off-by: default avatarMatheus Izvekov <mizvekov@gmail.com>
      
      Reviewed By: rsmith
      
      Differential Revision: https://reviews.llvm.org/D110216
      4d8fff47
  13. Nov 12, 2021
  14. Nov 10, 2021
  15. Nov 08, 2021
  16. Nov 06, 2021
    • hyeongyukim's avatar
      [Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and turn it off by default · aacfbb95
      hyeongyukim authored
      Turning on `enable_noundef_analysis` flag allows better codegen by removing freeze instructions.
      I modified clang by renaming `enable_noundef_analysis` flag to `disable-noundef-analysis` and turning it off by default.
      
      Test updates are made as a separate patch: D108453
      
      Reviewed By: eugenis
      
      Differential Revision: https://reviews.llvm.org/D105169
      
      [Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and turn it off by default (2)
      
      This patch updates test files after D105169.
      Autogenerated test codes are changed by `utils/update_cc_test_checks.py,` and non-autogenerated test codes are changed as follows:
      
      (1) I wrote a python script that (partially) updates the tests using regex: {F18594904} The script is not perfect, but I believe it gives hints about which patterns are updated to have `noundef` attached.
      
      (2) The remaining tests are updated manually.
      
      Reviewed By: eugenis
      
      Differential Revision: https://reviews.llvm.org/D108453
      
      Resolve lit failures in clang after 8ca4b3ef's land
      
      Fix lit test failures in clang-ppc* and clang-x64-windows-msvc
      
      Fix missing failures in clang-ppc64be* and retry fixing clang-x64-windows-msvc
      
      Fix internal_clone(aarch64) inline assembly
      aacfbb95
    • Juneyoung Lee's avatar
      Revert "[Clang/Test]: Rename enable_noundef_analysis to... · 89ad2822
      Juneyoung Lee authored
      Revert "[Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and turn it off by default"
      
      This reverts commit 7584ef76.
      89ad2822
    • Juneyoung Lee's avatar
      [Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and turn it off by default · 7584ef76
      Juneyoung Lee authored
      Turning on `enable_noundef_analysis` flag allows better codegen by removing freeze instructions.
      I modified clang by renaming `enable_noundef_analysis` flag to `disable-noundef-analysis` and turning it off by default.
      
      Test updates are made as a separate patch: D108453
      
      Reviewed By: eugenis
      
      Differential Revision: https://reviews.llvm.org/D105169
      7584ef76
  17. Nov 05, 2021
  18. Nov 04, 2021
  19. Nov 03, 2021
  20. Nov 02, 2021
  21. Oct 27, 2021
  22. 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
  23. Oct 20, 2021
  24. Oct 18, 2021
  25. Oct 16, 2021
  26. 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
  27. Oct 12, 2021
Loading