Displaying 2 results from an estimated 2 matches for "00251a03".
Did you mean:
00251a00
2012 Feb 27
3
[LLVMdev] Microsoft constructors implementation problem.
...will be pushed 0,
and ctor in second will not initialize vbtable and call first::ctor.
Add new class.
class third : public second, public first {};
................................................................................
002519FE push 0
00251A00 mov ecx,dword ptr [this]
00251A03 add ecx,4 ; this adjustment
00251A06 call second::second (2510F0h)
................................................................................
This is part of code from third ctor. Before second::ctor call 0 was
pushed on the stack,
this value tell to second::ctor that vbtab...
2012 Feb 27
0
[LLVMdev] Microsoft constructors implementation problem.
...not initialize vbtable and call first::ctor.
>
> Add new class.
>
> class third : public second, public first {};
>
> ................................................................................
> 002519FE push 0
> 00251A00 mov ecx,dword ptr [this]
> 00251A03 add ecx,4 ; this adjustment
> 00251A06 call second::second (2510F0h)
> ................................................................................
> This is part of code from third ctor. Before second::ctor call 0 was
> pushed on the stack,
> this value tell to...