360 Assembly/360 Instructions/LGFR

< 360 Assembly < 360 Instructions

LGFR - Load Register And Sign-Extend - RRE Instruction - Opcode B914

Format

LGFR 2,6 Copy the contents of register 6 into register 2, sign-extending from 32 to 64 bits.

The specific syntax is

LGFR target register, source register.

Opcode

Template:360 opcode RRE

Example usage

The LGFR instruction is used to copy the contents of the second register argument (the source register) into the first register argument (the target register), replacing the contents of the target register with the contents of the source register, sign-extended from 32 to 64 bits. The following is an example of how the instruction would assemble in various forms from an assembly language listing:

B914 0026        LGFR   2,6
B914 0092        LGFR   9,2
B914 00FA        LGFR   15,10

Typical Usage

When it is necessary to extend integer value as a signed one from 32 to 64 bits, having the source in a general register.

Availability

The LGFR instruction is 64-bit, and is only available on the 390 series and z/System. It will cause an opcode exception on the 360 and 370 series.

Operation

The LGFR instruction copies the 32-bit value from the register specified by the second argument to the register specified by the first argument.

Bits 0-31 (the high half) of the target 64-bit register are filled with copy of sign (most significant) bit of the source value.

Register 0 is valid for either register and is not ignored as in some other instructions.

Condition Codes

Condition codes are not changed.

Exceptions and Faults

32-Bit Instructions

64-Bit Instructions

Previous Instruction
LPXR
360 Assembly Instructions
{{{name}}}
Next Instruction
LRA
Previous Opcode
17
Next Opcode
19
360 Assembly Language
360 Family Introduction · Basic FAQ · 360 Family · 360 Architecture
360 Instruction Set 360 Instructions · Branch Instructions · Data Transfer Instructions · Control Flow Instructions · Arithmetic Instructions · Logic Instructions · Shift and Rotate Instructions · Other Instructions
Syntaxes and Assemblers 360 Assemblers· Pseudo Instructions
Instruction Extensions Floating Point · High-Level Languages
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.