1999-05-03 07:29:11 +00:00
|
|
|
/* BFD back-end for VERSAdos-E objects.
|
2014-03-05 11:46:15 +00:00
|
|
|
Copyright (C) 1995-2014 Free Software Foundation, Inc.
|
1999-05-03 07:29:11 +00:00
|
|
|
Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
|
|
|
|
|
|
|
|
Versados is a Motorola trademark.
|
|
|
|
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-03 14:26:43 +00:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-05-03 07:29:11 +00:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2007-07-03 14:26:43 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
SUBSECTION
|
2003-06-25 06:40:27 +00:00
|
|
|
VERSAdos-E relocatable object file format
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
2003-06-25 06:40:27 +00:00
|
|
|
This module supports reading of VERSAdos relocatable
|
1999-05-03 07:29:11 +00:00
|
|
|
object files.
|
|
|
|
|
|
|
|
A VERSAdos file looks like contains
|
|
|
|
|
2003-11-30 18:40:41 +00:00
|
|
|
o Identification Record
|
1999-05-03 07:29:11 +00:00
|
|
|
o External Symbol Definition Record
|
2003-11-30 18:40:41 +00:00
|
|
|
o Object Text Record
|
2005-04-11 08:23:05 +00:00
|
|
|
o End Record. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
#include "sysdep.h"
|
2007-04-26 14:47:00 +00:00
|
|
|
#include "bfd.h"
|
1999-05-03 07:29:11 +00:00
|
|
|
#include "libbfd.h"
|
|
|
|
#include "libiberty.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define VHEADER '1'
|
|
|
|
#define VESTDEF '2'
|
|
|
|
#define VOTR '3'
|
|
|
|
#define VEND '4'
|
|
|
|
|
2005-04-11 08:23:05 +00:00
|
|
|
#define ES_BASE 17 /* First symbol has esdid 17. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2005-04-11 08:23:05 +00:00
|
|
|
/* Per file target dependent information. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2005-04-11 08:23:05 +00:00
|
|
|
/* One for each section. */
|
1999-05-03 07:29:11 +00:00
|
|
|
struct esdid
|
2005-04-11 08:23:05 +00:00
|
|
|
{
|
|
|
|
asection *section; /* Ptr to bfd version. */
|
|
|
|
unsigned char *contents; /* Used to build image. */
|
|
|
|
int pc;
|
|
|
|
int relocs; /* Reloc count, valid end of pass 1. */
|
|
|
|
int donerel; /* Have relocs been translated. */
|
|
|
|
};
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
typedef struct versados_data_struct
|
2005-04-11 08:23:05 +00:00
|
|
|
{
|
|
|
|
int es_done; /* Count of symbol index, starts at ES_BASE. */
|
|
|
|
asymbol *symbols; /* Pointer to local symbols. */
|
|
|
|
char *strings; /* Strings of all the above. */
|
|
|
|
int stringlen; /* Len of string table (valid end of pass1). */
|
|
|
|
int nsecsyms; /* Number of sections. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2005-04-11 08:23:05 +00:00
|
|
|
int ndefs; /* Number of exported symbols (they dont get esdids). */
|
|
|
|
int nrefs; /* Number of imported symbols (valid end of pass1). */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2005-04-11 08:23:05 +00:00
|
|
|
int ref_idx; /* Current processed value of the above. */
|
|
|
|
int def_idx;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2005-04-11 08:23:05 +00:00
|
|
|
int pass_2_done;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2005-04-11 08:23:05 +00:00
|
|
|
struct esdid e[16]; /* Per section info. */
|
|
|
|
int alert; /* To see if we're trampling. */
|
|
|
|
asymbol *rest[256 - 16]; /* Per symbol info. */
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
tdata_type;
|
|
|
|
|
|
|
|
#define VDATA(abfd) (abfd->tdata.versados_data)
|
2014-11-26 14:11:23 +00:00
|
|
|
#define EDATA(abfd, n) (abfd->tdata.versados_data->e[(n) < 16 ? (n) : 0])
|
|
|
|
#define RDATA(abfd, n) (abfd->tdata.versados_data->rest[(n) < 240 ? (n) : 0])
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
struct ext_otr
|
2005-04-11 08:23:05 +00:00
|
|
|
{
|
|
|
|
unsigned char size;
|
|
|
|
char type;
|
|
|
|
unsigned char map[4];
|
|
|
|
unsigned char esdid;
|
|
|
|
unsigned char data[200];
|
|
|
|
};
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
struct ext_vheader
|
2005-04-11 08:23:05 +00:00
|
|
|
{
|
|
|
|
unsigned char size;
|
|
|
|
char type; /* Record type. */
|
|
|
|
char name[10]; /* Module name. */
|
|
|
|
char rev; /* Module rev number. */
|
|
|
|
char lang;
|
|
|
|
char vol[4];
|
|
|
|
char user[2];
|
|
|
|
char cat[8];
|
|
|
|
char fname[8];
|
|
|
|
char ext[2];
|
|
|
|
char time[3];
|
|
|
|
char date[3];
|
|
|
|
char rest[211];
|
|
|
|
};
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
struct ext_esd
|
2005-04-11 08:23:05 +00:00
|
|
|
{
|
|
|
|
unsigned char size;
|
|
|
|
char type;
|
|
|
|
unsigned char esd_entries[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
#define ESD_ABS 0
|
|
|
|
#define ESD_COMMON 1
|
|
|
|
#define ESD_STD_REL_SEC 2
|
|
|
|
#define ESD_SHRT_REL_SEC 3
|
|
|
|
#define ESD_XDEF_IN_SEC 4
|
|
|
|
#define ESD_XDEF_IN_ABS 5
|
|
|
|
#define ESD_XREF_SEC 6
|
|
|
|
#define ESD_XREF_SYM 7
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
union ext_any
|
2005-04-11 08:23:05 +00:00
|
|
|
{
|
|
|
|
unsigned char size;
|
|
|
|
struct ext_vheader header;
|
|
|
|
struct ext_esd esd;
|
|
|
|
struct ext_otr otr;
|
|
|
|
};
|
2001-08-26 11:46:04 +00:00
|
|
|
|
2000-12-26 19:50:50 +00:00
|
|
|
/* Initialize by filling in the hex conversion array. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
/* Set up the tdata information. */
|
|
|
|
|
2002-11-30 08:39:46 +00:00
|
|
|
static bfd_boolean
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_mkobject (bfd *abfd)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
if (abfd->tdata.versados_data == NULL)
|
|
|
|
{
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
bfd_size_type amt = sizeof (tdata_type);
|
2005-04-11 08:23:05 +00:00
|
|
|
tdata_type *tdata = bfd_alloc (abfd, amt);
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
if (tdata == NULL)
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
abfd->tdata.versados_data = tdata;
|
|
|
|
tdata->symbols = NULL;
|
|
|
|
VDATA (abfd)->alert = 0x12345678;
|
|
|
|
}
|
|
|
|
|
|
|
|
bfd_default_set_arch_mach (abfd, bfd_arch_m68k, 0);
|
2002-11-30 08:39:46 +00:00
|
|
|
return TRUE;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Report a problem in an S record file. FIXME: This probably should
|
|
|
|
not call fprintf, but we really do need some mechanism for printing
|
|
|
|
error messages. */
|
|
|
|
|
|
|
|
static asymbol *
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_new_symbol (bfd *abfd,
|
|
|
|
int snum,
|
|
|
|
const char *name,
|
|
|
|
bfd_vma val,
|
|
|
|
asection *sec)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
asymbol *n = VDATA (abfd)->symbols + snum;
|
|
|
|
n->name = name;
|
|
|
|
n->value = val;
|
|
|
|
n->section = sec;
|
|
|
|
n->the_bfd = abfd;
|
|
|
|
n->flags = 0;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2014-11-26 14:11:23 +00:00
|
|
|
static bfd_boolean
|
2005-04-11 08:23:05 +00:00
|
|
|
get_record (bfd *abfd, union ext_any *ptr)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
if (bfd_bread (&ptr->size, (bfd_size_type) 1, abfd) != 1
|
|
|
|
|| (bfd_bread ((char *) ptr + 1, (bfd_size_type) ptr->size, abfd)
|
|
|
|
!= ptr->size))
|
2014-11-26 14:11:23 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
{
|
|
|
|
bfd_size_type amt = ptr->size + 1;
|
|
|
|
|
|
|
|
if (amt < sizeof (* ptr))
|
|
|
|
memset ((char *) ptr + amt, 0, sizeof (* ptr) - amt);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
2001-08-26 11:46:04 +00:00
|
|
|
static int
|
2005-04-11 08:23:05 +00:00
|
|
|
get_4 (unsigned char **pp)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
unsigned char *p = *pp;
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
*pp += 4;
|
|
|
|
return (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | (p[3] << 0);
|
|
|
|
}
|
|
|
|
|
2001-08-26 11:46:04 +00:00
|
|
|
static void
|
2005-04-11 08:23:05 +00:00
|
|
|
get_10 (unsigned char **pp, char *name)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
char *p = (char *) *pp;
|
|
|
|
int len = 10;
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
*pp += len;
|
2005-04-11 08:23:05 +00:00
|
|
|
while (*p != ' ' && len)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
*name++ = *p++;
|
|
|
|
len--;
|
|
|
|
}
|
|
|
|
*name = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
2005-04-11 08:23:05 +00:00
|
|
|
new_symbol_string (bfd *abfd, const char *name)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
char *n = VDATA (abfd)->strings;
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
strcpy (VDATA (abfd)->strings, name);
|
|
|
|
VDATA (abfd)->strings += strlen (VDATA (abfd)->strings) + 1;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-04-11 08:23:05 +00:00
|
|
|
process_esd (bfd *abfd, struct ext_esd *esd, int pass)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2005-04-11 08:23:05 +00:00
|
|
|
/* Read through the ext def for the est entries. */
|
1999-05-03 07:29:11 +00:00
|
|
|
int togo = esd->size - 2;
|
|
|
|
bfd_vma size;
|
|
|
|
bfd_vma start;
|
|
|
|
asection *sec;
|
|
|
|
char name[11];
|
|
|
|
unsigned char *ptr = esd->esd_entries;
|
|
|
|
unsigned char *end = ptr + togo;
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
while (ptr < end)
|
|
|
|
{
|
|
|
|
int scn = *ptr & 0xf;
|
|
|
|
int typ = (*ptr >> 4) & 0xf;
|
|
|
|
|
2005-04-11 08:23:05 +00:00
|
|
|
/* Declare this section. */
|
1999-05-03 07:29:11 +00:00
|
|
|
sprintf (name, "%d", scn);
|
|
|
|
sec = bfd_make_section_old_way (abfd, strdup (name));
|
|
|
|
sec->target_index = scn;
|
|
|
|
EDATA (abfd, scn).section = sec;
|
|
|
|
ptr++;
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
switch (typ)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
case ESD_XREF_SEC:
|
|
|
|
case ESD_XREF_SYM:
|
|
|
|
{
|
|
|
|
int snum = VDATA (abfd)->ref_idx++;
|
|
|
|
get_10 (&ptr, name);
|
|
|
|
if (pass == 1)
|
2005-04-11 08:23:05 +00:00
|
|
|
VDATA (abfd)->stringlen += strlen (name) + 1;
|
1999-05-03 07:29:11 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
int esidx;
|
|
|
|
asymbol *s;
|
|
|
|
char *n = new_symbol_string (abfd, name);
|
2005-04-11 08:23:05 +00:00
|
|
|
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
s = versados_new_symbol (abfd, snum, n, (bfd_vma) 0,
|
|
|
|
bfd_und_section_ptr);
|
1999-05-03 07:29:11 +00:00
|
|
|
esidx = VDATA (abfd)->es_done++;
|
|
|
|
RDATA (abfd, esidx - ES_BASE) = s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ESD_ABS:
|
|
|
|
size = get_4 (&ptr);
|
2010-06-27 04:07:55 +00:00
|
|
|
(void) size;
|
1999-05-03 07:29:11 +00:00
|
|
|
start = get_4 (&ptr);
|
2010-06-27 04:07:55 +00:00
|
|
|
(void) start;
|
1999-05-03 07:29:11 +00:00
|
|
|
break;
|
|
|
|
case ESD_STD_REL_SEC:
|
|
|
|
case ESD_SHRT_REL_SEC:
|
2005-04-11 08:23:05 +00:00
|
|
|
sec->size = get_4 (&ptr);
|
|
|
|
sec->flags |= SEC_ALLOC;
|
1999-05-03 07:29:11 +00:00
|
|
|
break;
|
|
|
|
case ESD_XDEF_IN_ABS:
|
2012-05-05 03:05:32 +00:00
|
|
|
sec = bfd_abs_section_ptr;
|
1999-05-03 07:29:11 +00:00
|
|
|
case ESD_XDEF_IN_SEC:
|
|
|
|
{
|
|
|
|
int snum = VDATA (abfd)->def_idx++;
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
bfd_vma val;
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
get_10 (&ptr, name);
|
|
|
|
val = get_4 (&ptr);
|
|
|
|
if (pass == 1)
|
2005-04-11 08:23:05 +00:00
|
|
|
/* Just remember the symbol. */
|
|
|
|
VDATA (abfd)->stringlen += strlen (name) + 1;
|
1999-05-03 07:29:11 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
asymbol *s;
|
|
|
|
char *n = new_symbol_string (abfd, name);
|
2005-04-11 08:23:05 +00:00
|
|
|
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
s = versados_new_symbol (abfd, snum + VDATA (abfd)->nrefs, n,
|
|
|
|
val, sec);
|
1999-05-03 07:29:11 +00:00
|
|
|
s->flags |= BSF_GLOBAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-11 08:23:05 +00:00
|
|
|
#define R_RELWORD 1
|
|
|
|
#define R_RELLONG 2
|
1999-05-03 07:29:11 +00:00
|
|
|
#define R_RELWORD_NEG 3
|
|
|
|
#define R_RELLONG_NEG 4
|
|
|
|
|
|
|
|
reloc_howto_type versados_howto_table[] =
|
|
|
|
{
|
2002-11-30 08:39:46 +00:00
|
|
|
HOWTO (R_RELWORD, 0, 1, 16, FALSE,
|
1999-05-03 07:29:11 +00:00
|
|
|
0, complain_overflow_dont, 0,
|
2002-11-30 08:39:46 +00:00
|
|
|
"+v16", TRUE, 0x0000ffff, 0x0000ffff, FALSE),
|
|
|
|
HOWTO (R_RELLONG, 0, 2, 32, FALSE,
|
1999-05-03 07:29:11 +00:00
|
|
|
0, complain_overflow_dont, 0,
|
2002-11-30 08:39:46 +00:00
|
|
|
"+v32", TRUE, 0xffffffff, 0xffffffff, FALSE),
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2002-11-30 08:39:46 +00:00
|
|
|
HOWTO (R_RELWORD_NEG, 0, -1, 16, FALSE,
|
1999-05-03 07:29:11 +00:00
|
|
|
0, complain_overflow_dont, 0,
|
2002-11-30 08:39:46 +00:00
|
|
|
"-v16", TRUE, 0x0000ffff, 0x0000ffff, FALSE),
|
|
|
|
HOWTO (R_RELLONG_NEG, 0, -2, 32, FALSE,
|
1999-05-03 07:29:11 +00:00
|
|
|
0, complain_overflow_dont, 0,
|
2002-11-30 08:39:46 +00:00
|
|
|
"-v32", TRUE, 0xffffffff, 0xffffffff, FALSE),
|
1999-05-03 07:29:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
2005-04-11 08:23:05 +00:00
|
|
|
get_offset (int len, unsigned char *ptr)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
int val = 0;
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
if (len)
|
|
|
|
{
|
|
|
|
int i;
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
val = *ptr++;
|
|
|
|
if (val & 0x80)
|
|
|
|
val |= ~0xff;
|
|
|
|
for (i = 1; i < len; i++)
|
|
|
|
val = (val << 8) | *ptr++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-04-11 08:23:05 +00:00
|
|
|
process_otr (bfd *abfd, struct ext_otr *otr, int pass)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
unsigned long shift;
|
|
|
|
unsigned char *srcp = otr->data;
|
|
|
|
unsigned char *endp = (unsigned char *) otr + otr->size;
|
|
|
|
unsigned int bits = (otr->map[0] << 24)
|
|
|
|
| (otr->map[1] << 16)
|
|
|
|
| (otr->map[2] << 8)
|
|
|
|
| (otr->map[3] << 0);
|
|
|
|
|
|
|
|
struct esdid *esdid = &EDATA (abfd, otr->esdid - 1);
|
|
|
|
unsigned char *contents = esdid->contents;
|
2014-11-26 14:11:23 +00:00
|
|
|
bfd_boolean need_contents = FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
unsigned int dst_idx = esdid->pc;
|
|
|
|
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
for (shift = ((unsigned long) 1 << 31); shift && srcp < endp; shift >>= 1)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
if (bits & shift)
|
|
|
|
{
|
|
|
|
int flag = *srcp++;
|
|
|
|
int esdids = (flag >> 5) & 0x7;
|
|
|
|
int sizeinwords = ((flag >> 3) & 1) ? 2 : 1;
|
|
|
|
int offsetlen = flag & 0x7;
|
|
|
|
int j;
|
|
|
|
|
|
|
|
if (esdids == 0)
|
|
|
|
{
|
2005-04-11 08:23:05 +00:00
|
|
|
/* A zero esdid means the new pc is the offset given. */
|
1999-05-03 07:29:11 +00:00
|
|
|
dst_idx += get_offset (offsetlen, srcp);
|
|
|
|
srcp += offsetlen;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int val = get_offset (offsetlen, srcp + esdids);
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
if (pass == 1)
|
2014-11-26 14:11:23 +00:00
|
|
|
need_contents = TRUE;
|
|
|
|
else if (contents)
|
1999-05-03 07:29:11 +00:00
|
|
|
for (j = 0; j < sizeinwords * 2; j++)
|
|
|
|
{
|
|
|
|
contents[dst_idx + (sizeinwords * 2) - j - 1] = val;
|
|
|
|
val >>= 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (j = 0; j < esdids; j++)
|
|
|
|
{
|
2009-12-11 13:42:17 +00:00
|
|
|
int id = *srcp++;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2009-12-11 13:42:17 +00:00
|
|
|
if (id)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
int rn = EDATA (abfd, otr->esdid - 1).relocs++;
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
if (pass == 1)
|
|
|
|
{
|
2005-04-11 08:23:05 +00:00
|
|
|
/* This is the first pass over the data,
|
|
|
|
just remember that we need a reloc. */
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
arelent *n =
|
|
|
|
EDATA (abfd, otr->esdid - 1).section->relocation + rn;
|
|
|
|
n->address = dst_idx;
|
|
|
|
|
2009-12-11 13:42:17 +00:00
|
|
|
n->sym_ptr_ptr = (asymbol **) (size_t) id;
|
1999-05-03 07:29:11 +00:00
|
|
|
n->addend = 0;
|
|
|
|
n->howto = versados_howto_table + ((j & 1) * 2) + (sizeinwords - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
srcp += offsetlen;
|
|
|
|
dst_idx += sizeinwords * 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-11-26 14:11:23 +00:00
|
|
|
need_contents = TRUE;
|
|
|
|
|
|
|
|
if (esdid->section && contents && dst_idx < esdid->section->size)
|
1999-05-03 07:29:11 +00:00
|
|
|
if (pass == 2)
|
|
|
|
{
|
2005-04-11 08:23:05 +00:00
|
|
|
/* Absolute code, comes in 16 bit lumps. */
|
1999-05-03 07:29:11 +00:00
|
|
|
contents[dst_idx] = srcp[0];
|
|
|
|
contents[dst_idx + 1] = srcp[1];
|
|
|
|
}
|
2014-11-26 14:11:23 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
dst_idx += 2;
|
|
|
|
srcp += 2;
|
|
|
|
}
|
|
|
|
}
|
2014-11-26 14:11:23 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
EDATA (abfd, otr->esdid - 1).pc = dst_idx;
|
|
|
|
|
|
|
|
if (!contents && need_contents)
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
{
|
2014-11-21 21:44:04 +00:00
|
|
|
if (esdid->section)
|
|
|
|
{
|
|
|
|
bfd_size_type size;
|
|
|
|
|
|
|
|
size = esdid->section->size;
|
|
|
|
esdid->contents = bfd_alloc (abfd, size);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
esdid->contents = NULL;
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
2002-11-30 08:39:46 +00:00
|
|
|
static bfd_boolean
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_scan (bfd *abfd)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2014-11-26 14:11:23 +00:00
|
|
|
bfd_boolean loop = TRUE;
|
1999-05-03 07:29:11 +00:00
|
|
|
int i;
|
|
|
|
int j;
|
|
|
|
int nsecs = 0;
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
bfd_size_type amt;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-05-08 10:00:27 +00:00
|
|
|
VDATA (abfd)->stringlen = 0;
|
1999-05-03 07:29:11 +00:00
|
|
|
VDATA (abfd)->nrefs = 0;
|
|
|
|
VDATA (abfd)->ndefs = 0;
|
|
|
|
VDATA (abfd)->ref_idx = 0;
|
|
|
|
VDATA (abfd)->def_idx = 0;
|
2000-05-08 10:00:27 +00:00
|
|
|
VDATA (abfd)->pass_2_done = 0;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
while (loop)
|
|
|
|
{
|
|
|
|
union ext_any any;
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
if (!get_record (abfd, &any))
|
2014-11-26 14:11:23 +00:00
|
|
|
return FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
switch (any.header.type)
|
|
|
|
{
|
|
|
|
case VHEADER:
|
|
|
|
break;
|
|
|
|
case VEND:
|
2014-11-26 14:11:23 +00:00
|
|
|
loop = FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
break;
|
|
|
|
case VESTDEF:
|
|
|
|
process_esd (abfd, &any.esd, 1);
|
|
|
|
break;
|
|
|
|
case VOTR:
|
|
|
|
process_otr (abfd, &any.otr, 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-11 08:23:05 +00:00
|
|
|
/* Now allocate space for the relocs and sections. */
|
1999-05-03 07:29:11 +00:00
|
|
|
VDATA (abfd)->nrefs = VDATA (abfd)->ref_idx;
|
|
|
|
VDATA (abfd)->ndefs = VDATA (abfd)->def_idx;
|
|
|
|
VDATA (abfd)->ref_idx = 0;
|
|
|
|
VDATA (abfd)->def_idx = 0;
|
|
|
|
|
|
|
|
abfd->symcount = VDATA (abfd)->nrefs + VDATA (abfd)->ndefs;
|
|
|
|
|
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
{
|
|
|
|
struct esdid *esdid = &EDATA (abfd, i);
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
if (esdid->section)
|
|
|
|
{
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
amt = (bfd_size_type) esdid->relocs * sizeof (arelent);
|
2005-04-11 08:23:05 +00:00
|
|
|
esdid->section->relocation = bfd_alloc (abfd, amt);
|
1999-05-03 07:29:11 +00:00
|
|
|
esdid->pc = 0;
|
|
|
|
|
|
|
|
if (esdid->contents)
|
|
|
|
esdid->section->flags |= SEC_HAS_CONTENTS | SEC_LOAD;
|
|
|
|
|
|
|
|
esdid->section->reloc_count = esdid->relocs;
|
|
|
|
if (esdid->relocs)
|
|
|
|
esdid->section->flags |= SEC_RELOC;
|
|
|
|
|
|
|
|
esdid->relocs = 0;
|
|
|
|
|
2005-04-11 08:23:05 +00:00
|
|
|
/* Add an entry into the symbol table for it. */
|
1999-05-03 07:29:11 +00:00
|
|
|
nsecs++;
|
|
|
|
VDATA (abfd)->stringlen += strlen (esdid->section->name) + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
abfd->symcount += nsecs;
|
|
|
|
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
amt = abfd->symcount;
|
|
|
|
amt *= sizeof (asymbol);
|
2005-04-11 08:23:05 +00:00
|
|
|
VDATA (abfd)->symbols = bfd_alloc (abfd, amt);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
amt = VDATA (abfd)->stringlen;
|
|
|
|
VDATA (abfd)->strings = bfd_alloc (abfd, amt);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
if ((VDATA (abfd)->symbols == NULL && abfd->symcount > 0)
|
|
|
|
|| (VDATA (abfd)->strings == NULL && VDATA (abfd)->stringlen > 0))
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
/* Actually fill in the section symbols,
|
2005-04-11 08:23:05 +00:00
|
|
|
we stick them at the end of the table. */
|
1999-05-03 07:29:11 +00:00
|
|
|
for (j = VDATA (abfd)->nrefs + VDATA (abfd)->ndefs, i = 0; i < 16; i++)
|
|
|
|
{
|
|
|
|
struct esdid *esdid = &EDATA (abfd, i);
|
|
|
|
asection *sec = esdid->section;
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
if (sec)
|
|
|
|
{
|
|
|
|
asymbol *s = VDATA (abfd)->symbols + j;
|
|
|
|
s->name = new_symbol_string (abfd, sec->name);
|
|
|
|
s->section = sec;
|
|
|
|
s->flags = BSF_LOCAL;
|
|
|
|
s->value = 0;
|
|
|
|
s->the_bfd = abfd;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
if (abfd->symcount)
|
|
|
|
abfd->flags |= HAS_SYMS;
|
|
|
|
|
|
|
|
/* Set this to nsecs - since we've already planted the section
|
2005-04-11 08:23:05 +00:00
|
|
|
symbols. */
|
1999-05-03 07:29:11 +00:00
|
|
|
VDATA (abfd)->nsecsyms = nsecs;
|
|
|
|
|
|
|
|
VDATA (abfd)->ref_idx = 0;
|
|
|
|
|
2014-11-26 14:11:23 +00:00
|
|
|
return TRUE;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check whether an existing file is a versados file. */
|
|
|
|
|
|
|
|
static const bfd_target *
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_object_p (bfd *abfd)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
struct ext_vheader ext;
|
|
|
|
unsigned char len;
|
2002-07-30 05:49:24 +00:00
|
|
|
tdata_type *tdata_save;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
|
|
|
|
return NULL;
|
|
|
|
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
if (bfd_bread (&len, (bfd_size_type) 1, abfd) != 1)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
if (bfd_get_error () != bfd_error_system_call)
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-11-21 21:44:04 +00:00
|
|
|
/* PR 17512: file: 726-2128-0.004. */
|
|
|
|
if (len < 13)
|
|
|
|
{
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
if (bfd_bread (&ext.type, (bfd_size_type) len, abfd) != len)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
if (bfd_get_error () != bfd_error_system_call)
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We guess that the language field will never be larger than 10.
|
|
|
|
In sample files, it is always either 0 or 1. Checking for this
|
|
|
|
prevents confusion with Intel Hex files. */
|
|
|
|
if (ext.type != VHEADER
|
|
|
|
|| ext.lang > 10)
|
|
|
|
{
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* OK, looks like a record, build the tdata and read in. */
|
2002-07-30 05:49:24 +00:00
|
|
|
tdata_save = abfd->tdata.versados_data;
|
|
|
|
if (!versados_mkobject (abfd) || !versados_scan (abfd))
|
|
|
|
{
|
|
|
|
abfd->tdata.versados_data = tdata_save;
|
|
|
|
return NULL;
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
return abfd->xvec;
|
|
|
|
}
|
|
|
|
|
2002-11-30 08:39:46 +00:00
|
|
|
static bfd_boolean
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_pass_2 (bfd *abfd)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
union ext_any any;
|
|
|
|
|
|
|
|
if (VDATA (abfd)->pass_2_done)
|
|
|
|
return 1;
|
|
|
|
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
|
1999-05-03 07:29:11 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
VDATA (abfd)->es_done = ES_BASE;
|
|
|
|
|
2005-04-11 08:23:05 +00:00
|
|
|
/* Read records till we get to where we want to be. */
|
1999-05-03 07:29:11 +00:00
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
get_record (abfd, &any);
|
|
|
|
switch (any.header.type)
|
|
|
|
{
|
|
|
|
case VEND:
|
|
|
|
VDATA (abfd)->pass_2_done = 1;
|
|
|
|
return 1;
|
|
|
|
case VESTDEF:
|
|
|
|
process_esd (abfd, &any.esd, 2);
|
|
|
|
break;
|
|
|
|
case VOTR:
|
|
|
|
process_otr (abfd, &any.otr, 2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-30 08:39:46 +00:00
|
|
|
static bfd_boolean
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_get_section_contents (bfd *abfd,
|
|
|
|
asection *section,
|
|
|
|
void * location,
|
|
|
|
file_ptr offset,
|
|
|
|
bfd_size_type count)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
if (!versados_pass_2 (abfd))
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
memcpy (location,
|
|
|
|
EDATA (abfd, section->target_index).contents + offset,
|
|
|
|
(size_t) count);
|
|
|
|
|
2002-11-30 08:39:46 +00:00
|
|
|
return TRUE;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define versados_get_section_contents_in_window \
|
|
|
|
_bfd_generic_get_section_contents_in_window
|
|
|
|
|
2002-11-30 08:39:46 +00:00
|
|
|
static bfd_boolean
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_set_section_contents (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
sec_ptr section ATTRIBUTE_UNUSED,
|
|
|
|
const void * location ATTRIBUTE_UNUSED,
|
|
|
|
file_ptr offset ATTRIBUTE_UNUSED,
|
|
|
|
bfd_size_type bytes_to_do ATTRIBUTE_UNUSED)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_sizeof_headers (bfd *abfd ATTRIBUTE_UNUSED,
|
2006-06-19 13:17:44 +00:00
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the amount of memory needed to read the symbol table. */
|
|
|
|
|
|
|
|
static long
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_get_symtab_upper_bound (bfd *abfd)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
return (bfd_get_symcount (abfd) + 1) * sizeof (asymbol *);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the symbol table. */
|
|
|
|
|
|
|
|
static long
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_canonicalize_symtab (bfd *abfd, asymbol **alocation)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
unsigned int symcount = bfd_get_symcount (abfd);
|
|
|
|
unsigned int i;
|
|
|
|
asymbol *s;
|
|
|
|
|
|
|
|
versados_pass_2 (abfd);
|
|
|
|
|
|
|
|
for (i = 0, s = VDATA (abfd)->symbols;
|
|
|
|
i < symcount;
|
|
|
|
s++, i++)
|
2005-04-11 08:23:05 +00:00
|
|
|
*alocation++ = s;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
*alocation = NULL;
|
|
|
|
|
|
|
|
return symcount;
|
|
|
|
}
|
|
|
|
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
static void
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
asymbol *symbol,
|
|
|
|
symbol_info *ret)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
bfd_symbol_info (symbol, ret);
|
|
|
|
}
|
|
|
|
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
static void
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_print_symbol (bfd *abfd,
|
|
|
|
void * afile,
|
|
|
|
asymbol *symbol,
|
|
|
|
bfd_print_symbol_type how)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
FILE *file = (FILE *) afile;
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
switch (how)
|
|
|
|
{
|
|
|
|
case bfd_print_symbol_name:
|
|
|
|
fprintf (file, "%s", symbol->name);
|
|
|
|
break;
|
|
|
|
default:
|
2005-04-11 08:23:05 +00:00
|
|
|
bfd_print_symbol_vandf (abfd, (void *) file, symbol);
|
1999-05-03 07:29:11 +00:00
|
|
|
fprintf (file, " %-5s %s",
|
|
|
|
symbol->section->name,
|
|
|
|
symbol->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
static long
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_get_reloc_upper_bound (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
sec_ptr asect)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
return (asect->reloc_count + 1) * sizeof (arelent *);
|
|
|
|
}
|
|
|
|
|
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.
2001-09-18 09:57:26 +00:00
|
|
|
static long
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_canonicalize_reloc (bfd *abfd,
|
|
|
|
sec_ptr section,
|
|
|
|
arelent **relptr,
|
|
|
|
asymbol **symbols)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
unsigned int count;
|
|
|
|
arelent *src;
|
|
|
|
|
|
|
|
versados_pass_2 (abfd);
|
|
|
|
src = section->relocation;
|
2014-11-26 14:11:23 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
if (!EDATA (abfd, section->target_index).donerel)
|
|
|
|
{
|
|
|
|
EDATA (abfd, section->target_index).donerel = 1;
|
2005-04-11 08:23:05 +00:00
|
|
|
/* Translate from indexes to symptr ptrs. */
|
1999-05-03 07:29:11 +00:00
|
|
|
for (count = 0; count < section->reloc_count; count++)
|
|
|
|
{
|
2005-02-24 13:34:38 +00:00
|
|
|
int esdid = (int) (size_t) src[count].sym_ptr_ptr;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
if (esdid == 0)
|
2012-05-05 03:05:32 +00:00
|
|
|
src[count].sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
|
2005-04-11 08:23:05 +00:00
|
|
|
else if (esdid < ES_BASE)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2005-04-11 08:23:05 +00:00
|
|
|
/* Section relative thing. */
|
1999-05-03 07:29:11 +00:00
|
|
|
struct esdid *e = &EDATA (abfd, esdid - 1);
|
2005-04-11 08:23:05 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
src[count].sym_ptr_ptr = e->section->symbol_ptr_ptr;
|
|
|
|
}
|
2014-11-26 14:11:23 +00:00
|
|
|
/* PR 17512: file:3757-2936-0.004. */
|
|
|
|
else if ((unsigned) (esdid - ES_BASE) >= bfd_get_symcount (abfd))
|
|
|
|
src[count].sym_ptr_ptr = bfd_und_section_ptr->symbol_ptr_ptr;
|
1999-05-03 07:29:11 +00:00
|
|
|
else
|
2005-04-11 08:23:05 +00:00
|
|
|
src[count].sym_ptr_ptr = symbols + esdid - ES_BASE;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (count = 0; count < section->reloc_count; count++)
|
2005-04-11 08:23:05 +00:00
|
|
|
*relptr++ = src++;
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
*relptr = 0;
|
|
|
|
return section->reloc_count;
|
|
|
|
}
|
|
|
|
|
2005-04-11 08:23:05 +00:00
|
|
|
#define versados_close_and_cleanup _bfd_generic_close_and_cleanup
|
|
|
|
#define versados_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
|
|
|
|
#define versados_new_section_hook _bfd_generic_new_section_hook
|
|
|
|
#define versados_bfd_is_target_special_symbol ((bfd_boolean (*) (bfd *, asymbol *)) bfd_false)
|
|
|
|
#define versados_bfd_is_local_label_name bfd_generic_is_local_label_name
|
|
|
|
#define versados_get_lineno _bfd_nosymbols_get_lineno
|
|
|
|
#define versados_find_nearest_line _bfd_nosymbols_find_nearest_line
|
Define bfd_find_line entry of BFD_JUMP_TABLE_SYMBOLS using NAME.
In https://www.sourceware.org/ml/binutils/2005-06/msg00082.html
HJ implemented bfd_find_line for DWARF2, but cheated a little in not
using the usual NAME##_find_line, saving quite a lot of boring
editing. However that shortcut probably contributed to
bfd_find_nearest_line_discriminator being implemented the same way,
and missing support for some targets.
* targets.c (BFD_JUMP_TABLE_SYMBOLS): Use NAME##_find_line.
* aout-adobe.c (aout_32_find_line): Define.
(aout_32_bfd_make_debug_symbol, aout_32_bfd_reloc_type_lookup,
aout_32_bfd_reloc_name_lookup): Define using _bfd_nosymbols define.
* aout-target.h (MY_find_line): Define.
* aout-tic30.c (MY_find_line): Define.
* binary.c (binary_find_line): Define.
* bout.c (aout_32_find_line): Define.
* coff-rs6000.c (_bfd_xcoff_find_line): Define.
* coff64-rs6000.c (rs6000_xcoff64_vec): Use coff_find_line.
(rs6000_xcoff64_aix_vec): Likewise.
* elf-bfd.h (_bfd_generic_find_line): Don't define.
* elfxx-target.h (bfd_elfNN_find_line): Define.
* i386msdos.c (msdos_find_line): Define.
* i386os9k.c (aout_32_find_line): Define.
* ieee.c (ieee_find_nearest_line, ieee_find_inliner_info): Delete func.
(ieee_find_nearest_line, ieee_find_line,
ieee_find_inliner_info): Define.
* ihex.c (ihex_find_line): Define.
* libbfd-in.h (_bfd_nosymbols_find_line): Define.
(_bfd_generic_find_line): Don't define.
* libbfd.c (_bfd_generic_find_line): Delete.
* libcoff-in.h (coff_find_line): Define.
* libecoff.h (_bfd_ecoff_find_line): Define.
* mach-o.h (bfd_mach_o_find_line): Define.
* mmo.c (mmo_find_line): Define.
* nlm-target.h (nlm_find_line): Define.
* oasys.c (oasys_find_nearest_line, oasys_find_inliner_info): Delete.
(oasys_find_nearest_line, oasys_find_line,
oasys_find_inliner_info): Define.
* pef.c (bfd_pef_find_line): Define.
* plugin.c (bfd_plugin_find_line): Define.
* ppcboot.c (ppcboot_find_line): Define.
* som.c (som_find_line): Define.
* srec.c (srec_find_line): Define.
* tekhex.c (tekhex_find_line): Define.
* versados.c (versados_find_line): Define.
* vms-alpha.c (alpha_vms_find_line): Define.
* xsym.c (bfd_sym_find_line): Define.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenerate.
* libcoff.h: Regenerate.
2014-10-15 05:10:45 +00:00
|
|
|
#define versados_find_line _bfd_nosymbols_find_line
|
2005-05-23 17:44:55 +00:00
|
|
|
#define versados_find_inliner_info _bfd_nosymbols_find_inliner_info
|
2014-11-25 17:28:32 +00:00
|
|
|
#define versados_get_symbol_version_string _bfd_nosymbols_get_symbol_version_string
|
2005-04-11 08:23:05 +00:00
|
|
|
#define versados_make_empty_symbol _bfd_generic_make_empty_symbol
|
|
|
|
#define versados_bfd_make_debug_symbol _bfd_nosymbols_bfd_make_debug_symbol
|
|
|
|
#define versados_read_minisymbols _bfd_generic_read_minisymbols
|
|
|
|
#define versados_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
|
|
|
|
#define versados_bfd_reloc_type_lookup _bfd_norelocs_bfd_reloc_type_lookup
|
2007-03-26 12:23:03 +00:00
|
|
|
#define versados_bfd_reloc_name_lookup _bfd_norelocs_bfd_reloc_name_lookup
|
2005-04-11 08:23:05 +00:00
|
|
|
#define versados_set_arch_mach bfd_default_set_arch_mach
|
|
|
|
#define versados_bfd_get_relocated_section_contents bfd_generic_get_relocated_section_contents
|
|
|
|
#define versados_bfd_relax_section bfd_generic_relax_section
|
|
|
|
#define versados_bfd_gc_sections bfd_generic_gc_sections
|
2011-07-11 15:03:09 +00:00
|
|
|
#define versados_bfd_lookup_section_flags bfd_generic_lookup_section_flags
|
2005-04-11 08:23:05 +00:00
|
|
|
#define versados_bfd_merge_sections bfd_generic_merge_sections
|
|
|
|
#define versados_bfd_is_group_section bfd_generic_is_group_section
|
|
|
|
#define versados_bfd_discard_group bfd_generic_discard_group
|
|
|
|
#define versados_section_already_linked _bfd_generic_section_already_linked
|
2009-04-16 23:07:00 +00:00
|
|
|
#define versados_bfd_define_common_symbol bfd_generic_define_common_symbol
|
2005-04-11 08:23:05 +00:00
|
|
|
#define versados_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
|
|
|
|
#define versados_bfd_link_add_symbols _bfd_generic_link_add_symbols
|
|
|
|
#define versados_bfd_link_just_syms _bfd_generic_link_just_syms
|
2009-11-23 14:41:33 +00:00
|
|
|
#define versados_bfd_copy_link_hash_symbol_type \
|
|
|
|
_bfd_generic_copy_link_hash_symbol_type
|
2005-04-11 08:23:05 +00:00
|
|
|
#define versados_bfd_final_link _bfd_generic_final_link
|
|
|
|
#define versados_bfd_link_split_section _bfd_generic_link_split_section
|
1999-05-03 07:29:11 +00:00
|
|
|
|
bfd target vector rationalisation
This renames the bfd targets to <cpu>_<format>_<other>_<endian>_vec.
So for example, bfd_elf32_ntradlittlemips_vec becomes
mips_elf32_ntrad_le_vec and hp300bsd_vec becomes m68k_aout_hp300bsd_vec.
bfd/
* aix386-core.c, * aout-adobe.c, * aout-arm.c, * aout-ns32k.c,
* aout-sparcle.c, * aout0.c, * aoutx.h, * armnetbsd.c, * bout.c,
* cf-i386lynx.c, * cf-sparclynx.c, * cisco-core.c, * coff-alpha.c,
* coff-apollo.c, * coff-arm.c, * coff-aux.c, * coff-go32.c,
* coff-h8300.c, * coff-h8500.c, * coff-i386.c, * coff-i860.c,
* coff-i960.c, * coff-m68k.c, * coff-m88k.c, * coff-mips.c,
* coff-rs6000.c, * coff-sh.c, * coff-sparc.c, * coff-stgo32.c,
* coff-svm68k.c, * coff-tic80.c, * coff-u68k.c, * coff-w65.c,
* coff-we32k.c, * coff-x86_64.c, * coff-z80.c, * coff-z8k.c,
* coff64-rs6000.c, * config.bfd, * configure.com, * configure.in,
* demo64.c, * elf-m10200.c, * elf-m10300.c, * elf32-am33lin.c,
* elf32-arc.c, * elf32-arm.c, * elf32-avr.c, * elf32-bfin.c,
* elf32-cr16.c, * elf32-cr16c.c, * elf32-cris.c, * elf32-crx.c,
* elf32-d10v.c, * elf32-d30v.c, * elf32-dlx.c, * elf32-epiphany.c,
* elf32-fr30.c, * elf32-frv.c, * elf32-gen.c, * elf32-h8300.c,
* elf32-hppa.c, * elf32-i370.c, * elf32-i386.c, * elf32-i860.c,
* elf32-i960.c, * elf32-ip2k.c, * elf32-iq2000.c, * elf32-lm32.c,
* elf32-m32c.c, * elf32-m32r.c, * elf32-m68hc11.c, * elf32-m68hc12.c,
* elf32-m68k.c, * elf32-m88k.c, * elf32-mcore.c, * elf32-mep.c,
* elf32-metag.c, * elf32-microblaze.c, * elf32-mips.c, * elf32-moxie.c,
* elf32-msp430.c, * elf32-mt.c, * elf32-nds32.c, * elf32-nios2.c,
* elf32-or1k.c, * elf32-pj.c, * elf32-ppc.c, * elf32-rl78.c,
* elf32-rx.c, * elf32-s390.c, * elf32-score.c, * elf32-sh-symbian.c,
* elf32-sh.c, * elf32-sh64.c, * elf32-sparc.c, * elf32-spu.c,
* elf32-tic6x.c, * elf32-tilegx.c, * elf32-tilepro.c, * elf32-v850.c,
* elf32-vax.c, * elf32-xc16x.c, * elf32-xgate.c, * elf32-xstormy16.c,
* elf32-xtensa.c, * elf64-alpha.c, * elf64-gen.c, * elf64-hppa.c,
* elf64-ia64-vms.c, * elf64-mips.c, * elf64-mmix.c, * elf64-ppc.c,
* elf64-s390.c, * elf64-sh64.c, * elf64-sparc.c, * elf64-tilegx.c,
* elf64-x86-64.c, * elfn32-mips.c, * elfnn-aarch64.c, * elfnn-ia64.c,
* epoc-pe-arm.c, * epoc-pei-arm.c, * hp300bsd.c, * hp300hpux.c,
* hppabsd-core.c, * hpux-core.c, * i386aout.c, * i386bsd.c,
* i386dynix.c, * i386freebsd.c, * i386linux.c, * i386lynx.c,
* i386mach3.c, * i386msdos.c, * i386netbsd.c, * i386os9k.c,
* irix-core.c, * m68k4knetbsd.c, * m68klinux.c, * m68knetbsd.c,
* m88kmach3.c, * m88kopenbsd.c, * mach-o-i386.c, * mach-o-x86-64.c,
* makefile.vms, * mipsbsd.c, * mmo.c, * netbsd-core.c, * newsos3.c,
* nlm32-alpha.c, * nlm32-i386.c, * nlm32-ppc.c, * nlm32-sparc.c,
* ns32knetbsd.c, * osf-core.c, * pc532-mach.c, * pe-arm-wince.c,
* pe-arm.c, * pe-i386.c, * pe-mcore.c, * pe-mips.c, * pe-ppc.c,
* pe-sh.c, * pe-x86_64.c, * pei-arm-wince.c, * pei-arm.c,
* pei-i386.c, * pei-ia64.c, * pei-mcore.c, * pei-mips.c, * pei-ppc.c,
* pei-sh.c, * pei-x86_64.c, * ppcboot.c, * ptrace-core.c, * riscix.c,
* sco5-core.c, * som.c, * sparclinux.c, * sparclynx.c,
* sparcnetbsd.c, * sunos.c, * targets.c, * trad-core.c,
* vax1knetbsd.c, * vaxbsd.c, * vaxnetbsd.c, * versados.c,
* vms-alpha.c, * vms-lib.c: Rename bfd targets to
<cpu>_<format>_<other>_<endian>_vec. Adjust associated MY macros
on aout targets.
* configure: Regenerate.
binutils/
* emul_aix.c: Update bfd target vector naming.
* testsuite/binutils-all/objcopy.exp: Likewise.
ld/
* emultempl/metagelf.em: Update bfd target vector naming.
* emultempl/nios2elf.em: Likewise.
* emultempl/spuelf.em: Likewise.
* emultempl/tic6xdsbt.em: Likewise.
2014-05-02 10:39:40 +00:00
|
|
|
const bfd_target m68k_versados_vec =
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2005-04-11 08:23:05 +00:00
|
|
|
"versados", /* Name. */
|
1999-05-03 07:29:11 +00:00
|
|
|
bfd_target_versados_flavour,
|
2005-04-11 08:23:05 +00:00
|
|
|
BFD_ENDIAN_BIG, /* Target byte order. */
|
|
|
|
BFD_ENDIAN_BIG, /* Target headers byte order. */
|
|
|
|
(HAS_RELOC | EXEC_P | /* Object flags. */
|
1999-05-03 07:29:11 +00:00
|
|
|
HAS_LINENO | HAS_DEBUG |
|
|
|
|
HAS_SYMS | HAS_LOCALS | WP_TEXT | D_PAGED),
|
|
|
|
(SEC_CODE | SEC_DATA | SEC_ROM | SEC_HAS_CONTENTS
|
2005-04-11 08:23:05 +00:00
|
|
|
| SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* Section flags. */
|
|
|
|
0, /* Leading underscore. */
|
|
|
|
' ', /* AR_pad_char. */
|
|
|
|
16, /* AR_max_namelen. */
|
* targets.c (bfd_target): Make ar_max_namelen an unsigned char.
Add match_priority.
* configure.in: Bump bfd version.
* elfcode.h (elf_object_p): Delete hacks preventing match of
EM_NONE and ELFOSABI_NONE targets when a better match exists.
* elfxx-target.h (elf_match_priority): Define and use.
* format.c (bfd_check_format_matches): Use target match_priority
to choose best of multiple matching targets. In cases with multiple
matches rerun _bfd_check_format if we don't choose the last match.
* aout-adobe.c, * aout-arm.c, * aout-target.h, * aout-tic30.c,
* binary.c, * bout.c, * coff-alpha.c, * coff-i386.c, * coff-i860.c,
* coff-i960.c, * coff-ia64.c, * coff-mips.c, * coff-or32.c,
* coff-ppc.c, * coff-rs6000.c, * coff-sh.c, * coff-tic30.c,
* coff-tic54x.c, * coff-x86_64.c, * coff64-rs6000.c, * coffcode.h,
* i386msdos.c, * i386os9k.c, * ieee.c, * ihex.c, * mach-o-target.c,
* mipsbsd.c, * mmo.c, * nlm-target.h, * oasys.c, * pdp11.c,
* pe-mips.c, * pef.c, * plugin.c, * ppcboot.c, * som.c, * srec.c,
* tekhex.c, * trad-core.c, * verilog.c, * versados.c, * vms-alpha.c,
* vms-lib.c, * xsym.c: Init match_priority field.
* configure: Regenerate.
* bfd-in2.h: Regenerate.
2011-06-06 01:26:05 +00:00
|
|
|
0, /* match priority. */
|
1999-05-03 07:29:11 +00:00
|
|
|
bfd_getb64, bfd_getb_signed_64, bfd_putb64,
|
|
|
|
bfd_getb32, bfd_getb_signed_32, bfd_putb32,
|
2005-04-11 08:23:05 +00:00
|
|
|
bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* Data. */
|
1999-05-03 07:29:11 +00:00
|
|
|
bfd_getb64, bfd_getb_signed_64, bfd_putb64,
|
|
|
|
bfd_getb32, bfd_getb_signed_32, bfd_putb32,
|
2005-04-11 08:23:05 +00:00
|
|
|
bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* Headers. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
_bfd_dummy_target,
|
2005-04-11 08:23:05 +00:00
|
|
|
versados_object_p, /* bfd_check_format. */
|
1999-05-03 07:29:11 +00:00
|
|
|
_bfd_dummy_target,
|
|
|
|
_bfd_dummy_target,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
bfd_false,
|
|
|
|
versados_mkobject,
|
|
|
|
_bfd_generic_mkarchive,
|
|
|
|
bfd_false,
|
|
|
|
},
|
2005-04-11 08:23:05 +00:00
|
|
|
{ /* bfd_write_contents. */
|
1999-05-03 07:29:11 +00:00
|
|
|
bfd_false,
|
|
|
|
bfd_false,
|
|
|
|
_bfd_write_archive_contents,
|
|
|
|
bfd_false,
|
|
|
|
},
|
|
|
|
|
|
|
|
BFD_JUMP_TABLE_GENERIC (versados),
|
|
|
|
BFD_JUMP_TABLE_COPY (_bfd_generic),
|
|
|
|
BFD_JUMP_TABLE_CORE (_bfd_nocore),
|
|
|
|
BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive),
|
|
|
|
BFD_JUMP_TABLE_SYMBOLS (versados),
|
|
|
|
BFD_JUMP_TABLE_RELOCS (versados),
|
|
|
|
BFD_JUMP_TABLE_WRITE (versados),
|
|
|
|
BFD_JUMP_TABLE_LINK (versados),
|
|
|
|
BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
|
|
|
|
|
1999-07-19 14:55:16 +00:00
|
|
|
NULL,
|
2000-12-26 19:50:50 +00:00
|
|
|
|
2005-04-11 08:23:05 +00:00
|
|
|
NULL
|
1999-05-03 07:29:11 +00:00
|
|
|
};
|