mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-28 06:32:09 +00:00
Fix revsh pattern.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79318 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
79e6408ad3
commit
51f39961c3
@ -543,7 +543,7 @@ def tREVSH : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iALU,
|
|||||||
"revsh", " $dst, $src",
|
"revsh", " $dst, $src",
|
||||||
[(set tGPR:$dst,
|
[(set tGPR:$dst,
|
||||||
(sext_inreg
|
(sext_inreg
|
||||||
(or (srl (and tGPR:$src, 0xFFFF), (i32 8)),
|
(or (srl (and tGPR:$src, 0xFF00), (i32 8)),
|
||||||
(shl tGPR:$src, (i32 8))), i16))]>,
|
(shl tGPR:$src, (i32 8))), i16))]>,
|
||||||
Requires<[IsThumb1Only, HasV6]>;
|
Requires<[IsThumb1Only, HasV6]>;
|
||||||
|
|
||||||
|
@ -951,7 +951,7 @@ def t2REVSH : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
|
|||||||
"revsh", ".w $dst, $src",
|
"revsh", ".w $dst, $src",
|
||||||
[(set GPR:$dst,
|
[(set GPR:$dst,
|
||||||
(sext_inreg
|
(sext_inreg
|
||||||
(or (srl (and GPR:$src, 0xFFFF), (i32 8)),
|
(or (srl (and GPR:$src, 0xFF00), (i32 8)),
|
||||||
(shl GPR:$src, (i32 8))), i16))]>;
|
(shl GPR:$src, (i32 8))), i16))]>;
|
||||||
|
|
||||||
def t2PKHBT : T2I<(outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
|
def t2PKHBT : T2I<(outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
|
||||||
|
@ -8,3 +8,16 @@ define i32 @f1(i32 %a) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
declare i32 @llvm.bswap.i32(i32) nounwind readnone
|
declare i32 @llvm.bswap.i32(i32) nounwind readnone
|
||||||
|
|
||||||
|
define i32 @f2(i32 %X) {
|
||||||
|
; CHECK: f2:
|
||||||
|
; CHECK: revsh r0, r0
|
||||||
|
%tmp1 = lshr i32 %X, 8
|
||||||
|
%tmp1.upgrd.1 = trunc i32 %tmp1 to i16
|
||||||
|
%tmp3 = trunc i32 %X to i16
|
||||||
|
%tmp2 = and i16 %tmp1.upgrd.1, 255
|
||||||
|
%tmp4 = shl i16 %tmp3, 8
|
||||||
|
%tmp5 = or i16 %tmp2, %tmp4
|
||||||
|
%tmp5.upgrd.2 = sext i16 %tmp5 to i32
|
||||||
|
ret i32 %tmp5.upgrd.2
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user