C++ strict aliasing when not using pointer returned by placement new

后端 未结 2 1041
我在风中等你
我在风中等你 2021-02-15 19:07

Can this potentially cause undefined behaviour?

uint8_t storage[4];

// We assume storage is properly aligned here.
int32_t* intPtr = new((void*)storage) int32_t         


        
2条回答
  •  情歌与酒
    2021-02-15 19:28

    Your version using the usual placement new is indeed fine.

    There is an interpretation1 of §§ 3.8/1 and 3.8/4 where objects of trivial types are able to ‘vanish’ and ‘appear’ on demand. This not a free pass that allows disregarding aliasing rules, so notice:

    std::uint16_t storage[2];
    static_assert( /* std::uint16_t is not a character type */ );
    static_assert( /* storage is properly aligned for our purposes */ );
    
    auto read = *reinterpret_cast(&storage);
    // At this point either we’re attempting to read the value of an
    // std::uint16_t object through an std::uint32_t glvalue, a clear
    // strict aliasing violation;
    // or we’re reading the indeterminate value of a new std::uint32_t
    // object freshly constructed in the same storage without effort
    // on our part
    

    If on the other hand you swapped the casts around in your second snippet (i.e. reinterpret and write first), you’re not entirely safe either. While under the interpretation you can justify the write to happen on a new std::uint32_t object that reuses the storage implicitly, the subsequent read is of the form

    auto value2 = *reinterpret_cast(storage);
    

    and §3.8/5 says (emphasis mine and extremely relevant):

    […] after the lifetime of an object has ended and before the storage which the object occupied is reused or released, any pointer that refers to the storage location where the object will be or was located may be used but only in limited ways. […] such a pointer refers to allocated storage (3.7.4.2), and using the pointer as if the pointer were of type void*, is well-defined.

    §3.8/6 is the same but in reference/glvalue form (arguably more relevant since we’re reusing a name and not a pointer here, but the paragraph is imo harder to understand out of context). Also see §3.8/7, which gives some limited leeway that I don’t think applies in your case.

    To make things simpler, the remaining problem is this:

    T object;
    object.~T();
    new (&object) U_thats_really_different_from_T;
    &object;                     // Is this allowed? What does it mean?
    static_cast(&object); // Is this?
    

    As it so happens if the type of the storage happens to involve a plain or unsigned character type (e.g. your storage really has type unsigned char[4]) then I’d say you have a basis to justify forming a pointer/reference to the storage of the new object (possibly to be reinterpreted later). See e.g. ¶¶ 5 and 6 again, which have an explicit escape clause for forming a pointer/reference/glvalue and §1.8 The C++ object model that describes how an object involves a constituent array of bytes. The rules governing the pointer conversions should be straightforward and uncontroversial (at least by comparison…).


    1: it’s hard to gauge how well this interpretation is received in the community — I’ve seen it on the Boost mailing list, where there was some scepticism towards it

提交回复
热议问题