[ Previous | Next | Contents | Home | Search ]
AIX Version 4.3 Assembler Language Reference

rldcl (Rotate Left Double Word then Clear Left) Instruction

Purpose

Rotate the contents of a general purpose register left by the number of bits specified by the contents of another general purpose register. Generate a mask that is ANDed with the result of the shift operation. Store the result of this operation in another general purpose register.

Syntax

PowerPC
rldcl RA, RS, RB, MB (Rc=0)
rldcl. RA, RS, RB, MB (Rc=1)

Description

The contents of general purpose register (GPR) RS are rotated left the number of bits specified by the operand in the low-order six bits of RB. A mask is generated having 1 bits from bit MB through bit 63 and 0 bits elsewhere. The rotated data is ANDed with the generated mask and the result is placed into RA.

Note that the rldcl instruction can be used to extract and rotate bit fields using the methods shown below:

Other registers altered:

Parameters

RA Specifies the target general purpose register for the result of the instruction.
RS Specifies the source general purpose register containing the operand.
RB Specifies the source general purpose register containing the shift value.
MB Specifies the begin value (bit number) of the mask for the operation.

Implementation

This instruction is defined only for 64-bit implementations. Using it on a 32-bit implementation will cause the system illegal instruction error handler to be invoked.


[ Previous | Next | Contents | Home | Search ]