[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / LTO / Resolution / X86 / diagnostic-handler-remarks.ll
bloba7a41b87f0f364dff7e0f0b4ee6810badea9500d
1 ; Test of LTO with opt remarks YAML output.
3 ; First try with Regular LTO
4 ; RUN: llvm-as < %s >%t.bc
5 ; RUN: rm -f %t.yaml
6 ; RUN: llvm-lto2 run -pass-remarks-output=%t.yaml \
7 ; RUN:           -pass-remarks-filter=inline \
8 ; RUN:           -r %t.bc,tinkywinky,p \
9 ; RUN:           -r %t.bc,patatino,px \
10 ; RUN:           -r %t.bc,main,px -o %t.o %t.bc
11 ; RUN: cat %t.yaml | FileCheck %s -check-prefix=YAML
13 ; Try again with ThinLTO
14 ; RUN: opt -module-summary %s -o %t.bc
15 ; RUN: rm -f %t.thin.1.yaml
16 ; RUN: llvm-lto2 run -pass-remarks-output=%t \
17 ; RUN:           -pass-remarks-filter=inline \
18 ; RUN:           -r %t.bc,tinkywinky,p \
19 ; RUN:           -r %t.bc,patatino,px \
20 ; RUN:           -r %t.bc,main,px -o %t.o %t.bc
21 ; RUN: cat %t.thin.1.yaml | FileCheck %s -check-prefix=YAML
23 ; YAML:      --- !Passed
24 ; YAML-NEXT: Pass:            inline
25 ; YAML-NEXT: Name:            Inlined
26 ; YAML-NEXT: Function:        main
27 ; YAML-NEXT: Args:
28 ; YAML-NEXT:   - String:          ''''
29 ; YAML-NEXT:   - Callee:          tinkywinky
30 ; YAML-NEXT:   - String:          ''' inlined into '''
31 ; YAML-NEXT:   - Caller:          main
32 ; YAML-NEXT:   - String:          ''''
33 ; YAML-NEXT:   - String:          ' with '
34 ; YAML-NEXT:   - String:          '(cost='
35 ; YAML-NEXT:   - Cost:            '-15000'
36 ; YAML-NEXT:   - String:          ', threshold='
37 ; YAML-NEXT:   - Threshold:       '337'
38 ; YAML-NEXT:   - String:          ')'
39 ; YAML-NEXT: ...
41 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
42 target triple = "x86_64-scei-ps4"
44 declare i32 @patatino()
46 define i32 @tinkywinky() {
47   %a = call i32 @patatino()
48   ret i32 %a
51 define i32 @main() {
52   %i = call i32 @tinkywinky()
53   ret i32 %i