Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / LTO / X86 / memprof-supports-hot-cold-new.ll
blob3ed68e8137a3581337276ca9b653063e6d036804
1 ;; Test that passing -supports-hot-cold-new to the LTO link allows context
2 ;; disambiguation to proceed, and also prevents memprof metadata and attributes
3 ;; from being removed from the LTO backend, and vice versa without passing
4 ;; -supports-hot-cold-new.
6 ;; Note that this tests regular LTO (with a summary) due to the module flag
7 ;; disabling ThinLTO.
9 ;; First check with -supports-hot-cold-new.
10 ; RUN: opt -module-summary %s >%t.o
11 ; RUN: llvm-lto2 run %t.o -enable-memprof-context-disambiguation \
12 ; RUN:  -supports-hot-cold-new \
13 ; RUN:  -r=%t.o,main,plx \
14 ; RUN:  -r=%t.o,_Znam, \
15 ; RUN:  -memprof-dump-ccg \
16 ; RUN:   -save-temps \
17 ; RUN:  -o %t.out 2>&1 | FileCheck %s --check-prefix=DUMP
18 ; DUMP: Callsite Context Graph:
20 ; RUN: llvm-dis %t.out.0.0.preopt.bc -o - | FileCheck %s --check-prefix=IR
21 ; IR: !memprof {{.*}} !callsite
22 ; IR: "memprof"="cold"
24 ;; Next check without -supports-hot-cold-new, we should not perform
25 ;; context disambiguation, and we should strip memprof metadata and
26 ;; attributes before optimization.
27 ; RUN: llvm-lto2 run %t.o -enable-memprof-context-disambiguation \
28 ; RUN:  -r=%t.o,main,plx \
29 ; RUN:  -r=%t.o,_Znam, \
30 ; RUN:  -memprof-dump-ccg \
31 ; RUN:   -save-temps \
32 ; RUN:  -o %t.out 2>&1 | FileCheck %s --allow-empty \
33 ; RUN:  --implicit-check-not "Callsite Context Graph:"
35 ; RUN: llvm-dis %t.out.0.0.preopt.bc -o - | FileCheck %s \
36 ; RUN: --implicit-check-not "!memprof" --implicit-check-not "!callsite" \
37 ; RUN: --implicit-check-not "memprof"="cold"
39 source_filename = "memprof-supports-hot-cold-new.ll"
40 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
41 target triple = "x86_64-unknown-linux-gnu"
43 define i32 @main() #0 {
44 entry:
45   %call = call ptr @_Znam(i64 0), !memprof !0, !callsite !5
46   %call2 = call ptr @_Znam(i64 0) #1
47   ret i32 0
50 declare ptr @_Znam(i64)
52 attributes #0 = { noinline optnone }
53 attributes #1 = { "memprof"="cold" }
55 !llvm.module.flags = !{!6}
57 !0 = !{!1, !3}
58 !1 = !{!2, !"notcold"}
59 !2 = !{i64 9086428284934609951, i64 -5964873800580613432, i64 2732490490862098848, i64 8632435727821051414}
60 !3 = !{!4, !"cold"}
61 !4 = !{i64 9086428284934609951, i64 -5964873800580613432, i64 2732490490862098848, i64 -3421689549917153178}
62 !5 = !{i64 9086428284934609951}
64 ;; Force regular LTO even though we have a summary.
65 !6 = !{i32 1, !"ThinLTO", i32 0}