blob: d0cfa093ecdf32b00fb0641793774e9aea9d0059 [file] [log] [blame]
Piotr Padlewskid9830eb2016-09-26 20:37:32 +00001; Test to check the callgraph in summary when there is PGO
2; RUN: opt -module-summary %s -o %t.o
3; RUN: llvm-bcanalyzer -dump %t.o | FileCheck %s
4; RUN: opt -module-summary %p/Inputs/thinlto-function-summary-callgraph-profile-summary.ll -o %t2.o
5; RUN: llvm-lto -thinlto -o %t3 %t.o %t2.o
6; RUN: llvm-bcanalyzer -dump %t3.thinlto.bc | FileCheck %s --check-prefix=COMBINED
7
8
Peter Collingbournea0f371a2017-04-17 17:51:36 +00009; CHECK: <SOURCE_FILENAME
10; "hot_function"
11; CHECK-NEXT: <FUNCTION op0=0 op1=12
12; "hot1"
13; CHECK-NEXT: <FUNCTION op0=12 op1=4
14; "hot2"
15; CHECK-NEXT: <FUNCTION op0=16 op1=4
16; "hot3"
17; CHECK-NEXT: <FUNCTION op0=20 op1=4
18; "hot4"
19; CHECK-NEXT: <FUNCTION op0=24 op1=4
20; "cold"
21; CHECK-NEXT: <FUNCTION op0=28 op1=4
22; "none1"
23; CHECK-NEXT: <FUNCTION op0=32 op1=5
24; "none2"
25; CHECK-NEXT: <FUNCTION op0=37 op1=5
26; "none3"
27; CHECK-NEXT: <FUNCTION op0=42 op1=5
Piotr Padlewskid9830eb2016-09-26 20:37:32 +000028; CHECK-LABEL: <GLOBALVAL_SUMMARY_BLOCK
29; CHECK-NEXT: <VERSION
Peter Collingbournea0f371a2017-04-17 17:51:36 +000030; CHECK-NEXT: <VALUE_GUID op0=25 op1=123/>
31; op4=hot1 op6=cold op8=hot2 op10=hot4 op12=none1 op14=hot3 op16=none2 op18=none3 op20=123
Charles Saternos75da10d2017-08-04 16:00:58 +000032; CHECK-NEXT: <PERMODULE_PROFILE {{.*}} op5=1 op6=3 op7=5 op8=1 op9=2 op10=3 op11=4 op12=1 op13=6 op14=2 op15=3 op16=3 op17=7 op18=2 op19=8 op20=2 op21=25 op22=4/>
Piotr Padlewskid9830eb2016-09-26 20:37:32 +000033; CHECK-NEXT: </GLOBALVAL_SUMMARY_BLOCK>
Peter Collingbournea0f371a2017-04-17 17:51:36 +000034
35; CHECK: <STRTAB_BLOCK
Peter Collingbourne92648c22017-06-27 23:50:11 +000036; CHECK-NEXT: blob data = 'hot_functionhot1hot2hot3hot4coldnone1none2none3{{.*}}'
Piotr Padlewskid9830eb2016-09-26 20:37:32 +000037
38; COMBINED: <GLOBALVAL_SUMMARY_BLOCK
39; COMBINED-NEXT: <VERSION
Peter Collingbournea0f371a2017-04-17 17:51:36 +000040; COMBINED-NEXT: <VALUE_GUID
41; COMBINED-NEXT: <VALUE_GUID
42; COMBINED-NEXT: <VALUE_GUID
43; COMBINED-NEXT: <VALUE_GUID
44; COMBINED-NEXT: <VALUE_GUID
45; COMBINED-NEXT: <VALUE_GUID
46; COMBINED-NEXT: <VALUE_GUID
47; COMBINED-NEXT: <VALUE_GUID
Piotr Padlewskid9830eb2016-09-26 20:37:32 +000048; COMBINED-NEXT: <COMBINED abbrevid=
49; COMBINED-NEXT: <COMBINED abbrevid=
50; COMBINED-NEXT: <COMBINED abbrevid=
51; COMBINED-NEXT: <COMBINED abbrevid=
52; COMBINED-NEXT: <COMBINED abbrevid=
53; COMBINED-NEXT: <COMBINED abbrevid=
Charles Saternos75da10d2017-08-04 16:00:58 +000054; COMBINED-NEXT: <COMBINED_PROFILE {{.*}} op6=[[HOT1:.*]] op7=3 op8=[[COLD:.*]] op9=1 op10=[[HOT2:.*]] op11=3 op12=[[NONE1:.*]] op13=2 op14=[[HOT3:.*]] op15=3 op16=[[NONE2:.*]] op17=2 op18=[[NONE3:.*]] op19=2/>
Piotr Padlewskid9830eb2016-09-26 20:37:32 +000055; COMBINED_NEXT: <COMBINED abbrevid=
56; COMBINED_NEXT: </GLOBALVAL_SUMMARY_BLOCK>
57
58
59; ModuleID = 'thinlto-function-summary-callgraph.ll'
60target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
61target triple = "x86_64-unknown-linux-gnu"
62
63; This function have high profile count, so entry block is hot.
64define void @hot_function(i1 %a, i1 %a2) !prof !20 {
65entry:
66 call void @hot1()
67 br i1 %a, label %Cold, label %Hot, !prof !41
68Cold: ; 1/1000 goes here
69 call void @cold()
70 call void @hot2()
Dehao Chen190f17c2017-03-21 17:22:35 +000071 call void @hot4(), !prof !15
Piotr Padlewskid9830eb2016-09-26 20:37:32 +000072 call void @none1()
73 br label %exit
74Hot: ; 999/1000 goes here
75 call void @hot2()
76 call void @hot3()
77 br i1 %a2, label %None1, label %None2, !prof !42
78None1: ; half goes here
79 call void @none1()
80 call void @none2()
81 br label %exit
82None2: ; half goes here
83 call void @none3()
84 br label %exit
85exit:
86 ret void
87}
88
89declare void @hot1() #1
90declare void @hot2() #1
91declare void @hot3() #1
Dehao Chen190f17c2017-03-21 17:22:35 +000092declare void @hot4() #1
Piotr Padlewskid9830eb2016-09-26 20:37:32 +000093declare void @cold() #1
94declare void @none1() #1
95declare void @none2() #1
96declare void @none3() #1
97
98
99!41 = !{!"branch_weights", i32 1, i32 1000}
100!42 = !{!"branch_weights", i32 1, i32 1}
101
102
103
104!llvm.module.flags = !{!1}
Dehao Chena60cdd32017-02-28 18:09:44 +0000105!20 = !{!"function_entry_count", i64 110, i64 123}
Piotr Padlewskid9830eb2016-09-26 20:37:32 +0000106
107!1 = !{i32 1, !"ProfileSummary", !2}
108!2 = !{!3, !4, !5, !6, !7, !8, !9, !10}
109!3 = !{!"ProfileFormat", !"InstrProf"}
110!4 = !{!"TotalCount", i64 10000}
111!5 = !{!"MaxCount", i64 10}
112!6 = !{!"MaxInternalCount", i64 1}
113!7 = !{!"MaxFunctionCount", i64 1000}
114!8 = !{!"NumCounts", i64 3}
115!9 = !{!"NumFunctions", i64 3}
116!10 = !{!"DetailedSummary", !11}
117!11 = !{!12, !13, !14}
118!12 = !{i32 10000, i64 100, i32 1}
119!13 = !{i32 999000, i64 100, i32 1}
120!14 = !{i32 999999, i64 1, i32 2}
Dehao Chen190f17c2017-03-21 17:22:35 +0000121!15 = !{!"branch_weights", i32 100}