File: tbaa-struct.ll

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (40 lines) | stat: -rw-r--r-- 1,117 bytes parent folder | download | duplicates (7)
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
; RUN: llvm-as < %s 2>&1

; FIXME: The verifer should reject the invalid !tbaa.struct nodes below.

define void @test_overlapping_regions(ptr %a1) {
  %ld = load i8, ptr %a1, align 1, !tbaa.struct !0
  ret void
}

define void @test_size_not_integer(ptr %a1) {
  store i8 1, ptr %a1, align 1, !tbaa.struct !5
  ret void
}

define void @test_offset_not_integer(ptr %a1, ptr %a2) {
  tail call void @llvm.memcpy.p0.p0.i64(ptr align 8 %a1, ptr align 8 %a2, i64 16, i1 false), !tbaa.struct !6
  ret void
}

define void @test_tbaa_missing(ptr %a1, ptr %a2) {
  tail call void @llvm.memcpy.p0.p0.i64(ptr align 8 %a1, ptr align 8 %a2, i64 16, i1 false), !tbaa.struct !7
  ret void
}

define void @test_tbaa_invalid(ptr %a1) {
  store i8 1, ptr %a1, align 1, !tbaa.struct !8
  ret void
}

declare void @llvm.memcpy.p0.p0.i64(ptr nocapture, ptr nocapture, i64, i1) nounwind

!0 = !{i64 0, i64 4, !1, i64 1, i64 4, !1}
!1 = !{!2, !2, i64 0}
!2 = !{!"int", !3, i64 0}
!3 = !{!"omnipotent char", !4, i64 0}
!4 = !{!"Simple C++ TBAA"}
!5 = !{i64 0, !2, !1}
!6 = !{!2, i64 0, !1}
!7 = !{i64 0, i64 4, null}
!8 = !{i64 0, i64 4, !2}