1999-05-03 09:29:11 +02:00
|
|
|
|
/* vms-tir.c -- BFD back-end for VAX (openVMS/VAX) and
|
|
|
|
|
EVAX (openVMS/Alpha) files.
|
2002-01-30 17:07:28 +01:00
|
|
|
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002
|
|
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
TIR record handling functions
|
|
|
|
|
ETIR record handling functions
|
|
|
|
|
|
|
|
|
|
go and read the openVMS linker manual (esp. appendix B)
|
|
|
|
|
if you don't know what's going on here :-)
|
|
|
|
|
|
|
|
|
|
Written by Klaus K"ampf (kkaempf@rmi.de)
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
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
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
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.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* The following type abbreviations are used:
|
|
|
|
|
|
|
|
|
|
cs counted string (ascii string with length byte)
|
|
|
|
|
by byte (1 byte)
|
|
|
|
|
sh short (2 byte, 16 bit)
|
|
|
|
|
lw longword (4 byte, 32 bit)
|
|
|
|
|
qw quadword (8 byte, 64 bit)
|
|
|
|
|
da data stream */
|
|
|
|
|
|
|
|
|
|
#include "bfd.h"
|
|
|
|
|
#include "sysdep.h"
|
|
|
|
|
#include "bfdlink.h"
|
|
|
|
|
#include "libbfd.h"
|
|
|
|
|
|
|
|
|
|
#include "vms.h"
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static void image_set_ptr
|
|
|
|
|
PARAMS ((bfd *abfd, int psect, uquad offset));
|
|
|
|
|
static void image_inc_ptr
|
|
|
|
|
PARAMS ((bfd *abfd, uquad offset));
|
|
|
|
|
static void image_dump
|
|
|
|
|
PARAMS ((bfd *abfd, unsigned char *ptr, int size, int offset));
|
|
|
|
|
static void image_write_b
|
|
|
|
|
PARAMS ((bfd *abfd, unsigned int value));
|
|
|
|
|
static void image_write_w
|
|
|
|
|
PARAMS ((bfd *abfd, unsigned int value));
|
|
|
|
|
static void image_write_l
|
|
|
|
|
PARAMS ((bfd *abfd, unsigned long value));
|
|
|
|
|
static void image_write_q
|
|
|
|
|
PARAMS ((bfd *abfd, uquad value));
|
|
|
|
|
static int check_section
|
|
|
|
|
PARAMS ((bfd *, int));
|
|
|
|
|
static bfd_boolean etir_sta
|
|
|
|
|
PARAMS ((bfd *, int, unsigned char *));
|
|
|
|
|
static bfd_boolean etir_sto
|
|
|
|
|
PARAMS ((bfd *, int, unsigned char *));
|
|
|
|
|
static bfd_boolean etir_opr
|
|
|
|
|
PARAMS ((bfd *, int, unsigned char *));
|
|
|
|
|
static bfd_boolean etir_ctl
|
|
|
|
|
PARAMS ((bfd *, int, unsigned char *));
|
|
|
|
|
static bfd_boolean etir_stc
|
|
|
|
|
PARAMS ((bfd *, int, unsigned char *));
|
|
|
|
|
static asection *new_section
|
|
|
|
|
PARAMS ((bfd *, int));
|
|
|
|
|
static int alloc_section
|
|
|
|
|
PARAMS ((bfd *, unsigned int));
|
|
|
|
|
static int etir_cmd
|
|
|
|
|
PARAMS ((bfd *, int, unsigned char *));
|
|
|
|
|
static int analyze_tir
|
|
|
|
|
PARAMS ((bfd *, unsigned char *, unsigned int));
|
|
|
|
|
static int analyze_etir
|
|
|
|
|
PARAMS ((bfd *, unsigned char *, unsigned int));
|
|
|
|
|
static unsigned char * tir_opr
|
|
|
|
|
PARAMS ((bfd *, unsigned char *));
|
|
|
|
|
static const char * tir_cmd_name
|
|
|
|
|
PARAMS ((int));
|
|
|
|
|
static const char * cmd_name
|
|
|
|
|
PARAMS ((int));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static int
|
|
|
|
|
check_section (abfd, size)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
int size;
|
|
|
|
|
{
|
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 11:57:26 +02:00
|
|
|
|
bfd_size_type offset;
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
offset = PRIV (image_ptr) - PRIV (image_section)->contents;
|
|
|
|
|
if (offset + size > PRIV (image_section)->_raw_size)
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
PRIV (image_section)->contents
|
|
|
|
|
= bfd_realloc (PRIV (image_section)->contents, offset + size);
|
|
|
|
|
if (PRIV (image_section)->contents == 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler) (_("No Mem !"));
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
PRIV (image_section)->_raw_size = offset + size;
|
|
|
|
|
PRIV (image_ptr) = PRIV (image_section)->contents + offset;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Routines to fill sections contents during tir/etir read. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Initialize image buffer pointer to be filled. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
image_set_ptr (abfd, psect, offset)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
int psect;
|
|
|
|
|
uquad offset;
|
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (4, "image_set_ptr (%d=%s, %d)\n",
|
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 11:57:26 +02:00
|
|
|
|
psect, PRIV (sections)[psect]->name, offset);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
PRIV (image_ptr) = PRIV (sections)[psect]->contents + offset;
|
|
|
|
|
PRIV (image_section) = PRIV (sections)[psect];
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Increment image buffer pointer by offset. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
image_inc_ptr (abfd, offset)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
uquad offset;
|
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (4, "image_inc_ptr (%d)\n", offset);
|
|
|
|
|
#endif
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
PRIV (image_ptr) += offset;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Dump multiple bytes to section image. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
image_dump (abfd, ptr, size, offset)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
unsigned char *ptr;
|
|
|
|
|
int size;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
int offset ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_debug (8, "image_dump from (%p, %d) to (%p)\n", ptr, size,
|
|
|
|
|
PRIV (image_ptr));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_hexdump (9, ptr, size, offset);
|
|
|
|
|
#endif
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
if (PRIV (is_vax) && check_section (abfd, size))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
while (size-- > 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 11:57:26 +02:00
|
|
|
|
*PRIV (image_ptr)++ = *ptr++;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Write byte to section image. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
image_write_b (abfd, value)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
unsigned int value;
|
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_debug (6, "image_write_b(%02x)\n", (int) value);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
if (PRIV (is_vax) && check_section (abfd, 1))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
*PRIV (image_ptr)++ = (value & 0xff);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Write 2-byte word to image. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
image_write_w (abfd, value)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
unsigned int value;
|
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_debug (6, "image_write_w(%04x)\n", (int) value);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
if (PRIV (is_vax) && check_section (abfd, 2))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
bfd_putl16 ((bfd_vma) value, PRIV (image_ptr));
|
|
|
|
|
PRIV (image_ptr) += 2;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Write 4-byte long to image. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
image_write_l (abfd, value)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
unsigned long value;
|
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (6, "image_write_l (%08lx)\n", value);
|
|
|
|
|
#endif
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
if (PRIV (is_vax) && check_section (abfd, 4))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
bfd_putl32 ((bfd_vma) value, PRIV (image_ptr));
|
|
|
|
|
PRIV (image_ptr) += 4;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Write 8-byte quad to image. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
image_write_q (abfd, value)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
uquad value;
|
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (6, "image_write_q (%016lx)\n", value);
|
|
|
|
|
#endif
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
if (PRIV (is_vax) && check_section (abfd, 8))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
bfd_putl64 (value, PRIV (image_ptr));
|
|
|
|
|
PRIV (image_ptr) += 8;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
static const char *
|
|
|
|
|
cmd_name (cmd)
|
|
|
|
|
int cmd;
|
|
|
|
|
{
|
|
|
|
|
switch (cmd)
|
|
|
|
|
{
|
|
|
|
|
case ETIR_S_C_STA_GBL: return "ETIR_S_C_STA_GBL";
|
|
|
|
|
case ETIR_S_C_STA_PQ: return "ETIR_S_C_STA_PQ";
|
|
|
|
|
case ETIR_S_C_STA_LI: return "ETIR_S_C_STA_LI";
|
|
|
|
|
case ETIR_S_C_STA_MOD: return "ETIR_S_C_STA_MOD";
|
|
|
|
|
case ETIR_S_C_STA_CKARG: return "ETIR_S_C_STA_CKARG";
|
|
|
|
|
case ETIR_S_C_STO_B: return "ETIR_S_C_STO_B";
|
|
|
|
|
case ETIR_S_C_STO_W: return "ETIR_S_C_STO_W";
|
|
|
|
|
case ETIR_S_C_STO_GBL: return "ETIR_S_C_STO_GBL";
|
|
|
|
|
case ETIR_S_C_STO_CA: return "ETIR_S_C_STO_CA";
|
|
|
|
|
case ETIR_S_C_STO_RB: return "ETIR_S_C_STO_RB";
|
|
|
|
|
case ETIR_S_C_STO_AB: return "ETIR_S_C_STO_AB";
|
|
|
|
|
case ETIR_S_C_STO_GBL_LW: return "ETIR_S_C_STO_GBL_LW";
|
|
|
|
|
case ETIR_S_C_STO_LP_PSB: return "ETIR_S_C_STO_LP_PSB";
|
|
|
|
|
case ETIR_S_C_STO_HINT_GBL: return "ETIR_S_C_STO_HINT_GBL";
|
|
|
|
|
case ETIR_S_C_STO_HINT_PS: return "ETIR_S_C_STO_HINT_PS";
|
|
|
|
|
case ETIR_S_C_OPR_INSV: return "ETIR_S_C_OPR_INSV";
|
|
|
|
|
case ETIR_S_C_OPR_USH: return "ETIR_S_C_OPR_USH";
|
|
|
|
|
case ETIR_S_C_OPR_ROT: return "ETIR_S_C_OPR_ROT";
|
|
|
|
|
case ETIR_S_C_OPR_REDEF: return "ETIR_S_C_OPR_REDEF";
|
|
|
|
|
case ETIR_S_C_OPR_DFLIT: return "ETIR_S_C_OPR_DFLIT";
|
|
|
|
|
case ETIR_S_C_STC_LP: return "ETIR_S_C_STC_LP";
|
|
|
|
|
case ETIR_S_C_STC_GBL: return "ETIR_S_C_STC_GBL";
|
|
|
|
|
case ETIR_S_C_STC_GCA: return "ETIR_S_C_STC_GCA";
|
|
|
|
|
case ETIR_S_C_STC_PS: return "ETIR_S_C_STC_PS";
|
|
|
|
|
case ETIR_S_C_STC_NBH_PS: return "ETIR_S_C_STC_NBH_PS";
|
|
|
|
|
case ETIR_S_C_STC_NOP_GBL: return "ETIR_S_C_STC_NOP_GBL";
|
|
|
|
|
case ETIR_S_C_STC_NOP_PS: return "ETIR_S_C_STC_NOP_PS";
|
|
|
|
|
case ETIR_S_C_STC_BSR_GBL: return "ETIR_S_C_STC_BSR_GBL";
|
|
|
|
|
case ETIR_S_C_STC_BSR_PS: return "ETIR_S_C_STC_BSR_PS";
|
|
|
|
|
case ETIR_S_C_STC_LDA_GBL: return "ETIR_S_C_STC_LDA_GBL";
|
|
|
|
|
case ETIR_S_C_STC_LDA_PS: return "ETIR_S_C_STC_LDA_PS";
|
|
|
|
|
case ETIR_S_C_STC_BOH_GBL: return "ETIR_S_C_STC_BOH_GBL";
|
|
|
|
|
case ETIR_S_C_STC_BOH_PS: return "ETIR_S_C_STC_BOH_PS";
|
|
|
|
|
case ETIR_S_C_STC_NBH_GBL: return "ETIR_S_C_STC_NBH_GBL";
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
default:
|
|
|
|
|
/* These names have not yet been added to this switch statement. */
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define HIGHBIT(op) ((op & 0x80000000L) == 0x80000000L)
|
|
|
|
|
|
|
|
|
|
/* etir_sta
|
2000-12-25 15:42:42 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
vms stack commands
|
2000-12-25 15:42:42 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
handle sta_xxx commands in etir section
|
|
|
|
|
ptr points to data area in record
|
2000-12-25 15:42:42 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
see table B-8 of the openVMS linker manual. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
|
etir_sta (abfd, cmd, ptr)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
int cmd;
|
|
|
|
|
unsigned char *ptr;
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (5, "etir_sta %d/%x\n", cmd, cmd);
|
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 11:57:26 +02:00
|
|
|
|
_bfd_hexdump (8, ptr, 16, (int) ptr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
|
{
|
|
|
|
|
/* stack */
|
|
|
|
|
|
|
|
|
|
/* stack global
|
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 11:57:26 +02:00
|
|
|
|
arg: cs symbol name
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
stack 32 bit value of symbol (high bits set to 0) */
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
case ETIR_S_C_STA_GBL:
|
|
|
|
|
{
|
|
|
|
|
char *name;
|
|
|
|
|
vms_symbol_entry *entry;
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
name = _bfd_vms_save_counted_string (ptr);
|
|
|
|
|
entry = (vms_symbol_entry *)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_hash_lookup (PRIV (vms_symbol_table), name, FALSE, FALSE);
|
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 11:57:26 +02:00
|
|
|
|
if (entry == (vms_symbol_entry *) NULL)
|
|
|
|
|
{
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#if VMS_DEBUG
|
2002-01-30 17:07:28 +01:00
|
|
|
|
_bfd_vms_debug (3, "%s: no symbol \"%s\"\n",
|
|
|
|
|
cmd_name (cmd), name);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) 0, -1);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) (entry->symbol->value), -1);
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
/* stack longword
|
|
|
|
|
arg: lw value
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
stack 32 bit value, sign extend to 64 bit */
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
case ETIR_S_C_STA_LW:
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) bfd_getl32 (ptr), -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
/* stack global
|
|
|
|
|
arg: qw value
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
stack 64 bit value of symbol */
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
case ETIR_S_C_STA_QW:
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) bfd_getl64 (ptr), -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
/* stack psect base plus quadword offset
|
|
|
|
|
arg: lw section index
|
|
|
|
|
qw signed quadword offset (low 32 bits)
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
stack qw argument and section index
|
|
|
|
|
(see ETIR_S_C_STO_OFF, ETIR_S_C_CTL_SETRB) */
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
case ETIR_S_C_STA_PQ:
|
|
|
|
|
{
|
|
|
|
|
uquad dummy;
|
|
|
|
|
unsigned int psect;
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
psect = bfd_getl32 (ptr);
|
|
|
|
|
if (psect >= PRIV (section_count))
|
|
|
|
|
{
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("bad section index in %s"),
|
|
|
|
|
cmd_name (cmd));
|
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 11:57:26 +02:00
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
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 11:57:26 +02:00
|
|
|
|
}
|
|
|
|
|
dummy = bfd_getl64 (ptr+4);
|
|
|
|
|
_bfd_vms_push (abfd, dummy, (int) psect);
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
case ETIR_S_C_STA_LI:
|
|
|
|
|
case ETIR_S_C_STA_MOD:
|
|
|
|
|
case ETIR_S_C_STA_CKARG:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("unsupported STA cmd %s"), cmd_name (cmd));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
default:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("reserved STA cmd %d"), cmd);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (5, "etir_sta true\n");
|
|
|
|
|
#endif
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
etir_sto
|
2000-12-25 15:42:42 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
vms store commands
|
2000-12-25 15:42:42 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
handle sto_xxx commands in etir section
|
|
|
|
|
ptr points to data area in record
|
2000-12-25 15:42:42 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
see table B-9 of the openVMS linker manual. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
|
etir_sto (abfd, cmd, ptr)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
int cmd;
|
|
|
|
|
unsigned char *ptr;
|
|
|
|
|
{
|
|
|
|
|
uquad dummy;
|
|
|
|
|
int psect;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (5, "etir_sto %d/%x\n", cmd, cmd);
|
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 11:57:26 +02:00
|
|
|
|
_bfd_hexdump (8, ptr, 16, (int) ptr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
|
{
|
|
|
|
|
/* store byte: pop stack, write byte
|
|
|
|
|
arg: - */
|
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STO_B:
|
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
#if 0
|
|
|
|
|
if (is_share) /* FIXME */
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) ("%s: byte fixups not supported",
|
|
|
|
|
cmd_name (cmd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
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 11:57:26 +02:00
|
|
|
|
/* FIXME: check top bits */
|
|
|
|
|
image_write_b (abfd, (unsigned int) dummy & 0xff);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* store word: pop stack, write word
|
|
|
|
|
arg: - */
|
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STO_W:
|
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
#if 0
|
|
|
|
|
if (is_share) /* FIXME */
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) ("%s: word fixups not supported",
|
|
|
|
|
cmd_name (cmd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
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 11:57:26 +02:00
|
|
|
|
/* FIXME: check top bits */
|
|
|
|
|
image_write_w (abfd, (unsigned int) dummy & 0xffff);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* store longword: pop stack, write longword
|
|
|
|
|
arg: - */
|
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STO_LW:
|
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
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 11:57:26 +02:00
|
|
|
|
dummy += (PRIV (sections)[psect])->vma;
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* FIXME: check top bits. */
|
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 11:57:26 +02:00
|
|
|
|
image_write_l (abfd, (unsigned int) dummy & 0xffffffff);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* store quadword: pop stack, write quadword
|
|
|
|
|
arg: - */
|
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STO_QW:
|
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
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 11:57:26 +02:00
|
|
|
|
dummy += (PRIV (sections)[psect])->vma;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
image_write_q (abfd, dummy); /* FIXME: check top bits */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* store immediate repeated: pop stack for repeat count
|
|
|
|
|
arg: lw byte count
|
|
|
|
|
da data */
|
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STO_IMMR:
|
|
|
|
|
{
|
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 11:57:26 +02:00
|
|
|
|
int size;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
size = bfd_getl32 (ptr);
|
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 11:57:26 +02:00
|
|
|
|
dummy = (unsigned long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
while (dummy-- > 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
image_dump (abfd, ptr+4, size, 0);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* store global: write symbol value
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: cs global symbol name. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STO_GBL:
|
|
|
|
|
{
|
|
|
|
|
vms_symbol_entry *entry;
|
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
|
|
name = _bfd_vms_save_counted_string (ptr);
|
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 11:57:26 +02:00
|
|
|
|
entry = (vms_symbol_entry *) bfd_hash_lookup (PRIV (vms_symbol_table),
|
2002-11-30 09:39:46 +01:00
|
|
|
|
name, FALSE, FALSE);
|
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 11:57:26 +02:00
|
|
|
|
if (entry == (vms_symbol_entry *) NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: no symbol \"%s\""),
|
|
|
|
|
cmd_name (cmd), name);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* FIXME, reloc. */
|
|
|
|
|
image_write_q (abfd, (uquad) (entry->symbol->value));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* store code address: write address of entry point
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: cs global symbol name (procedure). */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STO_CA:
|
|
|
|
|
{
|
|
|
|
|
vms_symbol_entry *entry;
|
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
|
|
name = _bfd_vms_save_counted_string (ptr);
|
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 11:57:26 +02:00
|
|
|
|
entry = (vms_symbol_entry *) bfd_hash_lookup (PRIV (vms_symbol_table),
|
2002-11-30 09:39:46 +01:00
|
|
|
|
name, FALSE, FALSE);
|
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 11:57:26 +02:00
|
|
|
|
if (entry == (vms_symbol_entry *) NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: no symbol \"%s\""),
|
|
|
|
|
cmd_name (cmd), name);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
2000-12-25 15:42:42 +01:00
|
|
|
|
image_write_q (abfd, (uquad) (entry->symbol->value)); /* FIXME, reloc */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Store offset to psect: pop stack, add low 32 bits to base of psect
|
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STO_OFF:
|
|
|
|
|
{
|
|
|
|
|
uquad q;
|
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 11:57:26 +02:00
|
|
|
|
int psect1;
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
q = _bfd_vms_pop (abfd, &psect1);
|
|
|
|
|
q += (PRIV (sections)[psect1])->vma;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
image_write_q (abfd, q);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Store immediate
|
1999-05-03 09:29:11 +02:00
|
|
|
|
arg: lw count of bytes
|
2002-01-30 17:07:28 +01:00
|
|
|
|
da data. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STO_IMM:
|
|
|
|
|
{
|
|
|
|
|
int size;
|
|
|
|
|
|
|
|
|
|
size = bfd_getl32 (ptr);
|
|
|
|
|
image_dump (abfd, ptr+4, size, 0);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* This code is 'reserved to digital' according to the openVMS
|
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 11:57:26 +02:00
|
|
|
|
linker manual, however it is generated by the DEC C compiler
|
|
|
|
|
and defined in the include file.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
FIXME, since the following is just a guess
|
|
|
|
|
store global longword: store 32bit value of symbol
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: cs symbol name. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STO_GBL_LW:
|
|
|
|
|
{
|
|
|
|
|
vms_symbol_entry *entry;
|
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
|
|
name = _bfd_vms_save_counted_string (ptr);
|
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 11:57:26 +02:00
|
|
|
|
entry = (vms_symbol_entry *) bfd_hash_lookup (PRIV (vms_symbol_table),
|
2002-11-30 09:39:46 +01:00
|
|
|
|
name, FALSE, FALSE);
|
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 11:57:26 +02:00
|
|
|
|
if (entry == (vms_symbol_entry *) NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
2002-01-30 17:07:28 +01:00
|
|
|
|
_bfd_vms_debug (3, "%s: no symbol \"%s\"\n", cmd_name (cmd), name);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
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 11:57:26 +02:00
|
|
|
|
image_write_l (abfd, (unsigned long) 0); /* FIXME, reloc */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* FIXME, reloc. */
|
|
|
|
|
image_write_l (abfd, (unsigned long) (entry->symbol->value));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case ETIR_S_C_STO_RB:
|
|
|
|
|
case ETIR_S_C_STO_AB:
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case ETIR_S_C_STO_LP_PSB:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: not supported"), cmd_name (cmd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STO_HINT_GBL:
|
|
|
|
|
case ETIR_S_C_STO_HINT_PS:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: not implemented"), cmd_name (cmd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("reserved STO cmd %d"), cmd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Stack operator commands
|
1999-05-03 09:29:11 +02:00
|
|
|
|
all 32 bit signed arithmetic
|
|
|
|
|
all word just like a stack calculator
|
|
|
|
|
arguments are popped from stack, results are pushed on stack
|
2000-12-25 15:42:42 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
see table B-10 of the openVMS linker manual. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
|
etir_opr (abfd, cmd, ptr)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
int cmd;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
unsigned char *ptr ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
long op1, op2;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (5, "etir_opr %d/%x\n", cmd, cmd);
|
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 11:57:26 +02:00
|
|
|
|
_bfd_hexdump (8, ptr, 16, (int) ptr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
|
{
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case ETIR_S_C_OPR_NOP: /* no-op */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case ETIR_S_C_OPR_ADD: /* add */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
2000-12-25 15:42:42 +01:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op1 + op2), -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case ETIR_S_C_OPR_SUB: /* subtract */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
2000-12-25 15:42:42 +01:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op2 - op1), -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case ETIR_S_C_OPR_MUL: /* multiply */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
2000-12-25 15:42:42 +01:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op1 * op2), -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case ETIR_S_C_OPR_DIV: /* divide */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (op2 == 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 11:57:26 +02:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) 0, -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2000-12-25 15:42:42 +01:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op2 / op1), -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case ETIR_S_C_OPR_AND: /* logical and */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
2000-12-25 15:42:42 +01:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op1 & op2), -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case ETIR_S_C_OPR_IOR: /* logical inclusive or */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
2000-12-25 15:42:42 +01:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op1 | op2), -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case ETIR_S_C_OPR_EOR: /* logical exclusive or */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
2000-12-25 15:42:42 +01:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op1 ^ op2), -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case ETIR_S_C_OPR_NEG: /* negate */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
2000-12-25 15:42:42 +01:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) (-op1), -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case ETIR_S_C_OPR_COM: /* complement */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
2000-12-25 15:42:42 +01:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op1 ^ -1L), -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case ETIR_S_C_OPR_ASH: /* arithmetic shift */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (op2 < 0) /* shift right */
|
|
|
|
|
op1 >>= -op2;
|
|
|
|
|
else /* shift left */
|
|
|
|
|
op1 <<= op2;
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) op1, -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case ETIR_S_C_OPR_INSV: /* insert field */
|
|
|
|
|
(void) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
case ETIR_S_C_OPR_USH: /* unsigned shift */
|
|
|
|
|
case ETIR_S_C_OPR_ROT: /* rotate */
|
|
|
|
|
case ETIR_S_C_OPR_REDEF: /* Redefine symbol to current location. */
|
|
|
|
|
case ETIR_S_C_OPR_DFLIT: /* Define a literal. */
|
|
|
|
|
(*_bfd_error_handler) (_("%s: not supported"), cmd_name (cmd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case ETIR_S_C_OPR_SEL: /* select */
|
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 11:57:26 +02:00
|
|
|
|
if ((long) _bfd_vms_pop (abfd, NULL) & 0x01L)
|
|
|
|
|
(void) _bfd_vms_pop (abfd, NULL);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
(void) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) op1, -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("reserved OPR cmd %d"), cmd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Control commands.
|
2000-12-25 15:42:42 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
See table B-11 of the openVMS linker manual. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
|
etir_ctl (abfd, cmd, ptr)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
int cmd;
|
|
|
|
|
unsigned char *ptr;
|
|
|
|
|
{
|
|
|
|
|
uquad dummy;
|
|
|
|
|
int psect;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (5, "etir_ctl %d/%x\n", cmd, cmd);
|
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 11:57:26 +02:00
|
|
|
|
_bfd_hexdump (8, ptr, 16, (int) ptr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
|
{
|
|
|
|
|
/* set relocation base: pop stack, set image location counter
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_CTL_SETRB:
|
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
image_set_ptr (abfd, psect, dummy);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* augment relocation base: increment image location counter by offset
|
|
|
|
|
arg: lw offset value */
|
|
|
|
|
|
|
|
|
|
case ETIR_S_C_CTL_AUGRB:
|
|
|
|
|
dummy = bfd_getl32 (ptr);
|
|
|
|
|
image_inc_ptr (abfd, dummy);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* define location: pop index, save location counter under index
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_CTL_DFLOC:
|
|
|
|
|
dummy = _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
/* FIXME */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* set location: pop index, restore location counter from index
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_CTL_STLOC:
|
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
/* FIXME */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* stack defined location: pop index, push location counter from index
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_CTL_STKDL:
|
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
/* FIXME */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("reserved CTL cmd %d"), cmd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* store conditional commands
|
2000-12-25 15:42:42 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
See table B-12 and B-13 of the openVMS linker manual. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
|
etir_stc (abfd, cmd, ptr)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
int cmd;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
unsigned char *ptr ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (5, "etir_stc %d/%x\n", cmd, cmd);
|
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 11:57:26 +02:00
|
|
|
|
_bfd_hexdump (8, ptr, 16, (int) ptr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
|
{
|
|
|
|
|
/* 200 Store-conditional Linkage Pair
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_LP:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: not supported"), cmd_name (cmd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* 201 Store-conditional Linkage Pair with Procedure Signature
|
|
|
|
|
arg: lw linkage index
|
2002-11-30 09:39:46 +01:00
|
|
|
|
cs procedure name
|
|
|
|
|
by signature length
|
|
|
|
|
da signature. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_LP_PSB:
|
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 11:57:26 +02:00
|
|
|
|
image_inc_ptr (abfd, (uquad) 16); /* skip entry,procval */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* 202 Store-conditional Address at global address
|
|
|
|
|
arg: lw linkage index
|
2002-11-30 09:39:46 +01:00
|
|
|
|
cs global name. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_GBL:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: not supported"), cmd_name (cmd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* 203 Store-conditional Code Address at global address
|
|
|
|
|
arg: lw linkage index
|
2002-11-30 09:39:46 +01:00
|
|
|
|
cs procedure name. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_GCA:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: not supported"), cmd_name (cmd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* 204 Store-conditional Address at psect + offset
|
|
|
|
|
arg: lw linkage index
|
2002-11-30 09:39:46 +01:00
|
|
|
|
lw psect index
|
|
|
|
|
qw offset. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_PS:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: not supported"), cmd_name (cmd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* 205 Store-conditional NOP at address of global
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_NOP_GBL:
|
|
|
|
|
|
|
|
|
|
/* 206 Store-conditional NOP at pect + offset
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_NOP_PS:
|
|
|
|
|
|
|
|
|
|
/* 207 Store-conditional BSR at global address
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_BSR_GBL:
|
|
|
|
|
|
|
|
|
|
/* 208 Store-conditional BSR at pect + offset
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_BSR_PS:
|
|
|
|
|
|
|
|
|
|
/* 209 Store-conditional LDA at global address
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_LDA_GBL:
|
|
|
|
|
|
|
|
|
|
/* 210 Store-conditional LDA at psect + offset
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_LDA_PS:
|
|
|
|
|
|
|
|
|
|
/* 211 Store-conditional BSR or Hint at global address
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_BOH_GBL:
|
|
|
|
|
|
|
|
|
|
/* 212 Store-conditional BSR or Hint at pect + offset
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_BOH_PS:
|
|
|
|
|
|
|
|
|
|
/* 213 Store-conditional NOP,BSR or HINT at global address
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_NBH_GBL:
|
|
|
|
|
|
|
|
|
|
/* 214 Store-conditional NOP,BSR or HINT at psect + offset
|
2002-01-30 17:07:28 +01:00
|
|
|
|
arg: none. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
case ETIR_S_C_STC_NBH_PS:
|
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 11:57:26 +02:00
|
|
|
|
/* FIXME */
|
|
|
|
|
#if 0
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) ("%s: not supported", cmd_name (cmd));
|
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 11:57:26 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
#if VMS_DEBUG
|
2002-01-30 17:07:28 +01:00
|
|
|
|
_bfd_vms_debug (3, "reserved STC cmd %d", cmd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
}
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static asection *
|
|
|
|
|
new_section (abfd, idx)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int idx;
|
|
|
|
|
{
|
|
|
|
|
asection *section;
|
|
|
|
|
char sname[16];
|
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
2002-01-30 17:07:28 +01:00
|
|
|
|
_bfd_vms_debug (5, "new_section %d\n", idx);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
sprintf (sname, SECTION_NAME_TEMPLATE, 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 11:57:26 +02:00
|
|
|
|
name = bfd_malloc ((bfd_size_type) strlen (sname) + 1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (name == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
strcpy (name, sname);
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
section = bfd_malloc ((bfd_size_type) sizeof (asection));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (section == 0)
|
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (6, "bfd_make_section (%s) failed", name);
|
|
|
|
|
#endif
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
section->_raw_size = 0;
|
|
|
|
|
section->vma = 0;
|
|
|
|
|
section->contents = 0;
|
|
|
|
|
section->_cooked_size = 0;
|
|
|
|
|
section->name = name;
|
|
|
|
|
section->index = idx;
|
|
|
|
|
|
|
|
|
|
return section;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
alloc_section (abfd, idx)
|
|
|
|
|
bfd *abfd;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
unsigned int idx;
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
bfd_size_type amt;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#if VMS_DEBUG
|
2002-01-30 17:07:28 +01:00
|
|
|
|
_bfd_vms_debug (4, "alloc_section %d\n", idx);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
amt = idx + 1;
|
|
|
|
|
amt *= sizeof (asection *);
|
|
|
|
|
PRIV (sections) = (asection **) bfd_realloc (PRIV (sections), amt);
|
|
|
|
|
if (PRIV (sections) == 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
while (PRIV (section_count) <= idx)
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
PRIV (sections)[PRIV (section_count)]
|
|
|
|
|
= new_section (abfd, (int) PRIV (section_count));
|
|
|
|
|
if (PRIV (sections)[PRIV (section_count)] == 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
PRIV (section_count)++;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* tir_sta
|
2002-11-30 09:39:46 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
vax stack commands
|
2002-11-30 09:39:46 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
Handle sta_xxx commands in tir section
|
|
|
|
|
ptr points to data area in record
|
2002-11-30 09:39:46 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
See table 7-3 of the VAX/VMS linker manual. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static unsigned char *
|
|
|
|
|
tir_sta (bfd *abfd, unsigned char *ptr)
|
|
|
|
|
{
|
|
|
|
|
int cmd = *ptr++;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (5, "tir_sta %d\n", cmd);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
|
{
|
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 11:57:26 +02:00
|
|
|
|
/* stack */
|
|
|
|
|
case TIR_S_C_STA_GBL:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack global
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: cs symbol name
|
|
|
|
|
|
|
|
|
|
stack 32 bit value of symbol (high bits set to 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 11:57:26 +02:00
|
|
|
|
{
|
|
|
|
|
char *name;
|
|
|
|
|
vms_symbol_entry *entry;
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
name = _bfd_vms_save_counted_string (ptr);
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
entry = _bfd_vms_enter_symbol (abfd, name);
|
|
|
|
|
if (entry == (vms_symbol_entry *) NULL)
|
|
|
|
|
return 0;
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) (entry->symbol->value), -1);
|
|
|
|
|
ptr += *ptr + 1;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STA_SB:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack signed byte
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: by value
|
|
|
|
|
|
|
|
|
|
stack byte value, sign extend to 32 bit. */
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) *ptr++, -1);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TIR_S_C_STA_SW:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack signed short word
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: sh value
|
|
|
|
|
|
|
|
|
|
stack 16 bit value, sign extend to 32 bit. */
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) bfd_getl16 (ptr), -1);
|
|
|
|
|
ptr += 2;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TIR_S_C_STA_LW:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack signed longword
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: lw value
|
|
|
|
|
|
|
|
|
|
stack 32 bit value. */
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) bfd_getl32 (ptr), -1);
|
|
|
|
|
ptr += 4;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TIR_S_C_STA_PB:
|
|
|
|
|
case TIR_S_C_STA_WPB:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack psect base plus byte offset (word index)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: by section index
|
|
|
|
|
(sh section index)
|
|
|
|
|
by signed byte offset. */
|
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 11:57:26 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned long dummy;
|
|
|
|
|
unsigned int psect;
|
|
|
|
|
|
|
|
|
|
if (cmd == TIR_S_C_STA_PB)
|
|
|
|
|
psect = *ptr++;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
psect = bfd_getl16 (ptr);
|
|
|
|
|
ptr += 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (psect >= PRIV (section_count))
|
2002-01-30 17:07:28 +01:00
|
|
|
|
alloc_section (abfd, psect);
|
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 11:57:26 +02:00
|
|
|
|
|
|
|
|
|
dummy = (long) *ptr++;
|
|
|
|
|
dummy += (PRIV (sections)[psect])->vma;
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) dummy, (int) psect);
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STA_PW:
|
|
|
|
|
case TIR_S_C_STA_WPW:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack psect base plus word offset (word index)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: by section index
|
|
|
|
|
(sh section index)
|
|
|
|
|
sh signed short offset. */
|
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 11:57:26 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned long dummy;
|
|
|
|
|
unsigned int psect;
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
if (cmd == TIR_S_C_STA_PW)
|
|
|
|
|
psect = *ptr++;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
psect = bfd_getl16 (ptr);
|
|
|
|
|
ptr += 2;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
if (psect >= PRIV (section_count))
|
2002-01-30 17:07:28 +01:00
|
|
|
|
alloc_section (abfd, psect);
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
dummy = bfd_getl16 (ptr); ptr+=2;
|
|
|
|
|
dummy += (PRIV (sections)[psect])->vma;
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) dummy, (int) psect);
|
|
|
|
|
}
|
|
|
|
|
break;
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STA_PL:
|
|
|
|
|
case TIR_S_C_STA_WPL:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack psect base plus long offset (word index)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: by section index
|
|
|
|
|
(sh section index)
|
|
|
|
|
lw signed longword offset. */
|
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 11:57:26 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned long dummy;
|
|
|
|
|
unsigned int psect;
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
if (cmd == TIR_S_C_STA_PL)
|
|
|
|
|
psect = *ptr++;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
psect = bfd_getl16 (ptr);
|
|
|
|
|
ptr += 2;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
if (psect >= PRIV (section_count))
|
2002-01-30 17:07:28 +01:00
|
|
|
|
alloc_section (abfd, psect);
|
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 11:57:26 +02:00
|
|
|
|
|
|
|
|
|
dummy = bfd_getl32 (ptr); ptr += 4;
|
|
|
|
|
dummy += (PRIV (sections)[psect])->vma;
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) dummy, (int) psect);
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STA_UB:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack unsigned byte
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: by value
|
|
|
|
|
|
|
|
|
|
stack byte value. */
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) *ptr++, -1);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TIR_S_C_STA_UW:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack unsigned short word
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: sh value
|
|
|
|
|
|
|
|
|
|
stack 16 bit value. */
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) bfd_getl16 (ptr), -1);
|
|
|
|
|
ptr += 2;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TIR_S_C_STA_BFI:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack byte from image
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none. */
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* FALLTHRU */
|
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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STA_WFI:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack byte from image
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none. */
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* FALLTHRU */
|
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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STA_LFI:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack byte from image
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none. */
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("stack-from-image not implemented"));
|
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 11:57:26 +02:00
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
case TIR_S_C_STA_EPM:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack entry point mask
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: cs symbol name
|
|
|
|
|
|
|
|
|
|
stack (unsigned) entry point mask of symbol
|
|
|
|
|
err if symbol is no entry point. */
|
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 11:57:26 +02:00
|
|
|
|
{
|
|
|
|
|
char *name;
|
|
|
|
|
vms_symbol_entry *entry;
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
name = _bfd_vms_save_counted_string (ptr);
|
|
|
|
|
entry = _bfd_vms_enter_symbol (abfd, name);
|
|
|
|
|
if (entry == (vms_symbol_entry *) NULL)
|
|
|
|
|
return 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("stack-entry-mask not fully implemented"));
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) 0, -1);
|
|
|
|
|
ptr += *ptr + 1;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STA_CKARG:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* compare procedure argument
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: cs symbol name
|
|
|
|
|
by argument index
|
|
|
|
|
da argument descriptor
|
|
|
|
|
|
|
|
|
|
compare argument descriptor with symbol argument (ARG$V_PASSMECH)
|
|
|
|
|
and stack TRUE (args match) or FALSE (args dont match) value. */
|
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 11:57:26 +02:00
|
|
|
|
(*_bfd_error_handler) (_("PASSMECH not fully implemented"));
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) 1, -1);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TIR_S_C_STA_LSY:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack local symbol value
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: sh environment index
|
|
|
|
|
cs 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 11:57:26 +02:00
|
|
|
|
{
|
|
|
|
|
int envidx;
|
|
|
|
|
char *name;
|
|
|
|
|
vms_symbol_entry *entry;
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
envidx = bfd_getl16 (ptr);
|
|
|
|
|
ptr += 2;
|
|
|
|
|
name = _bfd_vms_save_counted_string (ptr);
|
|
|
|
|
entry = _bfd_vms_enter_symbol (abfd, name);
|
|
|
|
|
if (entry == (vms_symbol_entry *) NULL)
|
|
|
|
|
return 0;
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("stack-local-symbol not fully implemented"));
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) 0, -1);
|
|
|
|
|
ptr += *ptr + 1;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STA_LIT:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack literal
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: by literal index
|
|
|
|
|
|
|
|
|
|
stack literal. */
|
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 11:57:26 +02:00
|
|
|
|
ptr++;
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) 0, -1);
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("stack-literal not fully implemented"));
|
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 11:57:26 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TIR_S_C_STA_LEPM:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack local symbol entry point mask
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: sh environment index
|
|
|
|
|
cs symbol name
|
|
|
|
|
|
|
|
|
|
stack (unsigned) entry point mask of symbol
|
|
|
|
|
err if symbol is no entry point. */
|
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 11:57:26 +02:00
|
|
|
|
{
|
|
|
|
|
int envidx;
|
|
|
|
|
char *name;
|
|
|
|
|
vms_symbol_entry *entry;
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
envidx = bfd_getl16 (ptr);
|
|
|
|
|
ptr += 2;
|
|
|
|
|
name = _bfd_vms_save_counted_string (ptr);
|
|
|
|
|
entry = _bfd_vms_enter_symbol (abfd, name);
|
|
|
|
|
if (entry == (vms_symbol_entry *) NULL)
|
|
|
|
|
return 0;
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("stack-local-symbol-entry-point-mask not fully implemented"));
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_push (abfd, (uquad) 0, -1);
|
|
|
|
|
ptr += *ptr + 1;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
default:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("reserved STA cmd %d"), ptr[-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 11:57:26 +02:00
|
|
|
|
return NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
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 11:57:26 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
static const char *
|
|
|
|
|
tir_cmd_name (cmd)
|
|
|
|
|
int cmd;
|
|
|
|
|
{
|
|
|
|
|
switch (cmd)
|
|
|
|
|
{
|
|
|
|
|
case TIR_S_C_STO_RSB: return "TIR_S_C_STO_RSB";
|
|
|
|
|
case TIR_S_C_STO_RSW: return "TIR_S_C_STO_RSW";
|
|
|
|
|
case TIR_S_C_STO_RL: return "TIR_S_C_STO_RL";
|
|
|
|
|
case TIR_S_C_STO_VPS: return "TIR_S_C_STO_VPS";
|
|
|
|
|
case TIR_S_C_STO_USB: return "TIR_S_C_STO_USB";
|
|
|
|
|
case TIR_S_C_STO_USW: return "TIR_S_C_STO_USW";
|
|
|
|
|
case TIR_S_C_STO_RUB: return "TIR_S_C_STO_RUB";
|
|
|
|
|
case TIR_S_C_STO_RUW: return "TIR_S_C_STO_RUW";
|
|
|
|
|
case TIR_S_C_STO_PIRR: return "TIR_S_C_STO_PIRR";
|
|
|
|
|
case TIR_S_C_OPR_INSV: return "TIR_S_C_OPR_INSV";
|
|
|
|
|
case TIR_S_C_OPR_DFLIT: return "TIR_S_C_OPR_DFLIT";
|
|
|
|
|
case TIR_S_C_OPR_REDEF: return "TIR_S_C_OPR_REDEF";
|
|
|
|
|
case TIR_S_C_OPR_ROT: return "TIR_S_C_OPR_ROT";
|
|
|
|
|
case TIR_S_C_OPR_USH: return "TIR_S_C_OPR_USH";
|
|
|
|
|
case TIR_S_C_OPR_ASH: return "TIR_S_C_OPR_ASH";
|
|
|
|
|
case TIR_S_C_CTL_DFLOC: return "TIR_S_C_CTL_DFLOC";
|
|
|
|
|
case TIR_S_C_CTL_STLOC: return "TIR_S_C_CTL_STLOC";
|
|
|
|
|
case TIR_S_C_CTL_STKDL: return "TIR_S_C_CTL_STKDL";
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
/* These strings have not been added yet. */
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* tir_sto
|
2002-11-30 09:39:46 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
vax store commands
|
2002-11-30 09:39:46 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
handle sto_xxx commands in tir section
|
|
|
|
|
ptr points to data area in record
|
2002-11-30 09:39:46 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
See table 7-4 of the VAX/VMS linker manual. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static unsigned char *
|
|
|
|
|
tir_sto (bfd *abfd, unsigned char *ptr)
|
|
|
|
|
{
|
|
|
|
|
unsigned long dummy;
|
|
|
|
|
int size;
|
|
|
|
|
int psect;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (5, "tir_sto %d\n", *ptr);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
switch (*ptr++)
|
|
|
|
|
{
|
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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STO_SB:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* store signed byte: pop stack, write byte
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none. */
|
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 11:57:26 +02:00
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
image_write_b (abfd, dummy & 0xff); /* FIXME: check top bits */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TIR_S_C_STO_SW:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* store signed word: pop stack, write word
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none. */
|
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 11:57:26 +02:00
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
image_write_w (abfd, dummy & 0xffff); /* FIXME: check top bits */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TIR_S_C_STO_LW:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* store longword: pop stack, write longword
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none. */
|
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 11:57:26 +02:00
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
image_write_l (abfd, dummy & 0xffffffff); /* FIXME: check top bits */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TIR_S_C_STO_BD:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* store byte displaced: pop stack, sub lc+1, write byte
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none. */
|
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 11:57:26 +02:00
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
dummy -= ((PRIV (sections)[psect])->vma + 1);
|
|
|
|
|
image_write_b (abfd, dummy & 0xff);/* FIXME: check top bits */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TIR_S_C_STO_WD:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* store word displaced: pop stack, sub lc+2, write word
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none. */
|
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 11:57:26 +02:00
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
dummy -= ((PRIV (sections)[psect])->vma + 2);
|
|
|
|
|
image_write_w (abfd, dummy & 0xffff);/* FIXME: check top bits */
|
|
|
|
|
break;
|
2002-01-30 17:07:28 +01: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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STO_LD:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* store long displaced: pop stack, sub lc+4, write long
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none. */
|
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 11:57:26 +02:00
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
dummy -= ((PRIV (sections)[psect])->vma + 4);
|
|
|
|
|
image_write_l (abfd, dummy & 0xffffffff);/* FIXME: check top bits */
|
|
|
|
|
break;
|
2002-01-30 17:07:28 +01: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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STO_LI:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* store short literal: pop stack, write byte
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none. */
|
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 11:57:26 +02:00
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
image_write_b (abfd, dummy & 0xff);/* FIXME: check top bits */
|
|
|
|
|
break;
|
2002-01-30 17:07:28 +01: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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STO_PIDR:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* store position independent data reference: pop stack, write longword
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none.
|
2002-01-30 17:07:28 +01:00
|
|
|
|
FIXME: incomplete ! */
|
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 11:57:26 +02:00
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
image_write_l (abfd, dummy & 0xffffffff);
|
|
|
|
|
break;
|
2002-01-30 17:07:28 +01: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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STO_PICR:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* store position independent code reference: pop stack, write longword
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none.
|
|
|
|
|
FIXME: incomplete ! */
|
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 11:57:26 +02:00
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
image_write_b (abfd, 0x9f);
|
|
|
|
|
image_write_l (abfd, dummy & 0xffffffff);
|
|
|
|
|
break;
|
2002-01-30 17:07:28 +01: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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STO_RIVB:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* store repeated immediate variable bytes
|
2002-11-30 09:39:46 +01:00
|
|
|
|
1-byte count n field followed by n bytes of data
|
|
|
|
|
pop stack, write n bytes <stack> times. */
|
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 11:57:26 +02:00
|
|
|
|
size = *ptr++;
|
|
|
|
|
dummy = (unsigned long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
while (dummy-- > 0L)
|
|
|
|
|
image_dump (abfd, ptr, size, 0);
|
|
|
|
|
ptr += size;
|
|
|
|
|
break;
|
2002-01-30 17:07:28 +01: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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STO_B:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* store byte from top longword. */
|
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 11:57:26 +02:00
|
|
|
|
dummy = (unsigned long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
image_write_b (abfd, dummy & 0xff);
|
|
|
|
|
break;
|
2002-01-30 17:07:28 +01: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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STO_W:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* store word from top longword. */
|
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 11:57:26 +02:00
|
|
|
|
dummy = (unsigned long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
image_write_w (abfd, dummy & 0xffff);
|
|
|
|
|
break;
|
2002-01-30 17:07:28 +01: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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STO_RB:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* store repeated byte from top longword. */
|
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 11:57:26 +02:00
|
|
|
|
size = (unsigned long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
dummy = (unsigned long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
while (size-- > 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
image_write_b (abfd, dummy & 0xff);
|
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 11:57:26 +02:00
|
|
|
|
break;
|
2002-01-30 17:07:28 +01: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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STO_RW:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* store repeated word from top longword. */
|
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 11:57:26 +02:00
|
|
|
|
size = (unsigned long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
dummy = (unsigned long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
while (size-- > 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
image_write_w (abfd, dummy & 0xffff);
|
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 11:57:26 +02:00
|
|
|
|
break;
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_STO_RSB:
|
|
|
|
|
case TIR_S_C_STO_RSW:
|
|
|
|
|
case TIR_S_C_STO_RL:
|
|
|
|
|
case TIR_S_C_STO_VPS:
|
|
|
|
|
case TIR_S_C_STO_USB:
|
|
|
|
|
case TIR_S_C_STO_USW:
|
|
|
|
|
case TIR_S_C_STO_RUB:
|
|
|
|
|
case TIR_S_C_STO_RUW:
|
|
|
|
|
case TIR_S_C_STO_PIRR:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: not implemented"), tir_cmd_name (ptr[-1]));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
default:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("reserved STO cmd %d"), ptr[-1]);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
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 11:57:26 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* stack operator commands
|
|
|
|
|
all 32 bit signed arithmetic
|
|
|
|
|
all word just like a stack calculator
|
|
|
|
|
arguments are popped from stack, results are pushed on stack
|
2002-11-30 09:39:46 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
See table 7-5 of the VAX/VMS linker manual. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static unsigned char *
|
2002-01-30 17:07:28 +01:00
|
|
|
|
tir_opr (abfd, ptr)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
unsigned char *ptr;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
long op1, op2;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (5, "tir_opr %d\n", *ptr);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
switch (*ptr++)
|
|
|
|
|
{
|
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 11:57:26 +02:00
|
|
|
|
/* operation */
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_NOP: /* no-op */
|
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 11:57:26 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_ADD: /* add */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op1 + op2), -1);
|
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_SUB: /* subtract */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op2 - op1), -1);
|
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_MUL: /* multiply */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op1 * op2), -1);
|
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_DIV: /* divide */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
if (op2 == 0)
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) 0, -1);
|
|
|
|
|
else
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op2 / op1), -1);
|
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_AND: /* logical and */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op1 & op2), -1);
|
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_IOR: /* logical inclusive or */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op1 | op2), -1);
|
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_EOR: /* logical exclusive or */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op1 ^ op2), -1);
|
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_NEG: /* negate */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) (-op1), -1);
|
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_COM: /* complement */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) (op1 ^ -1L), -1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_INSV: /* insert field */
|
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 11:57:26 +02:00
|
|
|
|
(void) _bfd_vms_pop (abfd, NULL);
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: not fully implemented"),
|
|
|
|
|
tir_cmd_name (ptr[-1]));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_ASH: /* arithmetic shift */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
2002-01-30 17:07:28 +01:00
|
|
|
|
if (HIGHBIT (op1)) /* shift right */
|
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 11:57:26 +02:00
|
|
|
|
op2 >>= op1;
|
|
|
|
|
else /* shift left */
|
|
|
|
|
op2 <<= op1;
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) op2, -1);
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: not fully implemented"),
|
|
|
|
|
tir_cmd_name (ptr[-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 11:57:26 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_USH: /* unsigned shift */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
2002-01-30 17:07:28 +01:00
|
|
|
|
if (HIGHBIT (op1)) /* shift right */
|
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 11:57:26 +02:00
|
|
|
|
op2 >>= op1;
|
|
|
|
|
else /* shift left */
|
|
|
|
|
op2 <<= op1;
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) op2, -1);
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: not fully implemented"),
|
|
|
|
|
tir_cmd_name (ptr[-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 11:57:26 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_ROT: /* rotate */
|
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 11:57:26 +02:00
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
op2 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
if (HIGHBIT (0)) /* shift right */
|
|
|
|
|
op2 >>= op1;
|
|
|
|
|
else /* shift left */
|
|
|
|
|
op2 <<= op1;
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) op2, -1);
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: not fully implemented"),
|
|
|
|
|
tir_cmd_name (ptr[-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 11:57:26 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_SEL: /* select */
|
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 11:57:26 +02:00
|
|
|
|
if ((long) _bfd_vms_pop (abfd, NULL) & 0x01L)
|
|
|
|
|
(void) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
op1 = (long) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
(void) _bfd_vms_pop (abfd, NULL);
|
|
|
|
|
_bfd_vms_push (abfd, (uquad) op1, -1);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
case TIR_S_C_OPR_REDEF: /* Redefine symbol to current location. */
|
|
|
|
|
case TIR_S_C_OPR_DFLIT: /* Define a literal. */
|
|
|
|
|
(*_bfd_error_handler) (_("%s: not supported"),
|
|
|
|
|
tir_cmd_name (ptr[-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 11:57:26 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("reserved OPR cmd %d"), ptr[-1]);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* control commands
|
2002-11-30 09:39:46 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
See table 7-6 of the VAX/VMS linker manual. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static unsigned char *
|
|
|
|
|
tir_ctl (bfd *abfd, unsigned char *ptr)
|
|
|
|
|
{
|
|
|
|
|
unsigned long dummy;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
unsigned int psect;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (5, "tir_ctl %d\n", *ptr);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
switch (*ptr++)
|
|
|
|
|
{
|
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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_CTL_SETRB:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Set relocation base: pop stack, set image location counter
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none. */
|
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 11:57:26 +02:00
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
|
|
|
|
if (psect >= PRIV (section_count))
|
2002-01-30 17:07:28 +01:00
|
|
|
|
alloc_section (abfd, psect);
|
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 11:57:26 +02:00
|
|
|
|
image_set_ptr (abfd, (int) psect, (uquad) dummy);
|
|
|
|
|
break;
|
2002-01-30 17:07:28 +01: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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_CTL_AUGRB:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Augment relocation base: increment image location counter by offset
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: lw offset value. */
|
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 11:57:26 +02:00
|
|
|
|
dummy = bfd_getl32 (ptr);
|
|
|
|
|
image_inc_ptr (abfd, (uquad) dummy);
|
|
|
|
|
break;
|
2002-01-30 17:07:28 +01: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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_CTL_DFLOC:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Define location: pop index, save location counter under index
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none. */
|
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 11:57:26 +02:00
|
|
|
|
dummy = _bfd_vms_pop (abfd, NULL);
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: not fully implemented"),
|
|
|
|
|
tir_cmd_name (ptr[-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 11:57:26 +02:00
|
|
|
|
break;
|
2002-01-30 17:07:28 +01: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 11:57:26 +02:00
|
|
|
|
case TIR_S_C_CTL_STLOC:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Set location: pop index, restore location counter from index
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none. */
|
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 11:57:26 +02:00
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: not fully implemented"),
|
|
|
|
|
tir_cmd_name (ptr[-1]));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
2002-01-30 17:07:28 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case TIR_S_C_CTL_STKDL:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Stack defined location: pop index, push location counter from index
|
2002-11-30 09:39:46 +01:00
|
|
|
|
arg: none. */
|
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 11:57:26 +02:00
|
|
|
|
dummy = _bfd_vms_pop (abfd, &psect);
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("%s: not fully implemented"),
|
|
|
|
|
tir_cmd_name (ptr[-1]));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
2002-01-30 17:07:28 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
default:
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("reserved CTL cmd %d"), ptr[-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 11:57:26 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return ptr;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Handle command from TIR section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static unsigned char *
|
|
|
|
|
tir_cmd (bfd *abfd, unsigned char *ptr)
|
|
|
|
|
{
|
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 11:57:26 +02:00
|
|
|
|
struct
|
|
|
|
|
{
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int mincod;
|
|
|
|
|
int maxcod;
|
2000-12-25 15:42:42 +01:00
|
|
|
|
unsigned char * (*explain) (bfd *, unsigned char *);
|
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 11:57:26 +02:00
|
|
|
|
}
|
|
|
|
|
tir_table[] =
|
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
{ 0, TIR_S_C_MAXSTACOD, tir_sta },
|
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 11:57:26 +02:00
|
|
|
|
{ TIR_S_C_MINSTOCOD, TIR_S_C_MAXSTOCOD, tir_sto },
|
|
|
|
|
{ TIR_S_C_MINOPRCOD, TIR_S_C_MAXOPRCOD, tir_opr },
|
|
|
|
|
{ TIR_S_C_MINCTLCOD, TIR_S_C_MAXCTLCOD, tir_ctl },
|
|
|
|
|
{ -1, -1, NULL }
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (4, "tir_cmd %d/%x\n", *ptr, *ptr);
|
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 11:57:26 +02:00
|
|
|
|
_bfd_hexdump (8, ptr, 16, (int) ptr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (*ptr & 0x80) /* store immediate */
|
|
|
|
|
{
|
|
|
|
|
i = 128 - (*ptr++ & 0x7f);
|
|
|
|
|
image_dump (abfd, ptr, i, 0);
|
|
|
|
|
ptr += i;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
while (tir_table[i].mincod >= 0)
|
|
|
|
|
{
|
2000-12-25 15:42:42 +01:00
|
|
|
|
if ( (tir_table[i].mincod <= *ptr)
|
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 11:57:26 +02:00
|
|
|
|
&& (*ptr <= tir_table[i].maxcod))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
ptr = tir_table[i].explain (abfd, ptr);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
if (tir_table[i].mincod < 0)
|
|
|
|
|
{
|
2002-01-30 17:07:28 +01:00
|
|
|
|
(*_bfd_error_handler) (_("obj code %d not found"), *ptr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
ptr = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Handle command from ETIR section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
etir_cmd (abfd, cmd, ptr)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
int cmd;
|
|
|
|
|
unsigned char *ptr;
|
|
|
|
|
{
|
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 11:57:26 +02:00
|
|
|
|
static struct
|
|
|
|
|
{
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int mincod;
|
|
|
|
|
int maxcod;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean (*explain) PARAMS ((bfd *, int, unsigned char *));
|
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 11:57:26 +02:00
|
|
|
|
}
|
|
|
|
|
etir_table[] =
|
|
|
|
|
{
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{ ETIR_S_C_MINSTACOD, ETIR_S_C_MAXSTACOD, etir_sta },
|
|
|
|
|
{ ETIR_S_C_MINSTOCOD, ETIR_S_C_MAXSTOCOD, etir_sto },
|
|
|
|
|
{ ETIR_S_C_MINOPRCOD, ETIR_S_C_MAXOPRCOD, etir_opr },
|
|
|
|
|
{ ETIR_S_C_MINCTLCOD, ETIR_S_C_MAXCTLCOD, etir_ctl },
|
|
|
|
|
{ ETIR_S_C_MINSTCCOD, ETIR_S_C_MAXSTCCOD, etir_stc },
|
|
|
|
|
{ -1, -1, NULL }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (4, "etir_cmd %d/%x\n", cmd, cmd);
|
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 11:57:26 +02:00
|
|
|
|
_bfd_hexdump (8, ptr, 16, (int) ptr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
while (etir_table[i].mincod >= 0)
|
|
|
|
|
{
|
2000-12-25 15:42:42 +01:00
|
|
|
|
if ( (etir_table[i].mincod <= cmd)
|
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 11:57:26 +02:00
|
|
|
|
&& (cmd <= etir_table[i].maxcod))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (!etir_table[i].explain (abfd, cmd, ptr))
|
|
|
|
|
return -1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (4, "etir_cmd: = 0\n");
|
|
|
|
|
#endif
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Text Information and Relocation Records (OBJ$C_TIR)
|
2002-01-30 17:07:28 +01:00
|
|
|
|
handle tir record. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
analyze_tir (abfd, ptr, length)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
unsigned char *ptr;
|
|
|
|
|
unsigned int length;
|
|
|
|
|
{
|
|
|
|
|
unsigned char *maxptr;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (3, "analyze_tir: %d bytes\n", length);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
maxptr = ptr + length;
|
|
|
|
|
|
|
|
|
|
while (ptr < maxptr)
|
|
|
|
|
{
|
|
|
|
|
ptr = tir_cmd (abfd, ptr);
|
|
|
|
|
if (ptr == 0)
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Text Information and Relocation Records (EOBJ$C_ETIR)
|
2002-01-30 17:07:28 +01:00
|
|
|
|
handle etir record. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
analyze_etir (abfd, ptr, length)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
unsigned char *ptr;
|
|
|
|
|
unsigned int length;
|
|
|
|
|
{
|
|
|
|
|
int cmd;
|
|
|
|
|
unsigned char *maxptr;
|
|
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (3, "analyze_etir: %d bytes\n", length);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
maxptr = ptr + length;
|
|
|
|
|
|
|
|
|
|
while (ptr < maxptr)
|
|
|
|
|
{
|
|
|
|
|
cmd = bfd_getl16 (ptr);
|
|
|
|
|
length = bfd_getl16 (ptr + 2);
|
|
|
|
|
result = etir_cmd (abfd, cmd, ptr+4);
|
|
|
|
|
if (result != 0)
|
|
|
|
|
break;
|
|
|
|
|
ptr += length;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (3, "analyze_etir: = %d\n", result);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Process ETIR record
|
|
|
|
|
Return 0 on success, -1 on error. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
_bfd_vms_slurp_tir (abfd, objtype)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
int objtype;
|
|
|
|
|
{
|
|
|
|
|
int result;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (2, "TIR/ETIR\n");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
switch (objtype)
|
|
|
|
|
{
|
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 11:57:26 +02:00
|
|
|
|
case EOBJ_S_C_ETIR:
|
|
|
|
|
PRIV (vms_rec) += 4; /* skip type, size */
|
|
|
|
|
PRIV (rec_size) -= 4;
|
|
|
|
|
result = analyze_etir (abfd, PRIV (vms_rec), (unsigned) PRIV (rec_size));
|
|
|
|
|
break;
|
|
|
|
|
case OBJ_S_C_TIR:
|
|
|
|
|
PRIV (vms_rec) += 1; /* skip type */
|
|
|
|
|
PRIV (rec_size) -= 1;
|
|
|
|
|
result = analyze_tir (abfd, PRIV (vms_rec), (unsigned) PRIV (rec_size));
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
result = -1;
|
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Process EDBG record
|
|
|
|
|
Return 0 on success, -1 on error
|
2000-12-25 15:42:42 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
Not implemented yet. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
_bfd_vms_slurp_dbg (abfd, objtype)
|
|
|
|
|
bfd *abfd;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
int objtype ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (2, "DBG/EDBG\n");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
abfd->flags |= (HAS_DEBUG | HAS_LINENO);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Process ETBT record
|
|
|
|
|
Return 0 on success, -1 on error
|
2000-12-25 15:42:42 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
Not implemented yet. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
_bfd_vms_slurp_tbt (abfd, objtype)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
|
int objtype ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (2, "TBT/ETBT\n");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Process LNK record
|
|
|
|
|
Return 0 on success, -1 on error
|
2000-12-25 15:42:42 +01:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
Not implemented yet. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
_bfd_vms_slurp_lnk (abfd, objtype)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
|
int objtype ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (2, "LNK\n");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* WRITE ETIR SECTION
|
|
|
|
|
|
|
|
|
|
This is still under construction and therefore not documented. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static void start_etir_record
|
|
|
|
|
PARAMS ((bfd *abfd, int index, uquad offset, bfd_boolean justoffset));
|
|
|
|
|
static void sto_imm
|
|
|
|
|
PARAMS ((bfd *abfd, vms_section *sptr, bfd_vma vaddr, int index));
|
|
|
|
|
static void end_etir_record
|
|
|
|
|
PARAMS ((bfd *abfd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
sto_imm (abfd, sptr, vaddr, index)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
vms_section *sptr;
|
|
|
|
|
bfd_vma vaddr;
|
|
|
|
|
int index;
|
|
|
|
|
{
|
|
|
|
|
int size;
|
|
|
|
|
int ssize;
|
|
|
|
|
unsigned char *cptr;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (8, "sto_imm %d bytes\n", sptr->size);
|
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 11:57:26 +02:00
|
|
|
|
_bfd_hexdump (9, sptr->contents, (int) sptr->size, (int) vaddr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
ssize = sptr->size;
|
|
|
|
|
cptr = sptr->contents;
|
|
|
|
|
|
|
|
|
|
while (ssize > 0)
|
|
|
|
|
{
|
|
|
|
|
size = ssize; /* try all the rest */
|
|
|
|
|
|
|
|
|
|
if (_bfd_vms_output_check (abfd, size) < 0)
|
|
|
|
|
{ /* doesn't fit, split ! */
|
|
|
|
|
end_etir_record (abfd);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
start_etir_record (abfd, index, vaddr, FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
size = _bfd_vms_output_check (abfd, 0); /* get max size */
|
|
|
|
|
if (size > ssize) /* more than what's left ? */
|
|
|
|
|
size = ssize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_bfd_vms_output_begin (abfd, ETIR_S_C_STO_IMM, -1);
|
2000-12-25 15:42:42 +01:00
|
|
|
|
_bfd_vms_output_long (abfd, (unsigned long) (size));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_dump (abfd, cptr, size);
|
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (10, "dumped %d bytes\n", size);
|
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 11:57:26 +02:00
|
|
|
|
_bfd_hexdump (10, cptr, (int) size, (int) vaddr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
vaddr += size;
|
|
|
|
|
ssize -= size;
|
|
|
|
|
cptr += size;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Start ETIR record for section #index at virtual addr offset. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
start_etir_record (abfd, index, offset, justoffset)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
int index;
|
|
|
|
|
uquad offset;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean justoffset;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (!justoffset)
|
|
|
|
|
{
|
|
|
|
|
_bfd_vms_output_begin (abfd, EOBJ_S_C_ETIR, -1); /* one ETIR per section */
|
|
|
|
|
_bfd_vms_output_push (abfd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_bfd_vms_output_begin (abfd, ETIR_S_C_STA_PQ, -1); /* push start offset */
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_output_long (abfd, (unsigned long) index);
|
|
|
|
|
_bfd_vms_output_quad (abfd, (uquad) offset);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
|
|
|
|
|
_bfd_vms_output_begin (abfd, ETIR_S_C_CTL_SETRB, -1); /* start = pop () */
|
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* End etir record. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void
|
|
|
|
|
end_etir_record (abfd)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
|
|
|
|
_bfd_vms_output_pop (abfd);
|
2000-12-25 15:42:42 +01:00
|
|
|
|
_bfd_vms_output_end (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Write section contents for bfd abfd. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
_bfd_vms_write_tir (abfd, objtype)
|
|
|
|
|
bfd *abfd;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
int objtype ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
asection *section;
|
|
|
|
|
vms_section *sptr;
|
|
|
|
|
int nextoffset;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (2, "vms_write_tir (%p, %d)\n", abfd, objtype);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
_bfd_vms_output_alignment (abfd, 4);
|
|
|
|
|
|
|
|
|
|
nextoffset = 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 11:57:26 +02:00
|
|
|
|
PRIV (vms_linkage_index) = 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Dump all other sections. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
section = abfd->sections;
|
|
|
|
|
|
|
|
|
|
while (section != NULL)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_debug (4, "writing %d. section '%s' (%d bytes)\n",
|
|
|
|
|
section->index, section->name,
|
|
|
|
|
(int) (section->_raw_size));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (section->flags & SEC_RELOC)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if ((i = section->reloc_count) <= 0)
|
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler) (_("SEC_RELOC with no relocs in section %s"),
|
|
|
|
|
section->name);
|
|
|
|
|
}
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
arelent **rptr;
|
|
|
|
|
_bfd_vms_debug (4, "%d relocations:\n", i);
|
|
|
|
|
rptr = section->orelocation;
|
|
|
|
|
while (i-- > 0)
|
|
|
|
|
{
|
|
|
|
|
_bfd_vms_debug (4, "sym %s in sec %s, value %08lx, addr %08lx, off %08lx, len %d: %s\n",
|
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 11:57:26 +02:00
|
|
|
|
(*(*rptr)->sym_ptr_ptr)->name,
|
|
|
|
|
(*(*rptr)->sym_ptr_ptr)->section->name,
|
|
|
|
|
(long) (*(*rptr)->sym_ptr_ptr)->value,
|
|
|
|
|
(*rptr)->address, (*rptr)->addend,
|
|
|
|
|
bfd_get_reloc_size ((*rptr)->howto),
|
|
|
|
|
(*rptr)->howto->name);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
rptr++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((section->flags & SEC_HAS_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 11:57:26 +02:00
|
|
|
|
&& (! bfd_is_com_section (section)))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-01-30 17:07:28 +01:00
|
|
|
|
bfd_vma vaddr; /* Virtual addr in section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
sptr = _bfd_get_vms_section (abfd, section->index);
|
|
|
|
|
if (sptr == NULL)
|
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_no_contents);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2000-12-25 15:42:42 +01:00
|
|
|
|
vaddr = (bfd_vma) (sptr->offset);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
start_etir_record (abfd, section->index, (uquad) sptr->offset,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE);
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
while (sptr != NULL) /* one STA_PQ, CTL_SETRB per vms_section */
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
if (section->flags & SEC_RELOC) /* check for relocs */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
arelent **rptr = section->orelocation;
|
|
|
|
|
int i = section->reloc_count;
|
2002-01-30 17:07:28 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
bfd_size_type addr = (*rptr)->address;
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd_size_type len = bfd_get_reloc_size ((*rptr)->howto);
|
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 11:57:26 +02:00
|
|
|
|
if (sptr->offset < addr) /* sptr starts before reloc */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd_size_type before = addr - sptr->offset;
|
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 11:57:26 +02:00
|
|
|
|
if (sptr->size <= before) /* complete before */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
sto_imm (abfd, sptr, vaddr, section->index);
|
|
|
|
|
vaddr += sptr->size;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else /* partly before */
|
|
|
|
|
{
|
|
|
|
|
int after = sptr->size - before;
|
|
|
|
|
sptr->size = before;
|
|
|
|
|
sto_imm (abfd, sptr, vaddr, section->index);
|
|
|
|
|
vaddr += sptr->size;
|
|
|
|
|
sptr->contents += before;
|
|
|
|
|
sptr->offset += before;
|
|
|
|
|
sptr->size = after;
|
|
|
|
|
}
|
|
|
|
|
}
|
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 11:57:26 +02:00
|
|
|
|
else if (sptr->offset == addr) /* sptr starts at reloc */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
asymbol *sym = *(*rptr)->sym_ptr_ptr;
|
|
|
|
|
asection *sec = sym->section;
|
|
|
|
|
|
|
|
|
|
switch ((*rptr)->howto->type)
|
|
|
|
|
{
|
|
|
|
|
case ALPHA_R_IGNORE:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ALPHA_R_REFLONG:
|
|
|
|
|
{
|
|
|
|
|
if (bfd_is_und_section (sym->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 11:57:26 +02:00
|
|
|
|
int slen = strlen ((char *) sym->name);
|
|
|
|
|
char *hash;
|
|
|
|
|
|
|
|
|
|
if (_bfd_vms_output_check (abfd, slen) < 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
end_etir_record (abfd);
|
|
|
|
|
start_etir_record (abfd,
|
|
|
|
|
section->index,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
vaddr, FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
_bfd_vms_output_begin (abfd,
|
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 11:57:26 +02:00
|
|
|
|
ETIR_S_C_STO_GBL_LW,
|
|
|
|
|
-1);
|
|
|
|
|
hash = (_bfd_vms_length_hash_symbol
|
|
|
|
|
(abfd, sym->name, EOBJ_S_C_SYMSIZ));
|
|
|
|
|
_bfd_vms_output_counted (abfd, hash);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
}
|
|
|
|
|
else if (bfd_is_abs_section (sym->section))
|
|
|
|
|
{
|
|
|
|
|
if (_bfd_vms_output_check (abfd, 16) < 0)
|
|
|
|
|
{
|
|
|
|
|
end_etir_record (abfd);
|
|
|
|
|
start_etir_record (abfd,
|
|
|
|
|
section->index,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
vaddr, FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
_bfd_vms_output_begin (abfd,
|
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 11:57:26 +02:00
|
|
|
|
ETIR_S_C_STA_LW,
|
|
|
|
|
-1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_quad (abfd,
|
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 11:57:26 +02:00
|
|
|
|
(uquad) sym->value);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
_bfd_vms_output_begin (abfd,
|
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 11:57:26 +02:00
|
|
|
|
ETIR_S_C_STO_LW,
|
|
|
|
|
-1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (_bfd_vms_output_check (abfd, 32) < 0)
|
|
|
|
|
{
|
|
|
|
|
end_etir_record (abfd);
|
|
|
|
|
start_etir_record (abfd,
|
|
|
|
|
section->index,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
vaddr, FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
_bfd_vms_output_begin (abfd,
|
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 11:57:26 +02:00
|
|
|
|
ETIR_S_C_STA_PQ,
|
|
|
|
|
-1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_long (abfd,
|
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 11:57:26 +02:00
|
|
|
|
(unsigned long) (sec->index));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_quad (abfd,
|
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 11:57:26 +02:00
|
|
|
|
((uquad) (*rptr)->addend
|
|
|
|
|
+ (uquad) sym->value));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
_bfd_vms_output_begin (abfd,
|
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 11:57:26 +02:00
|
|
|
|
ETIR_S_C_STO_LW,
|
|
|
|
|
-1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ALPHA_R_REFQUAD:
|
|
|
|
|
{
|
|
|
|
|
if (bfd_is_und_section (sym->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 11:57:26 +02:00
|
|
|
|
int slen = strlen ((char *) sym->name);
|
|
|
|
|
char *hash;
|
|
|
|
|
if (_bfd_vms_output_check (abfd, slen) < 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
end_etir_record (abfd);
|
|
|
|
|
start_etir_record (abfd,
|
|
|
|
|
section->index,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
vaddr, FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
_bfd_vms_output_begin (abfd,
|
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 11:57:26 +02:00
|
|
|
|
ETIR_S_C_STO_GBL,
|
|
|
|
|
-1);
|
|
|
|
|
hash = (_bfd_vms_length_hash_symbol
|
|
|
|
|
(abfd, sym->name, EOBJ_S_C_SYMSIZ));
|
|
|
|
|
_bfd_vms_output_counted (abfd, hash);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
}
|
|
|
|
|
else if (bfd_is_abs_section (sym->section))
|
|
|
|
|
{
|
|
|
|
|
if (_bfd_vms_output_check (abfd, 16) < 0)
|
|
|
|
|
{
|
|
|
|
|
end_etir_record (abfd);
|
|
|
|
|
start_etir_record (abfd,
|
|
|
|
|
section->index,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
vaddr, FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
_bfd_vms_output_begin (abfd,
|
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 11:57:26 +02:00
|
|
|
|
ETIR_S_C_STA_QW,
|
|
|
|
|
-1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_quad (abfd,
|
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 11:57:26 +02:00
|
|
|
|
(uquad) sym->value);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
_bfd_vms_output_begin (abfd,
|
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 11:57:26 +02:00
|
|
|
|
ETIR_S_C_STO_QW,
|
|
|
|
|
-1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (_bfd_vms_output_check (abfd, 32) < 0)
|
|
|
|
|
{
|
|
|
|
|
end_etir_record (abfd);
|
|
|
|
|
start_etir_record (abfd,
|
|
|
|
|
section->index,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
vaddr, FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
_bfd_vms_output_begin (abfd,
|
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 11:57:26 +02:00
|
|
|
|
ETIR_S_C_STA_PQ,
|
|
|
|
|
-1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_long (abfd,
|
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 11:57:26 +02:00
|
|
|
|
(unsigned long) (sec->index));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_quad (abfd,
|
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 11:57:26 +02:00
|
|
|
|
((uquad) (*rptr)->addend
|
|
|
|
|
+ (uquad) sym->value));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
_bfd_vms_output_begin (abfd,
|
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 11:57:26 +02:00
|
|
|
|
ETIR_S_C_STO_OFF,
|
|
|
|
|
-1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ALPHA_R_HINT:
|
|
|
|
|
{
|
|
|
|
|
int hint_size;
|
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 11:57:26 +02:00
|
|
|
|
char *hash ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
hint_size = sptr->size;
|
|
|
|
|
sptr->size = len;
|
|
|
|
|
sto_imm (abfd, sptr, vaddr, section->index);
|
|
|
|
|
sptr->size = hint_size;
|
|
|
|
|
#if 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 11:57:26 +02:00
|
|
|
|
vms_output_begin (abfd,
|
|
|
|
|
ETIR_S_C_STO_HINT_GBL, -1);
|
|
|
|
|
vms_output_long (abfd,
|
|
|
|
|
(unsigned long) (sec->index));
|
|
|
|
|
vms_output_quad (abfd, (uquad) addr);
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
hash = (_bfd_vms_length_hash_symbol
|
|
|
|
|
(abfd, sym->name, EOBJ_S_C_SYMSIZ));
|
|
|
|
|
vms_output_counted (abfd, hash);
|
|
|
|
|
|
|
|
|
|
vms_output_flush (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ALPHA_R_LINKAGE:
|
|
|
|
|
{
|
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 11:57:26 +02:00
|
|
|
|
char *hash;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (_bfd_vms_output_check (abfd, 64) < 0)
|
|
|
|
|
{
|
|
|
|
|
end_etir_record (abfd);
|
|
|
|
|
start_etir_record (abfd, section->index,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
vaddr, FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
_bfd_vms_output_begin (abfd,
|
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 11:57:26 +02:00
|
|
|
|
ETIR_S_C_STC_LP_PSB,
|
|
|
|
|
-1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_long (abfd,
|
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 11:57:26 +02:00
|
|
|
|
(unsigned long) PRIV (vms_linkage_index));
|
|
|
|
|
PRIV (vms_linkage_index) += 2;
|
|
|
|
|
hash = (_bfd_vms_length_hash_symbol
|
|
|
|
|
(abfd, sym->name, EOBJ_S_C_SYMSIZ));
|
|
|
|
|
_bfd_vms_output_counted (abfd, hash);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_byte (abfd, 0);
|
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ALPHA_R_CODEADDR:
|
|
|
|
|
{
|
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 11:57:26 +02:00
|
|
|
|
int slen = strlen ((char *) sym->name);
|
|
|
|
|
char *hash;
|
|
|
|
|
if (_bfd_vms_output_check (abfd, slen) < 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
end_etir_record (abfd);
|
|
|
|
|
start_etir_record (abfd,
|
|
|
|
|
section->index,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
vaddr, FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
_bfd_vms_output_begin (abfd,
|
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 11:57:26 +02:00
|
|
|
|
ETIR_S_C_STO_CA,
|
|
|
|
|
-1);
|
|
|
|
|
hash = (_bfd_vms_length_hash_symbol
|
|
|
|
|
(abfd, sym->name, EOBJ_S_C_SYMSIZ));
|
|
|
|
|
_bfd_vms_output_counted (abfd, hash);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
(*_bfd_error_handler) (_("Unhandled relocation %s"),
|
|
|
|
|
(*rptr)->howto->name);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
vaddr += len;
|
|
|
|
|
|
|
|
|
|
if (len == sptr->size)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
sptr->contents += len;
|
|
|
|
|
sptr->offset += len;
|
|
|
|
|
sptr->size -= len;
|
|
|
|
|
i--;
|
|
|
|
|
rptr++;
|
|
|
|
|
}
|
|
|
|
|
}
|
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 11:57:26 +02:00
|
|
|
|
else /* sptr starts after reloc */
|
1999-05-03 09:29:11 +02: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 11:57:26 +02:00
|
|
|
|
i--; /* check next reloc */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
rptr++;
|
|
|
|
|
}
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
if (i==0) /* all reloc checked */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (sptr->size > 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 11:57:26 +02:00
|
|
|
|
/* dump rest */
|
|
|
|
|
sto_imm (abfd, sptr, vaddr, section->index);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
vaddr += sptr->size;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} /* for (;;) */
|
|
|
|
|
} /* if SEC_RELOC */
|
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 11:57:26 +02:00
|
|
|
|
else /* no relocs, just dump */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
sto_imm (abfd, sptr, vaddr, section->index);
|
|
|
|
|
vaddr += sptr->size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sptr = sptr->next;
|
|
|
|
|
|
|
|
|
|
} /* while (sptr != 0) */
|
|
|
|
|
|
|
|
|
|
end_etir_record (abfd);
|
|
|
|
|
|
|
|
|
|
} /* has_contents */
|
|
|
|
|
|
|
|
|
|
section = section->next;
|
|
|
|
|
}
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
_bfd_vms_output_alignment (abfd, 2);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Write traceback data for bfd abfd. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
_bfd_vms_write_tbt (abfd, objtype)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
|
int objtype ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (2, "vms_write_tbt (%p, %d)\n", abfd, objtype);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-30 17:07:28 +01:00
|
|
|
|
/* Write debug info for bfd abfd. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
_bfd_vms_write_dbg (abfd, objtype)
|
1999-07-12 12:30:21 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
|
int objtype ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (2, "vms_write_dbg (%p, objtype)\n", abfd, objtype);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|