summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2016-07-31 17:11:49 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2016-07-31 17:11:49 +0000
commit1e096b3a7a4d4614f36adce4a5137a5d7a97d2b6 (patch)
tree36681857053e1bbbfdede689dbd8676fb626e2f3 /llvm
parent580498de176ceef4b02b7d636921b44227679e4f (diff)
downloadbcm5719-llvm-1e096b3a7a4d4614f36adce4a5137a5d7a97d2b6.tar.gz
bcm5719-llvm-1e096b3a7a4d4614f36adce4a5137a5d7a97d2b6.zip
[X86] Add tests for the lowering SHLD/SHRD from manual patterns
As discussed on D23000 llvm-svn: 277291
Diffstat (limited to 'llvm')
-rw-r--r--llvm/test/CodeGen/X86/shift-double-x86_64.ll64
-rw-r--r--llvm/test/CodeGen/X86/shift-double.ll68
2 files changed, 132 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/shift-double-x86_64.ll b/llvm/test/CodeGen/X86/shift-double-x86_64.ll
new file mode 100644
index 00000000000..80d116a5180
--- /dev/null
+++ b/llvm/test/CodeGen/X86/shift-double-x86_64.ll
@@ -0,0 +1,64 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc < %s -mtriple=x86_64-unknown | FileCheck %s
+
+; SHLD/SHRD manual shifts
+
+define i64 @test1(i64 %hi, i64 %lo, i64 %bits) nounwind {
+; CHECK-LABEL: test1:
+; CHECK: # BB#0:
+; CHECK-NEXT: andl $63, %edx
+; CHECK-NEXT: movl %edx, %ecx
+; CHECK-NEXT: shldq %cl, %rsi, %rdi
+; CHECK-NEXT: movq %rdi, %rax
+; CHECK-NEXT: retq
+ %and = and i64 %bits, 63
+ %and64 = sub i64 64, %and
+ %sh_lo = lshr i64 %lo, %and64
+ %sh_hi = shl i64 %hi, %and
+ %sh = or i64 %sh_lo, %sh_hi
+ ret i64 %sh
+}
+
+define i64 @test2(i64 %hi, i64 %lo, i64 %bits) nounwind {
+; CHECK-LABEL: test2:
+; CHECK: # BB#0:
+; CHECK-NEXT: andl $63, %edx
+; CHECK-NEXT: movl %edx, %ecx
+; CHECK-NEXT: shrdq %cl, %rdi, %rsi
+; CHECK-NEXT: movq %rsi, %rax
+; CHECK-NEXT: retq
+ %and = and i64 %bits, 63
+ %and64 = sub i64 64, %and
+ %sh_lo = shl i64 %hi, %and64
+ %sh_hi = lshr i64 %lo, %and
+ %sh = or i64 %sh_lo, %sh_hi
+ ret i64 %sh
+}
+
+define i64 @test3(i64 %hi, i64 %lo, i64 %bits) nounwind {
+; CHECK-LABEL: test3:
+; CHECK: # BB#0:
+; CHECK-NEXT: movl %edx, %ecx
+; CHECK-NEXT: shldq %cl, %rsi, %rdi
+; CHECK-NEXT: movq %rdi, %rax
+; CHECK-NEXT: retq
+ %bits64 = sub i64 64, %bits
+ %sh_lo = lshr i64 %lo, %bits64
+ %sh_hi = shl i64 %hi, %bits
+ %sh = or i64 %sh_lo, %sh_hi
+ ret i64 %sh
+}
+
+define i64 @test4(i64 %hi, i64 %lo, i64 %bits) nounwind {
+; CHECK-LABEL: test4:
+; CHECK: # BB#0:
+; CHECK-NEXT: movl %edx, %ecx
+; CHECK-NEXT: shrdq %cl, %rdi, %rsi
+; CHECK-NEXT: movq %rsi, %rax
+; CHECK-NEXT: retq
+ %bits64 = sub i64 64, %bits
+ %sh_lo = shl i64 %hi, %bits64
+ %sh_hi = lshr i64 %lo, %bits
+ %sh = or i64 %sh_lo, %sh_hi
+ ret i64 %sh
+}
diff --git a/llvm/test/CodeGen/X86/shift-double.ll b/llvm/test/CodeGen/X86/shift-double.ll
index 46f54b9cd32..3aca9ac59db 100644
--- a/llvm/test/CodeGen/X86/shift-double.ll
+++ b/llvm/test/CodeGen/X86/shift-double.ll
@@ -219,3 +219,71 @@ define i64 @test10(i64 %val, i32 %bits) nounwind {
%lshr = lshr i64 %val, %sh_prom
ret i64 %lshr
}
+
+; SHLD/SHRD manual shifts
+
+define i32 @test11(i32 %hi, i32 %lo, i32 %bits) nounwind {
+; CHECK-LABEL: test11:
+; CHECK: # BB#0:
+; CHECK-NEXT: movl {{[0-9]+}}(%esp), %edx
+; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax
+; CHECK-NEXT: movl {{[0-9]+}}(%esp), %ecx
+; CHECK-NEXT: andl $31, %ecx
+; CHECK-NEXT: # kill: %CL<def> %CL<kill> %ECX<kill>
+; CHECK-NEXT: shldl %cl, %edx, %eax
+; CHECK-NEXT: retl
+ %and = and i32 %bits, 31
+ %and32 = sub i32 32, %and
+ %sh_lo = lshr i32 %lo, %and32
+ %sh_hi = shl i32 %hi, %and
+ %sh = or i32 %sh_lo, %sh_hi
+ ret i32 %sh
+}
+
+define i32 @test12(i32 %hi, i32 %lo, i32 %bits) nounwind {
+; CHECK-LABEL: test12:
+; CHECK: # BB#0:
+; CHECK-NEXT: movl {{[0-9]+}}(%esp), %edx
+; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax
+; CHECK-NEXT: movl {{[0-9]+}}(%esp), %ecx
+; CHECK-NEXT: andl $31, %ecx
+; CHECK-NEXT: # kill: %CL<def> %CL<kill> %ECX<kill>
+; CHECK-NEXT: shrdl %cl, %edx, %eax
+; CHECK-NEXT: retl
+ %and = and i32 %bits, 31
+ %and32 = sub i32 32, %and
+ %sh_lo = shl i32 %hi, %and32
+ %sh_hi = lshr i32 %lo, %and
+ %sh = or i32 %sh_lo, %sh_hi
+ ret i32 %sh
+}
+
+define i32 @test13(i32 %hi, i32 %lo, i32 %bits) nounwind {
+; CHECK-LABEL: test13:
+; CHECK: # BB#0:
+; CHECK-NEXT: movb {{[0-9]+}}(%esp), %cl
+; CHECK-NEXT: movl {{[0-9]+}}(%esp), %edx
+; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax
+; CHECK-NEXT: shldl %cl, %edx, %eax
+; CHECK-NEXT: retl
+ %bits32 = sub i32 32, %bits
+ %sh_lo = lshr i32 %lo, %bits32
+ %sh_hi = shl i32 %hi, %bits
+ %sh = or i32 %sh_lo, %sh_hi
+ ret i32 %sh
+}
+
+define i32 @test14(i32 %hi, i32 %lo, i32 %bits) nounwind {
+; CHECK-LABEL: test14:
+; CHECK: # BB#0:
+; CHECK-NEXT: movb {{[0-9]+}}(%esp), %cl
+; CHECK-NEXT: movl {{[0-9]+}}(%esp), %edx
+; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax
+; CHECK-NEXT: shrdl %cl, %edx, %eax
+; CHECK-NEXT: retl
+ %bits32 = sub i32 32, %bits
+ %sh_lo = shl i32 %hi, %bits32
+ %sh_hi = lshr i32 %lo, %bits
+ %sh = or i32 %sh_lo, %sh_hi
+ ret i32 %sh
+}
OpenPOWER on IntegriCloud