Vineeth
Vineeth

Reputation: 473

Is there a good reference for ARM Neon intrinsics?

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?

Upvotes: 29

Views: 25177

Answers (4)

nemequ
nemequ

Reputation: 17502

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.

Upvotes: 6

James Greenhalgh
James Greenhalgh

Reputation: 2491

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.

Upvotes: 0

mifortin
mifortin

Reputation: 401

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

Upvotes: 8

Carl Norum
Carl Norum

Reputation: 225142

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.

Upvotes: 15

Related Questions