mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-10 20:33:15 +00:00
subreg form on x86-64, to avoid the problem with x86-32 having GPRs that don't have 8-bit subregs. Also, change several 16-bit instructions to use equivalent 32-bit instructions. These have a smaller encoding and avoid partial-register updates. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54223 91177308-0d34-0410-b5e6-96231b3b80d8
29 lines
760 B
LLVM
29 lines
760 B
LLVM
; RUN: llvm-as < %s | llc -march=x86-64 > %t
|
|
; RUN: not grep and %t
|
|
; RUN: not grep movzbq %t
|
|
; RUN: not grep movzwq %t
|
|
; RUN: not grep movzlq %t
|
|
|
|
; These should use movzbl instead of 'and 255'.
|
|
; This related to not having a ZERO_EXTEND_REG opcode.
|
|
|
|
; This test was split out of zext-inreg-0.ll because these
|
|
; cases don't yet work on x86-32 due to the 8-bit subreg
|
|
; issue.
|
|
|
|
define i32 @a(i32 %d) nounwind {
|
|
%e = add i32 %d, 1
|
|
%retval = and i32 %e, 255
|
|
ret i32 %retval
|
|
}
|
|
define i32 @b(float %d) nounwind {
|
|
%tmp12 = fptoui float %d to i8
|
|
%retval = zext i8 %tmp12 to i32
|
|
ret i32 %retval
|
|
}
|
|
define i64 @d(i64 %d) nounwind {
|
|
%e = add i64 %d, 1
|
|
%retval = and i64 %e, 255
|
|
ret i64 %retval
|
|
}
|