Touches most files in bfd/, so likely will be blamed for everything..

o  bfd_read and bfd_write lose an unnecessary param and become
   bfd_bread and bfd_bwrite.

o  bfd_*alloc now all take a bfd_size_type arg, and will error if
   size_t is too small.  eg. 32 bit host, 64 bit bfd, verrry big files
   or bugs in linker scripts etc.

o  file_ptr becomes a bfd_signed_vma.  Besides matching sizes with
   various other types involved in handling sections, this should make
   it easier for bfd to support a 64 bit off_t on 32 bit hosts that
   provide it.

o  I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
   generally available.  They now cast their args to bfd_vma and
   bfd_byte * as appropriate, which removes a swag of casts from the
   source.

o  Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
   aout-encap.c.

o  Zillions of formatting and -Wconversion fixes.
This commit is contained in:
Alan Modra
2001-09-18 09:57:26 +00:00
parent 417412a27c
commit dc810e3900
183 changed files with 13588 additions and 12305 deletions

View File

@@ -55,7 +55,7 @@ struct lynx_core_struct
static asection *
make_bfd_asection (abfd, name, flags, _raw_size, vma, filepos)
bfd *abfd;
CONST char *name;
const char *name;
flagword flags;
bfd_size_type _raw_size;
bfd_vma vma;
@@ -64,7 +64,7 @@ make_bfd_asection (abfd, name, flags, _raw_size, vma, filepos)
asection *asect;
char *newname;
newname = bfd_alloc (abfd, strlen (name) + 1);
newname = bfd_alloc (abfd, (bfd_size_type) strlen (name) + 1);
if (!newname)
return NULL;
@@ -87,13 +87,13 @@ const bfd_target *
lynx_core_file_p (abfd)
bfd *abfd;
{
int val;
int secnum;
struct pssentry pss;
size_t tcontext_size;
bfd_size_type tcontext_size;
core_st_t *threadp;
int pagesize;
asection *newsect;
bfd_size_type amt;
pagesize = getpagesize (); /* Serious cross-target issue here... This
really needs to come from a system-specific
@@ -101,11 +101,11 @@ lynx_core_file_p (abfd)
/* Get the pss entry from the core file */
if (bfd_seek (abfd, 0, SEEK_SET) != 0)
if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
return NULL;
val = bfd_read ((void *)&pss, 1, sizeof pss, abfd);
if (val != sizeof pss)
amt = sizeof pss;
if (bfd_bread ((void *) &pss, amt, abfd) != amt)
{
/* Too small to be a core file */
if (bfd_get_error () != bfd_error_system_call)
@@ -113,8 +113,8 @@ lynx_core_file_p (abfd)
return NULL;
}
core_hdr (abfd) = (struct lynx_core_struct *)
bfd_zalloc (abfd, sizeof (struct lynx_core_struct));
amt = sizeof (struct lynx_core_struct);
core_hdr (abfd) = (struct lynx_core_struct *) bfd_zalloc (abfd, amt);
if (!core_hdr (abfd))
return NULL;
@@ -127,18 +127,16 @@ lynx_core_file_p (abfd)
/* Allocate space for the thread contexts */
threadp = (core_st_t *)bfd_alloc (abfd, tcontext_size);
threadp = (core_st_t *) bfd_alloc (abfd, tcontext_size);
if (!threadp)
return NULL;
/* Save thread contexts */
if (bfd_seek (abfd, pagesize, SEEK_SET) != 0)
if (bfd_seek (abfd, (file_ptr) pagesize, SEEK_SET) != 0)
return NULL;
val = bfd_read ((void *)threadp, pss.threadcnt, sizeof (core_st_t), abfd);
if (val != tcontext_size)
if (bfd_bread ((void *) threadp, tcontext_size, abfd) != tcontext_size)
{
/* Probably too small to be a core file */
if (bfd_get_error () != bfd_error_system_call)