LEA—Load Effective AddressInstruction Operand EncodingDescriptionComputes the effective address of the second operand (the source operand) and stores it in the first operand (destination operand). The source operand is a memory address (offset part) specified with one of the processors addressing modes; the destination operand is a general-purpose register. The address-size and operand-size attri-butes affect the action performed by this instruction, as shown in the following table. The operand-size attribute of the instruction is determined by the chosen register; the address-size attribute is determined by the attribute of the code segment.Different assemblers may use different algorithms based on the size attribute and symbolic reference of the source operand.In 64-bit mode, the instruction’s destination operand is governed by operand size attribute, the default operand size is 32 bits. Address calculation is governed by address size attribute, the default address size is 64-bits. In 64-bit mode, address size of 16 bits is not encodable. See Table 3-55.OpcodeInstructionOp/ En64-Bit ModeCompat/Leg ModeDescription8D /rLEA r16,mRMValidValidStore effective address for m in register r16.8D /rLEA r32,mRMValidValidStore effective address for m in register r32.REX.W + 8D /rLEA r64,mRMValidN.E.Store effective address for m in register r64. Op/EnOperand 1Operand 2Operand 3Operand 4RMModRM:reg (w)ModRM:r/m (r)NANATable 3-54. Non-64-bit Mode LEA Operation with Address and Operand Size AttributesOperand SizeAddress SizeAction Performed161616-bit effective address is calculated and stored in requested 16-bit register destination.163232-bit effective address is calculated. The lower 16 bits of the address are stored in the requested 16-bit register destination.321616-bit effective address is calculated. The 16-bit address is zero-extended and stored in the requested 32-bit register destination.323232-bit effective address is calculated and stored in the requested 32-bit register destination.Table 3-55. 64-bit Mode LEA Operation with Address and Operand Size AttributesOperand SizeAddress SizeAction Performed163232-bit effective address is calculated (using 67H prefix). The lower 16 bits of the address are stored in the requested 16-bit register destination (using 66H prefix).166464-bit effective address is calculated (default address size). The lower 16 bits of the address are stored in the requested 16-bit register destination (using 66H prefix).323232-bit effective address is calculated (using 67H prefix) and stored in the requested 32-bit register destination.326464-bit effective address is calculated (default address size) and the lower 32 bits of the address are stored in the requested 32-bit register destination.643232-bit effective address is calculated (using 67H prefix), zero-extended to 64-bits, and stored in the requested 64-bit register destination (using REX.W).646464-bit effective address is calculated (default address size) and all 64-bits of the address are stored in the requested 64-bit register destination (using REX.W).
This UNOFFICIAL reference was generated from the official Intel® 64 and IA-32 Architectures Software Developer’s Manual by a dumb script. There is no guarantee that some parts aren't mangled or broken and is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.