mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-28 06:32:09 +00:00
add a poor division by constant case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125832 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
67982da351
commit
c1e4ce6044
@ -1884,3 +1884,40 @@ _add32carry:
|
||||
ret
|
||||
|
||||
//===---------------------------------------------------------------------===//
|
||||
|
||||
This:
|
||||
char t(char c) {
|
||||
return c/3;
|
||||
}
|
||||
|
||||
Compiles to: $clang t.c -S -o - -O3 -mkernel -fomit-frame-pointer
|
||||
|
||||
_t: ## @t
|
||||
movslq %edi, %rax
|
||||
imulq $-1431655765, %rax, %rcx ## imm = 0xFFFFFFFFAAAAAAAB
|
||||
shrq $32, %rcx
|
||||
addl %ecx, %eax
|
||||
movl %eax, %ecx
|
||||
shrl $31, %ecx
|
||||
shrl %eax
|
||||
addl %ecx, %eax
|
||||
movsbl %al, %eax
|
||||
ret
|
||||
|
||||
GCC gets:
|
||||
|
||||
_t:
|
||||
movl $86, %eax
|
||||
imulb %dil
|
||||
shrw $8, %ax
|
||||
sarb $7, %dil
|
||||
subb %dil, %al
|
||||
movsbl %al,%eax
|
||||
ret
|
||||
|
||||
which is nicer. This also happens for int, not just char.
|
||||
|
||||
//===---------------------------------------------------------------------===//
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user