Displaying 2 results from an estimated 2 matches for "2510f0h".
2012 Feb 27
3
[LLVMdev] Microsoft constructors implementation problem.
...r.
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 vbtable initialization and 
first::ctor call not need.
So my question is: How can I tell...
2012 Feb 27
0
[LLVMdev] Microsoft constructors implementation problem.
...rd : 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 vbtable initialization and
> first::ctor call not need.
>
> S...