File: type-aware-new-delete-basic-in-class-declarations.cpp

package info (click to toggle)
llvm-toolchain-snapshot 1%3A21~%2B%2B20250612091244%2B3f0cf742ac4e-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,204,364 kB
  • sloc: cpp: 7,565,811; ansic: 1,415,365; asm: 1,031,257; python: 250,248; f90: 93,670; objc: 70,556; lisp: 41,926; pascal: 17,847; sh: 10,009; ml: 5,111; perl: 4,720; awk: 3,523; makefile: 3,423; javascript: 2,272; xml: 892; fortran: 763
file content (150 lines) | stat: -rw-r--r-- 8,351 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
// RUN: %clang_cc1 -triple arm64-apple-macosx -fsyntax-only -verify=expected,precxx26 %s           -std=c++23
// RUN: %clang_cc1 -triple arm64-apple-macosx -fsyntax-only -verify %s                             -std=c++26

namespace std {
  template <class T> struct type_identity {};
  enum class align_val_t : __SIZE_TYPE__ {};
  struct destroying_delete_t { explicit destroying_delete_t() = default; };
}

using size_t = __SIZE_TYPE__;

// Basic valid declarations
struct S {
  void *operator new(std::type_identity<S>, size_t, std::align_val_t); // #1
  void operator delete(std::type_identity<S>, void *, size_t, std::align_val_t); // #2
  // precxx26-warning@#1 {{type aware allocators are a C++2c extension}}
  // precxx26-warning@#2 {{type aware allocators are a C++2c extension}}
  void operator delete(S *, std::destroying_delete_t);
};

template <typename T> struct S2 {
  void *operator new(std::type_identity<S2<T>>, size_t, std::align_val_t); // #3
  void operator delete(std::type_identity<S2<T>>, void *, size_t, std::align_val_t); // #4
  // precxx26-warning@#3 {{type aware allocators are a C++2c extension}}
  // precxx26-warning@#4 {{type aware allocators are a C++2c extension}}
  void operator delete(S2 *, std::destroying_delete_t);
};

struct S3 {
  template <typename T> void *operator new(std::type_identity<T>, size_t, std::align_val_t); // #5
  template <typename T> void operator delete(std::type_identity<T>, void *, size_t, std::align_val_t); // #6
  // precxx26-warning@#5 {{type aware allocators are a C++2c extension}}
  // precxx26-warning@#6 {{type aware allocators are a C++2c extension}}
  void operator delete(S3 *, std::destroying_delete_t);
};

struct S4 {
  template <typename T> void *operator new(std::type_identity<T>, size_t, std::align_val_t); // #7
  template <typename T> void operator delete(std::type_identity<T>, void *, size_t, std::align_val_t); // #8
  template <typename T> void operator delete(std::type_identity<T>, S4 *, std::destroying_delete_t, size_t, std::align_val_t); // #9
  // precxx26-warning@#7 {{type aware allocators are a C++2c extension}}
  // precxx26-warning@#8 {{type aware allocators are a C++2c extension}}
  // expected-error@#9 {{destroying delete is not permitted to be type aware}}
};

struct S5 {
  template <typename T> void operator delete(std::type_identity<T>, T *, size_t, std::align_val_t); // #10
  // expected-error@#10 {{type aware 'operator delete' cannot take a dependent type as its 2nd parameter}}
  // precxx26-warning@#10 {{type aware allocators are a C++2c extension}}
};

struct S6 {
  template <typename T> void *operator new(std::type_identity<S6>, T, std::align_val_t); // #11
  // expected-error@#11 {{type aware 'operator new' cannot take a dependent type as its 2nd parameter}}
  // precxx26-warning@#11 {{type aware allocators are a C++2c extension}}
  template <typename T> void operator delete(std::type_identity<S6>, T, size_t, std::align_val_t); // #12
  // expected-error@#12 {{type aware 'operator delete' cannot take a dependent type as its 2nd parameter}}
  // precxx26-warning@#12 {{type aware allocators are a C++2c extension}}
};

