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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
// UNSUPPORTED: target={{.*}}-zos{{.*}}
// RUN: %clang_cc1 -std=c++20 -fsyntax-only -fcxx-exceptions -verify=ref,ref20,all,all20 %s
// RUN: %clang_cc1 -std=c++23 -fsyntax-only -fcxx-exceptions -verify=ref,ref23,all,all23 %s
// RUN: %clang_cc1 -std=c++20 -fsyntax-only -fcxx-exceptions -verify=expected20,all,all20 %s -fexperimental-new-constant-interpreter
// RUN: %clang_cc1 -std=c++23 -fsyntax-only -fcxx-exceptions -verify=expected23,all,all23 %s -fexperimental-new-constant-interpreter
#define assert_active(F) if (!__builtin_is_within_lifetime(&F)) (1/0);
#define assert_inactive(F) if ( __builtin_is_within_lifetime(&F)) (1/0);
inline constexpr void* operator new(__SIZE_TYPE__, void* p) noexcept { return p; }
namespace std {
template<typename T, typename... Args>
constexpr T* construct_at(T* p, Args&&... args) { return ::new((void*)p) T(static_cast<Args&&>(args)...); }
}
constexpr int f(int n) { // all20-error {{constexpr function never produces a constant expression}}
static const int m = n; // all-note {{control flows through the definition of a static variable}} \
// all20-note {{control flows through the definition of a static variable}} \
// all20-warning {{is a C++23 extension}}
return m;
}
static_assert(f(0) == 0, ""); // all-error {{not an integral constant expression}} \
// all-note {{in call to}}
constexpr int g(int n) { // all20-error {{constexpr function never produces a constant expression}}
thread_local const int m = n; // all-note {{control flows through the definition of a thread_local variable}} \
// all20-note {{control flows through the definition of a thread_local variable}} \
// all20-warning {{is a C++23 extension}}
return m;
}
static_assert(g(0) == 0, ""); // all-error {{not an integral constant expression}} \
// all-note {{in call to}}
constexpr int c_thread_local(int n) { // all20-error {{constexpr function never produces a constant expression}}
static _Thread_local int m = 0; // all20-note 2{{control flows through the definition of a thread_local variable}} \
// all23-note {{control flows through the definition of a thread_local variable}} \
// all20-warning {{is a C++23 extension}}
return m;
}
static_assert(c_thread_local(0) == 0, ""); // all-error {{not an integral constant expression}} \
// all-note {{in call to}}
constexpr int gnu_thread_local(int n) { // all20-error {{constexpr function never produces a constant expression}}
static __thread int m = 0; // all20-note 2{{control flows through the definition of a thread_local variable}} \
// all23-note {{control flows through the definition of a thread_local variable}} \
// all20-warning {{is a C++23 extension}}
return m;
}
static_assert(gnu_thread_local(0) == 0, ""); // all-error {{not an integral constant expression}} \
// all-note {{in call to}}
constexpr int h(int n) { // all20-error {{constexpr function never produces a constant expression}}
static const int m = n; // all20-note {{control flows through the definition of a static variable}} \
// all20-warning {{is a C++23 extension}}
return &m - &m;
}
constexpr int i(int n) { // all20-error {{constexpr function never produces a constant expression}}
thread_local const int m = n; // all20-note {{control flows through the definition of a thread_local variable}} \
// all20-warning {{is a C++23 extension}}
return &m - &m;
}
constexpr int j(int n) {
if (!n)
return 0;
static const int m = n; // ref20-warning {{is a C++23 extension}} \
// expected20-warning {{is a C++23 extension}}
return m;
}
constexpr int j0 = j(0);
constexpr int k(int n) {
if (!n)
return 0;
thread_local const int m = n; // ref20-warning {{is a C++23 extension}} \
// expected20-warning {{is a C++23 extension}}
return m;
}
constexpr int k0 = k(0);
#if __cplusplus >= 202302L
constexpr int &b = b; // all-error {{must be initialized by a constant expression}} \
// all-note {{initializer of 'b' is not a constant expression}} \
// all-note {{declared here}}
#endif
namespace StaticLambdas {
constexpr auto static_capture_constexpr() {
char n = 'n';
return [n] static { return n; }(); // expected23-error {{a static lambda cannot have any captures}} \
// expected20-error {{a static lambda cannot have any captures}} \
// expected20-warning {{are a C++23 extension}} \
// expected20-warning {{is a C++23 extension}} \
// ref23-error {{a static lambda cannot have any captures}} \
// ref20-error {{a static lambda cannot have any captures}} \
// ref20-warning {{are a C++23 extension}} \
// ref20-warning {{is a C++23 extension}}
}
static_assert(static_capture_constexpr()); // expected23-error {{static assertion expression is not an integral constant expression}} \
// expected20-error {{static assertion expression is not an integral constant expression}} \
// ref23-error {{static assertion expression is not an integral constant expression}} \
// ref20-error {{static assertion expression is not an integral constant expression}}
constexpr auto capture_constexpr() {
char n = 'n';
return [n] { return n; }();
}
static_assert(capture_constexpr());
}
namespace StaticOperators {
auto lstatic = []() static { return 3; }; // ref20-warning {{C++23 extension}} \
// expected20-warning {{C++23 extension}}
static_assert(lstatic() == 3, "");
constexpr int (*f2)(void) = lstatic;
static_assert(f2() == 3);
struct S1 {
constexpr S1() { // all20-error {{never produces a constant expression}}
throw; // all-note {{not valid in a constant expression}} \
// all20-note {{not valid in a constant expression}}
}
static constexpr int operator()() { return 3; } // ref20-warning {{C++23 extension}} \
// expected20-warning {{C++23 extension}}
};
static_assert(S1{}() == 3, ""); // all-error {{not an integral constant expression}} \
// all-note {{in call to}}
}
int test_in_lambdas() {
auto c = [](int n) constexpr {
if (n == 0)
return 0;
else
goto test; // all-note {{subexpression not valid in a constant expression}} \
// all20-warning {{use of this statement in a constexpr function is a C++23 extension}}
test:
return 1;
};
c(0);
constexpr auto A = c(1); // all-error {{must be initialized by a constant expression}} \
// all-note {{in call to}}
return 0;
}
/// PackIndexExpr.
template <auto... p>
struct check_ice {
enum e {
x = p...[0] // all-warning {{is a C++2c extension}}
};
};
static_assert(check_ice<42>::x == 42);
namespace VirtualBases {
namespace One {
struct U { int n; };
struct V : U { int n; };
struct A : virtual V { int n; };
struct Aa { int n; };
struct B : virtual A, Aa {};
struct C : virtual A, Aa {};
struct D : B, C {};
/// Calls the constructor of D.
D d;
}
#if __cplusplus >= 202302L
struct VBase {};
struct HasVBase : virtual VBase {}; // all23-note 1{{virtual base class declared here}}
struct Derived : HasVBase {
constexpr Derived() {} // all23-error {{constexpr constructor not allowed in struct with virtual base class}}
};
template<typename T> struct DerivedFromVBase : T {
constexpr DerivedFromVBase();
};
constexpr int f(DerivedFromVBase<HasVBase>) {}
template<typename T> constexpr DerivedFromVBase<T>::DerivedFromVBase() : T() {}
constexpr int nVBase = (DerivedFromVBase<HasVBase>(), 0); // all23-error {{constant expression}} \
// all23-note {{cannot construct object of type 'DerivedFromVBase<VirtualBases::HasVBase>' with virtual base class in a constant expression}}
#endif
}
namespace LabelGoto {
constexpr int foo() { // all20-error {{never produces a constant expression}}
a: // all20-warning {{use of this statement in a constexpr function is a C++23 extension}}
goto a; // all20-note 2{{subexpression not valid in a constant expression}} \
// ref23-note {{subexpression not valid in a constant expression}} \
// expected23-note {{subexpression not valid in a constant expression}}
return 1;
}
static_assert(foo() == 1, ""); // all-error {{not an integral constant expression}} \
// all-note {{in call to}}
}
namespace ExplicitLambdaThis {
constexpr auto f = [x = 3]<typename Self>(this Self self) { // all20-error {{explicit object parameters are incompatible with C++ standards before C++2b}}
return x;
};
static_assert(f());
}
namespace std {
struct strong_ordering {
int n;
constexpr operator int() const { return n; }
static const strong_ordering less, equal, greater;
};
constexpr strong_ordering strong_ordering::less = {-1};
constexpr strong_ordering strong_ordering::equal = {0};
constexpr strong_ordering strong_ordering::greater = {1};
}
namespace UndefinedThreeWay {
struct A {
friend constexpr std::strong_ordering operator<=>(const A&, const A&) = default; // all-note {{declared here}}
};
constexpr std::strong_ordering operator<=>(const A&, const A&) noexcept;
constexpr std::strong_ordering (*test_a_threeway)(const A&, const A&) = &operator<=>;
static_assert(!(*test_a_threeway)(A(), A())); // all-error {{static assertion expression is not an integral constant expression}} \
// all-note {{undefined function 'operator<=>' cannot be used in a constant expression}}
}
/// FIXME: The new interpreter is missing the "initializer of q is not a constant expression" diagnostics.a
/// That's because the cast from void* to int* is considered fine, but diagnosed. So we don't consider
/// q to be uninitialized.
namespace VoidCast {
constexpr void* p = nullptr;
constexpr int* q = static_cast<int*>(p); // all-error {{must be initialized by a constant expression}} \
// all-note {{cast from 'void *' is not allowed in a constant expression}} \
// ref-note {{declared here}}
static_assert(q == nullptr); // ref-error {{not an integral constant expression}} \
// ref-note {{initializer of 'q' is not a constant expression}}
}
namespace ExplicitLambdaInstancePointer {
struct C {
constexpr C(auto) { }
};
void foo() {
constexpr auto b = [](this C) { return 1; }; // all20-error {{explicit object parameters are incompatible with C++ standards before C++2b}}
constexpr int (*fp)(C) = b;
static_assert(fp(1) == 1, "");
}
}
namespace TwosComplementShifts {
using uint32 = __UINT32_TYPE__;
using int32 = __INT32_TYPE__;
static_assert(uint32(int32(0x1234) << 16) == 0x12340000);
static_assert(uint32(int32(0x1234) << 19) == 0x91a00000);
static_assert(uint32(int32(0x1234) << 20) == 0x23400000);
static_assert(uint32(int32(0x1234) << 24) == 0x34000000);
static_assert(uint32(int32(-1) << 31) == 0x80000000);
static_assert(-2 >> 1 == -1);
static_assert(-3 >> 1 == -2);
static_assert(-7 >> 1 == -4);
}
namespace AnonUnionDtor {
struct A {
A ();
~A();
};
template <class T>
struct opt
{
union {
char c;
T data;
};
constexpr opt() {}
constexpr ~opt() {
if (engaged)
data.~T();
}
bool engaged = false;
};
consteval void foo() {
opt<A> a;
}
void bar() { foo(); }
}
/// FIXME: The two interpreters disagree about there to diagnose the non-constexpr destructor call.
namespace NonLiteralDtorInParam {
class NonLiteral { // all20-note {{is not an aggregate and has no constexpr constructors other than copy or move constructors}}
public:
NonLiteral() {}
~NonLiteral() {} // all23-note {{declared here}}
};
constexpr int F2(NonLiteral N) { // all20-error {{constexpr function's 1st parameter type 'NonLiteral' is not a literal type}} \
// ref23-note {{non-constexpr function '~NonLiteral' cannot be used in a constant expression}}
return 8;
}
void test() {
NonLiteral L;
constexpr auto D = F2(L); // all23-error {{must be initialized by a constant expression}} \
// expected23-note {{non-constexpr function '~NonLiteral' cannot be used in a constant expression}}
}
}
namespace ZeroSizedArray {
struct S {
constexpr ~S() {
}
};
constexpr int foo() {
S s[0];
return 1;
}
static_assert(foo() == 1);
}
namespace VoidCast {
constexpr int a = 12;
constexpr const int *b = &a;
constexpr int *f = (int*)(void*)b; // all-error {{must be initialized by a constant expression}} \
// all-note {{cast from 'void *' is not allowed in a constant expression}}
}
#if __cplusplus >= 202302L
namespace NestedUnions {
consteval bool test_nested() {
union {
union { int i; char c; } u;
long l;
};
std::construct_at(&l);
assert_active(l);
assert_inactive(u);
std::construct_at(&u);
assert_active(u);
assert_inactive(l);
assert_active(u.i);
assert_inactive(u.c);
std::construct_at(&u.i);
assert_active(u);
assert_inactive(u.c);
std::construct_at(&u.c);
assert_active(u);
assert_inactive(u.i);
assert_active(u.c);
assert_inactive(l);
return true;
}
static_assert(test_nested());
}
#endif
|