blob: 15087be6b569f93a49c9c94218f1156caf34095e [file] [log] [blame]
Teresa Johnson002af9b2016-10-31 22:12:21 +00001; Do setup work for all below tests: generate bitcode and combined index
2; RUN: opt -module-summary %s -o %t1.bc
3; RUN: opt -module-summary %p/Inputs/funcimport2.ll -o %t2.bc
4
Peter Collingbourne7faa60c2017-04-11 18:12:00 +00005; RUN: llvm-lto2 run %t1.bc %t2.bc -o %t.o -save-temps \
Teresa Johnson002af9b2016-10-31 22:12:21 +00006; RUN: -r=%t1.bc,_foo,plx \
7; RUN: -r=%t2.bc,_main,plx \
Teresa Johnsoncb9a82f2018-08-17 16:53:47 +00008; RUN: -r=%t2.bc,_foo,l \
9; RUN: -print-import-failures 2>&1 | FileCheck %s --check-prefix=NOFAILURES
Vitaly Bukaa5376f32017-12-16 02:10:00 +000010; RUN: llvm-dis %t.o.2.3.import.bc -o - | FileCheck %s
Sean Fertile4595a912017-11-04 17:04:39 +000011; CHECK: define available_externally dso_local void @foo()
Teresa Johnsoncb9a82f2018-08-17 16:53:47 +000012; Don't expect any failure messages from -print-import-failures
13; NOFAILURES-NOT: Reason =
14
15; We shouldn't do any importing with a 0 instruction limit, in which case
16; -print-import-failures should print a TooLarge reason.
17; RUN: llvm-lto2 run %t1.bc %t2.bc -o %t.o -save-temps \
18; RUN: -r=%t1.bc,_foo,plx \
19; RUN: -r=%t2.bc,_main,plx \
20; RUN: -r=%t2.bc,_foo,l \
21; RUN: -import-instr-limit=0 \
22; RUN: -print-import-failures 2>&1 | FileCheck %s --check-prefix=FAILURES
23; RUN: llvm-dis %t.o.2.3.import.bc -o - | FileCheck %s --check-prefix=NOIMPORT
24; FAILURES: (foo): Reason = TooLarge, Threshold = 0, Size = 1, MaxHotness = unknown, Attempts = 1
Teresa Johnson002af9b2016-10-31 22:12:21 +000025
26; We shouldn't do any importing at -O0
27; rm -f %t.o.1.3.import.bc
Peter Collingbourne7faa60c2017-04-11 18:12:00 +000028; RUN: llvm-lto2 run %t1.bc %t2.bc -o %t.o -save-temps \
Teresa Johnson002af9b2016-10-31 22:12:21 +000029; RUN: -O0 \
30; RUN: -r=%t1.bc,_foo,plx \
31; RUN: -r=%t2.bc,_main,plx \
32; RUN: -r=%t2.bc,_foo,l
Teresa Johnsoncb9a82f2018-08-17 16:53:47 +000033; RUN: llvm-dis %t.o.2.3.import.bc -o - | FileCheck %s --check-prefix=NOIMPORT
34; NOIMPORT: declare dso_local void @foo(...)
Teresa Johnson002af9b2016-10-31 22:12:21 +000035
36target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
37target triple = "x86_64-apple-macosx10.11.0"
38
39define void @foo() #0 {
40entry:
41 ret void
42}