disassembling AMD64 code.

  • Thread starter Thread starter RossettoeCioccolato
  • Start date Start date
R

RossettoeCioccolato

The version of dumpbin that ships with VC8 will disassemble x86 code. Is
there a version of dumpbin that ships with VC8 that is able to disassemble
AMD64 object code? Or is there some other solution. I have compiled both
x86 and x64 versions of a binary using VC8 and I need to see, in both cases,
whether the resulting object code is what I expected.

Regards,

George.
 
My mistake. I was feeding dumpbin an IA64 binary. It works just fine with
AMD64. Sorry for inconveniencing the list.

Regards,

George.
 
Hi George,

That's OK, by the way, I found some candidate utilities to disassembling
AMD64 code:

1. Use the LINK utility from the latest Platform SDK.(with the /DUMP
option).
2. Use the VC7.1's DUMPBIN, it is also capable of disassembling AMD64
object files.


Thanks!

Best regards,

Gary Chang
Microsoft Community Support
--------------------
Get Secure! ¡§C www.microsoft.com/security
Register to Access MSDN Managed Newsgroups!
http://support.microsoft.com/default.aspx?scid=/servicedesks/msdn/nospam.asp
&SD=msdn

This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top