mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
9b5cb04a0a
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19846 91177308-0d34-0410-b5e6-96231b3b80d8
35 lines
829 B
Plaintext
35 lines
829 B
Plaintext
; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -disable-pattern-isel=0 | grep sh[lr]d | wc -l | grep 5
|
|
|
|
; This is currently xfailed, because the expander for long shifts needed to
|
|
; change and the X86 BE was not updated to match. FIXME.
|
|
; XFAIL: *
|
|
|
|
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
|
|
}
|
|
|
|
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
|
|
}
|