mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
118db71121
This replaces the STL <new> header. Mainly, it defines a global operator new and operator delete, as well as the placement versions of these. The placement versions are required to not get compile errors when trying to write a placement new statement. Each of these operators is defined with many, many different variants. A glance at new.cc is recommended followed by a chaser of the Alexandrescu talk "std::allocator is to Allocation as std::vector is to Vexation". We must provide a global-namespace source-level definition of each operator and it is illegal for any of them to be marked inline, so here we are. The upshot is that we no longer need to include <new>, and our optional/ vector headers are self-contained.
30 lines
969 B
C++
30 lines
969 B
C++
// -*-mode:c++;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8-*-
|
|
// vi: set et ft=cpp ts=4 sts=4 sw=4 fenc=utf-8 :vi
|
|
#ifndef COSMOPOLITAN_CTL_NEW_H_
|
|
#define COSMOPOLITAN_CTL_NEW_H_
|
|
|
|
// clang-format off
|
|
|
|
namespace ctl {
|
|
|
|
enum class align_val_t : size_t {};
|
|
|
|
} // namespace ctl
|
|
|
|
void* operator new(size_t);
|
|
void* operator new[](size_t);
|
|
void* operator new(size_t, ctl::align_val_t);
|
|
void* operator new[](size_t, ctl::align_val_t);
|
|
void* operator new(size_t, void*);
|
|
void* operator new[](size_t, void*);
|
|
|
|
void operator delete(void*) noexcept;
|
|
void operator delete[](void*) noexcept;
|
|
void operator delete(void*, ctl::align_val_t) noexcept;
|
|
void operator delete[](void*, ctl::align_val_t) noexcept;
|
|
void operator delete(void*, size_t) noexcept;
|
|
void operator delete[](void*, size_t) noexcept;
|
|
void operator delete(void*, size_t, ctl::align_val_t) noexcept;
|
|
void operator delete[](void*, size_t, ctl::align_val_t) noexcept;
|
|
|
|
#endif // COSMOPOLITAN_CTL_NEW_H_
|