Is there a good reference for ARM Neon intrinsics?

限于喜欢 提交于 2019-12-17 21:58:17

问题


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?


回答1:


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.




回答2:


There's also the ARM C Language Extensions which provides details on the usage of the intrinsics (see chapter 12) that could be useful.




回答3:


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.




回答4:


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.



来源:https://stackoverflow.com/questions/2851421/is-there-a-good-reference-for-arm-neon-intrinsics

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!