1; RUN: opt -thinlto-bc %s -write-relbf-to-summary -thin-link-bitcode-file=%t1.thinlink.bc -o %t1.bc 2; RUN: opt -thinlto-bc %p/Inputs/function_entry_count.ll -write-relbf-to-summary -thin-link-bitcode-file=%t2.thinlink.bc -o %t2.bc 3 4; First perform the thin link on the normal bitcode file. 5; RUN: llvm-lto2 run %t1.bc %t2.bc -o %t.o -save-temps -disable-thinlto-funcattrs=0 -thinlto-synthesize-entry-counts \ 6; RUN: -r=%t1.bc,g, \ 7; RUN: -r=%t1.bc,f,px \ 8; RUN: -r=%t1.bc,h,px \ 9; RUN: -r=%t2.bc,h, \ 10; RUN: -r=%t2.bc,g,px 11; RUN: llvm-dis -o - %t.o.1.3.import.bc | FileCheck %s 12 13; RUN: llvm-lto -thinlto-action=run -disable-thinlto-funcattrs=0 -thinlto-synthesize-entry-counts -exported-symbol=f \ 14; RUN: -exported-symbol=g -exported-symbol=h -thinlto-save-temps=%t3. %t1.bc %t2.bc 15; RUN: llvm-dis %t3.0.3.imported.bc -o - | FileCheck %s 16 17; CHECK: define void @h() [[ATTR:#[0-9]+]] !prof ![[PROF2:[0-9]+]] 18; CHECK: define void @f(i32{{.*}}) [[ATTR:#[0-9]+]] !prof ![[PROF1:[0-9]+]] 19; CHECK: define available_externally void @g() !prof ![[PROF2]] 20; CHECK-DAG: ![[PROF1]] = !{!"synthetic_function_entry_count", i64 10} 21; CHECK-DAG: ![[PROF2]] = !{!"synthetic_function_entry_count", i64 198} 22; CHECK-DAG: attributes [[ATTR]] = { norecurse nounwind } 23 24target triple = "x86_64-unknown-linux-gnu" 25target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" 26 27declare void @g(); 28 29define void @h() { 30 ret void 31} 32 33define void @f(i32 %n) { 34entry: 35 %cmp = icmp slt i32 %n, 1 36 br i1 %cmp, label %exit, label %loop 37loop: 38 %n1 = phi i32 [%n, %entry], [%n2, %loop] 39 call void @g() 40 %n2 = sub i32 %n1, 1 41 %cmp2 = icmp slt i32 %n, 1 42 br i1 %cmp2, label %exit, label %loop 43exit: 44 ret void 45} 46