vote up 5 vote down star
3

I have a program in which I've lost the C++ source code. Are there any good C++ decompilers out there?

I've already ran across Boomerang.

flag

7 Answers

vote up 9 vote down check

You can use IDA Pro by Hex-Rays. You will usually not get good C++ out of a binary unless you compiled in debugging information. Prepare to spend a lot of manual labor reversing the code.

If you didn't strip the binaries there is some hope as IDA Pro can produce C-alike code for you to work with. Usually it is very rough though, at least when I used it a couple of years ago.

link|flag
vote up 0 vote down

Duplicate? (C vs. C++?): http://stackoverflow.com/questions/193896/whats-a-good-c-decompiler

link|flag
I considered that before posting, but it seems that most decompilers go to C. I was wondering if there was one actually for C++. – Bryan Denny Oct 15 '08 at 15:33
vote up 1 vote down

Maybe I'm way off, but once a program has been compiled, couldn't you disassemble it to any language? For example, if you compile a C++ program, couldn't you decompile it into, say, Pascal?

link|flag
Not really, as there may not be a high-level command to match the one in the original language. What you are saying is correct in a framework that was designed to do this, such as different languages under .NET or the JVM framework. – Yuval F Dec 7 '08 at 13:22
You can decompile to anything. The question is whether the result will be more useful than a machine emulator attached to the binary. – David Thornley Apr 6 at 18:19
vote up 6 vote down

Yes, but none of them will manage to produce readable enough code to worth the effort. You will spend more time trying to read the decompiled source with assembler blocks inside, than rewriting your old app from scratch.

link|flag
vote up 3 vote down

information is discarded in the compiling process. Even if a decompiler could produce the logical equivalent code with classes and everything (it probably can't), the self-documenting part is gone in optimized release code. No variable names, no routine names, no class names - just addresses.

link|flag
vote up 3 vote down

Depending on how large and how well-written the original code was, it might be worth starting again in your favourite language (which might still be C++) and learning from any mistakes made in the last version. Didn't someone once say about writing one to throw away?

n.b. Clearly if this is a huge product, then it may not be worth the time.

link|flag
joelonsoftware.com/articles/fog0000000069.html/… – Dustin Getz Oct 15 '08 at 16:56
1  
Joel is a great columnist, but at times wrong. And then there are times when he's quoted wrong. Like here, since the question centers around the loss of source code. Joels article explains why source code is valuable. – MSalters Oct 16 '08 at 10:47
vote up 1 vote down

I haven't seen any decompilers that generate C++ code. I've seen a few experimental ones that make a reasonable attempt at generating C code, but they tended to be dependent on matching the code-generation patterns of a particular compiler (that may have changed, it's been awhile since I last looked into this). Of course any symbolic information will be gone. Google for "decompiler".

link|flag

Your Answer

Get an OpenID
or

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