aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/DebugInfo/KeyInstructions/Generic/simplifycfg-thread-phi.ll
blob: 774c637e3b831bb6e425b9069f895f7d2c3b0084 (plain)
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
; RUN: opt %s -passes=simplifycfg -simplifycfg-require-and-preserve-domtree=1 -S \
; RUN: | FileCheck %s

;; Generated using:
;;   opt -passes=debugify --debugify-atoms --debugify-level=locations \
;;      llvm/test/Transforms/SimplifyCFG/debug-info-thread-phi.ll
;; With unused/untested metadata nodes removed.

;; Check the duplicated store gets distinct atom info in each branch.

; CHECK-LABEL: @bar(
; CHECK: if.then:
; CHECK:   store i32 1{{.*}}, !dbg [[DBG1:!.*]]
; CHECK: if.end.1.critedge:
; CHECK:   store i32 1{{.*}}, !dbg [[DBG2:!.*]]
;
; CHECK: distinct !DISubprogram(name: "bar", {{.*}}keyInstructions: true)
; CHECK: [[DBG1]] = !DILocation(line: 1{{.*}}, atomGroup: 1
; CHECK: [[DBG2]] = !DILocation(line: 1{{.*}}, atomGroup: 2

define void @bar(i32 %aa) !dbg !5 {
entry:
  %aa.addr = alloca i32, align 4
  %bb = alloca i32, align 4
  store i32 %aa, ptr %aa.addr, align 4
  store i32 0, ptr %bb, align 4
  %tobool = icmp ne i32 %aa, 0
  br i1 %tobool, label %if.then, label %if.end

if.then:                                          ; preds = %entry
  call void @foo()
  br label %if.end

if.end:                                           ; preds = %if.then, %entry
  store i32 1, ptr %bb, align 4, !dbg !8
  br i1 %tobool, label %if.then.1, label %if.end.1

if.then.1:                                        ; preds = %if.end
  call void @foo()
  br label %if.end.1

if.end.1:                                         ; preds = %if.then.1, %if.end
  store i32 2, ptr %bb, align 4
  br label %for.end

for.end:                                          ; preds = %if.end.1
  ret void
}

declare void @foo()

!llvm.dbg.cu = !{!0}
!llvm.debugify = !{!2, !3}
!llvm.module.flags = !{!4}

!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug)
!1 = !DIFile(filename: "llvm/test/Transforms/SimplifyCFG/debug-info-thread-phi.ll", directory: "/")
!2 = !{i32 15}
!3 = !{i32 0}
!4 = !{i32 2, !"Debug Info Version", i32 3}
!5 = distinct !DISubprogram(name: "bar", linkageName: "bar", scope: null, file: !1, line: 1, type: !6, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, keyInstructions: true)
!6 = !DISubroutineType(types: !7)
!7 = !{}
!8 = !DILocation(line: 1, column: 1, scope: !5, atomGroup: 1, atomRank: 1)