28.3. SIMD assembly
Much like ADD for non-SIMD, start learning SIMD instructions by looking at the integer and floating point SIMD ADD instructions of each ISA:
-
x86
-
arm
-
aarch64
Then it is just a huge copy paste of infinite boring details:
To debug these instructions, you can see the register values in GDB with:
info registers float
or alternatively with register names (here the ARMv8 V0 register):
print $v0
as mentioned at: