(AREF X (+ -8 (* 8 I)))
A better way generate the array reference is to:
add %fp,-816,%l1 ! + -816
ld [%fp-8],%l2 ! i
sll %l2,3,%l2 ! shift left 3
ldd [%l1+%l2],%f2 ! x[]
This form of code is 4 instructions, compared to 7 for the other form.
Contents    Page-10    Prev    Next    Page+10    Index