template <typename U>
struct S7 {
  template <typename T> void *operator new(std::type_identity<T>, U, std::align_val_t); // #13
  // expected-error@#13 {{type aware 'operator new' cannot take a dependent type as its 2nd parameter;}}
  // precxx26-warning@#13 {{type aware allocators are a C++2c extension}}
  template <typename T> void operator delete(std::type_identity<T>, U, size_t, std::align_val_t); // #14
  // expected-error@#14 {{type aware 'operator delete' cannot take a dependent type as its 2nd parameter;}}
  // precxx26-warning@#14 {{type aware allocators are a C++2c extension}}
  template <typename T> void operator delete(std::type_identity<T>, S7 *, std::destroying_delete_t, U, std::align_val_t); // #15
  // expected-error@#15 {{destroying delete is not permitted to be type aware}}
  void operator delete(S7 *, std::destroying_delete_t, U); // #16
};

void f() {
  S7<int> s;
  // expected-note@-1 {{in instantiation of template class 'S7<int>' requested here}}
  // expected-error@#16 {{destroying operator delete can have only an optional size and optional alignment parameter}}
}

struct S8 {
  template <typename T, typename U> void *operator new(std::type_identity<T>, U, std::align_val_t); // #17
  // expected-error@#17 {{type aware 'operator new' cannot take a dependent type as its 2nd parameter;}}
  // precxx26-warning@#17 {{type aware allocators are a C++2c extension}}
  template <typename T, typename U> void operator delete(std::type_identity<T>, U, size_t, std::align_val_t); // #18
  // expected-error@#18 {{type aware 'operator delete' cannot take a dependent type as its 2nd parameter;}}
  // precxx26-warning@#18 {{type aware allocators are a C++2c extension}}
  template <typename T, typename U> void operator delete(std::type_identity<T>, S8 *, std::destroying_delete_t, U, std::align_val_t); // #19
  // expected-error@#19 {{destroying delete is not permitted to be type aware}}
};

template <typename T> using Alias = T;
template <typename T> using TypeIdentityAlias = std::type_identity<T>;
typedef std::type_identity<double> TypedefAlias;
using UsingAlias = std::type_identity<float>;
struct S9 {
  void *operator new(Alias<size_t>, std::align_val_t);
  template <typename T> void *operator new(Alias<std::type_identity<T>>, Alias<size_t>, std::align_val_t); // #20
  // precxx26-warning@#20 {{type aware allocators are a C++2c extension}}
  void *operator new(Alias<std::type_identity<int>>, size_t, std::align_val_t);
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
  template <typename T> void operator delete(Alias<std::type_identity<T>>, void *, size_t, std::align_val_t); // #21
  // precxx26-warning@#21{{type aware allocators are a C++2c extension}}
  void operator delete(Alias<std::type_identity<int>>, void *, size_t, std::align_val_t);
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
};
struct S10 {
  template <typename T> void *operator new(TypeIdentityAlias<T>, size_t, std::align_val_t); // #22
  // precxx26-warning@#22 {{type aware allocators are a C++2c extension}}
  void *operator new(TypeIdentityAlias<int>, size_t, std::align_val_t);
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
  template <typename T> void operator delete(TypeIdentityAlias<T>, void *, size_t, std::align_val_t); // #23
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
  void operator delete(TypeIdentityAlias<int>, void *, size_t, std::align_val_t);
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
};

void test() {
  S9 *s9 = new S9;
  delete s9;
  S10 *s10 = new S10;
  delete s10;
}

struct S11 {
  template <typename T> void *operator new(TypedefAlias, size_t, std::align_val_t);
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
  void *operator new(TypedefAlias, size_t, std::align_val_t);
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
  template <typename T> void operator delete(TypedefAlias, void *, size_t, std::align_val_t);
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
  void operator delete(TypedefAlias, void *, size_t, std::align_val_t);
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
};
struct S12 {
  template <typename T> void *operator new(UsingAlias, size_t, std::align_val_t);
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
  void *operator new(UsingAlias, size_t, std::align_val_t);
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
  template <typename T> void operator delete(UsingAlias, void *, size_t, std::align_val_t);
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
  void operator delete(UsingAlias, void *, size_t, std::align_val_t);
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
};

struct S13 {
  void *operator new(std::type_identity<S13>, size_t, std::align_val_t);
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
  void operator delete(std::type_identity<S13>, void*, size_t, std::align_val_t);
  // precxx26-warning@-1 {{type aware allocators are a C++2c extension}}
};