File: analyze-branch-bkpt.ll

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,538; xml: 953; cs: 573; fortran: 567
file content (61 lines) | stat: -rw-r--r-- 2,266 bytes parent folder | download | duplicates (23)
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
; RUN: llc -o - %s -mtriple thumbv4-unknown-linux-android | FileCheck --check-prefix=V4 %s
; RUN: llc -o - %s -mtriple thumbv5-unknown-linux-android | FileCheck --check-prefix=V5 %s

; V4: udf #254
; V5: bkpt #0

define i1 @a(i32 %b) !dbg !3 {
  br i1 undef, label %c, label %d, !dbg !4

d:                                                ; preds = %0
  call void @llvm.debugtrap()
  br label %ah, !dbg !4

c:                                                ; preds = %0
  %aj = icmp ne i20 undef, 5
  br label %ah, !dbg !4

ah:                                               ; preds = %c, %d
  %ak = phi i1 [ false, %d ], [ %aj, %c ]
  call void @llvm.dbg.value(metadata i1 %ak, metadata !7, metadata !DIExpression()), !dbg !9
  switch i32 %b, label %al [
    i32 0, label %am
    i32 10, label %an
  ]

an:                                               ; preds = %ah
  %ch = select i1 %ak, i32 0, i32 5
  br label %am, !dbg !10

al:                                               ; preds = %ah
  br label %am, !dbg !9

am:                                               ; preds = %al, %an, %ah
  %1 = phi i32 [ 0, %al ], [ %ch, %an ], [ %b, %ah ]
  unreachable
}

; Function Attrs: nounwind readnone speculatable
declare void @llvm.dbg.value(metadata, metadata, metadata) #0

; Function Attrs: nounwind
declare void @llvm.debugtrap() #1

attributes #0 = { nounwind readnone speculatable }
attributes #1 = { nounwind }

!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!2}

!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, isOptimized: false, runtimeVersion: 0, emissionKind: NoDebug)
!1 = !DIFile(filename: "a", directory: "")
!2 = !{i32 2, !"Debug Info Version", i32 3}
!3 = distinct !DISubprogram(scope: null, isLocal: false, isDefinition: true, isOptimized: false, unit: !0)
!4 = !DILocation(line: 0, scope: !5, inlinedAt: !6)
!5 = distinct !DISubprogram(scope: null, isLocal: false, isDefinition: true, isOptimized: false, unit: !0)
!6 = !DILocation(line: 0, scope: !3)
!7 = !DILocalVariable(scope: !8)
!8 = distinct !DISubprogram(scope: null, isLocal: false, isDefinition: true, isOptimized: false, unit: !0)
!9 = !DILocation(line: 0, scope: !8, inlinedAt: !6)
!10 = !DILocation(line: 0, scope: !11, inlinedAt: !6)
!11 = !DILexicalBlock(scope: !8)