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.95 __uqasx intrinsic<br />

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

compiler. It enables you to exchange the halfwords of the second operand and perform<br />

one unsigned 16-bit integer addition and one unsigned 16-bit subtraction, saturating the<br />

results to the 16-bit unsigned integer range 0 ≤ x ≤ 2 16 - 1.<br />

unsigned int __uqasx(unsigned int val1, unsigned int val2)<br />

Where:<br />

val1<br />

val2<br />

holds the first two halfword operands<br />

holds the second two halfword operands.<br />

The __uqasx intrinsic returns:<br />

• the subtraction of the high halfword in the second operand from the low halfword<br />

in the first operand, in the low halfword of the return value<br />

• the subtraction of the low halfword in the second operand from the high halfword<br />

in the first operand, in the high halfword of the return value.<br />

The results are saturated to the 16-bit unsigned integer range 0 ≤ x ≤ 2 16 - 1.<br />

Example:<br />

unsigned int exchange_add_subtract(unsigned int val1, unsigned int val2)<br />

{<br />

unsigned int res;<br />

}<br />

res = __uqasx(val1,val2); /* res[15:0] = val1[15:0] + val2[15:0]<br />

res[31:16] = val1[31:16] + val2[31:16]<br />

*/<br />

return res;<br />

See also<br />

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

• Instruction summary on page 4-2 in the Assembler Guide<br />

• Parallel add and subtract on page 4-99 in the Assembler Guide.<br />

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

ID101213<br />

Non-Confidential,

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

Saved successfully!

Ooh no, something went wrong!