2005-04-16 06:25:48 +02:00
|
|
|
; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -enable-pattern-isel=1 | grep sh[lr]d | wc -l | grep 5
|
2005-01-19 07:30:36 +01:00
|
|
|
|
|
|
|
long %test1(long %X, ubyte %C) {
|
|
|
|
%Y = shl long %X, ubyte %C
|
|
|
|
ret long %Y
|
|
|
|
}
|
|
|
|
long %test2(long %X, ubyte %C) {
|
|
|
|
%Y = shr long %X, ubyte %C
|
|
|
|
ret long %Y
|
|
|
|
}
|
|
|
|
ulong %test3(ulong %X, ubyte %C) {
|
|
|
|
%Y = shr ulong %X, ubyte %C
|
|
|
|
ret ulong %Y
|
|
|
|
}
|
|
|
|
|
|
|
|
uint %test4(uint %A, uint %B, ubyte %C) {
|
|
|
|
%X = shl uint %A, ubyte %C
|
|
|
|
%Cv = sub ubyte 32, %C
|
|
|
|
%Y = shr uint %B, ubyte %Cv
|
|
|
|
%Z = or uint %Y, %X
|
|
|
|
ret uint %Z
|
|
|
|
}
|
2005-01-19 08:37:01 +01:00
|
|
|
|
|
|
|
ushort %test5(ushort %A, ushort %B, ubyte %C) {
|
|
|
|
%X = shl ushort %A, ubyte %C
|
|
|
|
%Cv = sub ubyte 16, %C
|
|
|
|
%Y = shr ushort %B, ubyte %Cv
|
|
|
|
%Z = or ushort %Y, %X
|
|
|
|
ret ushort %Z
|
|
|
|
}
|