In the ARM NEON documentation, it says:

[...] some pairs of instructions might have to wait until the value is written back to the register file.

I haven't come across a list that defines the instruction pairs that can use forwarded results and the instruction pairs that have to wait for write back.

Does anyone know of a table or documentation that lists these pairs?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Broadly speaking, what you would reasonably expect to forward, forwards. vmul.f32 forwards to vadd.f32 and the like.

I don't believe that the exact forwarding paths are precisely documented anywhere in the manner you're looking for. I haven't found them, anyway. If you do find them, be sure to let us know where. It is, of course, not too hard to determine for any given pair of instructions whether or not forwarding occurs, but that's not a general solution. Sorry.

link|improve this answer
feedback

Does anyone know of a table or documentation that lists these pairs?

These pairs are over 9000 and they all can't be listed.
For example:

VADD.F32 q0,q0,q1
VMUL.F32 q3,q0,q2

the first instruction writes-back the result in 4th cycle, while the second instruction requires it (q0) as a source in 2nd cycle, so as the source is not ready yet there's a stall (or pipeline "hole") between this two instructions.

To calculate this stalls you can use the following online tool:
http://pulsar.webshaker.net/ccc/result.php?lng=us

link|improve this answer
Yes, I realize there would be a huge space of all pairs, but I was hoping there was a table with general pairs. E.g., an arithmetic instruction has to wait until write back of a load instruction. – Anthony Blake Dec 7 '11 at 0:01
1  
I wasn't asking about the cycle timings, because they are listed in the documentation. In the Cortex-A9 documentation, some instructions don't have to wait until write back -- they can use a forwarded result sooner. So I'm asking which pairs can use the result after write back, and which can use the forwarded results -- both timings are given in the A9 documentation, but it is unclear which timing is used with a given pair. – Anthony Blake Dec 7 '11 at 0:03
1  
I think the OP is talking about A9, not A8. The A9 documentation states both "result" and "writeback", and the difference is not exactly declared. – Jake 'Alquimista' LEE Dec 7 '11 at 8:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.