Are there any resources that would cover syntax of using NEON Assembly with GNU assembler? I've read that syntax differs from the one using RVCT assembler, but that's the only thing I can find documentation for. Are there any good resources out there to get me started?
|
feedback
|
|
NEON syntax is the same besides one small detail: the aligned loads/stores use @ in ARM and ,: in GAS. This is because @ is a comment symbol in GAS. ARM:
GAS:
| |||||||||
feedback
|
|
I have written some info about ARM + NEON Assembly code for GCC (including an example NEON function implementation) at http://www.shervinemami.info/armAssembly.html | |||
|
feedback
|
|
One thing that is not self explanatory when starting with GAS is the way to define a symbol. The way it works in ARM assembler will not work with GAS. But in GAS you can just use #define to make a symbol for some register. Such as...
Such that...
is the same as
Otherwise I found that almost everything else was the same, and of course the alignment difference as already answered. | ||||
feedback
|