blob: e968f05600c296e88c241101bda7254923915dc4 [file] [log] [blame]
Peter Collingbourne3afb2662016-04-28 17:09:37 +00001// RUN: %clang_cc1 -triple x86_64-unknown-linux -fvisibility hidden -fsanitize=cfi-nvcall -emit-llvm -o - %s | FileCheck %s
2// RUN: %clang_cc1 -triple x86_64-unknown-linux -fvisibility hidden -fsanitize=cfi-nvcall,cfi-cast-strict -emit-llvm -o - %s | FileCheck --check-prefix=CHECK-STRICT %s
Peter Collingbourne1a7488a2015-04-02 00:23:30 +00003
4struct A {
5 virtual void f();
6};
7
8struct B : A {
9 int i;
10 void g();
11};
12
13struct C : A {
14 void g();
15};
16
17// CHECK-LABEL: @bg
18// CHECK-STRICT-LABEL: @bg
19extern "C" void bg(B *b) {
Peter Collingbourne8dd14da2016-06-24 21:21:46 +000020 // CHECK: call i1 @llvm.type.test(i8* {{%[^ ]*}}, metadata !"_ZTS1B")
21 // CHECK-STRICT: call i1 @llvm.type.test(i8* {{%[^ ]*}}, metadata !"_ZTS1B")
Peter Collingbourne1a7488a2015-04-02 00:23:30 +000022 b->g();
23}
24
25// CHECK-LABEL: @cg
26// CHECK-STRICT-LABEL: @cg
27extern "C" void cg(C *c) {
28 // http://clang.llvm.org/docs/ControlFlowIntegrity.html#strictness
29 // In this case C's layout is the same as its base class, so we allow
30 // c to be of type A in non-strict mode.
31
Peter Collingbourne8dd14da2016-06-24 21:21:46 +000032 // CHECK: call i1 @llvm.type.test(i8* {{%[^ ]*}}, metadata !"_ZTS1A")
33 // CHECK-STRICT: call i1 @llvm.type.test(i8* {{%[^ ]*}}, metadata !"_ZTS1C")
Peter Collingbourne1a7488a2015-04-02 00:23:30 +000034 c->g();
35}