Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the lea instruction before a method call doing?

In looking at my disassembled code I see a lot of the following:

00B442E9  push        4  
00B442EB  push        3  
00B442ED  lea         ecx,[ebp-24h]  
00B442F0  call        Foo::Bar (0B41127h)  

I understand pushing the parameters before the call, but what's the lea doing here?

like image 378
J Cooper Avatar asked Aug 04 '11 02:08

J Cooper


2 Answers

In the thiscall calling convention used by Visual C++ for x86, the this pointer is passed in the ecx register. This lea instruction copies the this pointer into the ecx register before calling the member function.

You can read all about the lea instruction in the Stack Overflow question "What's the purpose of the LEA instruction?"

like image 70
James McNellis Avatar answered Sep 25 '22 01:09

James McNellis


I think it's just an optimized form of

mov ecx, ebp
sub ecx, 24h
like image 2
user541686 Avatar answered Sep 22 '22 01:09

user541686