|
| 1 | +; REQUIRES: x86-registered-target |
| 2 | + |
| 3 | +; Test that devirtualization option -wholeprogramdevirt-check adds code to check |
| 4 | +; that the devirtualization decision was correct and trap if not. |
| 5 | + |
| 6 | +; The vtables have vcall_visibility metadata with hidden visibility, to enable |
| 7 | +; devirtualization. |
| 8 | + |
| 9 | +; Generate unsplit module with summary for ThinLTO index-based WPD. |
| 10 | +; RUN: opt -thinlto-bc -o %t2.o %s |
| 11 | +; RUN: llvm-lto2 run %t2.o -save-temps -use-new-pm -pass-remarks=. \ |
| 12 | +; RUN: -wholeprogramdevirt-check \ |
| 13 | +; RUN: -o %t3 \ |
| 14 | +; RUN: -r=%t2.o,test,px \ |
| 15 | +; RUN: -r=%t2.o,_ZN1A1nEi,p \ |
| 16 | +; RUN: -r=%t2.o,_ZN1B1fEi,p \ |
| 17 | +; RUN: -r=%t2.o,_ZTV1B,px 2>&1 | FileCheck %s --check-prefix=REMARK |
| 18 | +; RUN: llvm-dis %t3.1.4.opt.bc -o - | FileCheck %s --check-prefix=CHECK-IR |
| 19 | + |
| 20 | +; REMARK-DAG: single-impl: devirtualized a call to _ZN1A1nEi |
| 21 | + |
| 22 | +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" |
| 23 | +target triple = "x86_64-grtev4-linux-gnu" |
| 24 | + |
| 25 | +%struct.A = type { i32 (...)** } |
| 26 | +%struct.B = type { %struct.A } |
| 27 | + |
| 28 | +@_ZTV1B = constant { [4 x i8*] } { [4 x i8*] [i8* null, i8* undef, i8* bitcast (i32 (%struct.B*, i32)* @_ZN1B1fEi to i8*), i8* bitcast (i32 (%struct.A*, i32)* @_ZN1A1nEi to i8*)] }, !type !0, !type !1, !vcall_visibility !5 |
| 29 | + |
| 30 | + |
| 31 | +; CHECK-IR-LABEL: define i32 @test |
| 32 | +define i32 @test(%struct.A* %obj, i32 %a) { |
| 33 | +entry: |
| 34 | + %0 = bitcast %struct.A* %obj to i8*** |
| 35 | + %vtable = load i8**, i8*** %0 |
| 36 | + %1 = bitcast i8** %vtable to i8* |
| 37 | + %p = call i1 @llvm.type.test(i8* %1, metadata !"_ZTS1A") |
| 38 | + call void @llvm.assume(i1 %p) |
| 39 | + %fptrptr = getelementptr i8*, i8** %vtable, i32 1 |
| 40 | + %2 = bitcast i8** %fptrptr to i32 (%struct.A*, i32)** |
| 41 | + %fptr1 = load i32 (%struct.A*, i32)*, i32 (%struct.A*, i32)** %2, align 8 |
| 42 | + |
| 43 | + ; Check that the call was devirtualized, but preceeded by a check guarding |
| 44 | + ; a trap if the function pointer doesn't match. |
| 45 | + ; CHECK-IR: %.not = icmp eq i32 (%struct.A*, i32)* %fptr1, @_ZN1A1nEi |
| 46 | + ; CHECK-IR: br i1 %.not, label %3, label %2 |
| 47 | + ; CHECK-IR: 2: |
| 48 | + ; CHECK-IR: tail call void @llvm.debugtrap() |
| 49 | + ; CHECK-IR: br label %3 |
| 50 | + ; CHECK-IR: 3: |
| 51 | + ; CHECK-IR: tail call i32 @_ZN1A1nEi |
| 52 | + %call = tail call i32 %fptr1(%struct.A* nonnull %obj, i32 %a) |
| 53 | + |
| 54 | + ret i32 %call |
| 55 | +} |
| 56 | +; CHECK-IR-LABEL: ret i32 |
| 57 | +; CHECK-IR-LABEL: } |
| 58 | + |
| 59 | +declare i1 @llvm.type.test(i8*, metadata) |
| 60 | +declare void @llvm.assume(i1) |
| 61 | + |
| 62 | +define i32 @_ZN1B1fEi(%struct.B* %this, i32 %a) #0 { |
| 63 | + ret i32 0; |
| 64 | +} |
| 65 | + |
| 66 | +define i32 @_ZN1A1nEi(%struct.A* %this, i32 %a) #0 { |
| 67 | + ret i32 0; |
| 68 | +} |
| 69 | + |
| 70 | +; Make sure we don't inline or otherwise optimize out the direct calls. |
| 71 | +attributes #0 = { noinline optnone } |
| 72 | + |
| 73 | +!0 = !{i64 16, !"_ZTS1A"} |
| 74 | +!1 = !{i64 16, !"_ZTS1B"} |
| 75 | +!3 = !{i64 16, !4} |
| 76 | +!4 = distinct !{} |
| 77 | +!5 = !{i64 1} |
0 commit comments