mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
add a note
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35530 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c8d288f8fa
commit
fcb1e61a43
@ -639,3 +639,26 @@ __ZNK4llvm5APInt17countLeadingZerosEv:
|
|||||||
The dead or is a 'truncate' from 64- to 32-bits.
|
The dead or is a 'truncate' from 64- to 32-bits.
|
||||||
|
|
||||||
===-------------------------------------------------------------------------===
|
===-------------------------------------------------------------------------===
|
||||||
|
|
||||||
|
We generate horrible ppc code for this:
|
||||||
|
|
||||||
|
#define N 2000000
|
||||||
|
double a[N],c[N];
|
||||||
|
void simpleloop() {
|
||||||
|
int j;
|
||||||
|
for (j=0; j<N; j++)
|
||||||
|
c[j] = a[j];
|
||||||
|
}
|
||||||
|
|
||||||
|
LBB1_1: ;bb
|
||||||
|
lfdx f0, r3, r4
|
||||||
|
addi r5, r5, 1 ;; Extra IV for the exit value compare.
|
||||||
|
stfdx f0, r2, r4
|
||||||
|
addi r4, r4, 8
|
||||||
|
|
||||||
|
xoris r6, r5, 30 ;; This is due to a large immediate.
|
||||||
|
cmplwi cr0, r6, 33920
|
||||||
|
bne cr0, LBB1_1
|
||||||
|
|
||||||
|
===-------------------------------------------------------------------------===
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user