1 <!DOCTYPE HTML PUBLIC
"-//IETF//DTD HTML 2.0//EN">
4 <TITLE>80386 Programmer's Reference Manual -- Opcode SHLD
</TITLE>
7 <B>up:
</B> <A HREF=
"c17.htm">
8 Chapter
17 --
80386 Instruction Set
</A><BR>
9 <B>prev:
</B><A HREF=
"SGDT.htm"> SGDT/SIDT Store Global/Interrupt Descriptor Table Register
</A><BR>
10 <B>next:
</B><A HREF=
"SHRD.htm"> SHRD Double Precision Shift Right
</A>
14 <H1>SHLD -- Double Precision Shift Left
</H1>
17 Opcode Instruction Clocks Description
19 0F A4 SHLD r/m16,r16,imm8
3/
7 r/m16 gets SHL of r/m16 concatenated
21 0F A4 SHLD r/m32,r32,imm8
3/
7 r/m32 gets SHL of r/m32 concatenated
23 0F A5 SHLD r/m16,r16,CL
3/
7 r/m16 gets SHL of r/m16 concatenated
25 0F A5 SHLD r/m32,r32,CL
3/
7 r/m32 gets SHL of r/m32 concatenated
33 (* count is an unsigned integer corresponding to the last operand of the
34 instruction, either an immediate byte or the byte in register CL *)
35 ShiftAmt := count MOD
32;
36 inBits := register; (* Allow overlapped operands *)
40 IF ShiftAmt
>= OperandSize
41 THEN (* Bad parameters *)
43 CF, OF, SF, ZF, AF, PF := UNDEFINED;
44 ELSE (* Perform the shift *)
45 CF := BIT[Base, OperandSize - ShiftAmt];
46 (* Last bit shifted out on exit *)
47 FOR i := OperandSize -
1 DOWNTO ShiftAmt
49 BIT[Base, i] := BIT[Base, i - ShiftAmt];
51 FOR i := ShiftAmt -
1 DOWNTO
0
53 BIT[Base, i] := BIT[inBits, i - ShiftAmt + OperandSize];
56 (* SF, ZF, PF are set according to the value of the result *)
64 SHLD shifts the first operand provided by the r/m field to the left as
65 many bits as specified by the count operand. The second operand (r16 or r32)
66 provides the bits to shift in from the right (starting with bit
0). The
67 result is stored back into the r/m operand. The register remains unaltered.
69 The count operand is provided by either an immediate byte or the contents
70 of the CL register. These operands are taken MODULO
32 to provide a number
71 between
0 and
31 by which to shift. Because the bits to shift are provided
72 by the specified registers, the operation is useful for multiprecision
73 shifts (
64 bits or more). The SF, ZF and PF flags are set according to the
74 value of the result. CS is set to the value of the last bit shifted out. OF
75 and AF are left undefined.
77 <H2>Flags Affected
</H2>
79 OF, SF, ZF, PF, and CF as described above; AF and OF are undefined
81 <H2>Protected Mode Exceptions
</H2>
83 #GP(
0) if the result is in a nonwritable segment; #GP(
0) for an illegal
84 memory operand effective address in the CS, DS, ES, FS, or GS segments;
85 #SS(
0) for an illegal address in the SS segment; #PF(fault-code) for a page
88 <H2>Real Address Mode Exceptions
</H2>
90 Interrupt
13 if any part of the operand would lie outside of the effective
91 address space from
0 to
0FFFFH
93 <H2>Virtual
8086 Mode Exceptions
</H2>
95 Same exceptions as in Real Address Mode; #PF(fault-code) for a page fault
101 <B>up:
</B> <A HREF=
"c17.htm">
102 Chapter
17 --
80386 Instruction Set
</A><BR>
103 <B>prev:
</B><A HREF=
"SGDT.htm"> SGDT/SIDT Store Global/Interrupt Descriptor Table Register
</A><BR>
104 <B>next:
</B><A HREF=
"SHRD.htm"> SHRD Double Precision Shift Right
</A>