J Cooper
J Cooper

Reputation: 17051

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?

Upvotes: 7

Views: 1258

Answers (2)

James McNellis
James McNellis

Reputation: 354979

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?"

Upvotes: 12

user541686
user541686

Reputation: 210352

I think it's just an optimized form of

mov ecx, ebp
sub ecx, 24h

Upvotes: 2

Related Questions