File: stack-protector-guard-module-attrs.ll

package info (click to toggle)
llvm-toolchain-17 1%3A17.0.6-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,799,624 kB
  • sloc: cpp: 6,428,607; ansic: 1,383,196; asm: 793,408; python: 223,504; objc: 75,364; f90: 60,502; lisp: 33,869; pascal: 15,282; sh: 9,684; perl: 7,453; ml: 4,937; awk: 3,523; makefile: 2,889; javascript: 2,149; xml: 888; fortran: 619; cs: 573
file content (77 lines) | stat: -rw-r--r-- 2,377 bytes parent folder | download | duplicates (19)
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
; RUN: split-file %s %t
; RUN: not llvm-link %t/a.ll %t/b.ll 2>&1 | FileCheck --check-prefix=CHECK-KIND %s
; RUN: not llvm-link %t/c.ll %t/d.ll 2>&1 | FileCheck --check-prefix=CHECK-REG %s
; RUN: not llvm-link %t/e.ll %t/f.ll 2>&1 | FileCheck --check-prefix=CHECK-OFFSET %s
; RUN: llvm-link %t/g.ll %t/h.ll

; CHECK-KIND: error: linking module flags 'stack-protector-guard': IDs have conflicting values
; CHECK-REG: error: linking module flags 'stack-protector-guard-reg': IDs have conflicting values
; CHECK-OFFSET: error: linking module flags 'stack-protector-guard-offset': IDs have conflicting values

;--- a.ll
; Test that different values of stack-protector-guard fail.
define void @foo() sspstrong {
  ret void
}
!llvm.module.flags = !{!0}
!0 = !{i32 1, !"stack-protector-guard", !"sysreg"}
;--- b.ll
declare void @foo() sspstrong
define void @bar() sspstrong {
  call void @foo()
  ret void
}
!llvm.module.flags = !{!0}
!0 = !{i32 1, !"stack-protector-guard", !"global"}

;--- c.ll
; Test that different values of stack-protector-guard-reg fail.
define void @foo() sspstrong {
  ret void
}
!llvm.module.flags = !{!0}
!0 = !{i32 1, !"stack-protector-guard-reg", !"sp_el0"}
;--- d.ll
declare void @foo() sspstrong
define void @bar() sspstrong {
  call void @foo()
  ret void
}
!llvm.module.flags = !{!0}
!0 = !{i32 1, !"stack-protector-guard-reg", !"sp_el1"}

;--- e.ll
; Test that different values of stack-protector-guard-offset fail.
define void @foo() sspstrong {
  ret void
}
!llvm.module.flags = !{!0}
!0 = !{i32 1, !"stack-protector-guard-offset", i32 257}
;--- f.ll
declare void @foo() sspstrong
define void @bar() sspstrong {
  call void @foo()
  ret void
}
!llvm.module.flags = !{!0}
!0 = !{i32 1, !"stack-protector-guard-offset", i32 256}

;--- g.ll
; Test that the same values for the three module attributes succeed.
define void @foo() sspstrong {
  ret void
}
!llvm.module.flags = !{!0, !1, !2}
!0 = !{i32 1, !"stack-protector-guard", !"sysreg"}
!1 = !{i32 1, !"stack-protector-guard-reg", !"sp_el0"}
!2 = !{i32 1, !"stack-protector-guard-offset", i32 257}
;--- h.ll
declare void @foo() sspstrong
define void @bar() sspstrong {
  call void @foo()
  ret void
}
!llvm.module.flags = !{!0, !1, !2}
!0 = !{i32 1, !"stack-protector-guard", !"sysreg"}
!1 = !{i32 1, !"stack-protector-guard-reg", !"sp_el0"}
!2 = !{i32 1, !"stack-protector-guard-offset", i32 257}