[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / tools / gold / X86 / opt-remarks.ll
blobfceca23d532b36187868224442f04ea749149a6a
1 ; Test plugin options for opt-remarks.
2 ; RUN: llvm-as %s -o %t.o
3 ; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold%shlibext -shared \
4 ; RUN:    -plugin-opt=save-temps -plugin-opt=legacy-pass-manager \
5 ; RUN:    -plugin-opt=opt-remarks-passes=inline \
6 ; RUN:    -plugin-opt=opt-remarks-format=yaml \
7 ; RUN:    -plugin-opt=opt-remarks-filename=%t.yaml %t.o -o %t2.o 2>&1
8 ; RUN: llvm-dis %t2.o.0.4.opt.bc -o - | FileCheck %s
9 ; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold%shlibext -shared \
10 ; RUN:    -plugin-opt=opt-remarks-passes=inline \
11 ; RUN:    -plugin-opt=opt-remarks-format=yaml \
12 ; RUN:    -plugin-opt=opt-remarks-with-hotness \
13 ; RUN:    -plugin-opt=opt-remarks-filename=%t.hot.yaml %t.o -o %t2.o 2>&1
14 ; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold%shlibext -shared \
15 ; RUN:    -plugin-opt=opt-remarks-passes=inline \
16 ; RUN:    -plugin-opt=opt-remarks-format=yaml \
17 ; RUN:    -plugin-opt=opt-remarks-with-hotness \
18 ; RUN:    -plugin-opt=opt-remarks-hotness-threshold=300 \
19 ; RUN:    -plugin-opt=opt-remarks-filename=%t.t300.yaml %t.o -o %t2.o 2>&1
20 ; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold%shlibext -shared \
21 ; RUN:    -plugin-opt=opt-remarks-passes=inline \
22 ; RUN:    -plugin-opt=opt-remarks-format=yaml \
23 ; RUN:    -plugin-opt=opt-remarks-with-hotness \
24 ; RUN:    -plugin-opt=opt-remarks-hotness-threshold=301 \
25 ; RUN:    -plugin-opt=opt-remarks-filename=%t.t301.yaml %t.o -o %t2.o 2>&1
26 ; RUN: cat %t.yaml | FileCheck %s -check-prefix=YAML
27 ; RUN: cat %t.hot.yaml | FileCheck %s -check-prefix=YAML-HOT
28 ; RUN: FileCheck %s -check-prefix=YAML-HOT < %t.t300.yaml
29 ; RUN: count 0 < %t.t301.yaml
31 ; Check that @f is inlined after optimizations.
32 ; CHECK-LABEL: define i32 @_start
33 ; CHECK-NEXT:  %a.i = tail call i32 @bar()
34 ; CHECK-NEXT:  ret i32 %a.i
35 ; CHECK-NEXT: }
37 ; YAML: --- !Missed
38 ; YAML-NEXT: Pass:            inline
39 ; YAML-NEXT: Name:            NoDefinition
40 ; YAML-NEXT: Function:        f
41 ; YAML-NEXT: Args:
42 ; YAML-NEXT:   - Callee:          bar
43 ; YAML-NEXT:   - String:          ' will not be inlined into '
44 ; YAML-NEXT:   - Caller:          f
45 ; YAML-NEXT:   - String:          ' because its definition is unavailable'
46 ; YAML-NEXT: ...
47 ; YAML-NEXT: --- !Passed
48 ; YAML-NEXT: Pass:            inline
49 ; YAML-NEXT: Name:            Inlined
50 ; YAML-NEXT: Function:        _start
51 ; YAML-NEXT: Args:
52 ; YAML-NEXT:   - String:          ''''
53 ; YAML-NEXT:   - Callee:          f
54 ; YAML-NEXT:   - String:          ''' inlined into '''
55 ; YAML-NEXT:   - Caller:          _start
56 ; YAML-NEXT:   - String:          ''''
57 ; YAML-NEXT:   - String:          ' with '
58 ; YAML-NEXT:   - String:          '(cost='
59 ; YAML-NEXT:   - Cost:            '0'
60 ; YAML-NEXT:   - String:          ', threshold='
61 ; YAML-NEXT:   - Threshold:       '337'
62 ; YAML-NEXT:   - String:          ')'
63 ; YAML-NEXT: ...
65 ; YAML-HOT: --- !Passed
66 ; YAML-HOT: Pass:            inline
67 ; YAML-HOT-NEXT: Name:            Inlined
68 ; YAML-HOT-NEXT: Function:        _start
69 ; YAML-HOT-NEXT: Hotness:         300
70 ; YAML-HOT-NEXT: Args:
71 ; YAML-HOT-NEXT:   - String:          ''''
72 ; YAML-HOT-NEXT:   - Callee:          f
73 ; YAML-HOT-NEXT:   - String:          ''' inlined into '''
74 ; YAML-HOT-NEXT:   - Caller:          _start
75 ; YAML-HOT-NEXT:   - String:          ''''
76 ; YAML-HOT-NEXT:   - String:          ' with '
77 ; YAML-HOT-NEXT:   - String:          '(cost='
78 ; YAML-HOT-NEXT:   - Cost:            '0'
79 ; YAML-HOT-NEXT:   - String:          ', threshold='
80 ; YAML-HOT-NEXT:   - Threshold:       '337'
81 ; YAML-HOT-NEXT:   - String:          ')'
82 ; YAML-HOT-NEXT: ...
84 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
85 target triple = "x86_64-unknown-linux-gnu"
87 declare i32 @bar()
89 define i32 @f() {
90   %a = call i32 @bar()
91   ret i32 %a
94 define i32 @_start() !prof !0 {
95   %call = call i32 @f()
96   ret i32 %call
99 !0 = !{!"function_entry_count", i64 300}