1 ; RUN: opt -module-summary %s -o %t1.bc
2 ; RUN: opt -module-summary %p/Inputs/diagnostic-handler-remarks.ll -o %t2.bc
4 ; Check that the hotness attribute is included in the optimization record file
5 ; with -lto-pass-remarks-with-hotness.
7 ; RUN: llvm-lto -thinlto-action=run \
8 ; RUN: -lto-pass-remarks-output=%t.yaml \
9 ; RUN: -lto-pass-remarks-with-hotness \
10 ; RUN: -exported-symbol _func2 \
11 ; RUN: -exported-symbol _main %t1.bc %t2.bc 2>&1 | \
12 ; RUN: FileCheck %s -allow-empty
14 ; CHECK-NOT: llvm-lto:
17 ; Verify that bar is imported and inlined into foo
18 ; RUN: cat %t.yaml.thin.0.yaml | FileCheck %s -check-prefix=YAML1
20 ; YAML1-NEXT: Pass: inline
21 ; YAML1-NEXT: Name: Inlined
22 ; YAML1-NEXT: Function: main
23 ; YAML1-NEXT: Hotness: 50
25 ; YAML1-NEXT: - Callee: foo
26 ; YAML1-NEXT: - String: ' inlined into '
27 ; YAML1-NEXT: - Caller: main
28 ; YAML1-NEXT: - String: ' with '
29 ; YAML1-NEXT: - String: '(cost='
30 ; YAML1-NEXT: - Cost: '-30'
31 ; YAML1-NEXT: - String: ', threshold='
32 ; YAML1-NEXT: - Threshold: '337'
33 ; YAML1-NEXT: - String: ')'
37 ; Verify that bar is imported and inlined into foo
38 ; RUN: cat %t.yaml.thin.1.yaml | FileCheck %s -check-prefix=YAML2
40 ; YAML2-NEXT: Pass: inline
41 ; YAML2-NEXT: Name: Inlined
42 ; YAML2-NEXT: Function: foo
44 ; YAML2-NEXT: - Callee: bar
45 ; YAML2-NEXT: - String: ' inlined into '
46 ; YAML2-NEXT: - Caller: foo
47 ; YAML2-NEXT: - String: ' with '
48 ; YAML2-NEXT: - String: '(cost='
49 ; YAML2-NEXT: - Cost: '-30'
50 ; YAML2-NEXT: - String: ', threshold='
51 ; YAML2-NEXT: - Threshold: '337'
52 ; YAML2-NEXT: - String: ')'
56 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
57 target triple = "x86_64-apple-macosx10.11.0"
63 define i32 @main() !prof !0 {
68 !0 = !{!"function_entry_count", i64 50}