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

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Compiler-specific Features<br />

4.7.52 __qasx intrinsic<br />

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

compiler. It enables you to exchange the halfwords of the one operand, then add the high<br />

halfwords and subtract the low halfwords, saturating the results to the 16-bit signed<br />

integer range -2 15 ≤ x ≤ 2 15 - 1.<br />

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

Where:<br />

val1<br />

val2<br />

holds the first operand for the subtraction in the low halfword, and the<br />

first operand for the addition in the high halfword<br />

holds the second operand for the subtraction in the high halfword, and the<br />

second operand for the addition in the low halfword.<br />

The __qasx intrinsic returns:<br />

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

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

• the saturated addition of the high halfword in the first operand and the low<br />

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

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

Example:<br />

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

{<br />

unsigned int res;<br />

}<br />

res = __qasx(val1,val2); /* res[15:0] = val1[15:0] - val2[31:16]<br />

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

*/<br />

/* Alternative equivalent representation:<br />

val2[15:0][31:16] = val2[31:16][15:0]<br />

res[15:0] = val1[15:0] - val2[15:0]<br />

res[31:16] = val[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 />

• Saturating instructions on page 4-93 in the Assembler Guide<br />

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

Non-Confidential,<br />

ID101213

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

Saved successfully!

Ooh no, something went wrong!