Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Doug Evans <xdje42@gmail.com>
To: Keith Seitz <keiths@redhat.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH v4 6/9] Explicit locations: introduce explicit locations
Date: Mon, 18 May 2015 06:13:00 -0000	[thread overview]
Message-ID: <m31tiequqq.fsf@sspiff.org> (raw)
In-Reply-To: <20150507180559.19629.88488.stgit@valrhona.uglyboxes.com> (Keith	Seitz's message of "Thu, 07 May 2015 11:05:59 -0700")

Keith Seitz <keiths@redhat.com> writes:
> This patch add support for explicit locations and switches many linespec
> locations to this new location type.  This patch also converts all
> linespec locations entered by the user to an explicit representation
> internally (thus bypassing the linespec parser when resetting the
> breakpoint).
>
> This patch does not introduce any user-visible changes.
>
>
> gdb/ChangeLog:
>
> 	* break-catch-throw.c (re_set_exception_catchpoint): Convert
> 	linespec into explicit location.
> 	* breakpoint.c (create_overlay_breakpoint): Likewise.
> 	(create_longjmp_master_breakpoint): Likewise.
> 	(create_std_terminate_master_breakpoint): Likewise.
> 	(create_exception_master_breakpoint): Likewise.
> 	(create_breakpoint): For pending explicit locations, append extra_string
> 	to the canonical representation.
> 	(update_static_tracepoint): Convert linespec into explicit location.
> 	(location_to_sals): Save the string representation of the location
> 	for pending locations which were resolved.
> 	* linespec.c (enum offset_relative_sign): Move to location.h.
> 	(struct line_offset): Likewise.
> 	(struct linespec) <expression, expr_pc, source_filename>
> 	<function_name, label_name, line_offset>: Replace with ...
> 	<explicit>: ... this.
> 	<is_linespec>: New member.
> 	(PARSER_EXPLICIT): New accessor macro.
> 	(undefined_label_error): New function.
> 	(source_file_not_found_error): New function.
> 	(linespec_parse_basic): The parser result is now an explicit location.
> 	Use PARSER_EXPLICIT to access it.
> 	Use undefined_label_error.
> 	(canonicalize_linespec): Convert canonical linespec into explicit
> 	location.
> 	Move string representation of location to explicit_location_to_linespec
> 	and use it and explicit_location_to_string to save string
> 	representations of the canonical location.
> 	(create_sals_line_offset): `ls' contains an explicit location.
> 	Update all references.
> 	(convert_linespec_to_sals): Likewise.
> 	(convert_explicit_location_to_sals): New function.
> 	(parse_linespec): Use PARSER_EXPLICIT to access the parser
> 	result's explicit location.
> 	(linespec_state_constructor): Initialize is_linespec.
> 	Use PARSER_EXPLICIT.
> 	(linespec_parser_delete): Use PARSER_EXPLICIT to access the parser's
> 	result.
> 	(event_location_to_sals): For linespec locations, set is_linespec.
> 	Handle explicit locations.
> 	(decode_objc): 'ls' contains an explicit location now. Update all
> 	references.
> 	(symtabs_from_filename): Use source_file_not_found_error.
> 	* location.c (struct event_location.u) <explicit>: New member.
> 	(initialize_explicit_location): New function.
> 	(initialize_event_location): Initialize explicit locations.
> 	(new_explicit_location, get_explicit_location)
> 	(get_explicit_location_const): New functions.
> 	(explicit_to_string_internal): New function; most of contents moved
> 	from canonicalize_linespec.
> 	(explicit_location_to_string): New function.
> 	(explicit_location_to_linespec): New function.
> 	(copy_event_location): Handle explicit locations.
> 	(delete_event_location): Likewise.
> 	(event_location_to_string_const): Likewise.
> 	(event_location_empty_p): Likewise.
> 	* location.h (enum offset_relative_sign): Move here from linespec.h.
> 	(struct line_offset): Likewise.
> 	(enum event_location_type): Add EXPLICIT_LOCATION.
> 	(struct explicit_location): New structure.
> 	(explicit_location_to_string): Declare.
> 	(explicit_location_to_linespec): Declare.
> 	(new_explicit_location, get_explicit_locationp
> 	(get_explicit_location_const, initialize_explicit_location): Declare.

LGTM

Not something to be done now, but just curious.
Do we support source file names with spaces?


  reply	other threads:[~2015-05-18  6:13 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-07 18:05 [PATCH v4 0/9] Locations API Keith Seitz
2015-05-07 18:05 ` [PATCH v4 2/9] Explicit locations: introduce new struct event_location-based API Keith Seitz
2015-05-17 20:54   ` Doug Evans
2015-05-19 20:41     ` Keith Seitz
2015-05-19 22:16       ` Pedro Alves
2015-05-07 18:06 ` [PATCH v4 5/9] Explicit locations: introduce probe locations Keith Seitz
2015-05-18  5:49   ` Doug Evans
2015-05-07 18:06 ` [PATCH v4 3/9] Explicit locations: use new location API Keith Seitz
2015-05-18  5:21   ` Doug Evans
2015-05-19 21:30     ` Keith Seitz
2015-05-07 18:06 ` [PATCH v4 6/9] Explicit locations: introduce explicit locations Keith Seitz
2015-05-18  6:13   ` Doug Evans [this message]
2015-05-18 20:14     ` Keith Seitz
2015-05-19 22:09       ` Pedro Alves
2015-05-19 22:12         ` Keith Seitz
2015-05-19 22:15           ` Pedro Alves
2015-05-19 22:20             ` Keith Seitz
2015-05-21 19:34               ` [PATCH v5] Explicit locations: add UI features for CLI Keith Seitz
2015-05-27  4:43               ` [PATCH v4 6/9] Explicit locations: introduce explicit locations Doug Evans
2015-05-27 11:36                 ` Matt Rice
2015-05-30 15:17                   ` Matt Rice
2015-05-07 18:06 ` [PATCH v4 4/9] Explicit locations: introduce address locations Keith Seitz
2015-05-18  5:45   ` Doug Evans
2015-05-07 18:06 ` [PATCH v4 8/9] Explicit locations: MI support for explicit locations Keith Seitz
2015-05-18  7:16   ` Doug Evans
2015-05-07 18:06 ` [PATCH v4 1/9] Explicit locations: rename "address string"/"addr_string" to "location" Keith Seitz
2015-05-17 20:10   ` Doug Evans
2015-05-07 18:06 ` [PATCH v4 7/9] Explicit locations: add UI features for CLI Keith Seitz
2015-05-18  6:55   ` Doug Evans
2015-05-19 20:41     ` Keith Seitz
2015-05-27  4:27       ` Doug Evans
2015-05-07 18:13 ` [PATCH v4 9/9] Explicit locations: documentation updates Keith Seitz
2015-05-07 18:55   ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m31tiequqq.fsf@sspiff.org \
    --to=xdje42@gmail.com \
    --cc=gdb-patches@sourceware.org \
    --cc=keiths@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox