diff options
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/LTO/ARM/Inputs/thumb.ll | 15 | ||||
-rw-r--r-- | llvm/test/LTO/ARM/link-arm-and-thumb.ll | 32 | ||||
-rw-r--r-- | llvm/test/Linker/Inputs/thumb.ll | 16 | ||||
-rw-r--r-- | llvm/test/Linker/link-arm-and-thumb.ll | 26 |
4 files changed, 89 insertions, 0 deletions
diff --git a/llvm/test/LTO/ARM/Inputs/thumb.ll b/llvm/test/LTO/ARM/Inputs/thumb.ll new file mode 100644 index 00000000000..cb8c2dfa558 --- /dev/null +++ b/llvm/test/LTO/ARM/Inputs/thumb.ll @@ -0,0 +1,15 @@ +target triple = "thumbv7-linux-gnueabihf" + +define i32 @foo(i32 %a, i32 %b) #0 { +entry: + %add = add i32 %a, %b + ret i32 %add +} + +define i32 @bar(i32 %a, i32 %b) #0 { +entry: + %add = add i32 %a, %b + ret i32 %add +} + +attributes #0 = { "target-features"="+thumb-mode" } diff --git a/llvm/test/LTO/ARM/link-arm-and-thumb.ll b/llvm/test/LTO/ARM/link-arm-and-thumb.ll new file mode 100644 index 00000000000..743e3f66194 --- /dev/null +++ b/llvm/test/LTO/ARM/link-arm-and-thumb.ll @@ -0,0 +1,32 @@ +; Testcase to check that functions from a Thumb module can be inlined in an +; ARM function. +; +; RUN: llvm-as %s -o %t1.bc +; RUN: llvm-as %p/Inputs/thumb.ll -o %t2.bc +; RUN: llvm-lto -exported-symbol main \ +; RUN: -exported-symbol bar \ +; RUN: -filetype=asm \ +; RUN: -o - \ +; RUN: %t1.bc %t2.bc 2> %t3.out| FileCheck %s +; RUN: FileCheck --allow-empty --input-file %t3.out --check-prefix STDERR %s + +target triple = "armv7-linux-gnueabihf" + +; CHECK: .code 32 +; CHECK-NEXT: main +; CHECK-NEXT: .fnstart +; CHECK-NEXT: mov r0, #30 + +; CHECK: .code 16 +; CHECK-NEXT: .thumb_func +; CHECK-NEXT: bar + +declare i32 @foo(i32 %a, i32 %b); + +define i32 @main() { +entry: + %add = call i32 @foo(i32 10, i32 20) + ret i32 %add +} + +; STDERR-NOT: warning: Linking two modules of different target triples: diff --git a/llvm/test/Linker/Inputs/thumb.ll b/llvm/test/Linker/Inputs/thumb.ll new file mode 100644 index 00000000000..e15fb26a8c7 --- /dev/null +++ b/llvm/test/Linker/Inputs/thumb.ll @@ -0,0 +1,16 @@ +target triple = "thumbv7-linux-gnueabihf" + +define i32 @foo(i32 %a, i32 %b) #0 { +entry: + %add = add i32 %a, %b + ret i32 %add +} + +define i32 @bar(i32 %a, i32 %b) #1 { +entry: + %add = add i32 %a, %b + ret i32 %add +} + +attributes #0 = { "target-features"="-thumb-mode" } +attributes #1 = { "target-features"="+thumb-mode" } diff --git a/llvm/test/Linker/link-arm-and-thumb.ll b/llvm/test/Linker/link-arm-and-thumb.ll new file mode 100644 index 00000000000..81ecdb59f49 --- /dev/null +++ b/llvm/test/Linker/link-arm-and-thumb.ll @@ -0,0 +1,26 @@ +; RUN: llvm-as %s -o %t1.bc +; RUN: llvm-as %p/Inputs/thumb.ll -o %t2.bc +; RUN: llvm-link %t1.bc %t2.bc -S 2> %t3.out | llc | FileCheck %s +; RUN: FileCheck --allow-empty --input-file %t3.out --check-prefix STDERR %s + +target triple = "armv7-linux-gnueabihf" + +declare i32 @foo(i32 %a, i32 %b); + +define i32 @main() { +entry: + %add = call i32 @foo(i32 10, i32 20) + ret i32 %add +} + +; CHECK: .code 32 @ @main +; CHECK-NEXT: main + +; CHECK: .code 32 @ @foo +; CHECK-NEXT: foo + +; CHECK: .code 16 @ @bar +; CHECK-NEXT: .thumb_func +; CHECK-NEXT: bar + +; STDERR-NOT: warning: Linking two modules of different target triples: |