diff options
author | dim <dim@FreeBSD.org> | 2015-12-30 11:49:41 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-12-30 11:49:41 +0000 |
commit | 3176e97f130184ece0e1a21352c8124cc83ff24a (patch) | |
tree | 0a5b74c0b9ca73aded34df95c91fcaf3815230d8 /test/CodeGenCXX/invariant.group-for-vptrs.cpp | |
parent | 1e9b8d38881c3213d1e67b0c47ab9b2c00721a5c (diff) | |
download | FreeBSD-src-3176e97f130184ece0e1a21352c8124cc83ff24a.zip FreeBSD-src-3176e97f130184ece0e1a21352c8124cc83ff24a.tar.gz |
Vendor import of clang trunk r256633:
https://llvm.org/svn/llvm-project/cfe/trunk@256633
Diffstat (limited to 'test/CodeGenCXX/invariant.group-for-vptrs.cpp')
-rw-r--r-- | test/CodeGenCXX/invariant.group-for-vptrs.cpp | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/test/CodeGenCXX/invariant.group-for-vptrs.cpp b/test/CodeGenCXX/invariant.group-for-vptrs.cpp new file mode 100644 index 0000000..ca737ee --- /dev/null +++ b/test/CodeGenCXX/invariant.group-for-vptrs.cpp @@ -0,0 +1,74 @@ +// RUN: %clang_cc1 -triple=x86_64-pc-linux-gnu -emit-llvm %s -fstrict-vtable-pointers -O1 -o - -disable-llvm-optzns | FileCheck %s + +struct A { + virtual void foo(); +}; + +struct D : A { + void foo(); +}; + +// CHECK-LABEL: define void @_Z21testExternallyVisiblev() +void testExternallyVisible() { + A *a = new A; + + // CHECK: load {{.*}} !invariant.group ![[A_MD:[0-9]+]] + a->foo(); + + D *d = new D; + // CHECK: call void @_ZN1DC1Ev( + // CHECK: load {{.*}} !invariant.group ![[D_MD:[0-9]+]] + d->foo(); + A *a2 = d; + // CHECK: load {{.*}} !invariant.group ![[A_MD]] + a2->foo(); +} +// CHECK-LABEL: } + +namespace { + +struct B { + virtual void bar(); +}; + +struct C : B { + void bar(); +}; + +} + +// CHECK-LABEL: define void @_Z21testInternallyVisibleb( +void testInternallyVisible(bool p) { + B *b = new B; + // CHECK: = load {{.*}}, !invariant.group ![[B_MD:[0-9]+]] + b->bar(); + + // CHECK: call void @_ZN12_GLOBAL__N_11CC1Ev( + C *c = new C; + // CHECK: = load {{.*}}, !invariant.group ![[C_MD:[0-9]+]] + c->bar(); +} + +// Checking A::A() +// CHECK-LABEL: define linkonce_odr void @_ZN1AC2Ev( +// CHECK: store {{.*}}, !invariant.group ![[A_MD]] +// CHECK-LABEL: } + +// Checking D::D() +// CHECK-LABEL: define linkonce_odr void @_ZN1DC2Ev( +// CHECK: = call i8* @llvm.invariant.group.barrier(i8* +// CHECK: call void @_ZN1AC2Ev(%struct.A* +// CHECK: store {{.*}} !invariant.group ![[D_MD]] + +// Checking B::B() +// CHECK-LABEL: define internal void @_ZN12_GLOBAL__N_11BC2Ev( +// CHECK: store {{.*}}, !invariant.group ![[B_MD]] + +// Checking C::C() +// CHECK-LABEL: define internal void @_ZN12_GLOBAL__N_11CC2Ev( +// CHECK: store {{.*}}, !invariant.group ![[C_MD]] + +// CHECK: ![[A_MD]] = !{!"_ZTS1A"} +// CHECK: ![[D_MD]] = !{!"_ZTS1D"} +// CHECK: ![[B_MD]] = distinct !{} +// CHECK: ![[C_MD]] = distinct !{} |