Skip to content
  1. Oct 11, 2021
  2. Oct 10, 2021
  3. Oct 09, 2021
  4. Oct 08, 2021
  5. Oct 07, 2021
    • Louis Dionne's avatar
      [libc++] Remove the CI job for Apple/System/Noexceptions · 1262f8a6
      Louis Dionne authored
      When we recently started using DYLD_LIBRARY_PATH to run the test suite
      on the Apple/System configuration of the library, the -fno-exceptions
      variant started failing.
      
      It started failing because under that configuration, libc++abi.dylib
      doesn't provide support for exceptions. For example, it doesn't provide
      some symbols such as ___gxx_personality_v0. Now, the problem is that
      when the test suite is run with DYLD_LIBRARY_PATH, /usr/lib/libobjc.dylib
      uses the just-built libc++abi.dylib, which doesn't support exceptions,
      and we end up with an unresolved reference to ___gxx_personality_v0.
      
      Previously, using -Wl,-rpath,path/to/lib, we would be loading both
      /usr/lib/libc++abi.dylib and <just-built>/lib/libc++abi.dylib.
      /usr/lib/libobjc.dylib would use the system libc++abi.dylib, which
      contains support for exceptions, and the tests would be using the
      just-built one, which doesn't.
      
      Disentangling that led me to believe that we shouldn't try to test this
      configuration where libc++/libc++abi are built as system libraries, but
      where they don't support exceptions, since that just doesn't make any
      sense. Doing so is like trying to build libc++/libc++abi and test it as
      a system library after performing an ABI break -- of course nothing is
      going to work.
      
      For that reason, I am removing this configuration. Note that we could
      still test the library on macOS without exceptions if we wanted, only
      we wouldn't be building it as a system library. This patch doesn't add
      that because we already have a -fno-exceptions CI job on Linux.
      
      Differential Revision: https://reviews.llvm.org/D111349
      1262f8a6
    • Louis Dionne's avatar
      c07b80ca
    • Louis Dionne's avatar
      [runtimes] Add tests for vendor-specific properties · f6a74908
      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++.
      
      This is a re-application of 9892d164, which was reverted in 138dc271
      because it broke the build. The issue was that we didn't apply the required
      changes to libunwind and our CI didn't notice it because we were not
      running the libunwind tests. This has been fixed now, and we're running
      the libunwind tests in CI now too.
      
      Differential Revision: https://reviews.llvm.org/D110736
      f6a74908
    • 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
      [libcxx[ Run generate_private_header_tests.py · b25f6188
      Mark de Wever authored
      The script was recently updated to generate different output. This
      breaks the CI due the patches which used the old version of the script.
      b25f6188
    • 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
    • David Spickett's avatar
      [libcxx][pretty printers] Correct tests run detection · 7ee133d3
      David Spickett authored
      Missing "global" meant that we set a local "has_run_tests"
      so the global was False by the time everything has run.
      7ee133d3
    • David Spickett's avatar
      [libcxx][pretty printers] Report not being able to trace test program · 88f08899
      David Spickett authored
      If you don't have ptrace permissions this test will fail to run
      silently, this adds a check for that and anything else that
      might do similar things.
      
      The output will now be:
      ```
      FAILED test program did not run correctly, check gdb warnings
      
      /usr/bin/gdb: warning: Couldn't determine a path for the index cache
      directory.
      No symbol table is loaded.  Use the "file" command.
      warning: Error disabling address space randomization: Operation not
      permitted
      warning: Could not trace the inferior process.
      warning: ptrace: Operation not permitted
      
      error: command failed with exit status: 255
      ```
      
      We already have a feature to check for a compatible python enabled
      gdb, so I think it's reasonable to check for this at test runtime.
      
      Note that this is different to the catch all at the end of the test
      script. That would be a case where you can trace but something else
      made it stop mid way that wasn't our test breakpoints.
      
      Reviewed By: saugustine
      
      Differential Revision: https://reviews.llvm.org/D110936
      88f08899
    • David Spickett's avatar
      [libcxx][pretty printers] Correct locale for u16/u32 string tests · 17608d34
      David Spickett authored
      When the locale is not some UTF-8 these tests fail.
      (different results for python2 linked gdbs vs. python3
      but same issue)
      
      Setting the locale just for the test works around this.
      By default Ubuntu comes with just C.UTF-8. I've chosen
      to use en_US.UTF-8 instead given that my Mac doesn't have
      the former and there's a slim chance this test might run there.
      
      This also enables the u16string tests which are now passing.
      
      Reviewed By: #libc, ldionne, saugustine
      
      Differential Revision: https://reviews.llvm.org/D111138
      17608d34
    • David Spickett's avatar
      [libcxx][CI] Install all locales used by the test suite · da593765
      David Spickett authored
      Reviewed By: #libc, ldionne
      
      Differential Revision: https://reviews.llvm.org/D111235
      da593765
  6. Oct 06, 2021
    • Arthur O'Dwyer's avatar
      [libc++] [test] s/ContiguousView/MoveOnlyView/g. NFCI. · 610ac8db
      Arthur O'Dwyer authored
      The unique (ha!) thing about this range type is that it's move-only.
      Its contiguity is unsurprising (most of our test ranges are contiguous).
      Discussed in D111231 but committed separately for clarity.
      610ac8db
    • Arthur O'Dwyer's avatar
      [libc++] [test] Change a lot of free begin/end pairs to members. NFCI. · 3666dd79
      Arthur O'Dwyer authored
      If you have a `begin() const` member, you don't need a `begin()` member
      unless you want it to do something different (e.g. have a different return
      type). So in general, //view// types don't need `begin()` non-const members.
      
      Also, static_assert some things about the types in "types.h", so that we
      don't accidentally break those properties under refactoring.
      
      Differential Revision: https://reviews.llvm.org/D111231
      3666dd79
    • Louis Dionne's avatar
      [libc++] Use init_priority(100) when possible · 7c49052b
      Louis Dionne authored
      Priorities below 101 are reserved for the implementation, so that's what
      we should be using here. That is unfortunately only supported on more
      recent versions of Clang. See https://reviews.llvm.org/D31413 for details.
      
      Differential Revision: https://reviews.llvm.org/D95972
      7c49052b
    • Louis Dionne's avatar
      [libc++] Simplify writing testing config files · 19a3e248
      Louis Dionne authored
      Reduce code duplication by sharing most of the test suite setup across
      the different from-scratch configs.
      
      Differential Revision: https://reviews.llvm.org/D111196
      19a3e248
    • Joe Loser's avatar
      [libc++] Implement P1391 for string_view · 4be7f489
      Joe Loser authored
      Implement P1391 (https://wg21.link/p1391) which allows
      `std::string_view` to be constructible from any contiguous range of
      characters.
      
      Note that a different paper (http://wg21.link/P1989) handles the generic
      range constructor for `std::string_view`.
      
      Reviewed By: ldionne, Quuxplusone, Mordante, #libc
      
      Differential Revision: https://reviews.llvm.org/D110718
      4be7f489
    • Louis Dionne's avatar
      [runtimes][ci] Run the tests for libunwind in the CI · 60fe1f59
      Louis Dionne authored
      We should arguably have always been doing that. The state of libunwind
      is quite sad, so this commit adds several XFAILs to make the CI pass.
      We need to investigate why so many tests are not passing in some
      configurations, but I'll defer that to folks who actually work on
      libunwind for lack of bandwidth.
      
      Differential Revision: https://reviews.llvm.org/D110872
      60fe1f59
    • Louis Dionne's avatar
      [libc++] Refactor how basic_string and vector hoist exception-throwing functions · 84b0b52b
      Louis Dionne authored
      In basic_string and vector, we've been encapsulating all exception
      throwing code paths in helper functions of a base class, which are defined
      in the compiled library. For example, __vector_base_common defines two
      methods, __throw_length_error() and __throw_out_of_range(), and the class
      is externally instantiated in the library. This was done a long time ago,
      but after investigating, I believe the goal of the current design was to:
      
      1. Encapsulate the code to throw an exception (which is non-trivial) in
         an externally-defined function so that the important code paths that
         call it (e.g. vector::at) are free from that code. Basically, the
         intent is for the "hot" code path to contain a single conditional jump
         (based on checking the error condition) to an externally-defined function,
         which handles all the exception-throwing business.
      
      2. Avoid defining this exception-throwing function once per instantiation
         of the class template. In other words, we want a single copy of
         __throw_length_error even if we have vector<int>, vector<char>, etc.
      
      3. Encapsulate the passing of the container-specific string (i.e. "vector"
         and "basic_string") to the underlying exception-throwing function
         so that object files don't contain those duplicated string literals.
         For example, we'd like to have a single "vector" string literal for
         passing to `std::__throw_length_error` in the library, instead of
         having one per translation unit.
      
      However, the way this is achieved right now has two problems:
      
      - Using a base class and exporting it is really weird - I've been confused
        about this ever since I first saw it. It's just a really unusual way of
        achieving the above goals. Also, it's made even worse by the fact that
        the definitions of __throw_length_error and __throw_out_of_range appear
        in the headers despite always being intended to be defined in the compiled
        library (via the extern template instantiation).
      
      - We end up exporting those functions as weak symbols, which isn't great
        for load times. Instead, it would be better to export those as strong
        symbols from the library.
      
      This patch fixes those issues while retaining ABI compatibility (e.g. we
      still export the exact same symbols as before). Note that we need to
      keep the base classes as-is to avoid breaking the ABI of someone who
      might inherit from std::basic_string or std::vector.
      
      Differential Revision: https://reviews.llvm.org/D111173
      84b0b52b
    • Louis Dionne's avatar
      [libc++] Pickle substitutions to pass them to dsl.sh.py · d51f57c2
      Louis Dionne authored
      This is less brittle than hand-picking the substitutions that we
      pass to the test, since a config could theorically use non-base
      substitutions as well (such as defining %{flags} in terms of another
      substitution like %{include}).
      
      Also, print the decoded substitutions, which makes it much easier
      to debug the test when it fails.
      
      Differential Revision: https://reviews.llvm.org/D111179
      d51f57c2
    • Louis Dionne's avatar
      [runtimes] Allow FOO_TEST_CONFIG to be a relative path · 54a8a0d0
      Louis Dionne authored
      That makes it possible to store that value in a CMake cache if needed.
      
      Differential Revision: https://reviews.llvm.org/D110843
      54a8a0d0
  7. Oct 05, 2021
Loading