Details
- Reviewers
jfb EricWF mclow.lists • Quuxplusone ldionne - Group Reviewers
Restricted Project - Commits
- rGb1fb3d75c953: [libc++] Implement C++20's P0476R2: std::bit_cast
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
LGTM other than the lack of tests.
We should also figure out what GCC's plan is here, so we can implement a GCC version in future.
libcxx/include/bit | ||
---|---|---|
230 | We should probably mark this nodiscard. | |
235 | Gosh. __builtin_bit_cast is a weird builtin -- taking a type as the first parameter. | |
237 | #endif // !defined(_LIBCPP_HAS_NO_BUILTIN_BIT_CAST) | |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.fail.cpp | ||
58 ↗ | (On Diff #249494) | Are these errors emitted inside <bit>? If so, we should specify that here. |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
25 | What's the fun stuff? |
libcxx/include/bit | ||
---|---|---|
230 | Marked it with _LIBCPP_NODISCARD_EXT, which we use for nodiscard-as-an-extension. | |
232 | Question: the spec has these as Constraints: -- I think it means these should be used to SFINAE out, not hard-error -- right? | |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
25 | Writing the tests. | |
154 | @erik.pilkington Any idea why those don't work inside constexpr? | |
158 | @jfb Can you think of other interesting values to test? | |
197 | @erik.pilkington All the tests for long double are failing (at runtime) -- any idea why? Did you implement support for long double in __builtin_bit_cast? |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
---|---|---|
154 | Its hitting the isInt() check here: https://github.com/llvm/llvm-project/blob/master/clang/lib/AST/ExprConstant.cpp#L11102. Seems like constexpr __builtin_memcmp was only implemented for integers. | |
197 | Eek, it looks like this is asserting at compile time too. Let me take a closer look. |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
---|---|---|
165 | Signaling NaN, and NaNs with payloads. Check this out: https://babbage.cs.qc.cuny.edu/IEEE-754/index.xhtml | |
195 | Some of these won't work on all platforms. You'll need to selectively disable some for platforms that don't have IEEE-754 with the expected sizes. |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
---|---|---|
197 | I put a patch up to fix this here: https://reviews.llvm.org/D76323 |
libcxx/include/bit | ||
---|---|---|
232 | Correct. From [structure.specifications] 3.1:
|
This approach may be frowned upon because std::bit_cast is implemented with __builtin_bit_cast but, I think you could actually use __builtin_bit_cast to write the comparison function you want for the tests:
template<class T> struct Buff { char buff[sizeof(T)]; }; template<class T> constexpr bool cmp(const T &a, const T &b) { auto c1 = __builtin_bit_cast(Buff<T>, a); auto c2 = __builtin_bit_cast(Buff<T>, b); for (unsigned i = 0; i < sizeof(T); ++i) { if (c1.buff[i] != c2.buff[i]) return false; } return true; }
libcxx/test/std/numerics/bit/bit.cast/bit_cast.fail.cpp | ||
---|---|---|
31 ↗ | (On Diff #250245) | Maybe a deleted copy constructor? |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
44 | So, in non-constexpr, the only thing you're testing here is that you can cast a pointer to its current type? |
Rebase onto main and update tests + implementation.
The tests are still not passing, and I have to verify whether it's a Clang
bug or whether the tests are wrong.
libcxx/test/std/numerics/bit/bit.cast/bit_cast.fail.cpp | ||
---|---|---|
31 ↗ | (On Diff #250245) | I think that's covered by the test for a type that isn't trivially copyable. If a type is not copyable, then it is not trivially copyable. |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
44 | I don't understand. In constexpr mode, the only thing being tested is that the roundtrip from T back to T (through std::bit_cast) works as expected. I'm only unable to test the intermediate results (the char arrays). However, as of rebasing this patch, it appears that none of it works anymore. So I don't have a way to test bit_cast inside constexpr. | |
195 | I'll see what CI complains about! |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
---|---|---|
44 | This comment was referring to the old patch where there was an is_constant_evaluated condition in the test_buffer_roundtrip function. | |
209 | I assume this means you're against using __builtin_bit_cast to test std::bit_cast? Fair enough. |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
---|---|---|
209 | Yes, because std::bit_cast is implemented as a single call to __builtin_bit_cast. I feel like what we're actually testing here is in fact __builtin_bit_cast directly, not just std::bit_cast. |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
---|---|---|
154 | Nit: you should probably use long long instead of long so that this test doesn't break on LLP64 data model (Windows). You might use uint64_t as well. |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
---|---|---|
50 | Not sure if this adds much value, but can't you additionally test assert(from == middle.x);? |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
---|---|---|
209 | Fair enough. Ideally, Clang's tests would be sufficient, but I see where you're coming from. I think that makes sense. Would it make it better if the call to __builtin_bit_cast always casted it to a char array and compared the bytes? That would basically be re-implementing memcmp. If we can verify that the cast to char array always works, then we can use that to test other things, maybe. |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
---|---|---|
209 | Here's a Godbolt. I think the issue is just when you try to compare different pointer types with __builtin_memcmp. I guess the earlier approach where you turned off certain asserts in constexpr mode actually makes sense. |
Re [[nodiscard]]: hooray!
D99895 provides a Test Ready to Eat for the nodiscardness of bit_cast; once it's landed, you should be able to just rebase, uncomment that test, and add bit_cast to the appropriate list in UsingLibcxx.rst.
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
---|---|---|
50 | Since I'm already testing memcmp, I feel like adding an equality test is not super useful. If the bytes are the same, they have to compare equal. |
Rebase onto main. Tests are still going to fail because Clang's __builtin_bit_cast still seems to have issues (I'll try to investigate those in the next week).
LGTM % comments, FWIW.
libcxx/include/CMakeLists.txt | ||
---|---|---|
96–98 | Nit: / < _ < a according to ASCII. | |
libcxx/include/__bit/bit_cast.h | ||
30 | Please _LIBCPP_NODISCARD_EXT, and uncomment the existing test in libcxx/test/libcxx/diagnostics/nodiscard_extensions.pass.cpp which was added by D99895. Please also add bit_cast to the list in libcxx/docs/UsingLibcxx.rst. Please also git grep bit_cast libcxx/ and see if there are any more things waiting to be uncommented by this patch. | |
32 | Surely this should be guarded by __has_builtin(__builtin_bit_cast). Or is the rationale that we don't need to guard it, because we have no fallback implementation, and so "you get a weird compiler error" is already the best-case outcome on compilers that don't support it? Notice that because _ToType is a type, not a value, you'll get a parse error very eagerly as soon as <bit> is included; it's not merely that you'll get an error when you try to call bit_cast. It looks like the builtin is supported on Clang 9+ and GCC 11+; it's unsupported on Clang 8- and GCC 10-. | |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.compile.pass.cpp | ||
37 | Consider adding things like static_assert(!bit_cast_is_valid<char[2], From>); // makes bit_cast's return type invalid static_assert(!bit_cast_is_valid<int(), From>); // duh, but might as well check static_assert(bit_cast_is_valid<From, From>); // OK, right? static_assert(!bit_cast_is_valid<From&, From>); // Not OK??? I'm not sure about the last one. Obviously real production code should use reinterpret_cast, not bit_cast, for such an operation; but I don't know if bit_cast is supposed to accept it or not. | |
50 | From() { } is superfluous, right? Remove. | |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
95 | Here you're missing signed char, and below you're missing unsigned char. Also all the charN_t types, not that I'm asking for those. | |
110 | I'm sure there must be supported platforms where long and double are different sizes. (If Linux isn't one, then Windows is probably one; and vice versa.) |
Fix the tests (thanks Arthur)!
libcxx/include/CMakeLists.txt | ||
---|---|---|
96–98 | This is weird indeed, but I'm using VS Code's line sorting functionality. Will leave as-is since otherwise we'll just re-order stuff all the time because we use different sorts. | |
libcxx/include/__bit/bit_cast.h | ||
29 | We generally use enable_if for Constraints: in the Standard, so I think I'd stick with that unless there is a benefit in using concepts here. |
LGTM, just some nitpicky irrelevancies. :) If you're happy with the (lack of) constexpr tests, I say ship it already.
libcxx/docs/UsingLibcxx.rst | ||
---|---|---|
305 | I put this down between as_const and forward, which is a-z among the whatever-paper-that-was casting operators, instead of up here with the STL algorithms. bit_cast is not an STL algorithm. | |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
39 | I'd checked from,middle and middle,to, in which case transitivity gets us from,to. | |
40 | By definition, sizeof(Buffer) equals sizeof(T), or else bit_cast would not compile... right? | |
254 | I guess I meant to try to constexpr-ify tests() but never succeeded. The problems were (I think) with std::nanl and std::memcmp. I think it would be fine to ship this with only the basic_constexpr_test; although you might also try putting the memcmps under if (!std::is_constant_evaluated()) and splitting out the floating-point nan tests into a non-constexpr special test. |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
---|---|---|
254 | nan will be constexpr if you do bool my_is_nan(double value) { return value != value; }. |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
---|---|---|
254 | As Arthur says, the issue here is really to get a NaN value in constexpr context, which I don't know how to do. The other issue, which is more fundamental, is that we can't use std::memcmp in a constexpr context. And we can't use __builtin_memcmp, because although it *is* constexpr, it can't be used to compare different types, and we can't reinterpret_cast in a constexpr context. |
libcxx/test/std/numerics/bit/bit.cast/bit_cast.pass.cpp | ||
---|---|---|
254 | Somewhat circular, but you can define a constexpr-evaluable memcmp in terms of bit_cast. :) From my perspective, the lack of memcmp isn't so fundamental, because we can just if out those tests when it's constexpr time. The more awkward programming problem is lines 220-225, where we need to generate an array with a couple different NaNs if it's non-constexpr, but somehow omit generating those array elements when it's constexpr time. |
This should now become 14.