This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
Other format: | [Raw text] |
Hi Pedro, Pedro Alves wrote: > On Tuesday 04 October 2011 11:25:18, Gary Benson wrote: > > 2011-09-22 Gary Benson <gbenson@redhat.com> > > > > * infrun.c (stopped_at_solib_event_breakpoint): New function. > > (stopped_at_solib_event_breakpoint_helper): Likewise. > > (handle_inferior_event): Avoid calling skip_inline_frames > > when at the solib event breakpoint. > > As I mentioned before, better would for this to be a > property/function of the breakpoint itself (and its locations) -- > meaning "I am / am not an inlined location". There's no reason to > limit this just to the solib event breakpoint. An obvious example > without even that generalization is the thread event breakpoint. > > Even if you don't do that, please add this new function (that checks > whether we stopped at an address that can't be inlined) to > breakpoint.c instead, and call it `stopped_at_non_inline_function' > or something along those lines. We can later rework its internals > keeping its interface. ... > You need to check that the breakpoint is enabled and installed. ... > When working in the direction of matching from an event back to our > tables and symbolic info, you start from the address_space instead. > Get at the address space of the current PC using > `get_regcache_aspace (get_thread_regcache (ecs->ptid))'. But better > yet, since you'd end up rewritting bkpt_breakpoint_hit, it's better > instead to reuse bpstat_check_location (despite the name, it doesn't > work with a bpstat). See > bpstop_status->bpstat_check_location->bkpt_breakpoint_hit, and > factor out the necessary bits. Further to my mail yesterday with questions/explanations, attached is a patch which does what I think you are asking. Is this what you had in mind? Note that I haven't extended it to recognise anything other than the shared library event breakpoint as a non-inline location. If possible I'd like to handle other cases in a separate patch as it would require further discussion. Thanks, Gary -- http://gbenson.net/
Attachment:
patch
Description: Text document
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |