Displaying dereferenced STL iterators in gdb - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T04:11:38Zhttp://stackoverflow.com/feeds/question/322322http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/322322/displaying-dereferenced-stl-iterators-in-gdb5Displaying dereferenced STL iterators in gdbkchoose22008-11-26T22:03:20Z2009-05-08T01:29:08Z
<p>I have an iterator to a map element, and I would like gdb to show me the values of the "first" and "second" elements of that iterator.
For example:</p>
<pre><code>std::map<int,double> aMap;
...fill map...
std::map<int,double>::const_iterator p = aMap.begin();
</code></pre>
<p>I can use p.first and p.second in the code, but can't see them in gdb. For what it's worth, in dbx one could do something like "print p.node.second_", but I can find anything similar in gbd.</p>
<p>I am totally willing to have a function into which I pass the object types, but I've been unable to get that to work either.</p>
<p>Any ideas?
Thanks!</p>
http://stackoverflow.com/questions/322322/displaying-dereferenced-stl-iterators-in-gdb/322355#3223559Answer by Johannes Schaub - litb for Displaying dereferenced STL iterators in gdbJohannes Schaub - litb2008-11-26T22:16:37Z2008-11-26T22:16:37Z<p>Here is how i do it:</p>
<pre><code>This GDB was configured as "i686-pc-linux-gnu"...
(gdb) list
1 #include <iostream>
2 #include <map>
3
4 int main()
5 {
6 std::map<int, int> a;
7 a[10] = 9;
8 std::map<int, int>::iterator it = a.begin();
9 ++it;
10 }
(gdb) b test.cpp:9
Breakpoint 1 at 0x8048942: file test.cpp, line 9.
(gdb) r
Starting program: /home/js/cpp/a.out
Breakpoint 1, main () at test.cpp:9
9 ++it;
(gdb) set print pretty on
(gdb) p it
$1 = {
_M_node = 0x94fa008
}
(gdb) p *it
$2 = (class std::pair<const int, int> &) @0x94fa018: {
first = 10,
second = 9
}
(gdb)
</code></pre>
http://stackoverflow.com/questions/322322/displaying-dereferenced-stl-iterators-in-gdb/322356#3223561Answer by coppro for Displaying dereferenced STL iterators in gdbcoppro2008-11-26T22:16:52Z2008-11-26T22:16:52Z<p><code>p</code> will be an iterator to <code>std::pair<const int, double></code>, so what you actually want is <code>p->first</code>. I don't think GDB handles overloaded operators well, though, so you probably want <code>p.</code>{some member that represents the <code>pair</code> object}<code>.first</code>. There is <a href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" rel="nofollow">Doxygen documentation</a> for libstdc++, so you can figure out what member you want, in this case it looks to be <code>((_Rb_tree_node<pair<const int, double> >*)(p._M_node))-> _M_value_field.first</code>. Because this is pretty verbose, I would check to see if operator overloading works first (and no, I don't think there's anything simpler; sorry). You could also try explicitly calling operators, but I don't think gcc can do that either (e.g. <code>it.operator*().first</code>).</p>
<p>EDIT: wait, litb's post seems to show that gcc does support operator overloads on *. Weird, I always found that didn't work!</p>
http://stackoverflow.com/questions/322322/displaying-dereferenced-stl-iterators-in-gdb/837849#8378492Answer by Teng Lin for Displaying dereferenced STL iterators in gdbTeng Lin2009-05-08T01:29:08Z2009-05-08T01:29:08Z<p>You can try <a href="http://sourceware.org/gdb/wiki/ProjectArcher" rel="nofollow">Archer</a>, a gdb development branch primarily dedicated to improving the C++ debugging experience. Click <a href="http://people.redhat.com/ebachalo/video/archer-async-demo.swf" rel="nofollow">here</a> to see the demo of pretty printer for C++.
This new project also allows one to control gdb with python script. The primary developer, <a href="http://tromey.com/blog/?p=524" rel="nofollow">Tom Tromey</a>, wrote quite a few blogs about this excited project. </p>