libstdc++: Make std::span layout-compatible with struct iovec [PR 95609]
authorJonathan Wakely <jwakely@redhat.com>
Wed, 28 Oct 2020 12:07:40 +0000 (12:07 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Wed, 28 Oct 2020 12:07:40 +0000 (12:07 +0000)
commit0f7cd5e5735e5536bf7bc8ca2b998f7ce8b4ddee
tree0b9a3fbfdaa07c4791c439c3cd5a87f352f6105d
parent292c812a27c3a0d53b3689a9cdd0d2acfe17531b
libstdc++: Make std::span layout-compatible with struct iovec [PR 95609]

This change reorders the data members of std::span so that span<byte> is
layout-compatible with common implementations of struct iovec. This will
allow span<byte> to be used directly in places that use a struct iovec
to do scatter-gather I/O.

It's important to note that POSIX doesn't specify the order of members
in iovec. Also the equivalent type on Windows has members in the other
order, and uses type ULONG (which is always 32-bit whereas size_t is
64-bit for Win64). So this change will only help for certain targets and
an indirection between std::span and I/O system calls will still be
needed for the general case.

libstdc++-v3/ChangeLog:

PR libstdc++/95609
* include/std/span (span): Reorder data members to match common
implementations of struct iovec.
* testsuite/23_containers/span/layout_compat.cc: New test.
libstdc++-v3/include/std/span
libstdc++-v3/testsuite/23_containers/span/layout_compat.cc [new file with mode: 0644]