Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

From my understanding of a debugger, low level code is interpreted as high level code, which is the opposite of what a compiler does. Would you think this is a good comparison/contrast?

EDIT: I was thinking more on the way they work on the inside, my thoughts were that the low level code created by the compiler was interpreted by the debugger, but someone answered my question, they are actually symbols. thanks!

share|improve this question
Nope, lousy comparison. A decompiler is the opposite of a compiler, or you could stretch it and say that a disassembler is the opposite (and many debuggers contain a disassembler). – Hot Licks Sep 2 '12 at 2:22
That's not what a debugger does. A debugger relies on symbols that map from the original source to the generated machine code. – James McNellis Sep 2 '12 at 2:22
1  
No it is NOT! The reason to use them are completely different. Anyways, this is not very constructive for this site, and only invites irrelevant discussion. – ronalchn Sep 2 '12 at 2:23
@JamesMcNellis -- Not necessarily. I've worked with many a debugger that had no connection to the original source. – Hot Licks Sep 2 '12 at 2:23
1  
if a compiler if a car, the debugger would be the computer system the mechanic plugs into the car to check the car's engine and computer system for errors. – Nicholas Pezolano Sep 2 '12 at 2:32
show 1 more comment

closed as not a real question by Don Roby, Levon, Eric Postpischil, ephemient, talonmies Sep 2 '12 at 9:19

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Not really. There is such a thing as a decompiler, which would be the most direct opposite of a compiler, but they aren't commonly used as far as I've seen.

share|improve this answer

No, I don't think that's quite an accurate picture IMO.

A compiler will generally take high-level code and translate it into an equivalent low-level representation. A debugger will let you trace your code as it executes (and also examine variables etc once the execution is paused). Given that, I don't think they are opposites.

share|improve this answer

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