vaddb
vaddb is a vector instruction used in ARM’s NEON (Advanced SIMD) extension to perform element-wise addition of 8-bit integers. It operates on two source vectors and writes the result to a destination vector, with each corresponding pair of 8-bit lanes added independently.
In typical NEON usage, a 128-bit vector contains 16 lanes of 8-bit elements, so vaddb adds 16
Variants and syntax tend to vary by assembler and language binding. In assembly, you may see forms
Related instructions include saturating and wider variants, such as vqaddb (saturating addition of 8-bit integers) and
Use cases for vaddb include multimedia processing, image and video processing, and other data-parallel workloads where