Displaying 2 results from an estimated 2 matches for "12b77f4h".
Did you mean:
12b7744h
2012 Feb 27
3
[LLVMdev] Microsoft constructors implementation problem.
...ecx,4
012B19F8 call first::asdf (12B10FAh)
012B19FD mov eax,dword ptr [this]
012B1A00 mov ecx,dword ptr [eax]
012B1A02 mov edx,dword ptr [ecx+4]
012B1A05 mov eax,dword ptr [this]
012B1A08 mov dword ptr [eax+edx],offset second::`vftable'
(12B77F4h)
012B1A0F mov eax,dword ptr [this]
................................................................................
As you can see 'push 1' for MS ABI is like ctor_base & ctor_complete for
Itanium ABI.
If second ctor was called from another ctor(for example child that
inherit...
2012 Feb 27
0
[LLVMdev] Microsoft constructors implementation problem.
... first::asdf (12B10FAh)
> 012B19FD mov eax,dword ptr [this]
> 012B1A00 mov ecx,dword ptr [eax]
> 012B1A02 mov edx,dword ptr [ecx+4]
> 012B1A05 mov eax,dword ptr [this]
> 012B1A08 mov dword ptr [eax+edx],offset second::`vftable'
> (12B77F4h)
> 012B1A0F mov eax,dword ptr [this]
> ................................................................................
> As you can see 'push 1' for MS ABI is like ctor_base & ctor_complete for
> Itanium ABI.
> If second ctor was called from another ctor(for exa...