File: virtual-functions-non-vfunc-entries.ll

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (116 lines) | stat: -rw-r--r-- 4,813 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
; RUN: opt -S -passes=globaldce < %s | FileCheck %s

target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"

declare { ptr, i1 } @llvm.type.checked.load(ptr, i32, metadata)

; A vtable that contains a non-nfunc entry, @regular_non_virtual_funcA, but
; without a range specific in !vcall_visibility, which means *all* function
; pointers are eligible for VFE, so GlobalDCE will treat the
; @regular_non_virtual_funcA slot as eligible for VFE, and remove it.
@vtableA = internal unnamed_addr constant { [3 x ptr] } { [3 x ptr] [
  ptr @vfunc1_live,
  ptr @vfunc2_dead,
  ptr @regular_non_virtual_funcA 
]}, align 8, !type !{i64 0, !"vfunc1.type"}, !type !{i64 8, !"vfunc2.type"}, !vcall_visibility !{i64 2}

; CHECK:      @vtableA = internal unnamed_addr constant { [3 x ptr] } { [3 x ptr] [
; CHECK-SAME:   ptr @vfunc1_live,
; CHECK-SAME:   ptr null,
; CHECK-SAME:   ptr null
; CHECK-SAME: ] }, align 8


; A vtable that contains a non-nfunc entry, @regular_non_virtual_funcB, with a
; range of [0,16) which means only the first two entries are eligible for VFE.
; GlobalDCE should keep @regular_non_virtual_funcB in the vtable.
@vtableB = internal unnamed_addr constant { [3 x ptr] } { [3 x ptr] [
  ptr @vfunc1_live,
  ptr @vfunc2_dead,
  ptr @regular_non_virtual_funcB 
]}, align 8, !type !{i64 0, !"vfunc1.type"}, !type !{i64 8, !"vfunc2.type"}, !vcall_visibility !{i64 2, i64 0, i64 16}

; CHECK:      @vtableB = internal unnamed_addr constant { [3 x ptr] } { [3 x ptr] [
; CHECK-SAME:   ptr @vfunc1_live,
; CHECK-SAME:   ptr null,
; CHECK-SAME:   ptr @regular_non_virtual_funcB 
; CHECK-SAME: ] }, align 8

; A vtable that contains a non-nfunc entry, @regular_non_virtual_funcB, with a
; range of [0,16) which means only the first two entries are eligible for VFE.
; GlobalDCE should keep @regular_non_virtual_funcB in the vtable.
@vtableC = internal unnamed_addr constant { [3 x ptr] } { [3 x ptr] [
  ptr @regular_non_virtual_funcC,
  ptr @vfunc1_live,
  ptr @vfunc2_dead 
]}, align 8, !type !{i64 8, !"vfunc1.type"}, !type !{i64 16, !"vfunc2.type"}, !vcall_visibility !{i64 2, i64 8, i64 24}

; CHECK:      @vtableC = internal unnamed_addr constant { [3 x ptr] } { [3 x ptr] [
; CHECK-SAME:   ptr @regular_non_virtual_funcC,
; CHECK-SAME:   ptr @vfunc1_live,
; CHECK-SAME:   ptr null
; CHECK-SAME: ] }, align 8

; A vtable with "relative pointers"
@vtableD = internal unnamed_addr constant { i32, i32, ptr } {
  i32 trunc (i64 sub (i64 ptrtoint (ptr @vfunc1_live              to i64), i64 ptrtoint (ptr @vtableD to i64)) to i32),
  i32 trunc (i64 sub (i64 ptrtoint (ptr @vfunc2_dead              to i64), i64 ptrtoint (ptr @vtableD to i64)) to i32),
  ptr @regular_non_virtual_funcD 
}, align 8, !type !{i64 0, !"vfunc1.type"}, !type !{i64 4, !"vfunc2.type"}, !vcall_visibility !{i64 2, i64 0, i64 8}

; CHECK:      @vtableD = internal unnamed_addr constant { i32, i32, ptr } {
; CHECK-SAME:   i32 trunc (i64 sub (i64 ptrtoint (ptr @vfunc1_live              to i64), i64 ptrtoint (ptr @vtableD to i64)) to i32),
; CHECK-SAME:   i32 0,
; CHECK-SAME:   ptr @regular_non_virtual_funcD 
; CHECK-SAME: }, align 8

; (1) vfunc1_live is referenced from @main, stays alive
define internal void @vfunc1_live() {
  ; CHECK: define internal void @vfunc1_live(
  ret void
}

; (2) vfunc2_dead is never referenced, gets removed and vtable slot is null'd
define internal void @vfunc2_dead() {
  ; CHECK-NOT: define internal void @vfunc2_dead(
  ret void
}

; (3) not using a range in !vcall_visibility, global gets removed
define internal void @regular_non_virtual_funcA() {
  ; CHECK-NOT: define internal void @regular_non_virtual_funcA(
  ret void
}

; (4) using a range in !vcall_visibility, pointer is outside of range, so should
; stay alive
define internal void @regular_non_virtual_funcB() {
  ; CHECK: define internal void @regular_non_virtual_funcB(
  ret void
}

; (5) using a range in !vcall_visibility, pointer is outside of range, so should
; stay alive
define internal void @regular_non_virtual_funcC() {
  ; CHECK: define internal void @regular_non_virtual_funcC(
  ret void
}

; (6) using a range in !vcall_visibility, pointer is outside of range, so should
; stay alive
define internal void @regular_non_virtual_funcD() {
  ; CHECK: define internal void @regular_non_virtual_funcD(
  ret void
}

define void @main() {
  %1 = ptrtoint { [3 x ptr] }* @vtableA to i64 ; to keep @vtableA alive
  %2 = ptrtoint { [3 x ptr] }* @vtableB to i64 ; to keep @vtableB alive
  %3 = ptrtoint { [3 x ptr] }* @vtableC to i64 ; to keep @vtableC alive
  %4 = ptrtoint { i32, i32, ptr }* @vtableD to i64 ; to keep @vtableD alive
  %5 = tail call { ptr, i1 } @llvm.type.checked.load(ptr null, i32 0, metadata !"vfunc1.type")
  ret void
}

!999 = !{i32 1, !"Virtual Function Elim", i32 1}
!llvm.module.flags = !{!999}