• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: mkdir -p %t && cd %t
2; RUN: opt < %s -passes=insert-gcov-profiling -S | FileCheck %s
3
4; CHECK:       @__llvm_gcov_ctr = internal global [1 x i64] zeroinitializer
5
6;; If an indirectbr critical edge cannot be split, ignore it.
7;; The edge will not be profiled.
8; CHECK-LABEL: @cannot_split(
9; CHECK:       indirect.preheader:
10; CHECK-NEXT:    load {{.*}} @__llvm_gcov_ctr
11; CHECK-NOT:     load {{.*}} @__llvm_gcov_ctr
12
13define dso_local i32 @cannot_split(i8* nocapture readonly %p) #0 !dbg !7 {
14entry:
15  %targets = alloca <2 x i8*>, align 16
16  store <2 x i8*> <i8* blockaddress(@cannot_split, %indirect), i8* blockaddress(@cannot_split, %end)>, <2 x i8*>* %targets, align 16, !dbg !9
17  br label %for.cond, !dbg !14
18
19for.cond:                                         ; preds = %for.cond, %entry
20  %p.addr.0 = phi i8* [ %p, %entry ], [ %incdec.ptr, %for.cond ]
21  %0 = load i8, i8* %p.addr.0, align 1, !dbg !15
22  %cmp = icmp eq i8 %0, 7, !dbg !17
23  %incdec.ptr = getelementptr inbounds i8, i8* %p.addr.0, i64 1, !dbg !18
24  br i1 %cmp, label %indirect.preheader, label %for.cond, !dbg !15, !llvm.loop !19
25
26indirect.preheader:                               ; preds = %for.cond
27  %1 = load i8, i8* %incdec.ptr, align 1, !dbg !21
28  %idxprom = sext i8 %1 to i64, !dbg !21
29  %arrayidx4 = getelementptr inbounds <2 x i8*>, <2 x i8*>* %targets, i64 0, i64 %idxprom, !dbg !21
30  %2 = load i8*, i8** %arrayidx4, align 8, !dbg !21
31  br label %indirect
32
33indirect:                                         ; preds = %indirect.preheader, %indirect
34  indirectbr i8* %2, [label %indirect, label %end]
35
36end:                                              ; preds = %indirect
37  ret i32 0, !dbg !22
38}
39
40attributes #0 = { norecurse nounwind readonly uwtable "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "frame-pointer"="none" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" }
41
42!llvm.dbg.cu = !{!0}
43!llvm.module.flags = !{!3, !4, !5}
44
45!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 12.0.0", isOptimized: true, runtimeVersion: 0, emissionKind: LineTablesOnly, enums: !2, splitDebugInlining: false, nameTableKind: None)
46!1 = !DIFile(filename: "a.c", directory: "/tmp/c")
47!2 = !{}
48!3 = !{i32 7, !"Dwarf Version", i32 4}
49!4 = !{i32 2, !"Debug Info Version", i32 3}
50!5 = !{i32 1, !"wchar_size", i32 4}
51!7 = distinct !DISubprogram(name: "cannot_split", scope: !1, file: !1, line: 1, type: !8, scopeLine: 1, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !2)
52!8 = !DISubroutineType(types: !2)
53!9 = !DILocation(line: 3, column: 14, scope: !7)
54!14 = !DILocation(line: 5, column: 3, scope: !7)
55!15 = !DILocation(line: 6, column: 9, scope: !7)
56!17 = !DILocation(line: 6, column: 12, scope: !7)
57!18 = !DILocation(line: 5, column: 12, scope: !7)
58!19 = distinct !{!19, !14, !20}
59!20 = !DILocation(line: 9, column: 5, scope: !7)
60!21 = !DILocation(line: 0, scope: !7)
61!22 = !DILocation(line: 11, column: 3, scope: !7)
62