I am currently using map2dbg to create a .dbg file from my Delphi .map files. This works beautifully for 32 bit executables. For 64 bit executables the call to map2dbg.exe appears to succeed, but the resulting .dbg file does not appear to be useful. When I view stack traces in Process Explorer, they have no symbol names.

Should I even expect map2dbg to work in 64 bit? And if not, is there an alternative that I can use?

link|improve this question

1  
Sounds like it's working for this guy: capnbry.net/blog/?p=18 – 500 - Internal Server Error Feb 23 at 22:57
@500-InternalServerError That post dates from 2010. The 64 bit in that post must be just a 64 bit OS running a 32 bit Delphi process under the WOW64 emulator. – David Heffernan Feb 23 at 23:00
I guess you're right - sorry to get your hopes up. – 500 - Internal Server Error Feb 23 at 23:05
I don't think so. From what I can find, map2dbg was updated to work with map files created by Delphi versions up to 2009. XE and certainly XE2 are not mentioned. The last commit to the source seems to have been done in 2009. Question remains whether there are significant differences between 32/64 bit map files. It wouldn't surprise me, but can't find anything as yet. – Marjan Venema Feb 24 at 8:00
@marjan map2dbg works fine with 32 bit xe2 – David Heffernan Feb 24 at 8:10
show 3 more comments
feedback

4 Answers

Unfortunately, *.dbg support is deprecated (note: not even used or loaded!) in newer versions of Microsoft products (windbg, process explorer, visual studio etc). So even if it creates a valid .dbg file, it will never be used... :-(

My biggest wish is to be able to create a .pdb file! So if anyone can get the specs for it?! (it is a closed MS format?) Because, to be even worse, the newest Intel VTune/Threading profiler also does not use .dbg files anymore, so I REALLY WANT A DELPHI TO PDB CONVERTER! (sorry for shouting)

I have tried several things, but no success yet. That's why I created my own stack viewer and minidump viewer, which uses Delphi debug symbols (.map, .jdbg etc): http://code.google.com/p/asmprofiler/wiki/ProcessStackViewer http://andremussche.blogspot.com/2011/03/minidump-reader-for-delphi.html

Note: I haven't tested my stuff on 64bit Delphi apps yet... So it probably won't work, but you can try it anyway...

link|improve this answer
Process explorer supports .dbg files – David Heffernan Feb 24 at 8:09
feedback

Just for your information: I found a PDB writer https://github.com/jbevain/cecil/blob/master/symbols/pdb/Mono.Cecil.Pdb/PdbWriter.cs

It's part of the Mono Cecil library (open source .net implementation). I hope it can modified to read Delphi .map files too... (not tested yet)

link|improve this answer
Sounds promising. One wonders if PDB files are the same for .net as they are for native code. – David Heffernan Mar 5 at 10:15
feedback

Just for your information, I made a Proof of Concept dll for dbghelp.dll, so it can also read Delphi .map files. It is some kind of proxy dll: it has the same exports of the real dll, but they are all forwarded to the real/original dll. 3 symbol functions are implemented with a Delphi (jclDebug.pas) lookup: https://plus.google.com/u/0/110131086673878874356/posts/4rmyQM5kVW7 https://plus.google.com/u/0/110131086673878874356/posts/TSJRqFJR3WZ

Only 32bit for now. ProcesExplorer runs only in 64bit in a 64bit Windows, but ProcesHacker also has a 32bit version. When I have some more time I can maybe improve it further... or try it yourself in the mean time! In 64bit mode you cannot use "ASM JMP PToProc" but something like "ASM JMP qword ptr [rel p]".

link|improve this answer
feedback

I made some modifications (actually commented the exceptions :-) ) to tds2pdb. Now it also works for Delphi .tds files, both 32bit and 64bit! See my G+ post: https://plus.google.com/u/0/110131086673878874356/posts/eJBKC16e5f6

Note: only ProcesExlorer did not show the full stack of my 64bit test program, ProcesHacker and WinDbg show the full stack though.

link|improve this answer
I had a go with this but it looks like it needs a lot more polish. The pdb creation threw up huge numbers of errors. And not being able to strip the TDS info from a 64 bit executable is a bit of a killer. – David Heffernan Apr 4 at 17:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.