Skip to content
  1. Oct 11, 2021
  2. Oct 10, 2021
    • Joe Loser's avatar
      [libc++][test] Replace a TEST_NOEXCEPT_FALSE with noexcept(false). NFC. · 65d62e52
      Joe Loser authored
      Replace `TEST_NOEXCEPT_FALSE` directly with `noexcept(false)` in
      optional hash test which is only run in C++17 or later.
      `TEST_NOEXCEPT_FALSE` is only useful in C++03 context where `noexcept`
      isn't supported by clang. `TEST_NOEXCEPT_FALSE` now only has one remaining use
      in `hash_unique_ptr.pass.cpp`.
      65d62e52
  3. Oct 09, 2021
  4. Oct 08, 2021
  5. Oct 07, 2021
    • Mark de Wever's avatar
      [libc++] Use addressof in assignment operator. · b8608b87
      Mark de Wever authored
      Replace `&__rhs` with `_VSTD::addressof(__rhs)` to guard against ADL hijacking
      of `operator&` in `operator=`. Thanks to @CaseyCarter for bringing it to our
      attention.
      
      Similar issues with hijacking `operator&` still exist, they will be
      addressed separately.
      
      Reviewed By: #libc, Quuxplusone, ldionne
      
      Differential Revision: https://reviews.llvm.org/D110852
      b8608b87
    • Mark de Wever's avatar
      [libc++][format] Adds bool formatter. · 7fb9f99f
      Mark de Wever authored
      Implements the formatter for Boolean types.
      [format.formatter.spec]/2.3
      For each charT, for each cv-unqualified arithmetic type ArithmeticT other
      than char, wchar_t, char8_t, char16_t, or char32_t, a specialization
      ```
        template<> struct formatter<ArithmeticT, charT>;
      ```
      This removes the stub implemented in D96664.
      
      Implements parts of:
      - P0645 Text Formatting
      - P1652 Printf corner cases in std::format
      
      Completes:
      - P1868 width: clarifying units of width and precision in std::format
      
      Reviewed By: #libc, ldionne
      
      Differential Revision: https://reviews.llvm.org/D103670
      7fb9f99f
    • Mark de Wever's avatar
      [libc++][format] Adds char formatter. · 49e736d8
      Mark de Wever authored
      Implements the formatter for all fundamental integer types.
      [format.formatter.spec]/2.1
      The specializations
      ```
        template<> struct formatter<char, char>;
        template<> struct formatter<char, wchar_t>;
        template<> struct formatter<wchar_t, wchar_t>;
      ```
      This removes the stub implemented in D96664.
      
      Implements parts of:
      - P0645 Text Formatting
      
      Reviewed By: #libc, ldionne
      
      Differential Revision: https://reviews.llvm.org/D103466
      49e736d8
    • Mark de Wever's avatar
      [libc++][format] Adds integer formatter. · 3e9689d7
      Mark de Wever authored
      Implements the formatter for all fundamental integer types
      (except `char`, `wchar_t`, and `bool`).
      [format.formatter.spec]/2.3
      For each charT, for each cv-unqualified arithmetic type ArithmeticT other
      than char, wchar_t, char8_t, char16_t, or char32_t, a specialization
      ```
        template<> struct formatter<ArithmeticT, charT>;
      ```
      This removes the stub implemented in D96664.
      
      As an extension it adds partial support for 128-bit integer types.
      
      Implements parts of:
      - P0645 Text Formatting
      - P1652 Printf corner cases in std::format
      
      Completes:
      - LWG-3248 #b, #B, #o, #x, and #X presentation types misformat negative numbers
      
      Reviewed By: #libc, ldionne, vitaut
      
      Differential Revision: https://reviews.llvm.org/D103433
      3e9689d7
    • Mark de Wever's avatar
      [libc++][format] Adds string formatter. · d550930a
      Mark de Wever authored
      Implements the formatter for all string types.
      [format.formatter.spec]/2.2
      For each charT, the string type specializations
      ```
        template<> struct formatter<charT*, charT>;
        template<> struct formatter<const charT*, charT>;
        template<size_t N> struct formatter<const charT[N], charT>;
        template<class traits, class Allocator>
          struct formatter<basic_string<charT, traits, Allocator>, charT>;
        template<class traits>
          struct formatter<basic_string_view<charT, traits>, charT>;
      ```
      This removes the stub implemented in D96664.
      
      Implements parts of:
      - P0645 Text Formatting
      - P1868 width: clarifying units of width and precision in std::format
      
      Reviewed By: #libc, ldionne, vitaut
      
      Differential Revision: https://reviews.llvm.org/D103425
      d550930a
  6. Oct 06, 2021
  7. Oct 05, 2021
  8. Oct 04, 2021
  9. Oct 03, 2021
  10. Oct 02, 2021
  11. Oct 01, 2021
  12. Sep 30, 2021
  13. Sep 29, 2021
    • Louis Dionne's avatar
      94075551
    • Louis Dionne's avatar
      [libc++][libc++abi] Add tests for vendor-specific properties · 9892d164
      Louis Dionne authored
      Vendors take libc++ and ship it in various ways. Some vendors might
      ship it differently from what upstream LLVM does, i.e. the install
      location might be different, some ABI properties might differ, etc.
      
      In the past few years, I've come across several instances where
      having a place to test some of these properties would have been
      incredibly useful. I also just got bitten by the lack of tests
      of that kind, so I'm adding some now.
      
      The tests added by this commit for Apple platforms have numerous
      TODOs that capture discrepancies between the upstream LLVM CMake
      and the slightly-modified build we perform internally to produce
      Apple's system libc++. In the future, the goal would be to upstream
      all those differences so that it's possible to build a faithful
      Apple system libc++ with the upstream LLVM sources only.
      
      But this isn't only useful for Apple - this lays out the path for
      any vendor being able to add their own checks (either upstream or
      downstream) to libc++.
      
      Differential Revision: https://reviews.llvm.org/D110736
      9892d164
    • Arthur O'Dwyer's avatar
      [libc++] [compare] Named comparison functions, is_eq etc. · 969359e3
      Arthur O'Dwyer authored
      Some of these were previously half-implemented in "ordering.h";
      now they're all implemented, and tested.
      Note that `constexpr` functions are implicitly `inline`, so the
      standard wording omits `inline` on these; but Louis and I agree
      that that's surprising and it's better to be explicit about it.
      
      Differential Revision: https://reviews.llvm.org/D110515
      969359e3
    • Louis Dionne's avatar
      [libc++] Move libc++ specific tests to `libcxx/test/libcxx` · cbd92b1f
      Louis Dionne authored
      This is consistent with what we've been doing forever.
      cbd92b1f
  14. Sep 28, 2021
    • Louis Dionne's avatar
      [libc++] Simplify std::ranges::subrange · 86df5a2f
      Louis Dionne authored
      Instead of using a base class to store the members and the optional
      size, use [[no_unique_address]] to achieve the same thing without
      needing a base class.
      
      Also, as a fly-by:
      - Change subrange from struct to class (per the standard)
      - Improve the diagnostic for when one doesn't provide a size to the ctor of a sized subrange
      - Replace this->member by just member since it's not in a dependent base anymore
      
      This change would be an ABI break due to [[no_unique_address]], but we
      haven't shipped ranges anywhere yet, so this shouldn't affect anyone.
      
      Differential Revision: https://reviews.llvm.org/D110370
      86df5a2f
    • Louis Dionne's avatar
      [libc++] Clarify the name of Lit features related to standard library selection · d486c5b1
      Louis Dionne authored
      Before this patch, we had features named 'libc++', 'libstdc++' and
      'msvc' to describe the three implementations that use our test suite.
      This patch renames them to 'stdlib=libc++', 'stdlib=libstdc++', etc
      to avoid confusion between MSVC's STL and the MSVC compiler (or Clang
      in MSVC mode).
      
      Furthermore, this prepares the terrain for adding support for additional
      "implementations" to the test suite. Basically, I'd like to be able to
      treat Apple's libc++ differently from LLVM's libc++ for the purpose of
      testing, because those effectively behave in different ways in some aspects.
      d486c5b1
  15. Sep 27, 2021
  16. Sep 24, 2021
  17. Sep 23, 2021
    • Kent Ross's avatar
      [libc++][spaceship] Implement std::pair::operator<=> · f4abdb0c
      Kent Ross authored
      Implements parts of P1614, including synth-three-way and three way comparison for std::pair.
      
      Reviewed By: #libc, Quuxplusone, Mordante
      
      Differential Revision: https://reviews.llvm.org/D107721
      f4abdb0c
    • Arthur O'Dwyer's avatar
      [libc++] Fix __wrap_iter to be a proper contiguous iterator. · 85d4e29f
      Arthur O'Dwyer authored
      Instead of overloading `__to_address`, let's specialize `pointer_traits`.
      Function overloads need to be in scope at the point where they're called,
      whereas template specializations do not. (User code can provide pointer_traits
      specializations to be used by already-included library code, so obviously
      `__wrap_iter` can do the same.)
      
      `pointer_traits<__wrap_iter<It>>` cannot provide `pointer_to`, because
      you generally cannot create a `__wrap_iter` without also knowing the
      identity of the container into which you're trying to create an iterator.
      I believe this is OK; contiguous iterators are required to provide
      `to_address` but *not* necessarily `pointer_to`.
      
      Differential Revision: https://reviews.llvm.org/D110198
      85d4e29f
  18. Sep 22, 2021
Loading