Referring to the diagram below, it appears that NEON only applies to floating point processing. Is this correct?
Does it mean that NEON only applies to using the VFP?
Does it mean that NEON does not apply to the Multiply, Shift, and ALU blocks in the diagram below?
Thank you for your replies and the information, I appreciate it. I'm still unclear on the following:
If I'm doing integer math using NEON, does this mean I'm using the VFP with NEON with the VFP in integer mode, OR does it mean I'm using NEON with the ALU?
No it doesn't mean you are using the VFP. However NEON and VFP use the same registers and it is unlikely one would want to do NEON type operations at the same time as VFP operations. Therefore I would suppose it is much cheaper to just treat them as a single unit as far as accessing the registers is concerned. If one could do two operations at the same time as in dual issue or out-of-orde cores it just might be worth having two NEON units and only one VFP unit (though no one does that I think) - however one would still pair up one of the NEON units with the VFP unit so there were only two units accessing the registers. It is also possible that VFP and NEON could share some hardware.
This definitely clears it up. Thank you very much!