This intrinsic inserts a UXTAB16 instruction
into the instruction stream generated by the compiler. It enables
you to extract two 8-bit values from one operand, zero-extend them
to 16 bits each, and add the results to two 16-bit values from another
operand.
unsigned int __uxtab16(unsigned int val1, unsigned int val2)
where val2[7:0]
and val2[23:16] hold
the two 8-bit values to be zero-extended.
The __uxtab16 intrinsic returns the 8-bit
values in val2, zero-extended
to 16-bit values and added to val1.
Example:
unsigned int extend_add(unsigned int val1, unsigned int val2)
{
unsigned int res;
res = __uxtab16(val1,val2); /* res[15:0] = ZeroExt(val2[7:0] to 16 bits)
+ val1[15:0]
res[31:16] = ZeroExt(val2[31:16] to 16 bits)
+ val1[31:16]
*/
return res;
}
This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies.
ARM websites use two types of cookie: (1) those that enable the site to function and perform as required; and (2) analytical cookies which anonymously track visitors only while using the site. If you are not happy with this use of these cookies please review our Privacy Policy to learn how they can be disabled. By disabling cookies some features of the site will not work.