summaryrefslogtreecommitdiff
path: root/test/LTO
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2017-05-19 17:55:02 +0000
committerAdrian Prantl <aprantl@apple.com>2017-05-19 17:55:02 +0000
commit469e92814e2a111b853b8a9555b87dd150d9ed78 (patch)
tree5acea921f9874f80abc2f2a7fa1eadc533bf991d /test/LTO
parent3770b2b84847bfdb5dc99ff90a4d3c4c33291bb1 (diff)
ThinLTO: Verify bitcode before lauching the ThinLTOCodeGenerator.
rdar://problem/31233625 Differential Revision: https://reviews.llvm.org/D33151 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@303438 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/LTO')
-rw-r--r--test/LTO/X86/Inputs/strip-debug-info-bar.ll15
-rw-r--r--test/LTO/X86/Inputs/strip-debug-info.bcbin852 -> 0 bytes
-rw-r--r--test/LTO/X86/strip-debug-info.ll49
3 files changed, 62 insertions, 2 deletions
diff --git a/test/LTO/X86/Inputs/strip-debug-info-bar.ll b/test/LTO/X86/Inputs/strip-debug-info-bar.ll
new file mode 100644
index 00000000000..4269886676b
--- /dev/null
+++ b/test/LTO/X86/Inputs/strip-debug-info-bar.ll
@@ -0,0 +1,15 @@
+target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
+target triple = "x86_64-apple-macosx10.12"
+
+define void @bar() !dbg !3 {
+ ret void
+}
+
+!llvm.module.flags = !{!0}
+!llvm.dbg.cu = !{!1}
+
+!0 = !{i32 2, !"Debug Info Version", i32 3}
+!1 = distinct !DICompileUnit(language: DW_LANG_C99, file: !2)
+!2 = !DIFile(filename: "broken", directory: "")
+!3 = distinct !DISubprogram(line: 1000, isDefinition: true)
+
diff --git a/test/LTO/X86/Inputs/strip-debug-info.bc b/test/LTO/X86/Inputs/strip-debug-info.bc
deleted file mode 100644
index c83195ff9ca..00000000000
--- a/test/LTO/X86/Inputs/strip-debug-info.bc
+++ /dev/null
Binary files differ
diff --git a/test/LTO/X86/strip-debug-info.ll b/test/LTO/X86/strip-debug-info.ll
index ff45ca15243..6b774516444 100644
--- a/test/LTO/X86/strip-debug-info.ll
+++ b/test/LTO/X86/strip-debug-info.ll
@@ -1,16 +1,61 @@
+; RUN: llvm-as -disable-verify %s -o %t.bc
+; ---- Full LTO ---------------------------------------------
; RUN: not llvm-lto -lto-strip-invalid-debug-info=false \
-; RUN: -o %t.o %S/Inputs/strip-debug-info.bc 2>&1 | \
+; RUN: -o %t.o %t.bc 2>&1 | \
; RUN: FileCheck %s -allow-empty -check-prefix=CHECK-ERR
; RUN: llvm-lto -lto-strip-invalid-debug-info=true \
; RUN: -exported-symbol foo -exported-symbol _foo \
-; RUN: -o %t.o %S/Inputs/strip-debug-info.bc 2>&1 | \
+; RUN: -o %t.o %t.bc 2>&1 | \
; RUN: FileCheck %s -allow-empty -check-prefix=CHECK-WARN
; RUN: llvm-nm %t.o | FileCheck %s
+; ---- Thin LTO (codegen only) ------------------------------
+; RUN: not llvm-lto -thinlto -thinlto-action=codegen \
+; RUN: -lto-strip-invalid-debug-info=false \
+; RUN: %t.bc -disable-verify 2>&1 | \
+; RUN: FileCheck %s -allow-empty -check-prefix=CHECK-ERR
+; RUN: llvm-lto -thinlto -thinlto-action=codegen \
+; RUN: -lto-strip-invalid-debug-info=true \
+; RUN: %t.bc -disable-verify 2>&1 | \
+; RUN: FileCheck %s -allow-empty -check-prefix=CHECK-WARN
+; ---- Thin LTO (optimize, strip main file) -----------------
+; RUN: opt -disable-verify -module-summary %s -o %t.bc
+; RUN: opt -disable-verify -module-summary %S/Inputs/strip-debug-info-bar.ll \
+; RUN: -o %t2.bc
+; RUN: not llvm-lto -thinlto -thinlto-action=run \
+; RUN: -lto-strip-invalid-debug-info=false \
+; RUN: %t.bc -disable-verify 2>&1 | \
+; RUN: FileCheck %s -allow-empty -check-prefix=CHECK-ERR
+; RUN: llvm-lto -thinlto -thinlto-action=run \
+; RUN: -lto-strip-invalid-debug-info=true \
+; RUN: %t.bc -disable-verify 2>&1 | \
+; RUN: FileCheck %s -allow-empty -check-prefix=CHECK-WARN
+; ---- Thin LTO (optimize, strip imported file) -------------
+; RUN: opt -disable-verify -strip-debug -module-summary %t.bc -o %t-stripped.bc
+; RUN: llvm-lto -thinlto-action=thinlink -o %t.index.bc %t-stripped.bc %t2.bc
+; RUN: not llvm-lto -thinlto -thinlto-action=import \
+; RUN: -thinlto-index=%t.index.bc \
+; RUN: -lto-strip-invalid-debug-info=false \
+; RUN: -exported-symbol foo -exported-symbol _foo \
+; RUN: %t-stripped.bc -disable-verify 2>&1 | \
+; RUN: FileCheck %s -allow-empty -check-prefix=CHECK-ERR
+; RUN: llvm-lto -thinlto -thinlto-action=import \
+; RUN: -lto-strip-invalid-debug-info=true \
+; RUN: -thinlto-index=%t.index.bc \
+; RUN: -exported-symbol foo -exported-symbol _foo \
+; RUN: %t-stripped.bc -disable-verify 2>&1 | \
+; RUN: FileCheck %s -allow-empty -check-prefix=CHECK-WARN
; CHECK-ERR: Broken module found, compilation aborted
; CHECK-WARN: Invalid debug info found, debug info will be stripped
+; CHECK-WARN-NOT: Broken module found
; CHECK: foo
+target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
+target triple = "x86_64-apple-macosx10.12"
+
+declare void @bar()
+
define void @foo() {
+ call void @bar()
ret void
}