mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 09:58:19 +08:00
replace convert_int_to_ascii with bin2hex
convert_int_to_ascii is identical to bin2hex. This removes the former. In this case I made the choice of which to keep on the basis that I consider the name bin2hex to be superior to convert_int_to_ascii. 2014-02-12 Tom Tromey <tromey@redhat.com> * common/rsp-low.h (convert_int_to_ascii): Don't declare. * common/rsp-low.c (convert_int_to_ascii): Remove. 2014-02-12 Tom Tromey <tromey@redhat.com> * ax.c (gdb_unparse_agent_expr): Use bin2hex, not convert_int_to_ascii. * regcache.c (registers_to_string, collect_register_as_string): Likewise. * remote-utils.c (look_up_one_symbol, relocate_instruction): Likewise. * server.c (process_serial_event): Likewise. * tracepoint.c (cmd_qtstatus, response_source, response_tsv) (cmd_qtbuffer, cstr_to_hexstr): Likewise.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2014-02-12 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
|
* common/rsp-low.h (convert_int_to_ascii): Don't declare.
|
||||||
|
* common/rsp-low.c (convert_int_to_ascii): Remove.
|
||||||
|
|
||||||
2014-02-12 Tom Tromey <tromey@redhat.com>
|
2014-02-12 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
* common/rsp-low.h (hexify): Don't declare.
|
* common/rsp-low.h (hexify): Don't declare.
|
||||||
|
@ -172,22 +172,6 @@ bin2hex (const gdb_byte *bin, char *hex, int count)
|
|||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
convert_int_to_ascii (const unsigned char *from, char *to, int n)
|
|
||||||
{
|
|
||||||
int nib;
|
|
||||||
int ch;
|
|
||||||
while (n--)
|
|
||||||
{
|
|
||||||
ch = *from++;
|
|
||||||
nib = ((ch & 0xf0) >> 4) & 0x0f;
|
|
||||||
*to++ = tohex (nib);
|
|
||||||
nib = ch & 0x0f;
|
|
||||||
*to++ = tohex (nib);
|
|
||||||
}
|
|
||||||
*to++ = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
int
|
||||||
remote_escape_output (const gdb_byte *buffer, int len,
|
remote_escape_output (const gdb_byte *buffer, int len,
|
||||||
gdb_byte *out_buf, int *out_len,
|
gdb_byte *out_buf, int *out_len,
|
||||||
|
@ -42,8 +42,6 @@ extern void convert_ascii_to_int (const char *from, unsigned char *to, int n);
|
|||||||
|
|
||||||
extern int bin2hex (const gdb_byte *bin, char *hex, int count);
|
extern int bin2hex (const gdb_byte *bin, char *hex, int count);
|
||||||
|
|
||||||
extern void convert_int_to_ascii (const unsigned char *from, char *to, int n);
|
|
||||||
|
|
||||||
/* Convert BUFFER, binary data at least LEN bytes long, into escaped
|
/* Convert BUFFER, binary data at least LEN bytes long, into escaped
|
||||||
binary data in OUT_BUF. Set *OUT_LEN to the length of the data
|
binary data in OUT_BUF. Set *OUT_LEN to the length of the data
|
||||||
encoded in OUT_BUF, and return the number of bytes in OUT_BUF
|
encoded in OUT_BUF, and return the number of bytes in OUT_BUF
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
2014-02-12 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
|
* ax.c (gdb_unparse_agent_expr): Use bin2hex, not
|
||||||
|
convert_int_to_ascii.
|
||||||
|
* regcache.c (registers_to_string, collect_register_as_string):
|
||||||
|
Likewise.
|
||||||
|
* remote-utils.c (look_up_one_symbol, relocate_instruction):
|
||||||
|
Likewise.
|
||||||
|
* server.c (process_serial_event): Likewise.
|
||||||
|
* tracepoint.c (cmd_qtstatus, response_source, response_tsv)
|
||||||
|
(cmd_qtbuffer, cstr_to_hexstr): Likewise.
|
||||||
|
|
||||||
2014-02-12 Tom Tromey <tromey@redhat.com>
|
2014-02-12 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
* remote-utils.c (look_up_one_symbol, monitor_output): Use
|
* remote-utils.c (look_up_one_symbol, monitor_output): Use
|
||||||
|
@ -120,7 +120,7 @@ gdb_unparse_agent_expr (struct agent_expr *aexpr)
|
|||||||
char *rslt;
|
char *rslt;
|
||||||
|
|
||||||
rslt = xmalloc (2 * aexpr->length + 1);
|
rslt = xmalloc (2 * aexpr->length + 1);
|
||||||
convert_int_to_ascii (aexpr->bytes, rslt, aexpr->length);
|
bin2hex (aexpr->bytes, rslt, aexpr->length);
|
||||||
return rslt;
|
return rslt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -207,8 +207,7 @@ registers_to_string (struct regcache *regcache, char *buf)
|
|||||||
{
|
{
|
||||||
if (regcache->register_status[i] == REG_VALID)
|
if (regcache->register_status[i] == REG_VALID)
|
||||||
{
|
{
|
||||||
convert_int_to_ascii (registers, buf,
|
bin2hex (registers, buf, register_size (tdesc, i));
|
||||||
register_size (tdesc, i));
|
|
||||||
buf += register_size (tdesc, i) * 2;
|
buf += register_size (tdesc, i) * 2;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -419,8 +418,8 @@ collect_register (struct regcache *regcache, int n, void *buf)
|
|||||||
void
|
void
|
||||||
collect_register_as_string (struct regcache *regcache, int n, char *buf)
|
collect_register_as_string (struct regcache *regcache, int n, char *buf)
|
||||||
{
|
{
|
||||||
convert_int_to_ascii (register_data (regcache, n, 1), buf,
|
bin2hex (register_data (regcache, n, 1), buf,
|
||||||
register_size (regcache->tdesc, n));
|
register_size (regcache->tdesc, n));
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -1423,7 +1423,7 @@ look_up_one_symbol (const char *name, CORE_ADDR *addrp, int may_ask_gdb)
|
|||||||
decode_m_packet (&own_buf[1], &mem_addr, &mem_len);
|
decode_m_packet (&own_buf[1], &mem_addr, &mem_len);
|
||||||
mem_buf = xmalloc (mem_len);
|
mem_buf = xmalloc (mem_len);
|
||||||
if (read_inferior_memory (mem_addr, mem_buf, mem_len) == 0)
|
if (read_inferior_memory (mem_addr, mem_buf, mem_len) == 0)
|
||||||
convert_int_to_ascii (mem_buf, own_buf, mem_len);
|
bin2hex (mem_buf, own_buf, mem_len);
|
||||||
else
|
else
|
||||||
write_enn (own_buf);
|
write_enn (own_buf);
|
||||||
free (mem_buf);
|
free (mem_buf);
|
||||||
@ -1507,7 +1507,7 @@ relocate_instruction (CORE_ADDR *to, CORE_ADDR oldloc)
|
|||||||
decode_m_packet (&own_buf[1], &mem_addr, &mem_len);
|
decode_m_packet (&own_buf[1], &mem_addr, &mem_len);
|
||||||
mem_buf = xmalloc (mem_len);
|
mem_buf = xmalloc (mem_len);
|
||||||
if (read_inferior_memory (mem_addr, mem_buf, mem_len) == 0)
|
if (read_inferior_memory (mem_addr, mem_buf, mem_len) == 0)
|
||||||
convert_int_to_ascii (mem_buf, own_buf, mem_len);
|
bin2hex (mem_buf, own_buf, mem_len);
|
||||||
else
|
else
|
||||||
write_enn (own_buf);
|
write_enn (own_buf);
|
||||||
}
|
}
|
||||||
|
@ -3602,7 +3602,7 @@ process_serial_event (void)
|
|||||||
if (res < 0)
|
if (res < 0)
|
||||||
write_enn (own_buf);
|
write_enn (own_buf);
|
||||||
else
|
else
|
||||||
convert_int_to_ascii (mem_buf, own_buf, res);
|
bin2hex (mem_buf, own_buf, res);
|
||||||
break;
|
break;
|
||||||
case 'M':
|
case 'M':
|
||||||
require_running (own_buf);
|
require_running (own_buf);
|
||||||
|
@ -3663,7 +3663,7 @@ cmd_qtstatus (char *packet)
|
|||||||
p = stop_reason_rsp = alloca (strlen ("terror:") + hexstr_len + 1);
|
p = stop_reason_rsp = alloca (strlen ("terror:") + hexstr_len + 1);
|
||||||
strcpy (p, "terror:");
|
strcpy (p, "terror:");
|
||||||
p += strlen (p);
|
p += strlen (p);
|
||||||
convert_int_to_ascii ((gdb_byte *) result_name, p, strlen (result_name));
|
bin2hex ((gdb_byte *) result_name, p, strlen (result_name));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If this was a forced stop, include any stop note that was supplied. */
|
/* If this was a forced stop, include any stop note that was supplied. */
|
||||||
@ -3782,7 +3782,7 @@ response_source (char *packet,
|
|||||||
|
|
||||||
len = strlen (src->str);
|
len = strlen (src->str);
|
||||||
buf = alloca (len * 2 + 1);
|
buf = alloca (len * 2 + 1);
|
||||||
convert_int_to_ascii ((gdb_byte *) src->str, buf, len);
|
bin2hex ((gdb_byte *) src->str, buf, len);
|
||||||
|
|
||||||
sprintf (packet, "Z%x:%s:%s:%x:%x:%s",
|
sprintf (packet, "Z%x:%s:%s:%x:%x:%s",
|
||||||
tpoint->number, paddress (tpoint->address),
|
tpoint->number, paddress (tpoint->address),
|
||||||
@ -3871,7 +3871,7 @@ response_tsv (char *packet, struct trace_state_variable *tsv)
|
|||||||
{
|
{
|
||||||
namelen = strlen (tsv->name);
|
namelen = strlen (tsv->name);
|
||||||
buf = alloca (namelen * 2 + 1);
|
buf = alloca (namelen * 2 + 1);
|
||||||
convert_int_to_ascii ((gdb_byte *) tsv->name, buf, namelen);
|
bin2hex ((gdb_byte *) tsv->name, buf, namelen);
|
||||||
}
|
}
|
||||||
|
|
||||||
sprintf (packet, "%x:%s:%x:%s", tsv->number, phex_nz (tsv->initial_value, 0),
|
sprintf (packet, "%x:%s:%x:%s", tsv->number, phex_nz (tsv->initial_value, 0),
|
||||||
@ -4041,7 +4041,7 @@ cmd_qtbuffer (char *own_buf)
|
|||||||
if (num >= (PBUFSIZ - 16) / 2 )
|
if (num >= (PBUFSIZ - 16) / 2 )
|
||||||
num = (PBUFSIZ - 16) / 2;
|
num = (PBUFSIZ - 16) / 2;
|
||||||
|
|
||||||
convert_int_to_ascii (tbp, own_buf, num);
|
bin2hex (tbp, own_buf, num);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -6930,7 +6930,7 @@ cstr_to_hexstr (const char *str)
|
|||||||
{
|
{
|
||||||
int len = strlen (str);
|
int len = strlen (str);
|
||||||
char *hexstr = xmalloc (len * 2 + 1);
|
char *hexstr = xmalloc (len * 2 + 1);
|
||||||
convert_int_to_ascii ((gdb_byte *) str, hexstr, len);
|
bin2hex ((gdb_byte *) str, hexstr, len);
|
||||||
return hexstr;
|
return hexstr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user