For me, it just seems like a funky MOV. What's its purpose and when should I use it?
|
As others have pointed out, LEA (load effective address) is often used as a "trick" to do certain computations, but that's not its primary purpose. The x86 instruction set was designed to support high-level languages like Pascal and C, where arrays—especially arrays of ints or small structs—are common. Consider, for example, a struct representing (x, y) coordinates:
Now imagine a statement like:
where
which will land
In this case, you don't want the value of
which will load the address in |
|||||||||||||||||
|
|
From the "Zen of Assembly" by Abrash:
|
|||||||
|
|
to move |
|||
|
|
|
Maybe just another thing about LEA instruction. You can also use LEA for fast multiplaing registers by 3, 5 or 9.
|
|||||
|
|
Despite all the explanations, LEA is an arithmetic operation: LEA Rt, [Rs1+a*Rs2+b] => Rt = Rs1 + a*Rs2 + b It's just that its name is extremelly stupid for a shift+add operation. The reason for that was already explained in the top rated answers (i.e. it was designed to directly map high level memory references). |
|||
|
|
|
Another important feature of the LEA instruction is that it does not alter the condition codes such as CF and ZF, while computing the address by arithmetic instructions like ADD or MUL does. This feature decreases the level of dependency among instructions and thus makes room for further optimization by the compiler or hardware scheduler. |
||||
|
|
|
The 8086 has a large family of instructions which accept a register operand and an effective address, perform some computations to compute the offset part of that effective address, and perform some operation involving the register and the memory referred to by the computed address. It was fairly simple to have one of the instructions in that family behave as above except for skipping that actual memory operation. This, the instructions: mov ax,[bx+si+5] lea ax,[bx+si+5] were implemented almost identically internally. The difference is a skipped step. Both instructions work something like: temp = fetched immediate operand (5) temp += bx temp += si address_out = temp (skipped for LEA) trigger 16-bit read (skipped for LEA) temp = data_in (skipped for LEA) ax = temp As for why Intel thought this instruction was worth including, I'm not exactly sure, but the fact that it was cheap to implement would have been a big factor. Another factor would have been the fact that Intel's assembler allowed symbols to be defined relative to the BP register. If mov ax,fnord ; Equivalent to "mov ax,[BP+8]" If one wanted to use something like stosw to store data to a BP-relative address, being able to say mov ax,0 ; Data to store mov cx,16 ; Number of words lea di,fnord rep movs fnord ; Address is ignored EXCEPT to note that it's an SS-relative word ptr was more convenient than: mov ax,0 ; Data to store mov cx,16 ; Number of words mov di,bp add di,offset fnord (i.e. 8) rep movs fnord ; Address is ignored EXCEPT to note that it's an SS-relative word ptr Note that forgetting the world "offset" would cause the contents of location [BP+8], rather than the value 8, to be added to DI. Oops. |
|||
|
|
|
The LEA instruction can be used to avoid time consuming calculations of effective addresses by the CPU. If an address is used repeatedly it is more effective to store it in a register instead of calculating the effective address every time it is used. |
|||
|
|

