Which type trait would indicate that type is memcpy assignable? (tuple, pair)

后端 未结 3 1268
遥遥无期
遥遥无期 2021-02-08 09:57

I would like to know what type introspection I can do to detect types that assignable by simply raw memory copy?

For example, as far I understand, built-in types tuples

相关标签:
3条回答
  • 2021-02-08 10:35

    This is only a partial answer to your question:

    Type traits don't necessarily mean what their name says literally.

    Specifically, let's take std::is_trivially_copyable. You were - rightly - surprised that a tuple of two double's is not trivially copyable. How could that be?!

    Well, the trait definition says:

    If T is a TriviallyCopyable type, provides the member constant value equal true. For any other type, value is false.

    and the TriviallyCopyable concept has the following requirement in its definition:

    • Every copy constructor is trivial or deleted
    • Every move constructor is trivial or deleted
    • Every copy assignment operator is trivial or deleted
    • Every move assignment operator is trivial or deleted
    • At least one copy constructor, move constructor, copy assignment operator, or move assignment operator is non-deleted
    • Trivial non-deleted destructor

    Not quite what you would expect, right?

    With all in mind, it's not necessarily the case that any of the standard library traits would combine to fit the exact requirements of "constructible by memcpy()'ing".

    0 讨论(0)
  • 2021-02-08 10:50

    The correct test is in fact std::is_trivially_copyable, which allows use of memcpy for both making a new object and modifying an existing one.

    Although you may be surprised that these return false for types where your intuition tells you that memcpy ought to be ok, they are not lying; the Standard indeed makes memcpy undefined behavior in these cases.


    In the particular case of std::pair, we can get some insight into what goes wrong:

    int main()
    {
        typedef std::pair<double,double> P;
        std::cout << "\nTC:  " << std::is_trivially_copyable<P>::value;
        std::cout << "\nTCC: " << std::is_trivially_copy_constructible<P>::value;
        std::cout << "\nTCv: " << std::is_trivially_constructible<P, const P&>::value;
        std::cout << "\n CC: " << std::is_copy_constructible<P>::value;
        std::cout << "\n MC: " << std::is_move_constructible<P>::value;
        std::cout << "\nTCA: " << std::is_trivially_copy_assignable<P>::value;
        std::cout << "\nTCvA:" << std::is_trivially_assignable<P, const P&>::value;
        std::cout << "\n CA: " << std::is_copy_assignable<P>::value;
        std::cout << "\n MA: " << std::is_move_assignable<P>::value;
        std::cout << "\nTD:  " << std::is_trivially_destructible<P>::value;
    }
    

    TC: 0 TCC: 1 TCv: 1 CC: 1 MC: 1 TCA: 0 TCvA:0 CA: 1 MA: 1 TD: 1

    Evidently it isn't trivially copy assignable.1

    The pair assignment operator is user-defined, so not trivial.


    1I think that clang, gcc, and msvc are all wrong here, actually, but if it satisfied std::_is_trivially_copy_assignable it wouldn't help, because TriviallyCopyable requires that the copy constructor, if not deleted, is trivial, and not the TriviallyCopyAssignable trait. Yeah, they're different.

    A copy/move assignment operator for class X is trivial if it is not user-provided and...

    vs

    is_assignable_v<T, const T&> is true and the assignment, as defined by is_assignable, is known to call no operation that is not trivial.

    The operations called by pair<double, double>'s copy assignment operator are the assignments of individual doubles, which are trivial.

    Unfortunately, the definition of trivially copyable relies on the first, which pair fails.

    A trivially copyable class is a class:

    • where each copy constructor, move constructor, copy assignment operator, and move assignment operator is either deleted or trivial,
    • that has at least one non-deleted copy constructor, move constructor, copy assignment operator, or move assignment operator, and
    • that has a trivial, non-deleted destructor.
    0 讨论(0)
  • 2021-02-08 11:00

    To try and answer your question: std::memcpy() does not have any direct requirements but it does have these stipulations:

    • Copies count bytes from the object pointed to by src to the object pointed to by dest. Both objects are reinterpreted as arrays of unsigned char.
    • If the objects overlap, the behavior is undefined.
    • If either dest or src is a null pointer, the behavior is undefined, even if count is zero.
    • If the objects are not TriviallyCopyable, the behavior of memcpy is not specified and may be undefined.

    Now to have the qualifications that an object is Trivially Copyable the following conditions or requirements must be met:

    • Every copy constructor is trivial or deleted
    • Every move constructor is trivial or deleted
    • Every copy assignment operator is trivial or deleted
    • Every move assignment operator is trivial or deleted
    • at least one copy constructor, move constructor, copy assignment operator, or move assignment operator is non-deleted
    • Trivial non-deleted destructor

    This implies that the class has no virtual functions or virtual base classes.

    Scalar types and arrays of TriviallyCopyable objects are TriviallyCopyable as well, as well as the const-qualified (but not volatile-qualified) versions of such types.


    Which leads us to std::is_trivially_copyable

    If T is a TriviallyCopyable type, provides the member constant value equal true. For any other type, value is false.

    The only trivially copyable types are scalar types, trivially copyable classes, and arrays of such types/classes (possibly const-qualified, but not volatile-qualified).

    The behavior is undefined if std::remove_all_extents_t is an incomplete type and not (possibly cv-qualified) void.

    with this nice feature since c++17:

    Helper variable template

    template< class T >
    
    inline constexpr bool is_trivially_copyable_v = is_trivially_copyable<T>::value; 
    

    And you would like to try and use a type_trait to use std::tuple<> with std::memcpy().

    But we need to ask ourselves if std::tuple is Trivially Copyable and why?

    We can see the answer to that here: Stack-Q/A: std::tuple Trivially Copyable? and according to that answer; it is not because the standard does not require the copy/move assignment operators to be trivial.


    So the answer that I would think that is valid would be this: No std::tuple is not Trivially Copyable but std::memcpy() doesn't require it to be but only states that if it isn't; it is UB. So can you use std::tuple with std::memcpy? I think so, but is it safe? That can vary and can produce UB.

    So what can we do from here? Take a risk? Maybe. I found something else that is related but have not found anything out about it regarding if it is Trivially Copyable. It is not a type_trait, but it is something that might be able to be used in conjunction with std::tuple & std::memcpy and that is std::tuple_element. You might be able to use this to do the memcpy, but I'm not fully sure about it. I have searched to find out more about std::tuple_element to see if it is Trivially Copyable but haven't found much so all I can do is a test to see what Visual Studio 2017 says:

    template<class... Args>
    struct type_list {
        template<std::size_t N>
        using type = typename std::tuple_element<N, std::tuple<Args...>>::type;
    };
    
    int main() {
        std::cout << std::boolalpha;
        std::cout << std::is_trivially_copyable<type_list<int, float, float>>::value << '\n';
        std::cout << std::is_trivially_copyable<std::tuple<int, float, float>>::value << '\n';
    
        _getch(); // used to stop visual studio debugger from closing.
        return 0;
    }
    

    Output:

    true
    false
    

    So it appears if we wrap std::tuple_element in a struct it is Trivially Copyable. Now the question is how do you integrate this with your std::tuple data sets to use them with std::memcpy() to be type safe. Not sure if we can since std::tuple_element will return the types of the elements within a tuple.

    If we even tried to wrap a tuple in a struct as such:

    template<class... Args>
    struct wrapper {
        std::tuple<Args...> t;
    };
    

    And we can check it by:

    {
        std::cout << std::is_trivially_copyable< wrapper<int, float, float> >::value << std::endl;
    }
    

    It is still false. However we have seen were std::tuple was already used in the first struct and the struct returned true. This may be of some help to you, to ensure you can safely use std::memcpy, but I can not guarantee it. It is just that the compiler seems to agree with it. So this might be the closest thing to a type_trait that might work.


    NOTE: - All the references about memcpy, Trivially Copyable concepts, is_trivially_copyable, std::tuple & std::tuple_element were taken from cppreference and their relevant pages.

    0 讨论(0)
提交回复
热议问题