vote up 29 vote down star
37

Debugging is the most time consuming activity of programming. So using appropriate tools and techniques is paramount to efficiency and productivity.

What are your favorite debugging techniques, and in which cases do you apply each of them?

There are many orthogonal criteria to consider:

  • Programming languages (tools usually are language specific, and there are maybe some techniques that are applicable only within specific languages)
  • Applications (web applications, client side, server side, singlethreaded versus multithreaded)
  • Environment (how many tiers, is it on a stored procedure, is it on an embedded device)

But I'm mainly interested on techniques (and tools, if there are any) which are generally applicable and that you find most useful for finding and squashing bugs.

flag

49 Answers

1 2 next
vote up 22 vote down

The one that I've used for the longest time and is pretty much universal:

When in doubt, print more out.

link|flag
3  
printf() got me through my uni degree. – mlambie Sep 25 '08 at 6:27
vote up 17 vote down

Conditional breakpoints

Many people don't use them. Conditional breakpoints cut down debugging time by filtering out breaks that don't fit the scenario you're investigating.

link|flag
vote up 15 vote down

Well, if you have a reasonable idea of how the code works, the symptoms of the bug should give you a good idea of where to look and what to look for. Then it's just a matter of reading the code intelligently, to find out what exactly the problem is.

If this is unbearably cumbersome, one or two well-placed text output statements should usually give you the information you need.

I used to be a big fan of "stepping through the code" using whatever debugger is available for the criteria you listed, but I'm starting to lean towards this reading approach now - the reason being the sentence you opened your question with:

Debugging is the most time consuming activity of programming.

It seems to me that simplifying the whole process (by removing all the tools) and applying your mind instead, speeds things up a lot. This effect is probably caused by the fact that having so many tools makes me lazy to think for myself.

link|flag
vote up 13 vote down

Using printf() is a perfectly legitimate way to debug. Yes there are other ways. You can use interactive debuggers such as gdb.

If you are on Windows, grab Microsoft Visual Studio Express. It's free and has one of the best interactive debuggers around.

An interactive debugger will let you step through code line-by-line, examine the contents of variables and set break-points to stop execution at specific points. Life would be real hard without these tools.

link|flag
vote up 12 vote down

This is my approach to finding bugs/debug:

  1. Stay away from the debugger.
  2. Make up your own theory of where/what the problem is.
  3. Get as much data about the problem (reconstruct the scenario that made the bug appear)
  4. Try out your theory.
  5. Talk to other developers (rubber ducking might help)
  6. Start using the debugger, and if you can't solve the problem in a short while, go to point 1.
link|flag
vote up 11 vote down

