From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Merrill To: libstdc++@gcc.gnu.org Cc: gdb@sources.redhat.com Subject: Re: C++ debugging progress Date: Wed, 28 Nov 2001 01:31:00 -0000 Message-ID: References: <20011128020256.A9688@nevyn.them.org> X-SW-Source: 2001-11/msg00308.html Message-ID: <20011128013100.PmfhHdMHHwrNDTQhAN_C0f7zOPZ1YnHj2eGzpEr1Kys@z> >>>>> "Daniel" == Daniel Jacobowitz writes: > I'll not be posting the patches for another day or two. The way I do it now > is grossly inefficient; I look through RTTI at every lookup instead of once > per type. It also depends on presence of RTTI. There's not much I can do > about that - or rather, I could, but AFAICT it would require walking the > inheritance graph in the proper order and I don't have the machinery to do > that easily. I'm not heartbroken that we need RTTI for debugging though. So you're using the inheritance information in the RTTI rather than the debug info? That seems unfortunate. I'm not sure why you would need to worry about ordering; the debug info should tell you exactly where things are. If it doesn't, it should probably be fixed. Jason