Displaying dereferenced STL iterators in gdb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T04:11:38Z http://stackoverflow.com/feeds/question/322322 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/322322/displaying-dereferenced-stl-iterators-in-gdb 5 Displaying dereferenced STL iterators in gdb kchoose2 2008-11-26T22:03:20Z 2009-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&lt;int,double&gt; aMap; ...fill map... std::map&lt;int,double&gt;::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#322355 9 Answer by Johannes Schaub - litb for Displaying dereferenced STL iterators in gdb Johannes Schaub - litb 2008-11-26T22:16:37Z 2008-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 &lt;iostream&gt; 2 #include &lt;map&gt; 3 4 int main() 5 { 6 std::map&lt;int, int&gt; a; 7 a[10] = 9; 8 std::map&lt;int, int&gt;::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&lt;const int, int&gt; &amp;) @0x94fa018: { first = 10, second = 9 } (gdb) </code></pre> http://stackoverflow.com/questions/322322/displaying-dereferenced-stl-iterators-in-gdb/322356#322356 1 Answer by coppro for Displaying dereferenced STL iterators in gdb coppro 2008-11-26T22:16:52Z 2008-11-26T22:16:52Z <p><code>p</code> will be an iterator to <code>std::pair&lt;const int, double&gt;</code>, so what you actually want is <code>p-&gt;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&lt;pair&lt;const int, double&gt; &gt;*)(p._M_node))-&gt; _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#837849 2 Answer by Teng Lin for Displaying dereferenced STL iterators in gdb Teng Lin 2009-05-08T01:29:08Z 2009-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>