例如,在以下反汇编中:
.text:007C6834 014 mov eax, [esi+4]
.text:007C6837 014 mov dword ptr [esi], offset ??_7CAvatar@@6B@ ; const CAvatar::`vftable'
我如何能够将 esi 寄存器的类型设置为结构体,以便在理想的世界中反汇编将变成:
.text:007C6834 014 mov eax, [esi.field_04]
.text:007C6837 014 mov dword ptr [esi.vtable], offset ??_7CAvatar@@6B@ ; const CAvatar::`vftable'