From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from kwanyin.sergiodj.net (kwanyin.sergiodj.net [158.69.185.54]) by sourceware.org (Postfix) with ESMTPS id 6D9B8386F83A for ; Mon, 15 Jun 2020 13:14:54 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 6D9B8386F83A Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [binutils-gdb] Remove read_memory_string From: gdb-buildbot@sergiodj.net To: gdb-testers@sourceware.org Message-Id: Date: Mon, 15 Jun 2020 09:14:53 -0400 X-Spam-Status: No, score=-7.8 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-testers@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-testers mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2020 13:14:55 -0000 *** TEST RESULTS FOR COMMIT f5272a3bb3928e8e45a122c19aa72a00a23a9d4d *** commit f5272a3bb3928e8e45a122c19aa72a00a23a9d4d Author: Tom Tromey AuthorDate: Mon Jun 15 06:28:09 2020 -0600 Commit: Tom Tromey CommitDate: Mon Jun 15 06:28:09 2020 -0600 Remove read_memory_string read_memory_string is redundant and only called in a couple of spots. This patch removes it in favor of target_read_string. gdb/ChangeLog 2020-06-15 Tom Tromey * corefile.c (read_memory_string): Remove. * ada-valprint.c (ada_value_print_ptr): Update. * ada-lang.h (ada_tag_name): Change return type. * ada-lang.c (type_from_tag): Update. (ada_tag_name_from_tsd): Change return type. Use target_read_string. (ada_tag_name): Likewise. * gdbcore.h (read_memory_string): Don't declare. diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 133f97103a..1ebe8f3f89 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,14 @@ +2020-06-15 Tom Tromey + + * corefile.c (read_memory_string): Remove. + * ada-valprint.c (ada_value_print_ptr): Update. + * ada-lang.h (ada_tag_name): Change return type. + * ada-lang.c (type_from_tag): Update. + (ada_tag_name_from_tsd): Change return type. Use + target_read_string. + (ada_tag_name): Likewise. + * gdbcore.h (read_memory_string): Don't declare. + 2020-06-14 Hannes Domani * symtab.c (rbreak_command): Ignore Windows drive colon. diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index f7b973f36e..ee8d3f5589 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -6567,10 +6567,10 @@ value_tag_from_contents_and_address (struct type *type, static struct type * type_from_tag (struct value *tag) { - const char *type_name = ada_tag_name (tag); + gdb::unique_xmalloc_ptr type_name = ada_tag_name (tag); if (type_name != NULL) - return ada_find_any_type (ada_encode (type_name)); + return ada_find_any_type (ada_encode (type_name.get ())); return NULL; } @@ -6718,37 +6718,42 @@ ada_get_tsd_from_tag (struct value *tag) /* Given the TSD of a tag (type-specific data), return a string containing the name of the associated type. - The returned value is good until the next call. May return NULL - if we are unable to determine the tag name. */ + May return NULL if we are unable to determine the tag name. */ -static char * +static gdb::unique_xmalloc_ptr ada_tag_name_from_tsd (struct value *tsd) { - static char name[1024]; char *p; struct value *val; val = ada_value_struct_elt (tsd, "expanded_name", 1); if (val == NULL) return NULL; - read_memory_string (value_as_address (val), name, sizeof (name) - 1); - for (p = name; *p != '\0'; p += 1) - if (isalpha (*p)) - *p = tolower (*p); - return name; + gdb::unique_xmalloc_ptr buffer; + int err; + if (target_read_string (value_as_address (val), &buffer, INT_MAX, &err) == 0 + || err != 0) + return nullptr; + + for (p = buffer.get (); *p != '\0'; ++p) + { + if (isalpha (*p)) + *p = tolower (*p); + } + + return buffer; } /* The type name of the dynamic type denoted by the 'tag value TAG, as a C string. Return NULL if the TAG is not an Ada tag, or if we were unable to - determine the name of that tag. The result is good until the next - call. */ + determine the name of that tag. */ -const char * +gdb::unique_xmalloc_ptr ada_tag_name (struct value *tag) { - char *name = NULL; + gdb::unique_xmalloc_ptr name; if (!ada_is_tag_type (value_type (tag))) return NULL; @@ -12104,9 +12109,11 @@ ada_exception_message_1 (void) if (e_msg_len <= 0) return NULL; - gdb::unique_xmalloc_ptr e_msg ((char *) xmalloc (e_msg_len + 1)); - read_memory_string (value_address (e_msg_val), e_msg.get (), e_msg_len + 1); - e_msg.get ()[e_msg_len] = '\0'; + gdb::unique_xmalloc_ptr e_msg; + int err; + if (target_read_string (value_address (e_msg_val), &e_msg, INT_MAX, &err) == 0 + || err != 0) + return nullptr; return e_msg; } diff --git a/gdb/ada-lang.h b/gdb/ada-lang.h index 5ba00518e6..9be597942f 100644 --- a/gdb/ada-lang.h +++ b/gdb/ada-lang.h @@ -260,7 +260,7 @@ extern int ada_is_tagged_type (struct type *, int); extern int ada_is_tag_type (struct type *); -extern const char *ada_tag_name (struct value *); +extern gdb::unique_xmalloc_ptr ada_tag_name (struct value *); extern struct value *ada_tag_value_at_base_address (struct value *obj); diff --git a/gdb/ada-valprint.c b/gdb/ada-valprint.c index a36e7ca793..61893d5cad 100644 --- a/gdb/ada-valprint.c +++ b/gdb/ada-valprint.c @@ -754,10 +754,10 @@ ada_value_print_ptr (struct value *val, struct type *type = ada_check_typedef (value_type (val)); if (ada_is_tag_type (type)) { - const char *name = ada_tag_name (val); + gdb::unique_xmalloc_ptr name = ada_tag_name (val); if (name != NULL) - fprintf_filtered (stream, " (%s)", name); + fprintf_filtered (stream, " (%s)", name.get ()); } } diff --git a/gdb/corefile.c b/gdb/corefile.c index 996e5301b2..fed0e4fe8a 100644 --- a/gdb/corefile.c +++ b/gdb/corefile.c @@ -328,33 +328,6 @@ read_code_unsigned_integer (CORE_ADDR memaddr, int len, return extract_unsigned_integer (buf, len, byte_order); } -void -read_memory_string (CORE_ADDR memaddr, char *buffer, int max_len) -{ - char *cp; - int i; - int cnt; - - cp = buffer; - while (1) - { - if (cp - buffer >= max_len) - { - buffer[max_len - 1] = '\0'; - break; - } - cnt = max_len - (cp - buffer); - if (cnt > 8) - cnt = 8; - read_memory (memaddr + (int) (cp - buffer), (gdb_byte *) cp, cnt); - for (i = 0; i < cnt && *cp; i++, cp++) - ; /* null body */ - - if (i < cnt && !*cp) - break; - } -} - CORE_ADDR read_memory_typed_address (CORE_ADDR addr, struct type *type) { diff --git a/gdb/gdbcore.h b/gdb/gdbcore.h index 24db21e462..58566d5878 100644 --- a/gdb/gdbcore.h +++ b/gdb/gdbcore.h @@ -87,12 +87,6 @@ extern ULONGEST read_code_unsigned_integer (CORE_ADDR memaddr, int len, enum bfd_endian byte_order); -/* Read a null-terminated string from the debuggee's memory, given - address, a buffer into which to place the string, and the maximum - available space. */ - -extern void read_memory_string (CORE_ADDR, char *, int); - /* Read the pointer of type TYPE at ADDR, and return the address it represents. */