1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/CodeGen/AArch64/div_minsize.ll
Simon Pilgrim 91bb437eb8 [AARCH64] Enable AARCH64 lit tests on windows dev machines
As discussed on PR27654, this patch fixes the triples of a lot of aarch64 tests and enables lit tests on windows

This will hopefully help stop cases where windows developers break the aarch64 target

Differential Revision: https://reviews.llvm.org/D22191

llvm-svn: 275973
2016-07-19 13:35:11 +00:00

46 lines
979 B
LLVM

; RUN: llc < %s -mtriple=aarch64-linux-gnu | FileCheck %s
define i32 @testsize1(i32 %x) minsize nounwind {
entry:
%div = sdiv i32 %x, 32
ret i32 %div
; CHECK-LABEL: testsize1
; CHECK: sdiv
}
define i32 @testsize2(i32 %x) minsize nounwind {
entry:
%div = sdiv i32 %x, 33
ret i32 %div
; CHECK-LABEL: testsize2
; CHECK: sdiv
}
define i32 @testsize3(i32 %x) minsize nounwind {
entry:
%div = udiv i32 %x, 32
ret i32 %div
; CHECK-LABEL: testsize3
; CHECK: lsr
}
define i32 @testsize4(i32 %x) minsize nounwind {
entry:
%div = udiv i32 %x, 33
ret i32 %div
; CHECK-LABEL: testsize4
; CHECK: udiv
}
define <8 x i16> @sdiv_vec8x16_minsize(<8 x i16> %var) minsize {
entry:
; CHECK: sdiv_vec8x16_minsize
; CHECK: sshr v1.8h, v0.8h, #15
; CHECK: usra v0.8h, v1.8h, #11
; CHECK: sshr v0.8h, v0.8h, #5
; CHECK: ret
%0 = sdiv <8 x i16> %var, <i16 32, i16 32, i16 32, i16 32, i16 32, i16 32, i16 32, i16 32>
ret <8 x i16> %0
}