04.01.2015 Views

RealView Compilation Tools - ARM Information Center

RealView Compilation Tools - ARM Information Center

RealView Compilation Tools - ARM Information Center

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Compiler-specific Features<br />

4.7.100 __usada8 intrinsic<br />

This intrinsic inserts a USADA8 instruction into the instruction stream generated by the<br />

compiler. It enables you to perform four unsigned 8-bit subtractions, and add the<br />

absolute values of the differences to a 32-bit accumulate operand.<br />

unsigned int __usada8(unsigned int val1, unsigned int val2, unsigned int val3)<br />

Where:<br />

val1<br />

val2<br />

val3<br />

holds the first four 8-bit operands for the subtractions<br />

holds the second four 8-bit operands for the subtractions<br />

holds the accumulation value.<br />

The __usada8 intrinsic returns the sum of the absolute differences of the following<br />

bytes, added to the accumulation value:<br />

• the subtraction of the first byte in the second operand from the first byte in the first<br />

operand<br />

• the subtraction of the second byte in the second operand from the second byte in<br />

the first operand<br />

• the subtraction of the third byte in the second operand from the third byte in the<br />

first operand<br />

• the subtraction of the fourth byte in the second operand from the fourth byte in<br />

the first operand.<br />

Example:<br />

unsigned int subtract_add_diff_accumulate(unsigned int val1, unsigned int val2,<br />

unsigned int val3)<br />

{<br />

unsigned int res;<br />

}<br />

res = __usada8(val1,val2,val3); /* absdiff1 = val1[7:0] - val2[7:0]<br />

absdiff2 = val1[15:8] - val2[15:8]<br />

absdiff3 = val1[23:16] - val2[23:16]<br />

absdiff4 = val1[31:24] - val2[31:24]<br />

sum = absdiff1 + absdiff2 + absdiff3<br />

+ absdiff4<br />

res[31:0] = sum[31:0] + val3[31:0]<br />

*/<br />

return res;<br />

See also<br />

• <strong>ARM</strong>v6 SIMD intrinsics on page 4-109<br />

<strong>ARM</strong> DUI 0348C Copyright © 2007-2010 <strong>ARM</strong>. All rights reserved. 4-179<br />

ID101213<br />

Non-Confidential,

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!