mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-30 00:52:16 +08:00
* regcache.c (registers_length): Remove.
(set_register_cache): Verify that PBUFSIZ is large enough to hold a full register packet. * regcache.h (registers_length): Remove prototype. * server.h (PBUFSIZ): Define to 16384.
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
2008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
|
||||||
|
|
||||||
|
* regcache.c (registers_length): Remove.
|
||||||
|
(set_register_cache): Verify that PBUFSIZ is large enough to hold a
|
||||||
|
full register packet.
|
||||||
|
* regcache.h (registers_length): Remove prototype.
|
||||||
|
* server.h (PBUFSIZ): Define to 16384.
|
||||||
|
|
||||||
2008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
|
2008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
|
||||||
|
|
||||||
* configure.srv (powerpc*-*-linux*): Set srv_regobj to
|
* configure.srv (powerpc*-*-linux*): Set srv_regobj to
|
||||||
|
@ -86,12 +86,6 @@ regcache_invalidate ()
|
|||||||
for_each_inferior (&all_threads, regcache_invalidate_one);
|
for_each_inferior (&all_threads, regcache_invalidate_one);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
|
||||||
registers_length (void)
|
|
||||||
{
|
|
||||||
return 2 * register_bytes;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *
|
void *
|
||||||
new_register_cache (void)
|
new_register_cache (void)
|
||||||
{
|
{
|
||||||
@ -147,6 +141,10 @@ set_register_cache (struct reg *regs, int n)
|
|||||||
|
|
||||||
register_bytes = offset / 8;
|
register_bytes = offset / 8;
|
||||||
|
|
||||||
|
/* Make sure PBUFSIZ is large enough to hold a full register packet. */
|
||||||
|
if (2 * register_bytes + 32 > PBUFSIZ)
|
||||||
|
fatal ("Register packet size exceeds PBUFSIZ.");
|
||||||
|
|
||||||
/* Re-allocate all pre-existing register caches. */
|
/* Re-allocate all pre-existing register caches. */
|
||||||
for_each_inferior (&all_threads, realloc_register_cache);
|
for_each_inferior (&all_threads, realloc_register_cache);
|
||||||
}
|
}
|
||||||
|
@ -43,10 +43,6 @@ void registers_to_string (char *buf);
|
|||||||
|
|
||||||
void registers_from_string (char *buf);
|
void registers_from_string (char *buf);
|
||||||
|
|
||||||
/* Return the size in bytes of a string-encoded register packet. */
|
|
||||||
|
|
||||||
int registers_length (void);
|
|
||||||
|
|
||||||
/* Return a pointer to the description of register ``n''. */
|
/* Return a pointer to the description of register ``n''. */
|
||||||
|
|
||||||
struct reg *find_register_by_number (int n);
|
struct reg *find_register_by_number (int n);
|
||||||
|
@ -225,11 +225,10 @@ void warning (const char *string,...) ATTR_FORMAT (printf, 1, 2);
|
|||||||
is chosen to fill up a packet (the headers account for the 32). */
|
is chosen to fill up a packet (the headers account for the 32). */
|
||||||
#define MAXBUFBYTES(N) (((N)-32)/2)
|
#define MAXBUFBYTES(N) (((N)-32)/2)
|
||||||
|
|
||||||
/* Buffer sizes for transferring memory, registers, etc. Round up PBUFSIZ to
|
/* Buffer sizes for transferring memory, registers, etc. Set to a constant
|
||||||
hold all the registers, at least. */
|
value to accomodate multiple register formats. This value must be at least
|
||||||
#define PBUFSIZ ((registers_length () + 32 > 2000) \
|
as large as the largest register set supported by gdbserver. */
|
||||||
? (registers_length () + 32) \
|
#define PBUFSIZ 16384
|
||||||
: 2000)
|
|
||||||
|
|
||||||
/* Version information, from version.c. */
|
/* Version information, from version.c. */
|
||||||
extern const char version[];
|
extern const char version[];
|
||||||
|
Reference in New Issue
Block a user