diff options
Diffstat (limited to 'gdb/location.h')
-rw-r--r-- | gdb/location.h | 38 |
1 files changed, 30 insertions, 8 deletions
diff --git a/gdb/location.h b/gdb/location.h index d954eac..fcfa8fb 100644 --- a/gdb/location.h +++ b/gdb/location.h @@ -66,6 +66,17 @@ enum event_location_type PROBE_LOCATION }; +/* A traditional linespec. */ + +struct linespec_location +{ + /* Whether the function name is fully-qualified or not. */ + symbol_name_match_type match_type; + + /* The linespec. */ + char *spec_string; +}; + /* An explicit location. This structure is used to bypass the parsing done on linespecs. It still has the same requirements as linespecs, though. For example, source_filename requires @@ -79,6 +90,9 @@ struct explicit_location /* The function name. Malloc'd. */ char *function_name; + /* Whether the function name is fully-qualified or not. */ + symbol_name_match_type func_name_match_type; + /* The name of a label. Malloc'd. */ char *label_name; @@ -107,7 +121,7 @@ extern char * /* Return a string representation of the LOCATION. This function may return NULL for unspecified linespecs, - e.g, LOCATION_LINESPEC and addr_string is NULL. + e.g, LINESPEC_LOCATION and spec_string is NULL. The result is cached in LOCATION. */ @@ -127,12 +141,13 @@ typedef std::unique_ptr<event_location, event_location_deleter> /* Create a new linespec location. */ -extern event_location_up new_linespec_location (const char **linespec); +extern event_location_up new_linespec_location + (const char **linespec, symbol_name_match_type match_type); -/* Return the linespec location (a string) of the given event_location - (which must be of type LINESPEC_LOCATION). */ +/* Return the linespec location of the given event_location (which + must be of type LINESPEC_LOCATION). */ -extern const char * +extern const linespec_location * get_linespec_location (const struct event_location *location); /* Create a new address location. @@ -211,12 +226,14 @@ extern event_location_up string_to_event_location (const char **argp, const struct language_defn *langauge); -/* Like string_to_event_location, but does not attempt to parse explicit - locations. */ +/* Like string_to_event_location, but does not attempt to parse + explicit locations. MATCH_TYPE indicates how function names should + be matched. */ extern event_location_up string_to_event_location_basic (const char **argp, - const struct language_defn *language); + const struct language_defn *language, + symbol_name_match_type match_type); /* Structure filled in by string_to_explicit_location to aid the completer. */ @@ -233,6 +250,11 @@ struct explicit_completion_info If the last option is not quoted, then both are set to NULL. */ const char *quoted_arg_start = NULL; const char *quoted_arg_end = NULL; + + /* True if we saw an explicit location option, as opposed to only + flags that affect both explicit locations and linespecs, like + "-qualified". */ + bool saw_explicit_location_option = false; }; /* Attempt to convert the input string in *ARGP into an explicit location. |