05.02.2013 Views

ARM Architecture Reference Manual ARMv7-A and ARMv7-R edition

ARM Architecture Reference Manual ARMv7-A and ARMv7-R edition

ARM Architecture Reference Manual ARMv7-A and ARMv7-R edition

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.

Instruction Details<br />

A8.6.367 VQSHL, VQSHLU (immediate)<br />

Vector Saturating Shift Left (immediate) takes each element in a vector of integers, left shifts them by an<br />

immediate value, <strong>and</strong> places the results in a second vector.<br />

The oper<strong>and</strong> elements must all be the same size, <strong>and</strong> can be any one of:<br />

8-bit, 16-bit, 32-bit, or 64-bit signed integers<br />

8-bit, 16-bit, 32-bit, or 64-bit unsigned integers.<br />

The result elements are the same size as the oper<strong>and</strong> elements. If the oper<strong>and</strong> elements are signed, the results<br />

can be either signed or unsigned. If the oper<strong>and</strong> elements are unsigned, the result elements must also be<br />

unsigned.<br />

If any of the results overflow, they are saturated. The cumulative saturation flag, QC, is set if saturation<br />

occurs. For details see Pseudocode details of saturation on page A2-9.<br />

Encoding T1 / A1 Advanced SIMD<br />

VQSHL{U}. ,,#<br />

VQSHL{U}. ,,#<br />

15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0<br />

1 1 1 U 1 1 1 1 1 D imm6 Vd 0 1 1 op L Q M 1 Vm<br />

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0<br />

1 1 1 1 0 0 1 U 1 D imm6 Vd 0 1 1 op L Q M 1 Vm<br />

if L:imm6 == ‘0000xxx’ then SEE “Related encodings”;<br />

if U == ‘0’ && op == ‘0’ then UNDEFINED;<br />

if Q == ‘1’ && (Vd == ‘1’ || Vm == ‘1’) then UNDEFINED;<br />

case L:imm6 of<br />

when ‘0001xxx’ esize = 8; elements = 8; shift_amount = UInt(imm6) - 8;<br />

when ‘001xxxx’ esize = 16; elements = 4; shift_amount = UInt(imm6) - 16;<br />

when ‘01xxxxx’ esize = 32; elements = 2; shift_amount = UInt(imm6) - 32;<br />

when ‘1xxxxxx’ esize = 64; elements = 1; shift_amount = UInt(imm6);<br />

src_unsigned = (U == ‘1’ && op == ‘1’); dest_unsigned = (U == ‘1’);<br />

d = UInt(D:Vd); m = UInt(M:Vm); regs = if Q == ‘0’ then 1 else 2;<br />

Related encodings See One register <strong>and</strong> a modified immediate value on page A7-21<br />

A8-720 Copyright © 1996-1998, 2000, 2004-2008 <strong>ARM</strong> Limited. All rights reserved. <strong>ARM</strong> DDI 0406B

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

Saved successfully!

Ooh no, something went wrong!