Much of my experience is with embedded devices that provide secure remote access to critical IT equipment, so my debugging scenarios typically involve several pieces of hardware, often exchanging interdependent encrypted data, in an absurdly multitasking/multiuser environment. It's a unique environment, but many of the debugging techniques are universal:

  • Put the problem into a box. Try to understand the simplest environment and fewest steps that cause the problem. This decimates the amount of "terrain" you need to investigate.

  • Develop a theory that explains the problem, then identify and validate your assumptions with small test cases.

  • Start simple. We all make typos, misplace punctuation, forget to initialize pointers, and make math or logic errors now and them.

  • Make the system tell you what it's doing. Whether through logs, beeps, blinks, or (yes, really!) interference on the frequency analyzer down the hall, ensure it's doing what you think it's doing, particularly where one piece interacts with another.

  • Follow the data. Check it at every step, and be sure it's going where it's supposed to—only there— and doesn't get mangled on the way.

  • Check boundary conditions. Does the system work until it reaches some sort of threshold: time, stress, iterations, resource usage, etc? What pushes it over the edge?

  • Look for classic errors. Deadlocks, overruns, memory leaks, off-by-one errors ... the ones we're embarrassed to admit. We call them classic errors for a reason.

  • What changed last? Be creative here: it may be something only peripherally involved with your system. (Our support group once had to troubleshoot one of our boxes that mysteriously stopped delivering alarms. Someone had changed the phone number of the customer's alarm catcher.)

  • Apply stress to force the problem to manifest. This is often an indicator of an inter-process problem (mutexes, shared memory, priority inversion, interrupt masking) or a resource issue.

  • Entertain the possibility of "impossible" system states. What can the system be doing that the developer didn't anticipate, and therefore didn't handle? (On a good day, you'll find a comment that says this can never happen...)

In general, do whatever you can to make the system transparent, so you can "see" everything that's happening. Be aware of any assumptions you make, and pay close attention to anything that seems "a little off." There's a logical reason for every behavior, and a logical, methodical search will take you to it.

link|flag
vote up 10 vote down

(note: unix specific)

When it comes to tools, here are some that can help in particular situations:

  • System call tracing (ktrace on bsd, strace on linux, dtruss on macosx, truss on solaris)

  • dtrace, if you're lucky enough to have a system that supports it; learn it! alternatively, use Instruments on
    Mac OS X which uses dtrace in the background. But the amount of stuff you can do with dtrace (using it's D language), is awesome.

  • lsof, list information about open files.

  • tcpdump, for network debugging

There are a lot more tools that doesn't come to mind right now, but these are tools that should be in every posix programmers arsenal.

link|flag
vote up 10 vote down

printf debugging has its place of course, it's not necessarily a bad technique. But there are LOTS of better ways:

http://stackoverflow.com/questions/91527/debugging-techniques

link|flag
vote up 9 vote down

Be purposeful.

Some advice here seems to be 'don't use a debugger at all'. This is based on devs tending to grab a debugger and step around without purpose.

That is of course bad, however the 'solution' of avoiding useful tools is worse. Please do use every tool available ... just understand what you are trying to do with the tool.

link|flag
vote up 6 vote down
  1. I think about invariants for each function I write.

  2. I put a bunch of assertions in my code to test the invariants. I put them in to check that the program really does what I believe it should be doing. I use asserts() even with relatively time-consuming conditions.

  3. I investigate every assertion failure. About 15% of my assert conditions are wrong, the rest are true program bugs. With the remaining 15%, I have learned something new.

  4. I check for impossible. I have a macro to wrap every system call with, and that macro (usually) aborts the program if the "impossible" should happen [e.g. failing to lock a mutex]. Obviously, if the failure is expected (e.g. seeing invalid input while reading a file), I use normal if() to handle it.

  5. Crashing is good. The sonner my program crashes due to some bug, the closer it will be to the source, and the easier it will be to find out the cause of the bug from a core-dump or a repeated run.

  6. Logging and tracing facilities to debug nondeterministic events (e.g. clients arriving, receiving signals, etc.)

  7. Last resort: single-stepping with a debugger. When I find the problem the hard way, I put additional assertions into the code.

The last problem I spent much time debugging was a now-corrected bug in Solaris signal handling: sometimes the signal was not delivered on the alternate stack (established by sigaltstack()) and the signal context consequently overwrote my local data (I was coding preemptive task scheduler in user-mode). Nasty.

A previous problem that took a lot of my time was a compiler optimizer bug where generated code accessed a global variable through an unitialized pointer. "Fun"!

Otherwise, I spent very little time in debugger -- most of the problems are discovered early with assertions. And even though I code in C++, somehow I manage to keep out of trouble with pointers and memory allocation (I don't remember the last time I had a memory leak, or reading from freed memory, etc.) that was actually my fault.

link|flag
vote up 6 vote down

Your essential debugging tools should include...

  • Logging: sounds like you have a handle on this already :)

  • Breakpoints: tell the program to stop on a given line of code if and when it gets there

  • Callstack: ability to see the chain of function calls that lead to the current point as well as the parameters they were passed

  • Locals: ability to see what variables are defined in the current scope and what their values are

  • Watches: ability to evaluate an expression in the debugger and see what it's value is

  • Disassembly: see what the compiled instructions corresponding to your code at a specific point are

  • Registers: see the state of the CPU at a given point in your program

Some advanced types of breakpoints:

  • Conditional Breakpoints: stop on a breakpoint only if a given conditional expression is satisfied

  • Memory Breakpoints: given a memory address and a number of bytes (the size of the value that you care about), break if the value stored at that address changes

Visual Studio provides all of these capabilities. The GNU tool for debugging is gdb and will provide most or all of these abilities as well.

link|flag
vote up 4 vote down

I'd say that a thorough automated test suite is the best debugging tool in any language. A logging engine is a good second tool. Then the integrated debugger for your language/IDE of choice... which must have at least variable inspection, conditional breakpoints and remote debugging.

link|flag
vote up 3 vote down

When I can't isolate a problem with standard methods I dig out my old watcom C++ compiler, build the program or the relevant part with it and fire on the watcom debugger.

Why? Once you hit a breakpoint or get an exception that masterpiece of a debugger lets you step back in time and see what caused the problem at the first place.

Works for C, C++ and Fortran.

link|flag
show 3 more comments
vote up 3 vote down

Usually I use this approach with a debugger.

  1. Track down the buggy code portion to the exact line
  2. See what is causing the problem. Its usually one of the variables which have a wrong value
  3. Think: Why did the variable have a wrong value. Come out with a theory which explains it.
  4. Test your theory. If it works, bug solved.

More often than not, its the theory thinking part that is crucial. It is all about pattern recognition. Ask, why would it cause this output. All bugs have a pattern to it. Whenever I come across bugs which I can't even think of a theory, you got to give yourself more clues. Introduce other values into your function. See what it produces. More often than they can shed some clues on where the problem lies. Keep going until you get more clues. Usually that does the trick.

Sometimes I feel that the mental state of the programmer is important too. If you feel tired, take a break. If you feel tense, take a break. Believe me, your mind works away while you're having a break. Happy debugging!

link|flag
vote up 3 vote down

NO JOKE - TALK TO A ROCK

Many of the above answers are fantastic and I've made my vote. But this is no joke. When all else fails, we have a pet rock that we talk to and explain to it (him, her?) what the program is supposed to be doing.

When it gets to thAT point we get a beer but it works. The rock can make us feel like morons (for explaining to a rock why our program doesn't work)

link|flag
vote up 2 vote down

A technique I use for debugging code written by others:

Another technique which should be used only carefully is to do minor refactoring of the buggy area. Usually, I have found that areas with bugs are needlessly complex, so simplifying them incrementally helps in two ways: it is preventative (e.g. less bugs are likely to be in code that is straightforward) and it aids in understanding the code better. Often when I do this, I also find I need to rename variables or functions because they were not named in a manner that indicated the previous coder understood the problem in question!

Ultimately, the key is to understand the code in question.

link|flag
show 3 more comments
vote up 2 vote down

One technique I'm surprised hasn't been mentioned is to make a call graph. E.g. In the area of problem, what functions call other functions. Make that into a diagram, and it becomes easier to navigate the code and have a wholistic view of things.

I wouldn't recommend this for the simple bugs, as the time it takes is too much, but for more complicated issues it is helpful.

I would also add that doing this by hand (if time allows) is very useful to gaining an understanding of the code in question.

link|flag
vote up 2 vote down

Tools for deployment problems:

The SysInternals tools are useful for debugging deployment problems on Windows. Procmon allows you to see what process (and callstack) is touching files or the registry. Procexp will allow you to search for open handles, and inspect which modules are loaded in the process.

link|flag
show 1 more comment
vote up 2 vote down

Source history is helpful.

Any significant problem will cross out of code you own. Source history helps find who owns what in a large code base.

It also helps in reading code that you didn't write, to get it in small purposeful chunks via the diffs for a checkin.

Finally if what you are tracking is a recent regression, then binary searching back to identify the bad checkin can work.

link|flag
vote up 2 vote down

Comment sh*t out until it works.

link|flag
vote up 2 vote down

For small embedded systems: Always figure out a way to communicate debug messages out from the systems. For example sending RS232 data, debug printouts on an alphanumeric display, blink codes using a LED, toggling a bit somewhere which can be monitored with a oscilloscope or logic analyzer.

If possible, request this possibility from the hardware designers early on in design process.

link|flag
show 1 more comment
vote up 2 vote down

I am currently reading Why Programs Fail: A Guide to Systematic Debugging by Andreas Zeller. I can only highly recommend this book. It is a really seminal overview about debugging theory and practice. What I liked most so far is Chapter 6 on "Scientific Debugging".

link|flag
vote up 2 vote down

My debugging technique is reasonably simple:

  • Establish what the correct behaviour should be.
  • Reproduce the incorrect behaviour (the bug).
  • Devise a theory to explain the bug.
  • Make a prediction based on the theory.
  • Devise an experiment to test the prediction.
  • Run the experiment and observe the results.
  • Interpret the results of the experiment.
  • When appropriate, fix the bug.
  • Devise an experiment to test the bug fix.
  • Run the experiment and observe the results.
  • Interpret the results of the experiment.

The hard part comes when it's difficult or impossible to reproduce the bug. That's where skill, hard-earned experience, and luck come into play.

link|flag
vote up 2 vote down

When it comes to C I usually create a DPRINTF macro during development that expands to a printf call if DEBUG is defined (using C99 variadic macros):

#ifdef DEBUG
# define DPRINTF(...) fprintf(stderr, __VA_ARGS__);
#else
# define DPRINTF(...)
#endif

Then I insert DPRINTF statements as needed for debugging and then comment them out when I'm done with them inserting a note describing what I put them in there for. Before the production release I go back and review all of the debugging print statements and translate some of them into logging statements.

Other debugging tools I use include gdb, ltrace, strace, and lint although for the vast majority of the bugs I encounter, the printf debugging method is usually considerably faster.

link|flag
show 4 more comments
vote up 2 vote down

Yes there is:

#ifdef DEBUG
#define DBG x printf x
#else
#define DBG x do {} while (0)
#endif

Vinko gave a excellent link to the discussion about debugging.
Stay away from the debugger is a good advice. In 90% of cases debugger just slow you done rather helping you.
Debugger will not help you debug the problem discovered by customer and not reproducible on your setup, well designed logging system will do that.
printf is not necessary an answer, but using macro you can easily design your logging system to use fprintf or whatever you need.
I also would suggest to make the DEBUG macro more advanced and have level and module parameters that will control the verbosity of your output.

In response to This CarlOS post:

It is a bad practice that production code in release mode produce debug output. Just assume that i debug my code while your code is running and I'm using DebugView or tail -f /var/log/messages to see the debug output of my program and i will get ton's of messages from your code. Be nice to other developer control your code output :)

But you can make the function instead macro and control your debug output in run time

void my_printf(int section, int level, ...)
{
    if (global_debug_off)
        return; 
    //do you stuff here
}

Using function instead just if(debug) printf ... will give you a flexibility to change your output device easily for example from stderr to file or network or whatever.

link|flag
show 4 more comments
vote up 1 vote down

The most simple way would be to "print" them , or set breakpoints and inspect data . I find Eclipse's possibility to "eval" code when the debugger hits a breakpoint , very useful .

link|flag
vote up 1 vote down

Well,

Let me be the first to mention gdb, the GNU debugger. A very handy utility for debugging c++ and some other languages. It's pretty universal, runs on any system (including windows with cygwin) and is very well documented.

http://www.gnu.org/software/gdb/

link|flag
vote up 1 vote down

I find the best debugging session is one that never happens. If you employ a really good Test First (TDD) mentality then debugging doesn't have to be time consuming at all. If you write tests before you write your code then you will always have coverage, and your tests will direct your attention to the exact location where the problem is.

Debugging really becomes much less of a hassle because you simply have to run your tests, find the one that broke, and then you can use whatever built in debugging your IDE offers.

link|flag
vote up 1 vote down

Some techniques I use for debugging field issues (e.g. stuff that needs to be resolved quickly) is:

  1. Analyze the debug log of the application (e.g. something that logs unexpected exceptions like null reference exceptions). Ideally, the stack trace info is in the log. In .Net if the PDB file is also distributed, the line number where the exception occurred is also provided.
  2. Attempt to Reproduce it. Or If that fails, read the code to see if the failure scenario is obvious. This allows me to identify the function in question.
  3. See if I can find the input data into the function that is failing. If so, does it need to be scrubbed/normalized? If so, add that code. Does it need additional scenarios to be handled? If so, add that code.
link|flag
vote up 1 vote down

Get a simple consistent repro first!

Many problems are difficult because there isn't a simple consistent repro. If you have a long but consistent repro, then spend time trying to make it a short and consistent repro.

If you have an inconsistent repro then try to figure out how to make it consistent.

(Use all the tools you want ... including a debugger, modifying code, whatever ... just realize you are attempting to discover clues to help make a consistent repro.)

If you don't have a repro ... then any fix is a shot in the dark. You really don't know if you've fixed anything.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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