Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/utility/launder"

From cppreference.com
< cpp‎ | utility
(Notes: +base class subobject case)
(Expand the possible problematic description.)
 
(31 intermediate revisions by 12 users not shown)
Line 1: Line 1:
 
{{cpp/title|launder}}
 
{{cpp/title|launder}}
{{cpp/utility/navbar}}
+
{{cpp/memory/new/navbar}}
 
{{dcl begin}}
 
{{dcl begin}}
{{dcl header | new}}
+
{{dcl header|new}}
{{dcl rev multi|since1=c++17 |dcl1=
+
{{dcl|since=c++17|
template <class T>
+
template< class T >
constexpr T* launder(T* p) noexcept;
+
constexpr T* launder( T* p ) noexcept;
|since2=c++20|dcl2=
+
template <class T>
+
[[nodiscard]] constexpr T* launder(T* p) noexcept;
+
 
}}
 
}}
 
{{dcl end}}
 
{{dcl end}}
  
Obtains a pointer to the object located at the address represented by {{tt|p}}.  
+
Devirtualization fence with respect to {{c|p}}. Returns a pointer to an object at the same address that {{c|p}} represents, while the object can be a new base class subobject whose most derived class is different from that of the original {{c|*p}} object.
  
 
Formally, given
 
Formally, given
* the pointer {{tt|p}} represents the address {{tt|A}} of a byte in memory
+
* the pointer {{c|p}} represents the address {{tt|A}} of a byte in memory
* an object {{tt|X}} is located at the address {{tt|A}}
+
* an object {{c|x}} is located at the address {{tt|A}}
* {{tt|X}} is within its [[cpp/language/lifetime|lifetime]]
+
* {{c|x}} is within its [[cpp/language/lifetime|lifetime]]
* the type of {{tt|X}} is the same as {{tt|T}}, ignoring cv-qualifiers at every level
+
* the type of {{c|x}} is the same as {{tt|T}}, ignoring cv-qualifiers at every level
* every byte that would be reachable through the result is reachable through p (bytes are reachable through a pointer that points to an object {{tt|Y}} if those bytes are within the storage of an object {{tt|Z}} that is [[cpp/language/static_cast#pointer-interconvertible|pointer-interconvertible]] with {{tt|Y}}, or within the immediately enclosing array of which {{tt|Z}} is an element)
+
* every byte that would be reachable through the result is reachable through p (bytes are reachable through a pointer that points to an object {{c|y}} if those bytes are within the storage of an object {{c|z}} that is [[cpp/language/static_cast#pointer-interconvertible|pointer-interconvertible]] with {{c|y}}, or within the immediately enclosing array of which {{c|z}} is an element).
  
Then {{tt|std::launder(p)}} returns a value of type {{tt|T*}} that points to the object {{tt|X}}. Otherwise, the behavior is undefined.
+
Then {{c|std::launder(p)}} returns a value of type {{tt|T*}} that points to the object {{c|x}}. Otherwise, the behavior is undefined.
  
The program is ill-formed if {{tt|T}} is a function type or (possibly cv-qualified) {{tt|void}}.
+
The program is ill-formed if {{tt|T}} is a function type or (possibly cv-qualified) {{c/core|void}}.
  
{{tt|std::launder}} may be used in a [[cpp/language/constant expression|core constant expression]] if the value of its argument may be used in a core constant expression
+
{{tt|std::launder}} may be used in a [[cpp/language/constant expression|core constant expression]] if and only if the (converted) value of its argument may be used in place of the function invocation. In other words, {{tt|std::launder}} does not relax restrictions in constant evaluation.
  
 
===Notes===
 
===Notes===
 +
{{tt|std::launder}} has no effect on its argument. Its return value must be used to access the object. Thus, it's always an error to discard the return value.
 +
 
Typical uses of {{tt|std::launder}} include:
 
Typical uses of {{tt|std::launder}} include:
* Obtaining a pointer to an object created in the storage of an existing object of the same type, where pointers to the old object cannot be [[cpp/language/lifetime#Storage_reuse|reused]] becasue the object has {{tt|const}} or reference data members, or because either object is a base class subobject;
+
* Obtaining a pointer to an object created in the storage of an existing object of the same type, where pointers to the old object cannot be [[cpp/language/lifetime#Storage_reuse|reused]] (for instance, because either object is a base class subobject);
 
* Obtaining a pointer to an object created by placement {{tt|new}} from a pointer to an object providing storage for that object.
 
* Obtaining a pointer to an object created by placement {{tt|new}} from a pointer to an object providing storage for that object.
 +
 +
The ''reachability'' restriction ensures that {{tt|std::launder}} cannot be used to access bytes not accessible through the original pointer, thereby interfering with the compiler's escape analysis.
 +
 +
{{source|1=
 +
int x[10];
 +
auto p = std::launder(reinterpret_cast<int(*)[10]>(&x[0])); // OK
 +
 +
int x2[2][10];
 +
auto p2 = std::launder(reinterpret_cast<int(*)[10]>(&x2[0][0]));
 +
// Undefined behavior: x2[1] would be reachable through the resulting pointer to x2[0]
 +
// but is not reachable from the source
 +
 
 +
struct X { int a[10]; } x3, x4[2]; // standard layout; assume no padding
 +
auto p3 = std::launder(reinterpret_cast<int(*)[10]>(&x3.a[0])); // OK
 +
auto p4 = std::launder(reinterpret_cast<int(*)[10]>(&x4[0].a[0]));
 +
// Undefined behavior: x4[1] would be reachable through the resulting pointer to x4[0].a
 +
// (which is pointer-interconvertible with x4[0]) but is not reachable from the source
 +
 +
struct Y { int a[10]; double y; } x5;
 +
auto p5 = std::launder(reinterpret_cast<int(*)[10]>(&x5.a[0]));
 +
// Undefined behavior: x5.y would be reachable through the resulting pointer to x5.a
 +
// but is not reachable from the source
 +
}}
  
 
===Example===
 
===Example===
 
{{example
 
{{example
|
+
|code=
| code=
+
#include <cassert>
#include <new>
+
 
#include <cstddef>
 
#include <cstddef>
 +
#include <new>
  
struct X {
+
struct Base
  const int n; // note: X has a const member
+
{
  int m;
+
    virtual int transmogrify();
 
};
 
};
  
struct Y {
+
struct Derived : Base
  int z;
+
{
 +
    int transmogrify() override
 +
    {
 +
        new(this) Base;
 +
        return 2;
 +
    }
 
};
 
};
  
int main()
+
int Base::transmogrify()
 
{
 
{
  X *p = new X{3, 4};
+
    new(this) Derived;
  const int a = p->n;
+
    return 1;
  new (p) X{5, 6};   // p does not point to new object because X::n is const
+
}
  const int b = p->n; // undefined behavior
+
  const int x = p->m; // undefined behavior (even though m is non-const, p can't be used)
+
  const int c = std::launder(p)->n; // OK, std::launder(p) points to new object
+
  
  alignas(Y) std::byte s[sizeof(Y)];
+
static_assert(sizeof(Derived) == sizeof(Base));
  Y* q = new(&s) Y{2};
+
 
  const int d = reinterpret_cast<Y*>(&s)->z; // Class member access is undefined behavior:
+
int main()
                                            // reinterpret_cast<Y*>(&s) has value "pointer to s"
+
{
                                            // and does not point to a Y object  
+
    // Case 1: the new object failed to be transparently replaceable because
  const int e = q->z; // OK
+
    // it is a base subobject but the old object is a complete object.
  const int f = std::launder(reinterpret_cast<Y*>(&s))->z; // OK
+
    Base base;
 +
    int n = base.transmogrify();
 +
    // int m = base.transmogrify(); // undefined behavior
 +
    int m = std::launder(&base)->transmogrify(); // OK
 +
    assert(m + n == 3);
 +
   
 +
    // Case 2: access to a new object whose storage is provided
 +
    // by a byte array through a pointer to the array.
 +
    struct Y { int z; };
 +
    alignas(Y) std::byte s[sizeof(Y)];
 +
    Y* q = new(&s) Y{2};
 +
    const int f = reinterpret_cast<Y*>(&s)->z; // Class member access is undefined
 +
                                              // behavior: reinterpret_cast<Y*>(&s)
 +
                                              // has value "pointer to s" and does
 +
                                              // not point to a Y object
 +
    const int g = q->z; // OK
 +
    const int h = std::launder(reinterpret_cast<Y*>(&s))->z; // OK
 +
   
 +
    [](...){}(f, g, h); // evokes [[maybe_unused]] effect
 
}
 
}
 
}}
 
}}
  
{{langlinks|zh}}
+
===Defect reports===
 +
{{dr list begin}}
 +
{{dr list item|wg=lwg|dr=2859|std=C++17|before=definition of ''reachable'' did not consider pointer<br>arithmetic from pointer-interconvertible object|after=included}}
 +
{{dr list item|wg=lwg|dr=3495|std=C++17|before={{tt|std::launder}} might make pointer to an inactive<br>member dereferenceable in constant expression|after=forbidden}}
 +
{{dr list end}}
 +
 
 +
{{langlinks|de|es|ja|ru|zh}}

Latest revision as of 01:31, 30 October 2024

 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
 
Dynamic memory management
Uninitialized memory algorithms
Constrained uninitialized memory algorithms
Allocators
Garbage collection support
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)



 
 
Defined in header <new>
template< class T >
constexpr T* launder( T* p ) noexcept;
(since C++17)

Devirtualization fence with respect to p. Returns a pointer to an object at the same address that p represents, while the object can be a new base class subobject whose most derived class is different from that of the original *p object.

Formally, given

  • the pointer p represents the address A of a byte in memory
  • an object x is located at the address A
  • x is within its lifetime
  • the type of x is the same as T, ignoring cv-qualifiers at every level
  • every byte that would be reachable through the result is reachable through p (bytes are reachable through a pointer that points to an object y if those bytes are within the storage of an object z that is pointer-interconvertible with y, or within the immediately enclosing array of which z is an element).

Then std::launder(p) returns a value of type T* that points to the object x. Otherwise, the behavior is undefined.

The program is ill-formed if T is a function type or (possibly cv-qualified) void.

std::launder may be used in a core constant expression if and only if the (converted) value of its argument may be used in place of the function invocation. In other words, std::launder does not relax restrictions in constant evaluation.

[edit] Notes

std::launder has no effect on its argument. Its return value must be used to access the object. Thus, it's always an error to discard the return value.

Typical uses of std::launder include:

  • Obtaining a pointer to an object created in the storage of an existing object of the same type, where pointers to the old object cannot be reused (for instance, because either object is a base class subobject);
  • Obtaining a pointer to an object created by placement new from a pointer to an object providing storage for that object.

The reachability restriction ensures that std::launder cannot be used to access bytes not accessible through the original pointer, thereby interfering with the compiler's escape analysis.

int x[10];
auto p = std::launder(reinterpret_cast<int(*)[10]>(&x[0])); // OK
 
int x2[2][10];
auto p2 = std::launder(reinterpret_cast<int(*)[10]>(&x2[0][0]));
// Undefined behavior: x2[1] would be reachable through the resulting pointer to x2[0]
// but is not reachable from the source
 
struct X { int a[10]; } x3, x4[2]; // standard layout; assume no padding
auto p3 = std::launder(reinterpret_cast<int(*)[10]>(&x3.a[0])); // OK
auto p4 = std::launder(reinterpret_cast<int(*)[10]>(&x4[0].a[0]));
// Undefined behavior: x4[1] would be reachable through the resulting pointer to x4[0].a
// (which is pointer-interconvertible with x4[0]) but is not reachable from the source
 
struct Y { int a[10]; double y; } x5;
auto p5 = std::launder(reinterpret_cast<int(*)[10]>(&x5.a[0]));
// Undefined behavior: x5.y would be reachable through the resulting pointer to x5.a
// but is not reachable from the source

[edit] Example

#include <cassert>
#include <cstddef>
#include <new>
 
struct Base
{
    virtual int transmogrify();
};
 
struct Derived : Base
{
    int transmogrify() override
    {
        new(this) Base;
        return 2;
    }
};
 
int Base::transmogrify()
{
    new(this) Derived;
    return 1;
}
 
static_assert(sizeof(Derived) == sizeof(Base));
 
int main()
{
    // Case 1: the new object failed to be transparently replaceable because
    // it is a base subobject but the old object is a complete object.
    Base base;
    int n = base.transmogrify();
    // int m = base.transmogrify(); // undefined behavior
    int m = std::launder(&base)->transmogrify(); // OK
    assert(m + n == 3);
 
    // Case 2: access to a new object whose storage is provided
    // by a byte array through a pointer to the array.
    struct Y { int z; };
    alignas(Y) std::byte s[sizeof(Y)];
    Y* q = new(&s) Y{2};
    const int f = reinterpret_cast<Y*>(&s)->z; // Class member access is undefined
                                               // behavior: reinterpret_cast<Y*>(&s)
                                               // has value "pointer to s" and does
                                               // not point to a Y object
    const int g = q->z; // OK
    const int h = std::launder(reinterpret_cast<Y*>(&s))->z; // OK
 
    [](...){}(f, g, h); // evokes [[maybe_unused]] effect
}

[edit] Defect reports

The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

DR Applied to Behavior as published Correct behavior
LWG 2859 C++17 definition of reachable did not consider pointer
arithmetic from pointer-interconvertible object
included
LWG 3495 C++17 std::launder might make pointer to an inactive
member dereferenceable in constant expression
forbidden