I have some C++ code like this that I'm stepping through with GDB:

void foo(int num) { ... }

void main() {
  Baz baz;
  foo (baz.get());
}

When I'm in main(), I want to step into foo(), but I want to step over baz.get().

The GDB docs say that "the step command only enters a function if there is line number information for the function", so I'd be happy if I could remove the line number information for baz.get() from my executable. But ideally, I'd be able to tell GDB "never step into any function in the Baz class".

Does anyone know how to do this?

link|improve this question

feedback

3 Answers

Instead of choosing to "step", you can use the "until" command to usually behave in the way that you desire:

(gdb) until foo

I don't know of any way to permanently configure gdb to skip certain symbols (aside from eliding their debugging information).

Edit: actually, the GDB documentation states that you can't use until to jump to locations that aren't in the same frame. I don't think this is true, but in the event that it is, you can use advance for the same purpose:

(gdb) advance foo

Page 85 of the GDB manual defines what can be used as "location" arguments for commands that take them. Just putting "foo" will make it look for a function named foo, so as long as it can find it, you should be fine. Alternatively you're stuck typing things like the filename:linenum for foo, in which case you might just be better off setting a breakpoint on foo and using continue to advance to it.

link|improve this answer
That's pretty cool! It's not exactly what I'm looking for -- even with GDB's function name, typing in the whole name is somewhat tedious, so I'd prefer to blacklist functions or entire files. But it's a lot better than what I had. – Justin L. Jul 16 '09 at 0:54
feedback
up vote 2 down vote accepted

Update: As of a few weeks ago, this functionality is now in GDB trunk. Run |info skip|, or check out the manual for details.

Please let me know if you find bugs!

link|improve this answer
feedback

It appears that this isn't possible in GDB. I've filed a bug.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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