I am using the FFTW3 library on Beagleboard xM in a C application to perform r2c FFTs of floats. I read on this page that FFTW3 includes support for Neon, which is part of the xM architecture.
Is there a way to tell if the Neon coprocessor is actually being used?
For example, can I lists symbols from the object files and parse for some special Neon symbols? Alternatively, can I look through gcc -S assembler output for any Neon instructions? What instruction(s) would I look for? (I'm not familiar with what Neon assembly looks like).