diff options
Diffstat (limited to 'test/tools/gold')
-rw-r--r-- | test/tools/gold/Inputs/comdat.ll | 9 | ||||
-rw-r--r-- | test/tools/gold/Inputs/drop-debug.bc | bin | 0 -> 1152 bytes | |||
-rw-r--r-- | test/tools/gold/alias.ll | 2 | ||||
-rw-r--r-- | test/tools/gold/bad-alias.ll | 2 | ||||
-rw-r--r-- | test/tools/gold/bcsection.ll | 2 | ||||
-rw-r--r-- | test/tools/gold/coff.ll | 22 | ||||
-rw-r--r-- | test/tools/gold/comdat.ll | 14 | ||||
-rw-r--r-- | test/tools/gold/common.ll | 6 | ||||
-rw-r--r-- | test/tools/gold/drop-debug.ll | 8 | ||||
-rw-r--r-- | test/tools/gold/emit-llvm.ll | 26 | ||||
-rw-r--r-- | test/tools/gold/invalid.ll | 2 | ||||
-rw-r--r-- | test/tools/gold/linker-script.ll | 2 | ||||
-rw-r--r-- | test/tools/gold/linkonce-weak.ll | 4 | ||||
-rw-r--r-- | test/tools/gold/mtriple.ll | 2 | ||||
-rw-r--r-- | test/tools/gold/no-map-whole-file.ll | 9 | ||||
-rw-r--r-- | test/tools/gold/option.ll | 2 | ||||
-rw-r--r-- | test/tools/gold/pr19901.ll | 4 | ||||
-rw-r--r-- | test/tools/gold/slp-vectorize.ll | 2 | ||||
-rw-r--r-- | test/tools/gold/stats.ll | 7 | ||||
-rw-r--r-- | test/tools/gold/vectorize.ll | 2 | ||||
-rw-r--r-- | test/tools/gold/weak.ll | 2 |
21 files changed, 101 insertions, 28 deletions
diff --git a/test/tools/gold/Inputs/comdat.ll b/test/tools/gold/Inputs/comdat.ll index e9e4704..464aefa 100644 --- a/test/tools/gold/Inputs/comdat.ll +++ b/test/tools/gold/Inputs/comdat.ll @@ -1,7 +1,12 @@ $c2 = comdat any +$c1 = comdat any -@v1 = weak_odr global i32 41, comdat $c2 -define weak_odr protected i32 @f1(i8* %this) comdat $c2 { +; This is only present in this file. The linker will keep $c1 from the first +; file and this will be undefined. +@will_be_undefined = global i32 1, comdat($c1) + +@v1 = weak_odr global i32 41, comdat($c2) +define weak_odr protected i32 @f1(i8* %this) comdat($c2) { bb20: store i8* %this, i8** null br label %bb21 diff --git a/test/tools/gold/Inputs/drop-debug.bc b/test/tools/gold/Inputs/drop-debug.bc Binary files differnew file mode 100644 index 0000000..f9c471f --- /dev/null +++ b/test/tools/gold/Inputs/drop-debug.bc diff --git a/test/tools/gold/alias.ll b/test/tools/gold/alias.ll index dbf3af5..b4edb05 100644 --- a/test/tools/gold/alias.ll +++ b/test/tools/gold/alias.ll @@ -1,6 +1,6 @@ ; RUN: llvm-as %s -o %t.o ; RUN: llvm-as %p/Inputs/alias-1.ll -o %t2.o -; RUN: ld -shared -o %t3.o -plugin %llvmshlibdir/LLVMgold.so %t2.o %t.o \ +; RUN: %gold -shared -o %t3.o -plugin %llvmshlibdir/LLVMgold.so %t2.o %t.o \ ; RUN: -plugin-opt=emit-llvm ; RUN: llvm-dis < %t3.o -o - | FileCheck %s diff --git a/test/tools/gold/bad-alias.ll b/test/tools/gold/bad-alias.ll index e0fc788..a98bf71 100644 --- a/test/tools/gold/bad-alias.ll +++ b/test/tools/gold/bad-alias.ll @@ -1,6 +1,6 @@ ; RUN: llvm-as %s -o %t.o -; RUN: not ld -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: not %gold -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: --plugin-opt=emit-llvm \ ; RUN: -shared %t.o -o %t2.o 2>&1 | FileCheck %s diff --git a/test/tools/gold/bcsection.ll b/test/tools/gold/bcsection.ll index 8565d9d..37d2994 100644 --- a/test/tools/gold/bcsection.ll +++ b/test/tools/gold/bcsection.ll @@ -2,7 +2,7 @@ ; RUN: llvm-mc -I=%T -filetype=obj -o %T/bcsection.bco %p/Inputs/bcsection.s ; RUN: llvm-nm -no-llvm-bc %T/bcsection.bco | count 0 -; RUN: ld -r -o %T/bcsection.o -plugin %llvmshlibdir/LLVMgold.so %T/bcsection.bco +; RUN: %gold -r -o %T/bcsection.o -plugin %llvmshlibdir/LLVMgold.so %T/bcsection.bco ; RUN: llvm-nm -no-llvm-bc %T/bcsection.o | FileCheck %s ; CHECK: main diff --git a/test/tools/gold/coff.ll b/test/tools/gold/coff.ll new file mode 100644 index 0000000..5d8a1c9 --- /dev/null +++ b/test/tools/gold/coff.ll @@ -0,0 +1,22 @@ +; RUN: llvm-as %s -o %t.o +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so -plugin-opt=emit-llvm \ +; RUN: -shared %t.o -o %t2.o +; RUN: llvm-dis %t2.o -o - | FileCheck %s + + +target datalayout = "m:w" + +; CHECK: define void @f() { +define void @f() { + ret void +} + +; CHECK: define internal void @g() { +define hidden void @g() { + ret void +} + +; CHECK: define internal void @h() { +define linkonce_odr void @h() { + ret void +} diff --git a/test/tools/gold/comdat.ll b/test/tools/gold/comdat.ll index ba3abce..370bf56 100644 --- a/test/tools/gold/comdat.ll +++ b/test/tools/gold/comdat.ll @@ -1,13 +1,13 @@ ; RUN: llvm-as %s -o %t.o ; RUN: llvm-as %p/Inputs/comdat.ll -o %t2.o -; RUN: ld -shared -o %t3.o -plugin %llvmshlibdir/LLVMgold.so %t.o %t2.o \ +; RUN: %gold -shared -o %t3.o -plugin %llvmshlibdir/LLVMgold.so %t.o %t2.o \ ; RUN: -plugin-opt=emit-llvm ; RUN: llvm-dis %t3.o -o - | FileCheck %s $c1 = comdat any -@v1 = weak_odr global i32 42, comdat $c1 -define weak_odr i32 @f1(i8*) comdat $c1 { +@v1 = weak_odr global i32 42, comdat($c1) +define weak_odr i32 @f1(i8*) comdat($c1) { bb10: br label %bb11 bb11: @@ -27,7 +27,7 @@ bb11: ; CHECK: $c1 = comdat any ; CHECK: $c2 = comdat any -; CHECK: @v1 = weak_odr global i32 42, comdat $c1 +; CHECK: @v1 = weak_odr global i32 42, comdat($c1) ; CHECK: @r11 = global i32* @v1{{$}} ; CHECK: @r12 = global i32 (i8*)* @f1{{$}} @@ -35,7 +35,7 @@ bb11: ; CHECK: @r21 = global i32* @v1{{$}} ; CHECK: @r22 = global i32 (i8*)* @f1{{$}} -; CHECK: @v11 = internal global i32 41, comdat $c2 +; CHECK: @v11 = internal global i32 41, comdat($c2) ; CHECK: @a11 = alias i32* @v1{{$}} ; CHECK: @a12 = alias bitcast (i32* @v1 to i16*) @@ -49,14 +49,14 @@ bb11: ; CHECK: @a23 = alias i32 (i8*)* @f12{{$}} ; CHECK: @a24 = alias bitcast (i32 (i8*)* @f12 to i16*) -; CHECK: define weak_odr protected i32 @f1(i8*) comdat $c1 { +; CHECK: define weak_odr protected i32 @f1(i8*) comdat($c1) { ; CHECK-NEXT: bb10: ; CHECK-NEXT: br label %bb11{{$}} ; CHECK: bb11: ; CHECK-NEXT: ret i32 42 ; CHECK-NEXT: } -; CHECK: define internal i32 @f12(i8* %this) comdat $c2 { +; CHECK: define internal i32 @f12(i8* %this) comdat($c2) { ; CHECK-NEXT: bb20: ; CHECK-NEXT: store i8* %this, i8** null ; CHECK-NEXT: br label %bb21 diff --git a/test/tools/gold/common.ll b/test/tools/gold/common.ll index f309231..ef18e68 100644 --- a/test/tools/gold/common.ll +++ b/test/tools/gold/common.ll @@ -1,7 +1,7 @@ ; RUN: llvm-as %s -o %t1.o ; RUN: llvm-as %p/Inputs/common.ll -o %t2.o -; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: --plugin-opt=emit-llvm \ ; RUN: -shared %t1.o %t2.o -o %t3.o ; RUN: llvm-dis %t3.o -o - | FileCheck %s @@ -11,7 +11,7 @@ ; Shared library case, we merge @a as common and keep it for the symbol table. ; CHECK: @a = common global i16 0, align 8 -; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: --plugin-opt=emit-llvm \ ; RUN: %t1.o %t2.o -o %t3.o ; RUN: llvm-dis %t3.o -o - | FileCheck --check-prefix=EXEC %s @@ -20,7 +20,7 @@ ; EXEC: @a = internal global i16 0, align 8 ; RUN: llc %p/Inputs/common.ll -o %t2.o -filetype=obj -; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: --plugin-opt=emit-llvm \ ; RUN: %t1.o %t2.o -o %t3.o ; RUN: llvm-dis %t3.o -o - | FileCheck --check-prefix=MIXED %s diff --git a/test/tools/gold/drop-debug.ll b/test/tools/gold/drop-debug.ll new file mode 100644 index 0000000..b8c4d8c --- /dev/null +++ b/test/tools/gold/drop-debug.ll @@ -0,0 +1,8 @@ +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: --plugin-opt=emit-llvm -shared %p/Inputs/drop-debug.bc \ +; RUN: -o t2.bc 2>&1 | FileCheck %s + +; drop-debug.bc was created from "void f(void) {}" with clang 3.5 and +; -gline-tables-only, so it contains old debug info. + +; CHECK: warning: LLVM gold plugin: ignoring debug info with an invalid version (1) in {{.*}}/Inputs/drop-debug.bc diff --git a/test/tools/gold/emit-llvm.ll b/test/tools/gold/emit-llvm.ll index 0a6dcfc..f851fbf 100644 --- a/test/tools/gold/emit-llvm.ll +++ b/test/tools/gold/emit-llvm.ll @@ -1,20 +1,31 @@ ; RUN: llvm-as %s -o %t.o -; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: --plugin-opt=emit-llvm \ ; RUN: --plugin-opt=generate-api-file \ ; RUN: -shared %t.o -o %t2.o ; RUN: llvm-dis %t2.o -o - | FileCheck %s ; RUN: FileCheck --check-prefix=API %s < %T/../apifile.txt -; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: -m elf_x86_64 --plugin-opt=save-temps \ ; RUN: -shared %t.o -o %t3.o ; RUN: llvm-dis %t3.o.bc -o - | FileCheck %s ; RUN: llvm-dis %t3.o.opt.bc -o - | FileCheck --check-prefix=OPT %s +; RUN: rm -f %t4.o +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: -m elf_x86_64 --plugin-opt=disable-output \ +; RUN: -shared %t.o -o %t4.o +; RUN: not test -a %t4.o + target triple = "x86_64-unknown-linux-gnu" +@g7 = extern_weak global i32 +; CHECK-DAG: @g7 = extern_weak global i32 + +@g8 = external global i32 + ; CHECK: define internal void @f1() ; OPT-NOT: @f1 define hidden void @f1() { @@ -56,6 +67,13 @@ define linkonce_odr void @f6() unnamed_addr { } @g6 = global void()* @f6 +define i32* @f7() { + ret i32* @g7 +} + +define i32* @f8() { + ret i32* @g8 +} ; API: f1 PREVAILING_DEF_IRONLY ; API: f2 PREVAILING_DEF_IRONLY @@ -63,5 +81,9 @@ define linkonce_odr void @f6() unnamed_addr { ; API: f4 PREVAILING_DEF_IRONLY_EXP ; API: f5 PREVAILING_DEF_IRONLY_EXP ; API: f6 PREVAILING_DEF_IRONLY_EXP +; API: f7 PREVAILING_DEF_IRONLY_EXP +; API: f8 PREVAILING_DEF_IRONLY_EXP +; API: g7 UNDEF +; API: g8 UNDEF ; API: g5 PREVAILING_DEF_IRONLY_EXP ; API: g6 PREVAILING_DEF_IRONLY_EXP diff --git a/test/tools/gold/invalid.ll b/test/tools/gold/invalid.ll index 8db7644..858cd47 100644 --- a/test/tools/gold/invalid.ll +++ b/test/tools/gold/invalid.ll @@ -1,4 +1,4 @@ -; RUN: not ld -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: not %gold -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: %p/Inputs/invalid.bc -o %t2 2>&1 | FileCheck %s ; test that only one error gets printed diff --git a/test/tools/gold/linker-script.ll b/test/tools/gold/linker-script.ll index 35a7694..7c88b0f 100644 --- a/test/tools/gold/linker-script.ll +++ b/test/tools/gold/linker-script.ll @@ -1,6 +1,6 @@ ; RUN: llvm-as %s -o %t.o -; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: --plugin-opt=emit-llvm \ ; RUN: -shared %t.o -o %t2.o \ ; RUN: -version-script=%p/Inputs/linker-script.export diff --git a/test/tools/gold/linkonce-weak.ll b/test/tools/gold/linkonce-weak.ll index 765275b..a0cccea 100644 --- a/test/tools/gold/linkonce-weak.ll +++ b/test/tools/gold/linkonce-weak.ll @@ -1,12 +1,12 @@ ; RUN: llvm-as %s -o %t.o ; RUN: llvm-as %p/Inputs/linkonce-weak.ll -o %t2.o -; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: --plugin-opt=emit-llvm \ ; RUN: -shared %t.o %t2.o -o %t3.o ; RUN: llvm-dis %t3.o -o - | FileCheck %s -; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: --plugin-opt=emit-llvm \ ; RUN: -shared %t2.o %t.o -o %t3.o ; RUN: llvm-dis %t3.o -o - | FileCheck %s diff --git a/test/tools/gold/mtriple.ll b/test/tools/gold/mtriple.ll index 6395af6..94211ed 100644 --- a/test/tools/gold/mtriple.ll +++ b/test/tools/gold/mtriple.ll @@ -1,5 +1,5 @@ ; RUN: llvm-as %s -o %t.o -; RUN: ld -plugin %llvmshlibdir/LLVMgold.so -m elf32ppc \ +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so -m elf32ppc \ ; RUN: -plugin-opt=mtriple=powerpc-linux-gnu \ ; RUN: -plugin-opt=obj-path=%t3.o \ ; RUN: -shared %t.o -o %t2 diff --git a/test/tools/gold/no-map-whole-file.ll b/test/tools/gold/no-map-whole-file.ll new file mode 100644 index 0000000..4c261d7 --- /dev/null +++ b/test/tools/gold/no-map-whole-file.ll @@ -0,0 +1,9 @@ +; RUN: llvm-as -o %t.bc %s +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so -plugin-opt=emit-llvm \ +; RUN: --no-map-whole-files -r -o %t2.bc %t.bc +; RUN: llvm-dis < %t2.bc -o - | FileCheck %s + +; CHECK: main +define i32 @main() { + ret i32 0 +} diff --git a/test/tools/gold/option.ll b/test/tools/gold/option.ll index 8154e43..59e3f1e 100644 --- a/test/tools/gold/option.ll +++ b/test/tools/gold/option.ll @@ -1,5 +1,5 @@ ; RUN: llvm-as %s -o %t.o -; RUN: ld -plugin %llvmshlibdir/LLVMgold.so -m elf_x86_64 \ +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so -m elf_x86_64 \ ; RUN: --plugin-opt=-jump-table-type=arity \ ; RUN: --plugin-opt=-mattr=+aes \ ; RUN: --plugin-opt=mcpu=core-avx2 \ diff --git a/test/tools/gold/pr19901.ll b/test/tools/gold/pr19901.ll index 304246b..2a7dea1 100644 --- a/test/tools/gold/pr19901.ll +++ b/test/tools/gold/pr19901.ll @@ -1,6 +1,6 @@ ; RUN: llc %s -o %t.o -filetype=obj -relocation-model=pic ; RUN: llvm-as %p/Inputs/pr19901-1.ll -o %t2.o -; RUN: ld -shared -o %t.so -plugin %llvmshlibdir/LLVMgold.so %t2.o %t.o +; RUN: %gold -shared -o %t.so -plugin %llvmshlibdir/LLVMgold.so %t2.o %t.o ; RUN: llvm-readobj -t %t.so | FileCheck %s ; CHECK: Symbol { @@ -9,7 +9,7 @@ ; CHECK-NEXT: Size: ; CHECK-NEXT: Binding: Local ; CHECK-NEXT: Type: Function -; CHECK-NEXT: Other: 2 +; CHECK-NEXT: Other: {{2|0}} ; CHECK-NEXT: Section: .text ; CHECK-NEXT: } diff --git a/test/tools/gold/slp-vectorize.ll b/test/tools/gold/slp-vectorize.ll index d378902..d39aa76 100644 --- a/test/tools/gold/slp-vectorize.ll +++ b/test/tools/gold/slp-vectorize.ll @@ -1,6 +1,6 @@ ; RUN: llvm-as %s -o %t.o -; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: --plugin-opt=save-temps \ ; RUN: -shared %t.o -o %t2.o ; RUN: llvm-dis %t2.o.opt.bc -o - | FileCheck %s diff --git a/test/tools/gold/stats.ll b/test/tools/gold/stats.ll new file mode 100644 index 0000000..b3c8297 --- /dev/null +++ b/test/tools/gold/stats.ll @@ -0,0 +1,7 @@ +; REQUIRES: asserts + +; RUN: llvm-as %s -o %t.o +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so -shared \ +; RUN: -plugin-opt=-stats %t.o -o %t2 2>&1 | FileCheck %s + +; CHECK: Statistics Collected diff --git a/test/tools/gold/vectorize.ll b/test/tools/gold/vectorize.ll index 3d305db..c1626d7 100644 --- a/test/tools/gold/vectorize.ll +++ b/test/tools/gold/vectorize.ll @@ -1,6 +1,6 @@ ; RUN: llvm-as %s -o %t.o -; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: --plugin-opt=save-temps \ ; RUN: -shared %t.o -o %t2.o ; RUN: llvm-dis %t2.o.opt.bc -o - | FileCheck %s diff --git a/test/tools/gold/weak.ll b/test/tools/gold/weak.ll index e05e905..6d8d7a8 100644 --- a/test/tools/gold/weak.ll +++ b/test/tools/gold/weak.ll @@ -1,7 +1,7 @@ ; RUN: llvm-as %s -o %t.o ; RUN: llvm-as %p/Inputs/weak.ll -o %t2.o -; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \ +; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: --plugin-opt=emit-llvm \ ; RUN: -shared %t.o %t2.o -o %t3.o ; RUN: llvm-dis %t3.o -o - | FileCheck %s |