diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:49:41 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:49:41 +0000 |
| commit | 45b533945f0851ec234ca846e1af5ee1e4df0b6e (patch) | |
| tree | 0a5b74c0b9ca73aded34df95c91fcaf3815230d8 /test/CodeGenCXX/sanitize-dtor-callback.cpp | |
| parent | 7e86edd64bfae4e324224452e4ea879b3371a4bd (diff) | |
Notes
Diffstat (limited to 'test/CodeGenCXX/sanitize-dtor-callback.cpp')
| -rw-r--r-- | test/CodeGenCXX/sanitize-dtor-callback.cpp | 67 |
1 files changed, 60 insertions, 7 deletions
diff --git a/test/CodeGenCXX/sanitize-dtor-callback.cpp b/test/CodeGenCXX/sanitize-dtor-callback.cpp index 4912a27229f9..e208a6f7e5a5 100644 --- a/test/CodeGenCXX/sanitize-dtor-callback.cpp +++ b/test/CodeGenCXX/sanitize-dtor-callback.cpp @@ -1,17 +1,70 @@ // Test -fsanitize-memory-use-after-dtor -// RUN: %clang_cc1 -fsanitize=memory -fsanitize-memory-use-after-dtor -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s -// RUN: %clang_cc1 -fsanitize=memory -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s -check-prefix=NO_DTOR_CHECK +// RUN: %clang_cc1 -fsanitize=memory -fsanitize-memory-use-after-dtor -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s + +// Sanitizing dtor is emitted in dtor for every class, and only +// poisons once. struct Simple { + int x; ~Simple() {} }; Simple s; // Simple internal member is poisoned by compiler-generated dtor -// CHECK-LABEL: @_ZN6SimpleD2Ev +// CHECK-LABEL: define {{.*}}SimpleD1Ev +// CHECK: call void {{.*}}SimpleD2Ev +// CHECK: ret void + +struct Inlined { + int y; + inline ~Inlined() {} +}; +Inlined i; +// Simple internal member is poisoned by compiler-generated dtor +// CHECK-LABEL: define {{.*}}InlinedD1Ev +// CHECK: call void {{.*}}InlinedD2Ev +// CHECK: ret void + +struct Defaulted_Trivial { + ~Defaulted_Trivial() = default; +}; +void create_def_trivial() { + Defaulted_Trivial def_trivial; +} +// The compiler is explicitly signalled to handle object cleanup. +// No complex member attributes. Compiler destroys inline, so +// no destructor defined. +// CHECK-LABEL: define {{.*}}create_def_trivial +// CHECK-NOT: call {{.*}}Defaulted_Trivial +// CHECK: ret void + +struct Defaulted_Non_Trivial { + Simple s; + ~Defaulted_Non_Trivial() = default; +}; +Defaulted_Non_Trivial def_non_trivial; +// Explicitly compiler-generated dtor poisons object. +// By including a Simple member in the struct, the compiler is +// forced to generate a non-trivial destructor. +// CHECK-LABEL: define {{.*}}Defaulted_Non_TrivialD1Ev +// CHECK: call void {{.*}}Defaulted_Non_TrivialD2 +// CHECK: ret void + + +// Note: ordering is important. In the emitted bytecode, these +// second dtors defined after the first. Explicitly checked here +// to confirm that all invoked dtors have member poisoning +// instrumentation inserted. +// CHECK-LABEL: define {{.*}}SimpleD2Ev // CHECK: call void @__sanitizer_dtor_callback +// CHECK-NOT: call void @__sanitizer_dtor_callback // CHECK: ret void -// Compiling without the flag does not generate member-poisoning dtor -// NO_DTOR_CHECK-LABEL: @_ZN6SimpleD2Ev -// NO_DTOR_CHECK-NOT: call void @sanitizer_dtor_callback -// NO_DTOR_CHECK: ret void +// CHECK-LABEL: define {{.*}}InlinedD2Ev +// CHECK: call void @__sanitizer_dtor_callback +// CHECK-NOT: call void @__sanitizer_dtor_callback +// CHECK: ret void + +// CHECK-LABEL: define {{.*}}Defaulted_Non_TrivialD2Ev +// CHECK: call void @__sanitizer_dtor_callback +// CHECK-NOT: call void @__sanitizer_dtor_callback +// CHECK: ret void |
