mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 06:56:06 +00:00
66 lines
2.0 KiB
C++
66 lines
2.0 KiB
C++
// RUN: %clang_cc1 -emit-llvm %s -o - -triple=i386-pc-win32 | FileCheck %s
|
|
|
|
struct ClassWithoutDtor {
|
|
char x;
|
|
};
|
|
|
|
void check_array_no_cookies() {
|
|
// CHECK: define dso_local void @"?check_array_no_cookies@@YAXXZ"() [[NUW:#[0-9]+]]
|
|
|
|
// CHECK: call noalias noundef nonnull ptr @"??_U@YAPAXI@Z"(i32 noundef 42)
|
|
ClassWithoutDtor *array = new ClassWithoutDtor[42];
|
|
|
|
// CHECK: call void @"??_V@YAXPAX@Z"(
|
|
delete [] array;
|
|
|
|
}
|
|
|
|
struct ClassWithDtor {
|
|
char x;
|
|
~ClassWithDtor() {}
|
|
};
|
|
|
|
void check_array_cookies_simple() {
|
|
// CHECK: define {{.*}} @"?check_array_cookies_simple@@YAXXZ"()
|
|
|
|
ClassWithDtor *array = new ClassWithDtor[42];
|
|
// CHECK: [[ALLOCATED:%.*]] = call noalias noundef nonnull ptr @"??_U@YAPAXI@Z"(i32 noundef 46)
|
|
// 46 = 42 + size of cookie (4)
|
|
// CHECK: store i32 42, ptr [[ALLOCATED]]
|
|
// CHECK: [[ARRAY:%.*]] = getelementptr inbounds i8, ptr [[ALLOCATED]], i32 4
|
|
|
|
delete [] array;
|
|
// CHECK: getelementptr inbounds i8, ptr {{%.*}}, i32 -4
|
|
}
|
|
|
|
struct __attribute__((aligned(8))) ClassWithAlignment {
|
|
// FIXME: replace __attribute__((aligned(8))) with __declspec(align(8)) once
|
|
// http://llvm.org/bugs/show_bug.cgi?id=12631 is fixed.
|
|
int *x, *y;
|
|
~ClassWithAlignment() {}
|
|
};
|
|
|
|
void check_array_cookies_aligned() {
|
|
// CHECK: define {{.*}} @"?check_array_cookies_aligned@@YAXXZ"()
|
|
ClassWithAlignment *array = new ClassWithAlignment[42];
|
|
// CHECK: [[ALLOCATED:%.*]] = call noalias noundef nonnull ptr @"??_U@YAPAXI@Z"(i32 noundef 344)
|
|
// 344 = 42*8 + size of cookie (8, due to alignment)
|
|
// CHECK: store i32 42, ptr [[ALLOCATED]]
|
|
// CHECK: [[ARRAY:%.*]] = getelementptr inbounds i8, ptr [[ALLOCATED]], i32 8
|
|
|
|
delete [] array;
|
|
// CHECK: getelementptr inbounds i8, ptr {{.*}}, i32 -8
|
|
}
|
|
|
|
namespace PR23990 {
|
|
struct S {
|
|
char x[42];
|
|
void operator delete[](void *p, __SIZE_TYPE__);
|
|
// CHECK-LABEL: define dso_local void @"?delete_s@PR23990@@YAXPAUS@1@@Z"(
|
|
// CHECK: call void @"??_VS@PR23990@@SAXPAXI@Z"(ptr noundef {{.*}}, i32 noundef 42)
|
|
};
|
|
void delete_s(S *s) { delete[] s; }
|
|
}
|
|
|
|
// CHECK: attributes [[NUW]] = { mustprogress noinline nounwind{{.*}} }
|