15a7056faSEaswaran Raman; RUN: opt -thinlto-bc %s -write-relbf-to-summary -thin-link-bitcode-file=%t1.thinlink.bc -o %t1.bc
25a7056faSEaswaran Raman; RUN: opt -thinlto-bc %p/Inputs/function_entry_count.ll -write-relbf-to-summary -thin-link-bitcode-file=%t2.thinlink.bc -o %t2.bc
35a7056faSEaswaran Raman
45a7056faSEaswaran Raman; First perform the thin link on the normal bitcode file.
5*20faf789Smodimo; RUN: llvm-lto2 run %t1.bc %t2.bc -o %t.o -save-temps -disable-thinlto-funcattrs=0 -thinlto-synthesize-entry-counts \
65a7056faSEaswaran Raman; RUN:     -r=%t1.bc,g, \
75a7056faSEaswaran Raman; RUN:     -r=%t1.bc,f,px \
85a7056faSEaswaran Raman; RUN:     -r=%t1.bc,h,px \
95a7056faSEaswaran Raman; RUN:     -r=%t2.bc,h, \
105a7056faSEaswaran Raman; RUN:     -r=%t2.bc,g,px
115a7056faSEaswaran Raman; RUN: llvm-dis -o - %t.o.1.3.import.bc | FileCheck %s
125a7056faSEaswaran Raman
13*20faf789Smodimo; RUN: llvm-lto -thinlto-action=run -disable-thinlto-funcattrs=0 -thinlto-synthesize-entry-counts -exported-symbol=f \
145a7056faSEaswaran Raman; RUN:     -exported-symbol=g -exported-symbol=h -thinlto-save-temps=%t3. %t1.bc %t2.bc
155a7056faSEaswaran Raman; RUN: llvm-dis %t3.0.3.imported.bc -o - | FileCheck %s
165a7056faSEaswaran Raman
17*20faf789Smodimo; CHECK: define void @h() [[ATTR:#[0-9]+]] !prof ![[PROF2:[0-9]+]]
18*20faf789Smodimo; CHECK: define void @f(i32{{.*}}) [[ATTR:#[0-9]+]] !prof ![[PROF1:[0-9]+]]
195a7056faSEaswaran Raman; CHECK: define available_externally void @g() !prof ![[PROF2]]
205a7056faSEaswaran Raman; CHECK-DAG: ![[PROF1]] = !{!"synthetic_function_entry_count", i64 10}
215a7056faSEaswaran Raman; CHECK-DAG: ![[PROF2]] = !{!"synthetic_function_entry_count", i64 198}
22*20faf789Smodimo; CHECK-DAG: attributes [[ATTR]] = { norecurse nounwind }
235a7056faSEaswaran Raman
245a7056faSEaswaran Ramantarget triple = "x86_64-unknown-linux-gnu"
257b1d7937SAmy Huangtarget datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
265a7056faSEaswaran Raman
275a7056faSEaswaran Ramandeclare void @g();
285a7056faSEaswaran Raman
295a7056faSEaswaran Ramandefine void @h() {
305a7056faSEaswaran Raman  ret void
315a7056faSEaswaran Raman}
325a7056faSEaswaran Raman
335a7056faSEaswaran Ramandefine void @f(i32 %n) {
345a7056faSEaswaran Ramanentry:
355a7056faSEaswaran Raman  %cmp = icmp slt i32 %n, 1
365a7056faSEaswaran Raman  br i1 %cmp, label %exit, label %loop
375a7056faSEaswaran Ramanloop:
385a7056faSEaswaran Raman  %n1 = phi i32 [%n, %entry], [%n2, %loop]
395a7056faSEaswaran Raman  call void  @g()
405a7056faSEaswaran Raman  %n2 = sub i32 %n1, 1
415a7056faSEaswaran Raman  %cmp2 = icmp slt i32 %n, 1
425a7056faSEaswaran Raman  br i1 %cmp2, label %exit, label %loop
435a7056faSEaswaran Ramanexit:
445a7056faSEaswaran Raman  ret void
455a7056faSEaswaran Raman}
46