The ARM reference manual doesn't go into too much detail into the individual instructions ( http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0348b/BABIIBBG.html ). Is there something that's a little more detailed?
-
3As of yesterday, I started to write this (contributions welcome): https://github.com/thenifty/neon-guide – aledalgrande Mar 14 '15 at 20:08
-
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, [describe the problem](http://meta.stackoverflow.com/questions/254393/what-exactly-is-a-recommendation-question) and what has been done so far to solve it. – FelixSFD Mar 06 '17 at 12:57
-
See also this for neon raw assembly: https://stackoverflow.com/questions/28547697/coding-for-arm-neon-how-to-start/52920303#52920303 – Ciro Santilli Oct 21 '18 at 22:04
4 Answers
For more information on the instructions themselves, you need the Assembler Guide. The list you found there just shows the mapping from compiler intrinsics to assembly instructions.

- 219,201
- 40
- 422
- 469
-
2The linked page is marked to be superseded, any idea where the updated version can be found? Maybe [this](http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0491c/Badcdfad.html)? – Antonio Mar 20 '15 at 13:05
-
1@Antonion, your new link also superseded, nowadays. An update: http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0473m/dom1361289932816.html – Gauthier Nov 17 '16 at 08:37
There's also the ARM C Language Extensions which provides details on the usage of the intrinsics (see chapter 12) that could be useful.

- 401
- 4
- 4
There is now an HTML version of the NEON Intrinsics Reference which is pretty convenient. Each entry includes a link to a more detailed explanation of the relevant instruction.
It's still not quite as good as Intel's, which lets you filter by instruction set and includes pseudo-code implementations, but it's a huge improvement over the old PDFs.

- 16,623
- 1
- 43
- 62
The ARM NEON Intrinsics Reference lists every NEON intrinsic with a mapping to the instruction it behaves like. Like the reference you give, it doesn't go in to detail about the behavior of the instruction, so must be read together with an Architecture Reference Manual, but it is the most complete reference for NEON Intrinsics which I'm aware of.

- 2,401
- 18
- 17