How to analyze dump file from delphi dll?

Posted by Yann on Stack Overflow See other posts from Stack Overflow or by Yann
Published on 2009-08-06T09:58:53Z Indexed on 2012/06/13 10:40 UTC
Read the original article Hit count: 345

Filed under:
|
|

I'm an escalation engineer on a product which use both c# and delphi 2006 code.

In most cases c# issues are debugged with windbg and delphi 2006 issues with eurekalog.

But when the issue is a delphi memory usage, eurekalog doesn't give enough information to fix the issue and the only thing i have to debug it is a full memory dump file.

I cannot (or i don't know how to) load symbol file in windbg because it is a .map file and not a .pdb file.

So my questions are:

  • Does anyone know how to load symbol from .map file in windbg? (Converting .map to .pdb or other)

  • Does anyone know a tool to analyze dump file for delphi application?

© Stack Overflow or respective owner

Related posts about delphi

Related posts about debugging