OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-6.8/] [bfd/] [elf64-mmix.c] - Diff between revs 827 and 840

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 827 Rev 840
/* MMIX-specific support for 64-bit ELF.
/* MMIX-specific support for 64-bit ELF.
   Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009
   Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
   Contributed by Hans-Peter Nilsson <hp@bitrange.com>
   Contributed by Hans-Peter Nilsson <hp@bitrange.com>
 
 
   This file is part of BFD, the Binary File Descriptor library.
   This file is part of BFD, the Binary File Descriptor library.
 
 
   This program is free software; you can redistribute it and/or modify
   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
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
   MA 02110-1301, USA.  */
   MA 02110-1301, USA.  */
 
 
 
 
/* No specific ABI or "processor-specific supplement" defined.  */
/* No specific ABI or "processor-specific supplement" defined.  */
 
 
/* TODO:
/* TODO:
   - "Traditional" linker relaxation (shrinking whole sections).
   - "Traditional" linker relaxation (shrinking whole sections).
   - Merge reloc stubs jumping to same location.
   - Merge reloc stubs jumping to same location.
   - GETA stub relaxation (call a stub for out of range new
   - GETA stub relaxation (call a stub for out of range new
     R_MMIX_GETA_STUBBABLE).  */
     R_MMIX_GETA_STUBBABLE).  */
 
 
#include "sysdep.h"
#include "sysdep.h"
#include "bfd.h"
#include "bfd.h"
#include "libbfd.h"
#include "libbfd.h"
#include "elf-bfd.h"
#include "elf-bfd.h"
#include "elf/mmix.h"
#include "elf/mmix.h"
#include "opcode/mmix.h"
#include "opcode/mmix.h"
 
 
#define MINUS_ONE       (((bfd_vma) 0) - 1)
#define MINUS_ONE       (((bfd_vma) 0) - 1)
 
 
#define MAX_PUSHJ_STUB_SIZE (5 * 4)
#define MAX_PUSHJ_STUB_SIZE (5 * 4)
 
 
/* Put these everywhere in new code.  */
/* Put these everywhere in new code.  */
#define FATAL_DEBUG                                             \
#define FATAL_DEBUG                                             \
 _bfd_abort (__FILE__, __LINE__,                                \
 _bfd_abort (__FILE__, __LINE__,                                \
             "Internal: Non-debugged code (test-case missing)")
             "Internal: Non-debugged code (test-case missing)")
 
 
#define BAD_CASE(x)                             \
#define BAD_CASE(x)                             \
 _bfd_abort (__FILE__, __LINE__,                \
 _bfd_abort (__FILE__, __LINE__,                \
             "bad case for " #x)
             "bad case for " #x)
 
 
struct _mmix_elf_section_data
struct _mmix_elf_section_data
{
{
  struct bfd_elf_section_data elf;
  struct bfd_elf_section_data elf;
  union
  union
  {
  {
    struct bpo_reloc_section_info *reloc;
    struct bpo_reloc_section_info *reloc;
    struct bpo_greg_section_info *greg;
    struct bpo_greg_section_info *greg;
  } bpo;
  } bpo;
 
 
  struct pushj_stub_info
  struct pushj_stub_info
  {
  {
    /* Maximum number of stubs needed for this section.  */
    /* Maximum number of stubs needed for this section.  */
    bfd_size_type n_pushj_relocs;
    bfd_size_type n_pushj_relocs;
 
 
    /* Size of stubs after a mmix_elf_relax_section round.  */
    /* Size of stubs after a mmix_elf_relax_section round.  */
    bfd_size_type stubs_size_sum;
    bfd_size_type stubs_size_sum;
 
 
    /* Per-reloc stubs_size_sum information.  The stubs_size_sum member is the sum
    /* Per-reloc stubs_size_sum information.  The stubs_size_sum member is the sum
       of these.  Allocated in mmix_elf_check_common_relocs.  */
       of these.  Allocated in mmix_elf_check_common_relocs.  */
    bfd_size_type *stub_size;
    bfd_size_type *stub_size;
 
 
    /* Offset of next stub during relocation.  Somewhat redundant with the
    /* Offset of next stub during relocation.  Somewhat redundant with the
       above: error coverage is easier and we don't have to reset the
       above: error coverage is easier and we don't have to reset the
       stubs_size_sum for relocation.  */
       stubs_size_sum for relocation.  */
    bfd_size_type stub_offset;
    bfd_size_type stub_offset;
  } pjs;
  } pjs;
};
};
 
 
#define mmix_elf_section_data(sec) \
#define mmix_elf_section_data(sec) \
  ((struct _mmix_elf_section_data *) elf_section_data (sec))
  ((struct _mmix_elf_section_data *) elf_section_data (sec))
 
 
/* For each section containing a base-plus-offset (BPO) reloc, we attach
/* For each section containing a base-plus-offset (BPO) reloc, we attach
   this struct as mmix_elf_section_data (section)->bpo, which is otherwise
   this struct as mmix_elf_section_data (section)->bpo, which is otherwise
   NULL.  */
   NULL.  */
struct bpo_reloc_section_info
struct bpo_reloc_section_info
  {
  {
    /* The base is 1; this is the first number in this section.  */
    /* The base is 1; this is the first number in this section.  */
    size_t first_base_plus_offset_reloc;
    size_t first_base_plus_offset_reloc;
 
 
    /* Number of BPO-relocs in this section.  */
    /* Number of BPO-relocs in this section.  */
    size_t n_bpo_relocs_this_section;
    size_t n_bpo_relocs_this_section;
 
 
    /* Running index, used at relocation time.  */
    /* Running index, used at relocation time.  */
    size_t bpo_index;
    size_t bpo_index;
 
 
    /* We don't have access to the bfd_link_info struct in
    /* We don't have access to the bfd_link_info struct in
       mmix_final_link_relocate.  What we really want to get at is the
       mmix_final_link_relocate.  What we really want to get at is the
       global single struct greg_relocation, so we stash it here.  */
       global single struct greg_relocation, so we stash it here.  */
    asection *bpo_greg_section;
    asection *bpo_greg_section;
  };
  };
 
 
/* Helper struct (in global context) for the one below.
/* Helper struct (in global context) for the one below.
   There's one of these created for every BPO reloc.  */
   There's one of these created for every BPO reloc.  */
struct bpo_reloc_request
struct bpo_reloc_request
  {
  {
    bfd_vma value;
    bfd_vma value;
 
 
    /* Valid after relaxation.  The base is 0; the first register number
    /* Valid after relaxation.  The base is 0; the first register number
       must be added.  The offset is in range 0..255.  */
       must be added.  The offset is in range 0..255.  */
    size_t regindex;
    size_t regindex;
    size_t offset;
    size_t offset;
 
 
    /* The order number for this BPO reloc, corresponding to the order in
    /* The order number for this BPO reloc, corresponding to the order in
       which BPO relocs were found.  Used to create an index after reloc
       which BPO relocs were found.  Used to create an index after reloc
       requests are sorted.  */
       requests are sorted.  */
    size_t bpo_reloc_no;
    size_t bpo_reloc_no;
 
 
    /* Set when the value is computed.  Better than coding "guard values"
    /* Set when the value is computed.  Better than coding "guard values"
       into the other members.  Is FALSE only for BPO relocs in a GC:ed
       into the other members.  Is FALSE only for BPO relocs in a GC:ed
       section.  */
       section.  */
    bfd_boolean valid;
    bfd_boolean valid;
  };
  };
 
 
/* We attach this as mmix_elf_section_data (sec)->bpo in the linker-allocated
/* We attach this as mmix_elf_section_data (sec)->bpo in the linker-allocated
   greg contents section (MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME),
   greg contents section (MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME),
   which is linked into the register contents section
   which is linked into the register contents section
   (MMIX_REG_CONTENTS_SECTION_NAME).  This section is created by the
   (MMIX_REG_CONTENTS_SECTION_NAME).  This section is created by the
   linker; using the same hook as for usual with BPO relocs does not
   linker; using the same hook as for usual with BPO relocs does not
   collide.  */
   collide.  */
struct bpo_greg_section_info
struct bpo_greg_section_info
  {
  {
    /* After GC, this reflects the number of remaining, non-excluded
    /* After GC, this reflects the number of remaining, non-excluded
       BPO-relocs.  */
       BPO-relocs.  */
    size_t n_bpo_relocs;
    size_t n_bpo_relocs;
 
 
    /* This is the number of allocated bpo_reloc_requests; the size of
    /* This is the number of allocated bpo_reloc_requests; the size of
       sorted_indexes.  Valid after the check.*relocs functions are called
       sorted_indexes.  Valid after the check.*relocs functions are called
       for all incoming sections.  It includes the number of BPO relocs in
       for all incoming sections.  It includes the number of BPO relocs in
       sections that were GC:ed.  */
       sections that were GC:ed.  */
    size_t n_max_bpo_relocs;
    size_t n_max_bpo_relocs;
 
 
    /* A counter used to find out when to fold the BPO gregs, since we
    /* A counter used to find out when to fold the BPO gregs, since we
       don't have a single "after-relaxation" hook.  */
       don't have a single "after-relaxation" hook.  */
    size_t n_remaining_bpo_relocs_this_relaxation_round;
    size_t n_remaining_bpo_relocs_this_relaxation_round;
 
 
    /* The number of linker-allocated GREGs resulting from BPO relocs.
    /* The number of linker-allocated GREGs resulting from BPO relocs.
       This is an approximation after _bfd_mmix_before_linker_allocation
       This is an approximation after _bfd_mmix_before_linker_allocation
       and supposedly accurate after mmix_elf_relax_section is called for
       and supposedly accurate after mmix_elf_relax_section is called for
       all incoming non-collected sections.  */
       all incoming non-collected sections.  */
    size_t n_allocated_bpo_gregs;
    size_t n_allocated_bpo_gregs;
 
 
    /* Index into reloc_request[], sorted on increasing "value", secondary
    /* Index into reloc_request[], sorted on increasing "value", secondary
       by increasing index for strict sorting order.  */
       by increasing index for strict sorting order.  */
    size_t *bpo_reloc_indexes;
    size_t *bpo_reloc_indexes;
 
 
    /* An array of all relocations, with the "value" member filled in by
    /* An array of all relocations, with the "value" member filled in by
       the relaxation function.  */
       the relaxation function.  */
    struct bpo_reloc_request *reloc_request;
    struct bpo_reloc_request *reloc_request;
  };
  };
 
 
static int mmix_elf_link_output_symbol_hook
static int mmix_elf_link_output_symbol_hook
  PARAMS ((struct bfd_link_info *, const char *, Elf_Internal_Sym *,
  PARAMS ((struct bfd_link_info *, const char *, Elf_Internal_Sym *,
           asection *, struct elf_link_hash_entry *));
           asection *, struct elf_link_hash_entry *));
 
 
static bfd_reloc_status_type mmix_elf_reloc
static bfd_reloc_status_type mmix_elf_reloc
  PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
  PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
 
 
static reloc_howto_type *bfd_elf64_bfd_reloc_type_lookup
static reloc_howto_type *bfd_elf64_bfd_reloc_type_lookup
  PARAMS ((bfd *, bfd_reloc_code_real_type));
  PARAMS ((bfd *, bfd_reloc_code_real_type));
 
 
static void mmix_info_to_howto_rela
static void mmix_info_to_howto_rela
  PARAMS ((bfd *, arelent *, Elf_Internal_Rela *));
  PARAMS ((bfd *, arelent *, Elf_Internal_Rela *));
 
 
static int mmix_elf_sort_relocs PARAMS ((const PTR, const PTR));
static int mmix_elf_sort_relocs PARAMS ((const PTR, const PTR));
 
 
static bfd_boolean mmix_elf_new_section_hook
static bfd_boolean mmix_elf_new_section_hook
  PARAMS ((bfd *, asection *));
  PARAMS ((bfd *, asection *));
 
 
static bfd_boolean mmix_elf_check_relocs
static bfd_boolean mmix_elf_check_relocs
  PARAMS ((bfd *, struct bfd_link_info *, asection *,
  PARAMS ((bfd *, struct bfd_link_info *, asection *,
           const Elf_Internal_Rela *));
           const Elf_Internal_Rela *));
 
 
static bfd_boolean mmix_elf_check_common_relocs
static bfd_boolean mmix_elf_check_common_relocs
  PARAMS ((bfd *, struct bfd_link_info *, asection *,
  PARAMS ((bfd *, struct bfd_link_info *, asection *,
           const Elf_Internal_Rela *));
           const Elf_Internal_Rela *));
 
 
static bfd_boolean mmix_elf_relocate_section
static bfd_boolean mmix_elf_relocate_section
  PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
  PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
           Elf_Internal_Rela *, Elf_Internal_Sym *, asection **));
           Elf_Internal_Rela *, Elf_Internal_Sym *, asection **));
 
 
static bfd_reloc_status_type mmix_final_link_relocate
static bfd_reloc_status_type mmix_final_link_relocate
  PARAMS ((reloc_howto_type *, asection *, bfd_byte *,
  PARAMS ((reloc_howto_type *, asection *, bfd_byte *,
           bfd_vma, bfd_signed_vma, bfd_vma, const char *, asection *));
           bfd_vma, bfd_signed_vma, bfd_vma, const char *, asection *));
 
 
static bfd_reloc_status_type mmix_elf_perform_relocation
static bfd_reloc_status_type mmix_elf_perform_relocation
  PARAMS ((asection *, reloc_howto_type *, PTR, bfd_vma, bfd_vma));
  PARAMS ((asection *, reloc_howto_type *, PTR, bfd_vma, bfd_vma));
 
 
static bfd_boolean mmix_elf_section_from_bfd_section
static bfd_boolean mmix_elf_section_from_bfd_section
  PARAMS ((bfd *, asection *, int *));
  PARAMS ((bfd *, asection *, int *));
 
 
static bfd_boolean mmix_elf_add_symbol_hook
static bfd_boolean mmix_elf_add_symbol_hook
  PARAMS ((bfd *, struct bfd_link_info *, Elf_Internal_Sym *,
  PARAMS ((bfd *, struct bfd_link_info *, Elf_Internal_Sym *,
           const char **, flagword *, asection **, bfd_vma *));
           const char **, flagword *, asection **, bfd_vma *));
 
 
static bfd_boolean mmix_elf_is_local_label_name
static bfd_boolean mmix_elf_is_local_label_name
  PARAMS ((bfd *, const char *));
  PARAMS ((bfd *, const char *));
 
 
static int bpo_reloc_request_sort_fn PARAMS ((const PTR, const PTR));
static int bpo_reloc_request_sort_fn PARAMS ((const PTR, const PTR));
 
 
static bfd_boolean mmix_elf_relax_section
static bfd_boolean mmix_elf_relax_section
  PARAMS ((bfd *abfd, asection *sec, struct bfd_link_info *link_info,
  PARAMS ((bfd *abfd, asection *sec, struct bfd_link_info *link_info,
           bfd_boolean *again));
           bfd_boolean *again));
 
 
extern bfd_boolean mmix_elf_final_link PARAMS ((bfd *, struct bfd_link_info *));
extern bfd_boolean mmix_elf_final_link PARAMS ((bfd *, struct bfd_link_info *));
 
 
extern void mmix_elf_symbol_processing PARAMS ((bfd *, asymbol *));
extern void mmix_elf_symbol_processing PARAMS ((bfd *, asymbol *));
 
 
/* Only intended to be called from a debugger.  */
/* Only intended to be called from a debugger.  */
extern void mmix_dump_bpo_gregs
extern void mmix_dump_bpo_gregs
  PARAMS ((struct bfd_link_info *, bfd_error_handler_type));
  PARAMS ((struct bfd_link_info *, bfd_error_handler_type));
 
 
static void
static void
mmix_set_relaxable_size
mmix_set_relaxable_size
  PARAMS ((bfd *, asection *, void *));
  PARAMS ((bfd *, asection *, void *));
 
 
 
 
/* Watch out: this currently needs to have elements with the same index as
/* Watch out: this currently needs to have elements with the same index as
   their R_MMIX_ number.  */
   their R_MMIX_ number.  */
static reloc_howto_type elf_mmix_howto_table[] =
static reloc_howto_type elf_mmix_howto_table[] =
 {
 {
  /* This reloc does nothing.  */
  /* This reloc does nothing.  */
  HOWTO (R_MMIX_NONE,           /* type */
  HOWTO (R_MMIX_NONE,           /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         32,                    /* bitsize */
         32,                    /* bitsize */
         FALSE,                 /* pc_relative */
         FALSE,                 /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_bitfield, /* complain_on_overflow */
         complain_overflow_bitfield, /* complain_on_overflow */
         bfd_elf_generic_reloc, /* special_function */
         bfd_elf_generic_reloc, /* special_function */
         "R_MMIX_NONE",         /* name */
         "R_MMIX_NONE",         /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         0,                      /* dst_mask */
         0,                      /* dst_mask */
         FALSE),                /* pcrel_offset */
         FALSE),                /* pcrel_offset */
 
 
  /* An 8 bit absolute relocation.  */
  /* An 8 bit absolute relocation.  */
  HOWTO (R_MMIX_8,              /* type */
  HOWTO (R_MMIX_8,              /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         0,                      /* size (0 = byte, 1 = short, 2 = long) */
         0,                      /* size (0 = byte, 1 = short, 2 = long) */
         8,                     /* bitsize */
         8,                     /* bitsize */
         FALSE,                 /* pc_relative */
         FALSE,                 /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_bitfield, /* complain_on_overflow */
         complain_overflow_bitfield, /* complain_on_overflow */
         bfd_elf_generic_reloc, /* special_function */
         bfd_elf_generic_reloc, /* special_function */
         "R_MMIX_8",            /* name */
         "R_MMIX_8",            /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         0xff,                  /* dst_mask */
         0xff,                  /* dst_mask */
         FALSE),                /* pcrel_offset */
         FALSE),                /* pcrel_offset */
 
 
  /* An 16 bit absolute relocation.  */
  /* An 16 bit absolute relocation.  */
  HOWTO (R_MMIX_16,             /* type */
  HOWTO (R_MMIX_16,             /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         1,                     /* size (0 = byte, 1 = short, 2 = long) */
         1,                     /* size (0 = byte, 1 = short, 2 = long) */
         16,                    /* bitsize */
         16,                    /* bitsize */
         FALSE,                 /* pc_relative */
         FALSE,                 /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_bitfield, /* complain_on_overflow */
         complain_overflow_bitfield, /* complain_on_overflow */
         bfd_elf_generic_reloc, /* special_function */
         bfd_elf_generic_reloc, /* special_function */
         "R_MMIX_16",           /* name */
         "R_MMIX_16",           /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         0xffff,                /* dst_mask */
         0xffff,                /* dst_mask */
         FALSE),                /* pcrel_offset */
         FALSE),                /* pcrel_offset */
 
 
  /* An 24 bit absolute relocation.  */
  /* An 24 bit absolute relocation.  */
  HOWTO (R_MMIX_24,             /* type */
  HOWTO (R_MMIX_24,             /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         24,                    /* bitsize */
         24,                    /* bitsize */
         FALSE,                 /* pc_relative */
         FALSE,                 /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_bitfield, /* complain_on_overflow */
         complain_overflow_bitfield, /* complain_on_overflow */
         bfd_elf_generic_reloc, /* special_function */
         bfd_elf_generic_reloc, /* special_function */
         "R_MMIX_24",           /* name */
         "R_MMIX_24",           /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0xffffff,             /* src_mask */
         ~0xffffff,             /* src_mask */
         0xffffff,              /* dst_mask */
         0xffffff,              /* dst_mask */
         FALSE),                /* pcrel_offset */
         FALSE),                /* pcrel_offset */
 
 
  /* A 32 bit absolute relocation.  */
  /* A 32 bit absolute relocation.  */
  HOWTO (R_MMIX_32,             /* type */
  HOWTO (R_MMIX_32,             /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         32,                    /* bitsize */
         32,                    /* bitsize */
         FALSE,                 /* pc_relative */
         FALSE,                 /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_bitfield, /* complain_on_overflow */
         complain_overflow_bitfield, /* complain_on_overflow */
         bfd_elf_generic_reloc, /* special_function */
         bfd_elf_generic_reloc, /* special_function */
         "R_MMIX_32",           /* name */
         "R_MMIX_32",           /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         0xffffffff,            /* dst_mask */
         0xffffffff,            /* dst_mask */
         FALSE),                /* pcrel_offset */
         FALSE),                /* pcrel_offset */
 
 
  /* 64 bit relocation.  */
  /* 64 bit relocation.  */
  HOWTO (R_MMIX_64,             /* type */
  HOWTO (R_MMIX_64,             /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         4,                     /* size (0 = byte, 1 = short, 2 = long) */
         4,                     /* size (0 = byte, 1 = short, 2 = long) */
         64,                    /* bitsize */
         64,                    /* bitsize */
         FALSE,                 /* pc_relative */
         FALSE,                 /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_bitfield, /* complain_on_overflow */
         complain_overflow_bitfield, /* complain_on_overflow */
         bfd_elf_generic_reloc, /* special_function */
         bfd_elf_generic_reloc, /* special_function */
         "R_MMIX_64",           /* name */
         "R_MMIX_64",           /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         MINUS_ONE,             /* dst_mask */
         MINUS_ONE,             /* dst_mask */
         FALSE),                /* pcrel_offset */
         FALSE),                /* pcrel_offset */
 
 
  /* An 8 bit PC-relative relocation.  */
  /* An 8 bit PC-relative relocation.  */
  HOWTO (R_MMIX_PC_8,           /* type */
  HOWTO (R_MMIX_PC_8,           /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         0,                      /* size (0 = byte, 1 = short, 2 = long) */
         0,                      /* size (0 = byte, 1 = short, 2 = long) */
         8,                     /* bitsize */
         8,                     /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_bitfield, /* complain_on_overflow */
         complain_overflow_bitfield, /* complain_on_overflow */
         bfd_elf_generic_reloc, /* special_function */
         bfd_elf_generic_reloc, /* special_function */
         "R_MMIX_PC_8",         /* name */
         "R_MMIX_PC_8",         /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         0xff,                  /* dst_mask */
         0xff,                  /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  /* An 16 bit PC-relative relocation.  */
  /* An 16 bit PC-relative relocation.  */
  HOWTO (R_MMIX_PC_16,          /* type */
  HOWTO (R_MMIX_PC_16,          /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         1,                     /* size (0 = byte, 1 = short, 2 = long) */
         1,                     /* size (0 = byte, 1 = short, 2 = long) */
         16,                    /* bitsize */
         16,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_bitfield, /* complain_on_overflow */
         complain_overflow_bitfield, /* complain_on_overflow */
         bfd_elf_generic_reloc, /* special_function */
         bfd_elf_generic_reloc, /* special_function */
         "R_MMIX_PC_16",        /* name */
         "R_MMIX_PC_16",        /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         0xffff,                /* dst_mask */
         0xffff,                /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  /* An 24 bit PC-relative relocation.  */
  /* An 24 bit PC-relative relocation.  */
  HOWTO (R_MMIX_PC_24,          /* type */
  HOWTO (R_MMIX_PC_24,          /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         24,                    /* bitsize */
         24,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_bitfield, /* complain_on_overflow */
         complain_overflow_bitfield, /* complain_on_overflow */
         bfd_elf_generic_reloc, /* special_function */
         bfd_elf_generic_reloc, /* special_function */
         "R_MMIX_PC_24",        /* name */
         "R_MMIX_PC_24",        /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0xffffff,             /* src_mask */
         ~0xffffff,             /* src_mask */
         0xffffff,              /* dst_mask */
         0xffffff,              /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  /* A 32 bit absolute PC-relative relocation.  */
  /* A 32 bit absolute PC-relative relocation.  */
  HOWTO (R_MMIX_PC_32,          /* type */
  HOWTO (R_MMIX_PC_32,          /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         32,                    /* bitsize */
         32,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_bitfield, /* complain_on_overflow */
         complain_overflow_bitfield, /* complain_on_overflow */
         bfd_elf_generic_reloc, /* special_function */
         bfd_elf_generic_reloc, /* special_function */
         "R_MMIX_PC_32",        /* name */
         "R_MMIX_PC_32",        /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         0xffffffff,            /* dst_mask */
         0xffffffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  /* 64 bit PC-relative relocation.  */
  /* 64 bit PC-relative relocation.  */
  HOWTO (R_MMIX_PC_64,          /* type */
  HOWTO (R_MMIX_PC_64,          /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         4,                     /* size (0 = byte, 1 = short, 2 = long) */
         4,                     /* size (0 = byte, 1 = short, 2 = long) */
         64,                    /* bitsize */
         64,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_bitfield, /* complain_on_overflow */
         complain_overflow_bitfield, /* complain_on_overflow */
         bfd_elf_generic_reloc, /* special_function */
         bfd_elf_generic_reloc, /* special_function */
         "R_MMIX_PC_64",        /* name */
         "R_MMIX_PC_64",        /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         MINUS_ONE,             /* dst_mask */
         MINUS_ONE,             /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  /* GNU extension to record C++ vtable hierarchy.  */
  /* GNU extension to record C++ vtable hierarchy.  */
  HOWTO (R_MMIX_GNU_VTINHERIT, /* type */
  HOWTO (R_MMIX_GNU_VTINHERIT, /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         0,                      /* size (0 = byte, 1 = short, 2 = long) */
         0,                      /* size (0 = byte, 1 = short, 2 = long) */
         0,                      /* bitsize */
         0,                      /* bitsize */
         FALSE,                 /* pc_relative */
         FALSE,                 /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_dont, /* complain_on_overflow */
         complain_overflow_dont, /* complain_on_overflow */
         NULL,                  /* special_function */
         NULL,                  /* special_function */
         "R_MMIX_GNU_VTINHERIT", /* name */
         "R_MMIX_GNU_VTINHERIT", /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         0,                      /* dst_mask */
         0,                      /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  /* GNU extension to record C++ vtable member usage.  */
  /* GNU extension to record C++ vtable member usage.  */
  HOWTO (R_MMIX_GNU_VTENTRY,    /* type */
  HOWTO (R_MMIX_GNU_VTENTRY,    /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         0,                      /* size (0 = byte, 1 = short, 2 = long) */
         0,                      /* size (0 = byte, 1 = short, 2 = long) */
         0,                      /* bitsize */
         0,                      /* bitsize */
         FALSE,                 /* pc_relative */
         FALSE,                 /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_dont, /* complain_on_overflow */
         complain_overflow_dont, /* complain_on_overflow */
         _bfd_elf_rel_vtable_reloc_fn,  /* special_function */
         _bfd_elf_rel_vtable_reloc_fn,  /* special_function */
         "R_MMIX_GNU_VTENTRY", /* name */
         "R_MMIX_GNU_VTENTRY", /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         0,                      /* dst_mask */
         0,                      /* dst_mask */
         FALSE),                /* pcrel_offset */
         FALSE),                /* pcrel_offset */
 
 
  /* The GETA relocation is supposed to get any address that could
  /* The GETA relocation is supposed to get any address that could
     possibly be reached by the GETA instruction.  It can silently expand
     possibly be reached by the GETA instruction.  It can silently expand
     to get a 64-bit operand, but will complain if any of the two least
     to get a 64-bit operand, but will complain if any of the two least
     significant bits are set.  The howto members reflect a simple GETA.  */
     significant bits are set.  The howto members reflect a simple GETA.  */
  HOWTO (R_MMIX_GETA,           /* type */
  HOWTO (R_MMIX_GETA,           /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_GETA",         /* name */
         "R_MMIX_GETA",         /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  HOWTO (R_MMIX_GETA_1,         /* type */
  HOWTO (R_MMIX_GETA_1,         /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_GETA_1",               /* name */
         "R_MMIX_GETA_1",               /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  HOWTO (R_MMIX_GETA_2,         /* type */
  HOWTO (R_MMIX_GETA_2,         /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_GETA_2",               /* name */
         "R_MMIX_GETA_2",               /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  HOWTO (R_MMIX_GETA_3,         /* type */
  HOWTO (R_MMIX_GETA_3,         /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_GETA_3",               /* name */
         "R_MMIX_GETA_3",               /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  /* The conditional branches are supposed to reach any (code) address.
  /* The conditional branches are supposed to reach any (code) address.
     It can silently expand to a 64-bit operand, but will emit an error if
     It can silently expand to a 64-bit operand, but will emit an error if
     any of the two least significant bits are set.  The howto members
     any of the two least significant bits are set.  The howto members
     reflect a simple branch.  */
     reflect a simple branch.  */
  HOWTO (R_MMIX_CBRANCH,        /* type */
  HOWTO (R_MMIX_CBRANCH,        /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_CBRANCH",      /* name */
         "R_MMIX_CBRANCH",      /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  HOWTO (R_MMIX_CBRANCH_J,      /* type */
  HOWTO (R_MMIX_CBRANCH_J,      /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_CBRANCH_J",    /* name */
         "R_MMIX_CBRANCH_J",    /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  HOWTO (R_MMIX_CBRANCH_1,      /* type */
  HOWTO (R_MMIX_CBRANCH_1,      /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_CBRANCH_1",    /* name */
         "R_MMIX_CBRANCH_1",    /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  HOWTO (R_MMIX_CBRANCH_2,      /* type */
  HOWTO (R_MMIX_CBRANCH_2,      /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_CBRANCH_2",    /* name */
         "R_MMIX_CBRANCH_2",    /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  HOWTO (R_MMIX_CBRANCH_3,      /* type */
  HOWTO (R_MMIX_CBRANCH_3,      /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_CBRANCH_3",    /* name */
         "R_MMIX_CBRANCH_3",    /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  /* The PUSHJ instruction can reach any (code) address, as long as it's
  /* The PUSHJ instruction can reach any (code) address, as long as it's
     the beginning of a function (no usable restriction).  It can silently
     the beginning of a function (no usable restriction).  It can silently
     expand to a 64-bit operand, but will emit an error if any of the two
     expand to a 64-bit operand, but will emit an error if any of the two
     least significant bits are set.  It can also expand into a call to a
     least significant bits are set.  It can also expand into a call to a
     stub; see R_MMIX_PUSHJ_STUBBABLE.  The howto members reflect a simple
     stub; see R_MMIX_PUSHJ_STUBBABLE.  The howto members reflect a simple
     PUSHJ.  */
     PUSHJ.  */
  HOWTO (R_MMIX_PUSHJ,          /* type */
  HOWTO (R_MMIX_PUSHJ,          /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_PUSHJ",        /* name */
         "R_MMIX_PUSHJ",        /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  HOWTO (R_MMIX_PUSHJ_1,        /* type */
  HOWTO (R_MMIX_PUSHJ_1,        /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_PUSHJ_1",      /* name */
         "R_MMIX_PUSHJ_1",      /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  HOWTO (R_MMIX_PUSHJ_2,        /* type */
  HOWTO (R_MMIX_PUSHJ_2,        /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_PUSHJ_2",      /* name */
         "R_MMIX_PUSHJ_2",      /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  HOWTO (R_MMIX_PUSHJ_3,        /* type */
  HOWTO (R_MMIX_PUSHJ_3,        /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_PUSHJ_3",      /* name */
         "R_MMIX_PUSHJ_3",      /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  /* A JMP is supposed to reach any (code) address.  By itself, it can
  /* A JMP is supposed to reach any (code) address.  By itself, it can
     reach +-64M; the expansion can reach all 64 bits.  Note that the 64M
     reach +-64M; the expansion can reach all 64 bits.  Note that the 64M
     limit is soon reached if you link the program in wildly different
     limit is soon reached if you link the program in wildly different
     memory segments.  The howto members reflect a trivial JMP.  */
     memory segments.  The howto members reflect a trivial JMP.  */
  HOWTO (R_MMIX_JMP,            /* type */
  HOWTO (R_MMIX_JMP,            /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         27,                    /* bitsize */
         27,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_JMP",          /* name */
         "R_MMIX_JMP",          /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x1ffffff,            /* src_mask */
         ~0x1ffffff,            /* src_mask */
         0x1ffffff,             /* dst_mask */
         0x1ffffff,             /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  HOWTO (R_MMIX_JMP_1,          /* type */
  HOWTO (R_MMIX_JMP_1,          /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         27,                    /* bitsize */
         27,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_JMP_1",        /* name */
         "R_MMIX_JMP_1",        /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x1ffffff,            /* src_mask */
         ~0x1ffffff,            /* src_mask */
         0x1ffffff,             /* dst_mask */
         0x1ffffff,             /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  HOWTO (R_MMIX_JMP_2,          /* type */
  HOWTO (R_MMIX_JMP_2,          /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         27,                    /* bitsize */
         27,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_JMP_2",        /* name */
         "R_MMIX_JMP_2",        /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x1ffffff,            /* src_mask */
         ~0x1ffffff,            /* src_mask */
         0x1ffffff,             /* dst_mask */
         0x1ffffff,             /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  HOWTO (R_MMIX_JMP_3,          /* type */
  HOWTO (R_MMIX_JMP_3,          /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         27,                    /* bitsize */
         27,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_JMP_3",        /* name */
         "R_MMIX_JMP_3",        /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x1ffffff,            /* src_mask */
         ~0x1ffffff,            /* src_mask */
         0x1ffffff,             /* dst_mask */
         0x1ffffff,             /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  /* When we don't emit link-time-relaxable code from the assembler, or
  /* When we don't emit link-time-relaxable code from the assembler, or
     when relaxation has done all it can do, these relocs are used.  For
     when relaxation has done all it can do, these relocs are used.  For
     GETA/PUSHJ/branches.  */
     GETA/PUSHJ/branches.  */
  HOWTO (R_MMIX_ADDR19,         /* type */
  HOWTO (R_MMIX_ADDR19,         /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_ADDR19",       /* name */
         "R_MMIX_ADDR19",       /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  /* For JMP.  */
  /* For JMP.  */
  HOWTO (R_MMIX_ADDR27,         /* type */
  HOWTO (R_MMIX_ADDR27,         /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         27,                    /* bitsize */
         27,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_ADDR27",       /* name */
         "R_MMIX_ADDR27",       /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x1ffffff,            /* src_mask */
         ~0x1ffffff,            /* src_mask */
         0x1ffffff,             /* dst_mask */
         0x1ffffff,             /* dst_mask */
         TRUE),                 /* pcrel_offset */
         TRUE),                 /* pcrel_offset */
 
 
  /* A general register or the value 0..255.  If a value, then the
  /* A general register or the value 0..255.  If a value, then the
     instruction (offset -3) needs adjusting.  */
     instruction (offset -3) needs adjusting.  */
  HOWTO (R_MMIX_REG_OR_BYTE,    /* type */
  HOWTO (R_MMIX_REG_OR_BYTE,    /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         1,                     /* size (0 = byte, 1 = short, 2 = long) */
         1,                     /* size (0 = byte, 1 = short, 2 = long) */
         8,                     /* bitsize */
         8,                     /* bitsize */
         FALSE,                 /* pc_relative */
         FALSE,                 /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_bitfield, /* complain_on_overflow */
         complain_overflow_bitfield, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_REG_OR_BYTE",  /* name */
         "R_MMIX_REG_OR_BYTE",  /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         0xff,                  /* dst_mask */
         0xff,                  /* dst_mask */
         FALSE),                /* pcrel_offset */
         FALSE),                /* pcrel_offset */
 
 
  /* A general register.  */
  /* A general register.  */
  HOWTO (R_MMIX_REG,            /* type */
  HOWTO (R_MMIX_REG,            /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         1,                     /* size (0 = byte, 1 = short, 2 = long) */
         1,                     /* size (0 = byte, 1 = short, 2 = long) */
         8,                     /* bitsize */
         8,                     /* bitsize */
         FALSE,                 /* pc_relative */
         FALSE,                 /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_bitfield, /* complain_on_overflow */
         complain_overflow_bitfield, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_REG",          /* name */
         "R_MMIX_REG",          /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         0xff,                  /* dst_mask */
         0xff,                  /* dst_mask */
         FALSE),                /* pcrel_offset */
         FALSE),                /* pcrel_offset */
 
 
  /* A register plus an index, corresponding to the relocation expression.
  /* A register plus an index, corresponding to the relocation expression.
     The sizes must correspond to the valid range of the expression, while
     The sizes must correspond to the valid range of the expression, while
     the bitmasks correspond to what we store in the image.  */
     the bitmasks correspond to what we store in the image.  */
  HOWTO (R_MMIX_BASE_PLUS_OFFSET,       /* type */
  HOWTO (R_MMIX_BASE_PLUS_OFFSET,       /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         4,                     /* size (0 = byte, 1 = short, 2 = long) */
         4,                     /* size (0 = byte, 1 = short, 2 = long) */
         64,                    /* bitsize */
         64,                    /* bitsize */
         FALSE,                 /* pc_relative */
         FALSE,                 /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_bitfield, /* complain_on_overflow */
         complain_overflow_bitfield, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_BASE_PLUS_OFFSET", /* name */
         "R_MMIX_BASE_PLUS_OFFSET", /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         0xffff,                /* dst_mask */
         0xffff,                /* dst_mask */
         FALSE),                /* pcrel_offset */
         FALSE),                /* pcrel_offset */
 
 
  /* A "magic" relocation for a LOCAL expression, asserting that the
  /* A "magic" relocation for a LOCAL expression, asserting that the
     expression is less than the number of global registers.  No actual
     expression is less than the number of global registers.  No actual
     modification of the contents is done.  Implementing this as a
     modification of the contents is done.  Implementing this as a
     relocation was less intrusive than e.g. putting such expressions in a
     relocation was less intrusive than e.g. putting such expressions in a
     section to discard *after* relocation.  */
     section to discard *after* relocation.  */
  HOWTO (R_MMIX_LOCAL,          /* type */
  HOWTO (R_MMIX_LOCAL,          /* type */
         0,                      /* rightshift */
         0,                      /* rightshift */
         0,                      /* size (0 = byte, 1 = short, 2 = long) */
         0,                      /* size (0 = byte, 1 = short, 2 = long) */
         0,                      /* bitsize */
         0,                      /* bitsize */
         FALSE,                 /* pc_relative */
         FALSE,                 /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_dont, /* complain_on_overflow */
         complain_overflow_dont, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_LOCAL",        /* name */
         "R_MMIX_LOCAL",        /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         0,                      /* src_mask */
         0,                      /* src_mask */
         0,                      /* dst_mask */
         0,                      /* dst_mask */
         FALSE),                /* pcrel_offset */
         FALSE),                /* pcrel_offset */
 
 
  HOWTO (R_MMIX_PUSHJ_STUBBABLE, /* type */
  HOWTO (R_MMIX_PUSHJ_STUBBABLE, /* type */
         2,                     /* rightshift */
         2,                     /* rightshift */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         2,                     /* size (0 = byte, 1 = short, 2 = long) */
         19,                    /* bitsize */
         19,                    /* bitsize */
         TRUE,                  /* pc_relative */
         TRUE,                  /* pc_relative */
         0,                      /* bitpos */
         0,                      /* bitpos */
         complain_overflow_signed, /* complain_on_overflow */
         complain_overflow_signed, /* complain_on_overflow */
         mmix_elf_reloc,        /* special_function */
         mmix_elf_reloc,        /* special_function */
         "R_MMIX_PUSHJ_STUBBABLE", /* name */
         "R_MMIX_PUSHJ_STUBBABLE", /* name */
         FALSE,                 /* partial_inplace */
         FALSE,                 /* partial_inplace */
         ~0x0100ffff,           /* src_mask */
         ~0x0100ffff,           /* src_mask */
         0x0100ffff,            /* dst_mask */
         0x0100ffff,            /* dst_mask */
         TRUE)                  /* pcrel_offset */
         TRUE)                  /* pcrel_offset */
 };
 };
 
 
 
 
/* Map BFD reloc types to MMIX ELF reloc types.  */
/* Map BFD reloc types to MMIX ELF reloc types.  */
 
 
struct mmix_reloc_map
struct mmix_reloc_map
  {
  {
    bfd_reloc_code_real_type bfd_reloc_val;
    bfd_reloc_code_real_type bfd_reloc_val;
    enum elf_mmix_reloc_type elf_reloc_val;
    enum elf_mmix_reloc_type elf_reloc_val;
  };
  };
 
 
 
 
static const struct mmix_reloc_map mmix_reloc_map[] =
static const struct mmix_reloc_map mmix_reloc_map[] =
  {
  {
    {BFD_RELOC_NONE, R_MMIX_NONE},
    {BFD_RELOC_NONE, R_MMIX_NONE},
    {BFD_RELOC_8, R_MMIX_8},
    {BFD_RELOC_8, R_MMIX_8},
    {BFD_RELOC_16, R_MMIX_16},
    {BFD_RELOC_16, R_MMIX_16},
    {BFD_RELOC_24, R_MMIX_24},
    {BFD_RELOC_24, R_MMIX_24},
    {BFD_RELOC_32, R_MMIX_32},
    {BFD_RELOC_32, R_MMIX_32},
    {BFD_RELOC_64, R_MMIX_64},
    {BFD_RELOC_64, R_MMIX_64},
    {BFD_RELOC_8_PCREL, R_MMIX_PC_8},
    {BFD_RELOC_8_PCREL, R_MMIX_PC_8},
    {BFD_RELOC_16_PCREL, R_MMIX_PC_16},
    {BFD_RELOC_16_PCREL, R_MMIX_PC_16},
    {BFD_RELOC_24_PCREL, R_MMIX_PC_24},
    {BFD_RELOC_24_PCREL, R_MMIX_PC_24},
    {BFD_RELOC_32_PCREL, R_MMIX_PC_32},
    {BFD_RELOC_32_PCREL, R_MMIX_PC_32},
    {BFD_RELOC_64_PCREL, R_MMIX_PC_64},
    {BFD_RELOC_64_PCREL, R_MMIX_PC_64},
    {BFD_RELOC_VTABLE_INHERIT, R_MMIX_GNU_VTINHERIT},
    {BFD_RELOC_VTABLE_INHERIT, R_MMIX_GNU_VTINHERIT},
    {BFD_RELOC_VTABLE_ENTRY, R_MMIX_GNU_VTENTRY},
    {BFD_RELOC_VTABLE_ENTRY, R_MMIX_GNU_VTENTRY},
    {BFD_RELOC_MMIX_GETA, R_MMIX_GETA},
    {BFD_RELOC_MMIX_GETA, R_MMIX_GETA},
    {BFD_RELOC_MMIX_CBRANCH, R_MMIX_CBRANCH},
    {BFD_RELOC_MMIX_CBRANCH, R_MMIX_CBRANCH},
    {BFD_RELOC_MMIX_PUSHJ, R_MMIX_PUSHJ},
    {BFD_RELOC_MMIX_PUSHJ, R_MMIX_PUSHJ},
    {BFD_RELOC_MMIX_JMP, R_MMIX_JMP},
    {BFD_RELOC_MMIX_JMP, R_MMIX_JMP},
    {BFD_RELOC_MMIX_ADDR19, R_MMIX_ADDR19},
    {BFD_RELOC_MMIX_ADDR19, R_MMIX_ADDR19},
    {BFD_RELOC_MMIX_ADDR27, R_MMIX_ADDR27},
    {BFD_RELOC_MMIX_ADDR27, R_MMIX_ADDR27},
    {BFD_RELOC_MMIX_REG_OR_BYTE, R_MMIX_REG_OR_BYTE},
    {BFD_RELOC_MMIX_REG_OR_BYTE, R_MMIX_REG_OR_BYTE},
    {BFD_RELOC_MMIX_REG, R_MMIX_REG},
    {BFD_RELOC_MMIX_REG, R_MMIX_REG},
    {BFD_RELOC_MMIX_BASE_PLUS_OFFSET, R_MMIX_BASE_PLUS_OFFSET},
    {BFD_RELOC_MMIX_BASE_PLUS_OFFSET, R_MMIX_BASE_PLUS_OFFSET},
    {BFD_RELOC_MMIX_LOCAL, R_MMIX_LOCAL},
    {BFD_RELOC_MMIX_LOCAL, R_MMIX_LOCAL},
    {BFD_RELOC_MMIX_PUSHJ_STUBBABLE, R_MMIX_PUSHJ_STUBBABLE}
    {BFD_RELOC_MMIX_PUSHJ_STUBBABLE, R_MMIX_PUSHJ_STUBBABLE}
  };
  };
 
 
static reloc_howto_type *
static reloc_howto_type *
bfd_elf64_bfd_reloc_type_lookup (abfd, code)
bfd_elf64_bfd_reloc_type_lookup (abfd, code)
     bfd *abfd ATTRIBUTE_UNUSED;
     bfd *abfd ATTRIBUTE_UNUSED;
     bfd_reloc_code_real_type code;
     bfd_reloc_code_real_type code;
{
{
  unsigned int i;
  unsigned int i;
 
 
  for (i = 0;
  for (i = 0;
       i < sizeof (mmix_reloc_map) / sizeof (mmix_reloc_map[0]);
       i < sizeof (mmix_reloc_map) / sizeof (mmix_reloc_map[0]);
       i++)
       i++)
    {
    {
      if (mmix_reloc_map[i].bfd_reloc_val == code)
      if (mmix_reloc_map[i].bfd_reloc_val == code)
        return &elf_mmix_howto_table[mmix_reloc_map[i].elf_reloc_val];
        return &elf_mmix_howto_table[mmix_reloc_map[i].elf_reloc_val];
    }
    }
 
 
  return NULL;
  return NULL;
}
}
 
 
static reloc_howto_type *
static reloc_howto_type *
bfd_elf64_bfd_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
bfd_elf64_bfd_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
                                 const char *r_name)
                                 const char *r_name)
{
{
  unsigned int i;
  unsigned int i;
 
 
  for (i = 0;
  for (i = 0;
       i < sizeof (elf_mmix_howto_table) / sizeof (elf_mmix_howto_table[0]);
       i < sizeof (elf_mmix_howto_table) / sizeof (elf_mmix_howto_table[0]);
       i++)
       i++)
    if (elf_mmix_howto_table[i].name != NULL
    if (elf_mmix_howto_table[i].name != NULL
        && strcasecmp (elf_mmix_howto_table[i].name, r_name) == 0)
        && strcasecmp (elf_mmix_howto_table[i].name, r_name) == 0)
      return &elf_mmix_howto_table[i];
      return &elf_mmix_howto_table[i];
 
 
  return NULL;
  return NULL;
}
}
 
 
static bfd_boolean
static bfd_boolean
mmix_elf_new_section_hook (abfd, sec)
mmix_elf_new_section_hook (abfd, sec)
     bfd *abfd;
     bfd *abfd;
     asection *sec;
     asection *sec;
{
{
  if (!sec->used_by_bfd)
  if (!sec->used_by_bfd)
    {
    {
      struct _mmix_elf_section_data *sdata;
      struct _mmix_elf_section_data *sdata;
      bfd_size_type amt = sizeof (*sdata);
      bfd_size_type amt = sizeof (*sdata);
 
 
      sdata = bfd_zalloc (abfd, amt);
      sdata = bfd_zalloc (abfd, amt);
      if (sdata == NULL)
      if (sdata == NULL)
        return FALSE;
        return FALSE;
      sec->used_by_bfd = sdata;
      sec->used_by_bfd = sdata;
    }
    }
 
 
  return _bfd_elf_new_section_hook (abfd, sec);
  return _bfd_elf_new_section_hook (abfd, sec);
}
}
 
 
 
 
/* This function performs the actual bitfiddling and sanity check for a
/* This function performs the actual bitfiddling and sanity check for a
   final relocation.  Each relocation gets its *worst*-case expansion
   final relocation.  Each relocation gets its *worst*-case expansion
   in size when it arrives here; any reduction in size should have been
   in size when it arrives here; any reduction in size should have been
   caught in linker relaxation earlier.  When we get here, the relocation
   caught in linker relaxation earlier.  When we get here, the relocation
   looks like the smallest instruction with SWYM:s (nop:s) appended to the
   looks like the smallest instruction with SWYM:s (nop:s) appended to the
   max size.  We fill in those nop:s.
   max size.  We fill in those nop:s.
 
 
   R_MMIX_GETA: (FIXME: Relaxation should break this up in 1, 2, 3 tetra)
   R_MMIX_GETA: (FIXME: Relaxation should break this up in 1, 2, 3 tetra)
    GETA $N,foo
    GETA $N,foo
   ->
   ->
    SETL $N,foo & 0xffff
    SETL $N,foo & 0xffff
    INCML $N,(foo >> 16) & 0xffff
    INCML $N,(foo >> 16) & 0xffff
    INCMH $N,(foo >> 32) & 0xffff
    INCMH $N,(foo >> 32) & 0xffff
    INCH $N,(foo >> 48) & 0xffff
    INCH $N,(foo >> 48) & 0xffff
 
 
   R_MMIX_CBRANCH: (FIXME: Relaxation should break this up, but
   R_MMIX_CBRANCH: (FIXME: Relaxation should break this up, but
   condbranches needing relaxation might be rare enough to not be
   condbranches needing relaxation might be rare enough to not be
   worthwhile.)
   worthwhile.)
    [P]Bcc $N,foo
    [P]Bcc $N,foo
   ->
   ->
    [~P]B~cc $N,.+20
    [~P]B~cc $N,.+20
    SETL $255,foo & ...
    SETL $255,foo & ...
    INCML ...
    INCML ...
    INCMH ...
    INCMH ...
    INCH ...
    INCH ...
    GO $255,$255,0
    GO $255,$255,0
 
 
   R_MMIX_PUSHJ: (FIXME: Relaxation...)
   R_MMIX_PUSHJ: (FIXME: Relaxation...)
    PUSHJ $N,foo
    PUSHJ $N,foo
   ->
   ->
    SETL $255,foo & ...
    SETL $255,foo & ...
    INCML ...
    INCML ...
    INCMH ...
    INCMH ...
    INCH ...
    INCH ...
    PUSHGO $N,$255,0
    PUSHGO $N,$255,0
 
 
   R_MMIX_JMP: (FIXME: Relaxation...)
   R_MMIX_JMP: (FIXME: Relaxation...)
    JMP foo
    JMP foo
   ->
   ->
    SETL $255,foo & ...
    SETL $255,foo & ...
    INCML ...
    INCML ...
    INCMH ...
    INCMH ...
    INCH ...
    INCH ...
    GO $255,$255,0
    GO $255,$255,0
 
 
   R_MMIX_ADDR19 and R_MMIX_ADDR27 are just filled in.  */
   R_MMIX_ADDR19 and R_MMIX_ADDR27 are just filled in.  */
 
 
static bfd_reloc_status_type
static bfd_reloc_status_type
mmix_elf_perform_relocation (isec, howto, datap, addr, value)
mmix_elf_perform_relocation (isec, howto, datap, addr, value)
     asection *isec;
     asection *isec;
     reloc_howto_type *howto;
     reloc_howto_type *howto;
     PTR datap;
     PTR datap;
     bfd_vma addr;
     bfd_vma addr;
     bfd_vma value;
     bfd_vma value;
{
{
  bfd *abfd = isec->owner;
  bfd *abfd = isec->owner;
  bfd_reloc_status_type flag = bfd_reloc_ok;
  bfd_reloc_status_type flag = bfd_reloc_ok;
  bfd_reloc_status_type r;
  bfd_reloc_status_type r;
  int offs = 0;
  int offs = 0;
  int reg = 255;
  int reg = 255;
 
 
  /* The worst case bits are all similar SETL/INCML/INCMH/INCH sequences.
  /* The worst case bits are all similar SETL/INCML/INCMH/INCH sequences.
     We handle the differences here and the common sequence later.  */
     We handle the differences here and the common sequence later.  */
  switch (howto->type)
  switch (howto->type)
    {
    {
    case R_MMIX_GETA:
    case R_MMIX_GETA:
      offs = 0;
      offs = 0;
      reg = bfd_get_8 (abfd, (bfd_byte *) datap + 1);
      reg = bfd_get_8 (abfd, (bfd_byte *) datap + 1);
 
 
      /* We change to an absolute value.  */
      /* We change to an absolute value.  */
      value += addr;
      value += addr;
      break;
      break;
 
 
    case R_MMIX_CBRANCH:
    case R_MMIX_CBRANCH:
      {
      {
        int in1 = bfd_get_16 (abfd, (bfd_byte *) datap) << 16;
        int in1 = bfd_get_16 (abfd, (bfd_byte *) datap) << 16;
 
 
        /* Invert the condition and prediction bit, and set the offset
        /* Invert the condition and prediction bit, and set the offset
           to five instructions ahead.
           to five instructions ahead.
 
 
           We *can* do better if we want to.  If the branch is found to be
           We *can* do better if we want to.  If the branch is found to be
           within limits, we could leave the branch as is; there'll just
           within limits, we could leave the branch as is; there'll just
           be a bunch of NOP:s after it.  But we shouldn't see this
           be a bunch of NOP:s after it.  But we shouldn't see this
           sequence often enough that it's worth doing it.  */
           sequence often enough that it's worth doing it.  */
 
 
        bfd_put_32 (abfd,
        bfd_put_32 (abfd,
                    (((in1 ^ ((PRED_INV_BIT | COND_INV_BIT) << 24)) & ~0xffff)
                    (((in1 ^ ((PRED_INV_BIT | COND_INV_BIT) << 24)) & ~0xffff)
                     | (24/4)),
                     | (24/4)),
                    (bfd_byte *) datap);
                    (bfd_byte *) datap);
 
 
        /* Put a "GO $255,$255,0" after the common sequence.  */
        /* Put a "GO $255,$255,0" after the common sequence.  */
        bfd_put_32 (abfd,
        bfd_put_32 (abfd,
                    ((GO_INSN_BYTE | IMM_OFFSET_BIT) << 24) | 0xffff00,
                    ((GO_INSN_BYTE | IMM_OFFSET_BIT) << 24) | 0xffff00,
                    (bfd_byte *) datap + 20);
                    (bfd_byte *) datap + 20);
 
 
        /* Common sequence starts at offset 4.  */
        /* Common sequence starts at offset 4.  */
        offs = 4;
        offs = 4;
 
 
        /* We change to an absolute value.  */
        /* We change to an absolute value.  */
        value += addr;
        value += addr;
      }
      }
      break;
      break;
 
 
    case R_MMIX_PUSHJ_STUBBABLE:
    case R_MMIX_PUSHJ_STUBBABLE:
      /* If the address fits, we're fine.  */
      /* If the address fits, we're fine.  */
      if ((value & 3) == 0
      if ((value & 3) == 0
          /* Note rightshift 0; see R_MMIX_JMP case below.  */
          /* Note rightshift 0; see R_MMIX_JMP case below.  */
          && (r = bfd_check_overflow (complain_overflow_signed,
          && (r = bfd_check_overflow (complain_overflow_signed,
                                      howto->bitsize,
                                      howto->bitsize,
                                      0,
                                      0,
                                      bfd_arch_bits_per_address (abfd),
                                      bfd_arch_bits_per_address (abfd),
                                      value)) == bfd_reloc_ok)
                                      value)) == bfd_reloc_ok)
        goto pcrel_mmix_reloc_fits;
        goto pcrel_mmix_reloc_fits;
      else
      else
        {
        {
          bfd_size_type size = isec->rawsize ? isec->rawsize : isec->size;
          bfd_size_type size = isec->rawsize ? isec->rawsize : isec->size;
 
 
          /* We have the bytes at the PUSHJ insn and need to get the
          /* We have the bytes at the PUSHJ insn and need to get the
             position for the stub.  There's supposed to be room allocated
             position for the stub.  There's supposed to be room allocated
             for the stub.  */
             for the stub.  */
          bfd_byte *stubcontents
          bfd_byte *stubcontents
            = ((bfd_byte *) datap
            = ((bfd_byte *) datap
               - (addr - (isec->output_section->vma + isec->output_offset))
               - (addr - (isec->output_section->vma + isec->output_offset))
               + size
               + size
               + mmix_elf_section_data (isec)->pjs.stub_offset);
               + mmix_elf_section_data (isec)->pjs.stub_offset);
          bfd_vma stubaddr;
          bfd_vma stubaddr;
 
 
          /* The address doesn't fit, so redirect the PUSHJ to the
          /* The address doesn't fit, so redirect the PUSHJ to the
             location of the stub.  */
             location of the stub.  */
          r = mmix_elf_perform_relocation (isec,
          r = mmix_elf_perform_relocation (isec,
                                           &elf_mmix_howto_table
                                           &elf_mmix_howto_table
                                           [R_MMIX_ADDR19],
                                           [R_MMIX_ADDR19],
                                           datap,
                                           datap,
                                           addr,
                                           addr,
                                           isec->output_section->vma
                                           isec->output_section->vma
                                           + isec->output_offset
                                           + isec->output_offset
                                           + size
                                           + size
                                           + (mmix_elf_section_data (isec)
                                           + (mmix_elf_section_data (isec)
                                              ->pjs.stub_offset)
                                              ->pjs.stub_offset)
                                           - addr);
                                           - addr);
          if (r != bfd_reloc_ok)
          if (r != bfd_reloc_ok)
            return r;
            return r;
 
 
          stubaddr
          stubaddr
            = (isec->output_section->vma
            = (isec->output_section->vma
               + isec->output_offset
               + isec->output_offset
               + size
               + size
               + mmix_elf_section_data (isec)->pjs.stub_offset);
               + mmix_elf_section_data (isec)->pjs.stub_offset);
 
 
          /* We generate a simple JMP if that suffices, else the whole 5
          /* We generate a simple JMP if that suffices, else the whole 5
             insn stub.  */
             insn stub.  */
          if (bfd_check_overflow (complain_overflow_signed,
          if (bfd_check_overflow (complain_overflow_signed,
                                  elf_mmix_howto_table[R_MMIX_ADDR27].bitsize,
                                  elf_mmix_howto_table[R_MMIX_ADDR27].bitsize,
                                  0,
                                  0,
                                  bfd_arch_bits_per_address (abfd),
                                  bfd_arch_bits_per_address (abfd),
                                  addr + value - stubaddr) == bfd_reloc_ok)
                                  addr + value - stubaddr) == bfd_reloc_ok)
            {
            {
              bfd_put_32 (abfd, JMP_INSN_BYTE << 24, stubcontents);
              bfd_put_32 (abfd, JMP_INSN_BYTE << 24, stubcontents);
              r = mmix_elf_perform_relocation (isec,
              r = mmix_elf_perform_relocation (isec,
                                               &elf_mmix_howto_table
                                               &elf_mmix_howto_table
                                               [R_MMIX_ADDR27],
                                               [R_MMIX_ADDR27],
                                               stubcontents,
                                               stubcontents,
                                               stubaddr,
                                               stubaddr,
                                               value + addr - stubaddr);
                                               value + addr - stubaddr);
              mmix_elf_section_data (isec)->pjs.stub_offset += 4;
              mmix_elf_section_data (isec)->pjs.stub_offset += 4;
 
 
              if (size + mmix_elf_section_data (isec)->pjs.stub_offset
              if (size + mmix_elf_section_data (isec)->pjs.stub_offset
                  > isec->size)
                  > isec->size)
                abort ();
                abort ();
 
 
              return r;
              return r;
            }
            }
          else
          else
            {
            {
              /* Put a "GO $255,0" after the common sequence.  */
              /* Put a "GO $255,0" after the common sequence.  */
              bfd_put_32 (abfd,
              bfd_put_32 (abfd,
                          ((GO_INSN_BYTE | IMM_OFFSET_BIT) << 24)
                          ((GO_INSN_BYTE | IMM_OFFSET_BIT) << 24)
                          | 0xff00, (bfd_byte *) stubcontents + 16);
                          | 0xff00, (bfd_byte *) stubcontents + 16);
 
 
              /* Prepare for the general code to set the first part of the
              /* Prepare for the general code to set the first part of the
                 linker stub, and */
                 linker stub, and */
              value += addr;
              value += addr;
              datap = stubcontents;
              datap = stubcontents;
              mmix_elf_section_data (isec)->pjs.stub_offset
              mmix_elf_section_data (isec)->pjs.stub_offset
                += MAX_PUSHJ_STUB_SIZE;
                += MAX_PUSHJ_STUB_SIZE;
            }
            }
        }
        }
      break;
      break;
 
 
    case R_MMIX_PUSHJ:
    case R_MMIX_PUSHJ:
      {
      {
        int inreg = bfd_get_8 (abfd, (bfd_byte *) datap + 1);
        int inreg = bfd_get_8 (abfd, (bfd_byte *) datap + 1);
 
 
        /* Put a "PUSHGO $N,$255,0" after the common sequence.  */
        /* Put a "PUSHGO $N,$255,0" after the common sequence.  */
        bfd_put_32 (abfd,
        bfd_put_32 (abfd,
                    ((PUSHGO_INSN_BYTE | IMM_OFFSET_BIT) << 24)
                    ((PUSHGO_INSN_BYTE | IMM_OFFSET_BIT) << 24)
                    | (inreg << 16)
                    | (inreg << 16)
                    | 0xff00,
                    | 0xff00,
                    (bfd_byte *) datap + 16);
                    (bfd_byte *) datap + 16);
 
 
        /* We change to an absolute value.  */
        /* We change to an absolute value.  */
        value += addr;
        value += addr;
      }
      }
      break;
      break;
 
 
    case R_MMIX_JMP:
    case R_MMIX_JMP:
      /* This one is a little special.  If we get here on a non-relaxing
      /* This one is a little special.  If we get here on a non-relaxing
         link, and the destination is actually in range, we don't need to
         link, and the destination is actually in range, we don't need to
         execute the nops.
         execute the nops.
         If so, we fall through to the bit-fiddling relocs.
         If so, we fall through to the bit-fiddling relocs.
 
 
         FIXME: bfd_check_overflow seems broken; the relocation is
         FIXME: bfd_check_overflow seems broken; the relocation is
         rightshifted before testing, so supply a zero rightshift.  */
         rightshifted before testing, so supply a zero rightshift.  */
 
 
      if (! ((value & 3) == 0
      if (! ((value & 3) == 0
             && (r = bfd_check_overflow (complain_overflow_signed,
             && (r = bfd_check_overflow (complain_overflow_signed,
                                         howto->bitsize,
                                         howto->bitsize,
                                         0,
                                         0,
                                         bfd_arch_bits_per_address (abfd),
                                         bfd_arch_bits_per_address (abfd),
                                         value)) == bfd_reloc_ok))
                                         value)) == bfd_reloc_ok))
        {
        {
          /* If the relocation doesn't fit in a JMP, we let the NOP:s be
          /* If the relocation doesn't fit in a JMP, we let the NOP:s be
             modified below, and put a "GO $255,$255,0" after the
             modified below, and put a "GO $255,$255,0" after the
             address-loading sequence.  */
             address-loading sequence.  */
          bfd_put_32 (abfd,
          bfd_put_32 (abfd,
                      ((GO_INSN_BYTE | IMM_OFFSET_BIT) << 24)
                      ((GO_INSN_BYTE | IMM_OFFSET_BIT) << 24)
                      | 0xffff00,
                      | 0xffff00,
                      (bfd_byte *) datap + 16);
                      (bfd_byte *) datap + 16);
 
 
          /* We change to an absolute value.  */
          /* We change to an absolute value.  */
          value += addr;
          value += addr;
          break;
          break;
        }
        }
      /* FALLTHROUGH.  */
      /* FALLTHROUGH.  */
    case R_MMIX_ADDR19:
    case R_MMIX_ADDR19:
    case R_MMIX_ADDR27:
    case R_MMIX_ADDR27:
    pcrel_mmix_reloc_fits:
    pcrel_mmix_reloc_fits:
      /* These must be in range, or else we emit an error.  */
      /* These must be in range, or else we emit an error.  */
      if ((value & 3) == 0
      if ((value & 3) == 0
          /* Note rightshift 0; see above.  */
          /* Note rightshift 0; see above.  */
          && (r = bfd_check_overflow (complain_overflow_signed,
          && (r = bfd_check_overflow (complain_overflow_signed,
                                      howto->bitsize,
                                      howto->bitsize,
                                      0,
                                      0,
                                      bfd_arch_bits_per_address (abfd),
                                      bfd_arch_bits_per_address (abfd),
                                      value)) == bfd_reloc_ok)
                                      value)) == bfd_reloc_ok)
        {
        {
          bfd_vma in1
          bfd_vma in1
            = bfd_get_32 (abfd, (bfd_byte *) datap);
            = bfd_get_32 (abfd, (bfd_byte *) datap);
          bfd_vma highbit;
          bfd_vma highbit;
 
 
          if ((bfd_signed_vma) value < 0)
          if ((bfd_signed_vma) value < 0)
            {
            {
              highbit = 1 << 24;
              highbit = 1 << 24;
              value += (1 << (howto->bitsize - 1));
              value += (1 << (howto->bitsize - 1));
            }
            }
          else
          else
            highbit = 0;
            highbit = 0;
 
 
          value >>= 2;
          value >>= 2;
 
 
          bfd_put_32 (abfd,
          bfd_put_32 (abfd,
                      (in1 & howto->src_mask)
                      (in1 & howto->src_mask)
                      | highbit
                      | highbit
                      | (value & howto->dst_mask),
                      | (value & howto->dst_mask),
                      (bfd_byte *) datap);
                      (bfd_byte *) datap);
 
 
          return bfd_reloc_ok;
          return bfd_reloc_ok;
        }
        }
      else
      else
        return bfd_reloc_overflow;
        return bfd_reloc_overflow;
 
 
    case R_MMIX_BASE_PLUS_OFFSET:
    case R_MMIX_BASE_PLUS_OFFSET:
      {
      {
        struct bpo_reloc_section_info *bpodata
        struct bpo_reloc_section_info *bpodata
          = mmix_elf_section_data (isec)->bpo.reloc;
          = mmix_elf_section_data (isec)->bpo.reloc;
        asection *bpo_greg_section
        asection *bpo_greg_section
          = bpodata->bpo_greg_section;
          = bpodata->bpo_greg_section;
        struct bpo_greg_section_info *gregdata
        struct bpo_greg_section_info *gregdata
          = mmix_elf_section_data (bpo_greg_section)->bpo.greg;
          = mmix_elf_section_data (bpo_greg_section)->bpo.greg;
        size_t bpo_index
        size_t bpo_index
          = gregdata->bpo_reloc_indexes[bpodata->bpo_index++];
          = gregdata->bpo_reloc_indexes[bpodata->bpo_index++];
 
 
        /* A consistency check: The value we now have in "relocation" must
        /* A consistency check: The value we now have in "relocation" must
           be the same as the value we stored for that relocation.  It
           be the same as the value we stored for that relocation.  It
           doesn't cost much, so can be left in at all times.  */
           doesn't cost much, so can be left in at all times.  */
        if (value != gregdata->reloc_request[bpo_index].value)
        if (value != gregdata->reloc_request[bpo_index].value)
          {
          {
            (*_bfd_error_handler)
            (*_bfd_error_handler)
              (_("%s: Internal inconsistency error for value for\n\
              (_("%s: Internal inconsistency error for value for\n\
 linker-allocated global register: linked: 0x%lx%08lx != relaxed: 0x%lx%08lx\n"),
 linker-allocated global register: linked: 0x%lx%08lx != relaxed: 0x%lx%08lx\n"),
               bfd_get_filename (isec->owner),
               bfd_get_filename (isec->owner),
               (unsigned long) (value >> 32), (unsigned long) value,
               (unsigned long) (value >> 32), (unsigned long) value,
               (unsigned long) (gregdata->reloc_request[bpo_index].value
               (unsigned long) (gregdata->reloc_request[bpo_index].value
                                >> 32),
                                >> 32),
               (unsigned long) gregdata->reloc_request[bpo_index].value);
               (unsigned long) gregdata->reloc_request[bpo_index].value);
            bfd_set_error (bfd_error_bad_value);
            bfd_set_error (bfd_error_bad_value);
            return bfd_reloc_overflow;
            return bfd_reloc_overflow;
          }
          }
 
 
        /* Then store the register number and offset for that register
        /* Then store the register number and offset for that register
           into datap and datap + 1 respectively.  */
           into datap and datap + 1 respectively.  */
        bfd_put_8 (abfd,
        bfd_put_8 (abfd,
                   gregdata->reloc_request[bpo_index].regindex
                   gregdata->reloc_request[bpo_index].regindex
                   + bpo_greg_section->output_section->vma / 8,
                   + bpo_greg_section->output_section->vma / 8,
                   datap);
                   datap);
        bfd_put_8 (abfd,
        bfd_put_8 (abfd,
                   gregdata->reloc_request[bpo_index].offset,
                   gregdata->reloc_request[bpo_index].offset,
                   ((unsigned char *) datap) + 1);
                   ((unsigned char *) datap) + 1);
        return bfd_reloc_ok;
        return bfd_reloc_ok;
      }
      }
 
 
    case R_MMIX_REG_OR_BYTE:
    case R_MMIX_REG_OR_BYTE:
    case R_MMIX_REG:
    case R_MMIX_REG:
      if (value > 255)
      if (value > 255)
        return bfd_reloc_overflow;
        return bfd_reloc_overflow;
      bfd_put_8 (abfd, value, datap);
      bfd_put_8 (abfd, value, datap);
      return bfd_reloc_ok;
      return bfd_reloc_ok;
 
 
    default:
    default:
      BAD_CASE (howto->type);
      BAD_CASE (howto->type);
    }
    }
 
 
  /* This code adds the common SETL/INCML/INCMH/INCH worst-case
  /* This code adds the common SETL/INCML/INCMH/INCH worst-case
     sequence.  */
     sequence.  */
 
 
  /* Lowest two bits must be 0.  We return bfd_reloc_overflow for
  /* Lowest two bits must be 0.  We return bfd_reloc_overflow for
     everything that looks strange.  */
     everything that looks strange.  */
  if (value & 3)
  if (value & 3)
    flag = bfd_reloc_overflow;
    flag = bfd_reloc_overflow;
 
 
  bfd_put_32 (abfd,
  bfd_put_32 (abfd,
              (SETL_INSN_BYTE << 24) | (value & 0xffff) | (reg << 16),
              (SETL_INSN_BYTE << 24) | (value & 0xffff) | (reg << 16),
              (bfd_byte *) datap + offs);
              (bfd_byte *) datap + offs);
  bfd_put_32 (abfd,
  bfd_put_32 (abfd,
              (INCML_INSN_BYTE << 24) | ((value >> 16) & 0xffff) | (reg << 16),
              (INCML_INSN_BYTE << 24) | ((value >> 16) & 0xffff) | (reg << 16),
              (bfd_byte *) datap + offs + 4);
              (bfd_byte *) datap + offs + 4);
  bfd_put_32 (abfd,
  bfd_put_32 (abfd,
              (INCMH_INSN_BYTE << 24) | ((value >> 32) & 0xffff) | (reg << 16),
              (INCMH_INSN_BYTE << 24) | ((value >> 32) & 0xffff) | (reg << 16),
              (bfd_byte *) datap + offs + 8);
              (bfd_byte *) datap + offs + 8);
  bfd_put_32 (abfd,
  bfd_put_32 (abfd,
              (INCH_INSN_BYTE << 24) | ((value >> 48) & 0xffff) | (reg << 16),
              (INCH_INSN_BYTE << 24) | ((value >> 48) & 0xffff) | (reg << 16),
              (bfd_byte *) datap + offs + 12);
              (bfd_byte *) datap + offs + 12);
 
 
  return flag;
  return flag;
}
}
 
 
/* Set the howto pointer for an MMIX ELF reloc (type RELA).  */
/* Set the howto pointer for an MMIX ELF reloc (type RELA).  */
 
 
static void
static void
mmix_info_to_howto_rela (abfd, cache_ptr, dst)
mmix_info_to_howto_rela (abfd, cache_ptr, dst)
     bfd *abfd ATTRIBUTE_UNUSED;
     bfd *abfd ATTRIBUTE_UNUSED;
     arelent *cache_ptr;
     arelent *cache_ptr;
     Elf_Internal_Rela *dst;
     Elf_Internal_Rela *dst;
{
{
  unsigned int r_type;
  unsigned int r_type;
 
 
  r_type = ELF64_R_TYPE (dst->r_info);
  r_type = ELF64_R_TYPE (dst->r_info);
  BFD_ASSERT (r_type < (unsigned int) R_MMIX_max);
  BFD_ASSERT (r_type < (unsigned int) R_MMIX_max);
  cache_ptr->howto = &elf_mmix_howto_table[r_type];
  cache_ptr->howto = &elf_mmix_howto_table[r_type];
}
}
 
 
/* Any MMIX-specific relocation gets here at assembly time or when linking
/* Any MMIX-specific relocation gets here at assembly time or when linking
   to other formats (such as mmo); this is the relocation function from
   to other formats (such as mmo); this is the relocation function from
   the reloc_table.  We don't get here for final pure ELF linking.  */
   the reloc_table.  We don't get here for final pure ELF linking.  */
 
 
static bfd_reloc_status_type
static bfd_reloc_status_type
mmix_elf_reloc (abfd, reloc_entry, symbol, data, input_section,
mmix_elf_reloc (abfd, reloc_entry, symbol, data, input_section,
                output_bfd, error_message)
                output_bfd, error_message)
     bfd *abfd;
     bfd *abfd;
     arelent *reloc_entry;
     arelent *reloc_entry;
     asymbol *symbol;
     asymbol *symbol;
     PTR data;
     PTR data;
     asection *input_section;
     asection *input_section;
     bfd *output_bfd;
     bfd *output_bfd;
     char **error_message ATTRIBUTE_UNUSED;
     char **error_message ATTRIBUTE_UNUSED;
{
{
  bfd_vma relocation;
  bfd_vma relocation;
  bfd_reloc_status_type r;
  bfd_reloc_status_type r;
  asection *reloc_target_output_section;
  asection *reloc_target_output_section;
  bfd_reloc_status_type flag = bfd_reloc_ok;
  bfd_reloc_status_type flag = bfd_reloc_ok;
  bfd_vma output_base = 0;
  bfd_vma output_base = 0;
  bfd_vma addr;
  bfd_vma addr;
 
 
  r = bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
  r = bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
                             input_section, output_bfd, error_message);
                             input_section, output_bfd, error_message);
 
 
  /* If that was all that was needed (i.e. this isn't a final link, only
  /* If that was all that was needed (i.e. this isn't a final link, only
     some segment adjustments), we're done.  */
     some segment adjustments), we're done.  */
  if (r != bfd_reloc_continue)
  if (r != bfd_reloc_continue)
    return r;
    return r;
 
 
  if (bfd_is_und_section (symbol->section)
  if (bfd_is_und_section (symbol->section)
      && (symbol->flags & BSF_WEAK) == 0
      && (symbol->flags & BSF_WEAK) == 0
      && output_bfd == (bfd *) NULL)
      && output_bfd == (bfd *) NULL)
    return bfd_reloc_undefined;
    return bfd_reloc_undefined;
 
 
  /* Is the address of the relocation really within the section?  */
  /* Is the address of the relocation really within the section?  */
  if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
  if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
    return bfd_reloc_outofrange;
    return bfd_reloc_outofrange;
 
 
  /* Work out which section the relocation is targeted at and the
  /* Work out which section the relocation is targeted at and the
     initial relocation command value.  */
     initial relocation command value.  */
 
 
  /* Get symbol value.  (Common symbols are special.)  */
  /* Get symbol value.  (Common symbols are special.)  */
  if (bfd_is_com_section (symbol->section))
  if (bfd_is_com_section (symbol->section))
    relocation = 0;
    relocation = 0;
  else
  else
    relocation = symbol->value;
    relocation = symbol->value;
 
 
  reloc_target_output_section = bfd_get_output_section (symbol);
  reloc_target_output_section = bfd_get_output_section (symbol);
 
 
  /* Here the variable relocation holds the final address of the symbol we
  /* Here the variable relocation holds the final address of the symbol we
     are relocating against, plus any addend.  */
     are relocating against, plus any addend.  */
  if (output_bfd)
  if (output_bfd)
    output_base = 0;
    output_base = 0;
  else
  else
    output_base = reloc_target_output_section->vma;
    output_base = reloc_target_output_section->vma;
 
 
  relocation += output_base + symbol->section->output_offset;
  relocation += output_base + symbol->section->output_offset;
 
 
  /* Get position of relocation.  */
  /* Get position of relocation.  */
  addr = (reloc_entry->address + input_section->output_section->vma
  addr = (reloc_entry->address + input_section->output_section->vma
          + input_section->output_offset);
          + input_section->output_offset);
  if (output_bfd != (bfd *) NULL)
  if (output_bfd != (bfd *) NULL)
    {
    {
      /* Add in supplied addend.  */
      /* Add in supplied addend.  */
      relocation += reloc_entry->addend;
      relocation += reloc_entry->addend;
 
 
      /* This is a partial relocation, and we want to apply the
      /* This is a partial relocation, and we want to apply the
         relocation to the reloc entry rather than the raw data.
         relocation to the reloc entry rather than the raw data.
         Modify the reloc inplace to reflect what we now know.  */
         Modify the reloc inplace to reflect what we now know.  */
      reloc_entry->addend = relocation;
      reloc_entry->addend = relocation;
      reloc_entry->address += input_section->output_offset;
      reloc_entry->address += input_section->output_offset;
      return flag;
      return flag;
    }
    }
 
 
  return mmix_final_link_relocate (reloc_entry->howto, input_section,
  return mmix_final_link_relocate (reloc_entry->howto, input_section,
                                   data, reloc_entry->address,
                                   data, reloc_entry->address,
                                   reloc_entry->addend, relocation,
                                   reloc_entry->addend, relocation,
                                   bfd_asymbol_name (symbol),
                                   bfd_asymbol_name (symbol),
                                   reloc_target_output_section);
                                   reloc_target_output_section);
}
}


/* Relocate an MMIX ELF section.  Modified from elf32-fr30.c; look to it
/* Relocate an MMIX ELF section.  Modified from elf32-fr30.c; look to it
   for guidance if you're thinking of copying this.  */
   for guidance if you're thinking of copying this.  */
 
 
static bfd_boolean
static bfd_boolean
mmix_elf_relocate_section (output_bfd, info, input_bfd, input_section,
mmix_elf_relocate_section (output_bfd, info, input_bfd, input_section,
                           contents, relocs, local_syms, local_sections)
                           contents, relocs, local_syms, local_sections)
     bfd *output_bfd ATTRIBUTE_UNUSED;
     bfd *output_bfd ATTRIBUTE_UNUSED;
     struct bfd_link_info *info;
     struct bfd_link_info *info;
     bfd *input_bfd;
     bfd *input_bfd;
     asection *input_section;
     asection *input_section;
     bfd_byte *contents;
     bfd_byte *contents;
     Elf_Internal_Rela *relocs;
     Elf_Internal_Rela *relocs;
     Elf_Internal_Sym *local_syms;
     Elf_Internal_Sym *local_syms;
     asection **local_sections;
     asection **local_sections;
{
{
  Elf_Internal_Shdr *symtab_hdr;
  Elf_Internal_Shdr *symtab_hdr;
  struct elf_link_hash_entry **sym_hashes;
  struct elf_link_hash_entry **sym_hashes;
  Elf_Internal_Rela *rel;
  Elf_Internal_Rela *rel;
  Elf_Internal_Rela *relend;
  Elf_Internal_Rela *relend;
  bfd_size_type size;
  bfd_size_type size;
  size_t pjsno = 0;
  size_t pjsno = 0;
 
 
  size = input_section->rawsize ? input_section->rawsize : input_section->size;
  size = input_section->rawsize ? input_section->rawsize : input_section->size;
  symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
  symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
  sym_hashes = elf_sym_hashes (input_bfd);
  sym_hashes = elf_sym_hashes (input_bfd);
  relend = relocs + input_section->reloc_count;
  relend = relocs + input_section->reloc_count;
 
 
  /* Zero the stub area before we start.  */
  /* Zero the stub area before we start.  */
  if (input_section->rawsize != 0
  if (input_section->rawsize != 0
      && input_section->size > input_section->rawsize)
      && input_section->size > input_section->rawsize)
    memset (contents + input_section->rawsize, 0,
    memset (contents + input_section->rawsize, 0,
            input_section->size - input_section->rawsize);
            input_section->size - input_section->rawsize);
 
 
  for (rel = relocs; rel < relend; rel ++)
  for (rel = relocs; rel < relend; rel ++)
    {
    {
      reloc_howto_type *howto;
      reloc_howto_type *howto;
      unsigned long r_symndx;
      unsigned long r_symndx;
      Elf_Internal_Sym *sym;
      Elf_Internal_Sym *sym;
      asection *sec;
      asection *sec;
      struct elf_link_hash_entry *h;
      struct elf_link_hash_entry *h;
      bfd_vma relocation;
      bfd_vma relocation;
      bfd_reloc_status_type r;
      bfd_reloc_status_type r;
      const char *name = NULL;
      const char *name = NULL;
      int r_type;
      int r_type;
      bfd_boolean undefined_signalled = FALSE;
      bfd_boolean undefined_signalled = FALSE;
 
 
      r_type = ELF64_R_TYPE (rel->r_info);
      r_type = ELF64_R_TYPE (rel->r_info);
 
 
      if (r_type == R_MMIX_GNU_VTINHERIT
      if (r_type == R_MMIX_GNU_VTINHERIT
          || r_type == R_MMIX_GNU_VTENTRY)
          || r_type == R_MMIX_GNU_VTENTRY)
        continue;
        continue;
 
 
      r_symndx = ELF64_R_SYM (rel->r_info);
      r_symndx = ELF64_R_SYM (rel->r_info);
 
 
      howto = elf_mmix_howto_table + ELF64_R_TYPE (rel->r_info);
      howto = elf_mmix_howto_table + ELF64_R_TYPE (rel->r_info);
      h = NULL;
      h = NULL;
      sym = NULL;
      sym = NULL;
      sec = NULL;
      sec = NULL;
 
 
      if (r_symndx < symtab_hdr->sh_info)
      if (r_symndx < symtab_hdr->sh_info)
        {
        {
          sym = local_syms + r_symndx;
          sym = local_syms + r_symndx;
          sec = local_sections [r_symndx];
          sec = local_sections [r_symndx];
          relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
          relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
 
 
          name = bfd_elf_string_from_elf_section (input_bfd,
          name = bfd_elf_string_from_elf_section (input_bfd,
                                                  symtab_hdr->sh_link,
                                                  symtab_hdr->sh_link,
                                                  sym->st_name);
                                                  sym->st_name);
          if (name == NULL)
          if (name == NULL)
            name = bfd_section_name (input_bfd, sec);
            name = bfd_section_name (input_bfd, sec);
        }
        }
      else
      else
        {
        {
          bfd_boolean unresolved_reloc;
          bfd_boolean unresolved_reloc;
 
 
          RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
          RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
                                   r_symndx, symtab_hdr, sym_hashes,
                                   r_symndx, symtab_hdr, sym_hashes,
                                   h, sec, relocation,
                                   h, sec, relocation,
                                   unresolved_reloc, undefined_signalled);
                                   unresolved_reloc, undefined_signalled);
          name = h->root.root.string;
          name = h->root.root.string;
        }
        }
 
 
      if (sec != NULL && elf_discarded_section (sec))
      if (sec != NULL && elf_discarded_section (sec))
        {
        {
          /* For relocs against symbols from removed linkonce sections,
          /* For relocs against symbols from removed linkonce sections,
             or sections discarded by a linker script, we just want the
             or sections discarded by a linker script, we just want the
             section contents zeroed.  Avoid any special processing.  */
             section contents zeroed.  Avoid any special processing.  */
          _bfd_clear_contents (howto, input_bfd, contents + rel->r_offset);
          _bfd_clear_contents (howto, input_bfd, contents + rel->r_offset);
          rel->r_info = 0;
          rel->r_info = 0;
          rel->r_addend = 0;
          rel->r_addend = 0;
          continue;
          continue;
        }
        }
 
 
      if (info->relocatable)
      if (info->relocatable)
        {
        {
          /* This is a relocatable link.  For most relocs we don't have to
          /* This is a relocatable link.  For most relocs we don't have to
             change anything, unless the reloc is against a section
             change anything, unless the reloc is against a section
             symbol, in which case we have to adjust according to where
             symbol, in which case we have to adjust according to where
             the section symbol winds up in the output section.  */
             the section symbol winds up in the output section.  */
          if (sym != NULL && ELF_ST_TYPE (sym->st_info) == STT_SECTION)
          if (sym != NULL && ELF_ST_TYPE (sym->st_info) == STT_SECTION)
            rel->r_addend += sec->output_offset;
            rel->r_addend += sec->output_offset;
 
 
          /* For PUSHJ stub relocs however, we may need to change the
          /* For PUSHJ stub relocs however, we may need to change the
             reloc and the section contents, if the reloc doesn't reach
             reloc and the section contents, if the reloc doesn't reach
             beyond the end of the output section and previous stubs.
             beyond the end of the output section and previous stubs.
             Then we change the section contents to be a PUSHJ to the end
             Then we change the section contents to be a PUSHJ to the end
             of the input section plus stubs (we can do that without using
             of the input section plus stubs (we can do that without using
             a reloc), and then we change the reloc to be a R_MMIX_PUSHJ
             a reloc), and then we change the reloc to be a R_MMIX_PUSHJ
             at the stub location.  */
             at the stub location.  */
          if (r_type == R_MMIX_PUSHJ_STUBBABLE)
          if (r_type == R_MMIX_PUSHJ_STUBBABLE)
            {
            {
              /* We've already checked whether we need a stub; use that
              /* We've already checked whether we need a stub; use that
                 knowledge.  */
                 knowledge.  */
              if (mmix_elf_section_data (input_section)->pjs.stub_size[pjsno]
              if (mmix_elf_section_data (input_section)->pjs.stub_size[pjsno]
                  != 0)
                  != 0)
                {
                {
                  Elf_Internal_Rela relcpy;
                  Elf_Internal_Rela relcpy;
 
 
                  if (mmix_elf_section_data (input_section)
                  if (mmix_elf_section_data (input_section)
                      ->pjs.stub_size[pjsno] != MAX_PUSHJ_STUB_SIZE)
                      ->pjs.stub_size[pjsno] != MAX_PUSHJ_STUB_SIZE)
                    abort ();
                    abort ();
 
 
                  /* There's already a PUSHJ insn there, so just fill in
                  /* There's already a PUSHJ insn there, so just fill in
                     the offset bits to the stub.  */
                     the offset bits to the stub.  */
                  if (mmix_final_link_relocate (elf_mmix_howto_table
                  if (mmix_final_link_relocate (elf_mmix_howto_table
                                                + R_MMIX_ADDR19,
                                                + R_MMIX_ADDR19,
                                                input_section,
                                                input_section,
                                                contents,
                                                contents,
                                                rel->r_offset,
                                                rel->r_offset,
                                                0,
                                                0,
                                                input_section
                                                input_section
                                                ->output_section->vma
                                                ->output_section->vma
                                                + input_section->output_offset
                                                + input_section->output_offset
                                                + size
                                                + size
                                                + mmix_elf_section_data (input_section)
                                                + mmix_elf_section_data (input_section)
                                                ->pjs.stub_offset,
                                                ->pjs.stub_offset,
                                                NULL, NULL) != bfd_reloc_ok)
                                                NULL, NULL) != bfd_reloc_ok)
                    return FALSE;
                    return FALSE;
 
 
                  /* Put a JMP insn at the stub; it goes with the
                  /* Put a JMP insn at the stub; it goes with the
                     R_MMIX_JMP reloc.  */
                     R_MMIX_JMP reloc.  */
                  bfd_put_32 (output_bfd, JMP_INSN_BYTE << 24,
                  bfd_put_32 (output_bfd, JMP_INSN_BYTE << 24,
                              contents
                              contents
                              + size
                              + size
                              + mmix_elf_section_data (input_section)
                              + mmix_elf_section_data (input_section)
                              ->pjs.stub_offset);
                              ->pjs.stub_offset);
 
 
                  /* Change the reloc to be at the stub, and to a full
                  /* Change the reloc to be at the stub, and to a full
                     R_MMIX_JMP reloc.  */
                     R_MMIX_JMP reloc.  */
                  rel->r_info = ELF64_R_INFO (r_symndx, R_MMIX_JMP);
                  rel->r_info = ELF64_R_INFO (r_symndx, R_MMIX_JMP);
                  rel->r_offset
                  rel->r_offset
                    = (size
                    = (size
                       + mmix_elf_section_data (input_section)
                       + mmix_elf_section_data (input_section)
                       ->pjs.stub_offset);
                       ->pjs.stub_offset);
 
 
                  mmix_elf_section_data (input_section)->pjs.stub_offset
                  mmix_elf_section_data (input_section)->pjs.stub_offset
                    += MAX_PUSHJ_STUB_SIZE;
                    += MAX_PUSHJ_STUB_SIZE;
 
 
                  /* Shift this reloc to the end of the relocs to maintain
                  /* Shift this reloc to the end of the relocs to maintain
                     the r_offset sorted reloc order.  */
                     the r_offset sorted reloc order.  */
                  relcpy = *rel;
                  relcpy = *rel;
                  memmove (rel, rel + 1, (char *) relend - (char *) rel);
                  memmove (rel, rel + 1, (char *) relend - (char *) rel);
                  relend[-1] = relcpy;
                  relend[-1] = relcpy;
 
 
                  /* Back up one reloc, or else we'd skip the next reloc
                  /* Back up one reloc, or else we'd skip the next reloc
                   in turn.  */
                   in turn.  */
                  rel--;
                  rel--;
                }
                }
 
 
              pjsno++;
              pjsno++;
            }
            }
          continue;
          continue;
        }
        }
 
 
      r = mmix_final_link_relocate (howto, input_section,
      r = mmix_final_link_relocate (howto, input_section,
                                    contents, rel->r_offset,
                                    contents, rel->r_offset,
                                    rel->r_addend, relocation, name, sec);
                                    rel->r_addend, relocation, name, sec);
 
 
      if (r != bfd_reloc_ok)
      if (r != bfd_reloc_ok)
        {
        {
          bfd_boolean check_ok = TRUE;
          bfd_boolean check_ok = TRUE;
          const char * msg = (const char *) NULL;
          const char * msg = (const char *) NULL;
 
 
          switch (r)
          switch (r)
            {
            {
            case bfd_reloc_overflow:
            case bfd_reloc_overflow:
              check_ok = info->callbacks->reloc_overflow
              check_ok = info->callbacks->reloc_overflow
                (info, (h ? &h->root : NULL), name, howto->name,
                (info, (h ? &h->root : NULL), name, howto->name,
                 (bfd_vma) 0, input_bfd, input_section, rel->r_offset);
                 (bfd_vma) 0, input_bfd, input_section, rel->r_offset);
              break;
              break;
 
 
            case bfd_reloc_undefined:
            case bfd_reloc_undefined:
              /* We may have sent this message above.  */
              /* We may have sent this message above.  */
              if (! undefined_signalled)
              if (! undefined_signalled)
                check_ok = info->callbacks->undefined_symbol
                check_ok = info->callbacks->undefined_symbol
                  (info, name, input_bfd, input_section, rel->r_offset,
                  (info, name, input_bfd, input_section, rel->r_offset,
                   TRUE);
                   TRUE);
              undefined_signalled = TRUE;
              undefined_signalled = TRUE;
              break;
              break;
 
 
            case bfd_reloc_outofrange:
            case bfd_reloc_outofrange:
              msg = _("internal error: out of range error");
              msg = _("internal error: out of range error");
              break;
              break;
 
 
            case bfd_reloc_notsupported:
            case bfd_reloc_notsupported:
              msg = _("internal error: unsupported relocation error");
              msg = _("internal error: unsupported relocation error");
              break;
              break;
 
 
            case bfd_reloc_dangerous:
            case bfd_reloc_dangerous:
              msg = _("internal error: dangerous relocation");
              msg = _("internal error: dangerous relocation");
              break;
              break;
 
 
            default:
            default:
              msg = _("internal error: unknown error");
              msg = _("internal error: unknown error");
              break;
              break;
            }
            }
 
 
          if (msg)
          if (msg)
            check_ok = info->callbacks->warning
            check_ok = info->callbacks->warning
              (info, msg, name, input_bfd, input_section, rel->r_offset);
              (info, msg, name, input_bfd, input_section, rel->r_offset);
 
 
          if (! check_ok)
          if (! check_ok)
            return FALSE;
            return FALSE;
        }
        }
    }
    }
 
 
  return TRUE;
  return TRUE;
}
}


/* Perform a single relocation.  By default we use the standard BFD
/* Perform a single relocation.  By default we use the standard BFD
   routines.  A few relocs we have to do ourselves.  */
   routines.  A few relocs we have to do ourselves.  */
 
 
static bfd_reloc_status_type
static bfd_reloc_status_type
mmix_final_link_relocate (howto, input_section, contents,
mmix_final_link_relocate (howto, input_section, contents,
                          r_offset, r_addend, relocation, symname, symsec)
                          r_offset, r_addend, relocation, symname, symsec)
     reloc_howto_type *howto;
     reloc_howto_type *howto;
     asection *input_section;
     asection *input_section;
     bfd_byte *contents;
     bfd_byte *contents;
     bfd_vma r_offset;
     bfd_vma r_offset;
     bfd_signed_vma r_addend;
     bfd_signed_vma r_addend;
     bfd_vma relocation;
     bfd_vma relocation;
     const char *symname;
     const char *symname;
     asection *symsec;
     asection *symsec;
{
{
  bfd_reloc_status_type r = bfd_reloc_ok;
  bfd_reloc_status_type r = bfd_reloc_ok;
  bfd_vma addr
  bfd_vma addr
    = (input_section->output_section->vma
    = (input_section->output_section->vma
       + input_section->output_offset
       + input_section->output_offset
       + r_offset);
       + r_offset);
  bfd_signed_vma srel
  bfd_signed_vma srel
    = (bfd_signed_vma) relocation + r_addend;
    = (bfd_signed_vma) relocation + r_addend;
 
 
  switch (howto->type)
  switch (howto->type)
    {
    {
      /* All these are PC-relative.  */
      /* All these are PC-relative.  */
    case R_MMIX_PUSHJ_STUBBABLE:
    case R_MMIX_PUSHJ_STUBBABLE:
    case R_MMIX_PUSHJ:
    case R_MMIX_PUSHJ:
    case R_MMIX_CBRANCH:
    case R_MMIX_CBRANCH:
    case R_MMIX_ADDR19:
    case R_MMIX_ADDR19:
    case R_MMIX_GETA:
    case R_MMIX_GETA:
    case R_MMIX_ADDR27:
    case R_MMIX_ADDR27:
    case R_MMIX_JMP:
    case R_MMIX_JMP:
      contents += r_offset;
      contents += r_offset;
 
 
      srel -= (input_section->output_section->vma
      srel -= (input_section->output_section->vma
               + input_section->output_offset
               + input_section->output_offset
               + r_offset);
               + r_offset);
 
 
      r = mmix_elf_perform_relocation (input_section, howto, contents,
      r = mmix_elf_perform_relocation (input_section, howto, contents,
                                       addr, srel);
                                       addr, srel);
      break;
      break;
 
 
    case R_MMIX_BASE_PLUS_OFFSET:
    case R_MMIX_BASE_PLUS_OFFSET:
      if (symsec == NULL)
      if (symsec == NULL)
        return bfd_reloc_undefined;
        return bfd_reloc_undefined;
 
 
      /* Check that we're not relocating against a register symbol.  */
      /* Check that we're not relocating against a register symbol.  */
      if (strcmp (bfd_get_section_name (symsec->owner, symsec),
      if (strcmp (bfd_get_section_name (symsec->owner, symsec),
                  MMIX_REG_CONTENTS_SECTION_NAME) == 0
                  MMIX_REG_CONTENTS_SECTION_NAME) == 0
          || strcmp (bfd_get_section_name (symsec->owner, symsec),
          || strcmp (bfd_get_section_name (symsec->owner, symsec),
                     MMIX_REG_SECTION_NAME) == 0)
                     MMIX_REG_SECTION_NAME) == 0)
        {
        {
          /* Note: This is separated out into two messages in order
          /* Note: This is separated out into two messages in order
             to ease the translation into other languages.  */
             to ease the translation into other languages.  */
          if (symname == NULL || *symname == 0)
          if (symname == NULL || *symname == 0)
            (*_bfd_error_handler)
            (*_bfd_error_handler)
              (_("%s: base-plus-offset relocation against register symbol: (unknown) in %s"),
              (_("%s: base-plus-offset relocation against register symbol: (unknown) in %s"),
               bfd_get_filename (input_section->owner),
               bfd_get_filename (input_section->owner),
               bfd_get_section_name (symsec->owner, symsec));
               bfd_get_section_name (symsec->owner, symsec));
          else
          else
            (*_bfd_error_handler)
            (*_bfd_error_handler)
              (_("%s: base-plus-offset relocation against register symbol: %s in %s"),
              (_("%s: base-plus-offset relocation against register symbol: %s in %s"),
               bfd_get_filename (input_section->owner), symname,
               bfd_get_filename (input_section->owner), symname,
               bfd_get_section_name (symsec->owner, symsec));
               bfd_get_section_name (symsec->owner, symsec));
          return bfd_reloc_overflow;
          return bfd_reloc_overflow;
        }
        }
      goto do_mmix_reloc;
      goto do_mmix_reloc;
 
 
    case R_MMIX_REG_OR_BYTE:
    case R_MMIX_REG_OR_BYTE:
    case R_MMIX_REG:
    case R_MMIX_REG:
      /* For now, we handle these alike.  They must refer to an register
      /* For now, we handle these alike.  They must refer to an register
         symbol, which is either relative to the register section and in
         symbol, which is either relative to the register section and in
         the range 0..255, or is in the register contents section with vma
         the range 0..255, or is in the register contents section with vma
         regno * 8.  */
         regno * 8.  */
 
 
      /* FIXME: A better way to check for reg contents section?
      /* FIXME: A better way to check for reg contents section?
         FIXME: Postpone section->scaling to mmix_elf_perform_relocation? */
         FIXME: Postpone section->scaling to mmix_elf_perform_relocation? */
      if (symsec == NULL)
      if (symsec == NULL)
        return bfd_reloc_undefined;
        return bfd_reloc_undefined;
 
 
      if (strcmp (bfd_get_section_name (symsec->owner, symsec),
      if (strcmp (bfd_get_section_name (symsec->owner, symsec),
                  MMIX_REG_CONTENTS_SECTION_NAME) == 0)
                  MMIX_REG_CONTENTS_SECTION_NAME) == 0)
        {
        {
          if ((srel & 7) != 0 || srel < 32*8 || srel > 255*8)
          if ((srel & 7) != 0 || srel < 32*8 || srel > 255*8)
            {
            {
              /* The bfd_reloc_outofrange return value, though intuitively
              /* The bfd_reloc_outofrange return value, though intuitively
                 a better value, will not get us an error.  */
                 a better value, will not get us an error.  */
              return bfd_reloc_overflow;
              return bfd_reloc_overflow;
            }
            }
          srel /= 8;
          srel /= 8;
        }
        }
      else if (strcmp (bfd_get_section_name (symsec->owner, symsec),
      else if (strcmp (bfd_get_section_name (symsec->owner, symsec),
                       MMIX_REG_SECTION_NAME) == 0)
                       MMIX_REG_SECTION_NAME) == 0)
        {
        {
          if (srel < 0 || srel > 255)
          if (srel < 0 || srel > 255)
            /* The bfd_reloc_outofrange return value, though intuitively a
            /* The bfd_reloc_outofrange return value, though intuitively a
               better value, will not get us an error.  */
               better value, will not get us an error.  */
            return bfd_reloc_overflow;
            return bfd_reloc_overflow;
        }
        }
      else
      else
        {
        {
          /* Note: This is separated out into two messages in order
          /* Note: This is separated out into two messages in order
             to ease the translation into other languages.  */
             to ease the translation into other languages.  */
          if (symname == NULL || *symname == 0)
          if (symname == NULL || *symname == 0)
            (*_bfd_error_handler)
            (*_bfd_error_handler)
              (_("%s: register relocation against non-register symbol: (unknown) in %s"),
              (_("%s: register relocation against non-register symbol: (unknown) in %s"),
               bfd_get_filename (input_section->owner),
               bfd_get_filename (input_section->owner),
               bfd_get_section_name (symsec->owner, symsec));
               bfd_get_section_name (symsec->owner, symsec));
          else
          else
            (*_bfd_error_handler)
            (*_bfd_error_handler)
              (_("%s: register relocation against non-register symbol: %s in %s"),
              (_("%s: register relocation against non-register symbol: %s in %s"),
               bfd_get_filename (input_section->owner), symname,
               bfd_get_filename (input_section->owner), symname,
               bfd_get_section_name (symsec->owner, symsec));
               bfd_get_section_name (symsec->owner, symsec));
 
 
          /* The bfd_reloc_outofrange return value, though intuitively a
          /* The bfd_reloc_outofrange return value, though intuitively a
             better value, will not get us an error.  */
             better value, will not get us an error.  */
          return bfd_reloc_overflow;
          return bfd_reloc_overflow;
        }
        }
    do_mmix_reloc:
    do_mmix_reloc:
      contents += r_offset;
      contents += r_offset;
      r = mmix_elf_perform_relocation (input_section, howto, contents,
      r = mmix_elf_perform_relocation (input_section, howto, contents,
                                       addr, srel);
                                       addr, srel);
      break;
      break;
 
 
    case R_MMIX_LOCAL:
    case R_MMIX_LOCAL:
      /* This isn't a real relocation, it's just an assertion that the
      /* This isn't a real relocation, it's just an assertion that the
         final relocation value corresponds to a local register.  We
         final relocation value corresponds to a local register.  We
         ignore the actual relocation; nothing is changed.  */
         ignore the actual relocation; nothing is changed.  */
      {
      {
        asection *regsec
        asection *regsec
          = bfd_get_section_by_name (input_section->output_section->owner,
          = bfd_get_section_by_name (input_section->output_section->owner,
                                     MMIX_REG_CONTENTS_SECTION_NAME);
                                     MMIX_REG_CONTENTS_SECTION_NAME);
        bfd_vma first_global;
        bfd_vma first_global;
 
 
        /* Check that this is an absolute value, or a reference to the
        /* Check that this is an absolute value, or a reference to the
           register contents section or the register (symbol) section.
           register contents section or the register (symbol) section.
           Absolute numbers can get here as undefined section.  Undefined
           Absolute numbers can get here as undefined section.  Undefined
           symbols are signalled elsewhere, so there's no conflict in us
           symbols are signalled elsewhere, so there's no conflict in us
           accidentally handling it.  */
           accidentally handling it.  */
        if (!bfd_is_abs_section (symsec)
        if (!bfd_is_abs_section (symsec)
            && !bfd_is_und_section (symsec)
            && !bfd_is_und_section (symsec)
            && strcmp (bfd_get_section_name (symsec->owner, symsec),
            && strcmp (bfd_get_section_name (symsec->owner, symsec),
                       MMIX_REG_CONTENTS_SECTION_NAME) != 0
                       MMIX_REG_CONTENTS_SECTION_NAME) != 0
            && strcmp (bfd_get_section_name (symsec->owner, symsec),
            && strcmp (bfd_get_section_name (symsec->owner, symsec),
                       MMIX_REG_SECTION_NAME) != 0)
                       MMIX_REG_SECTION_NAME) != 0)
        {
        {
          (*_bfd_error_handler)
          (*_bfd_error_handler)
            (_("%s: directive LOCAL valid only with a register or absolute value"),
            (_("%s: directive LOCAL valid only with a register or absolute value"),
             bfd_get_filename (input_section->owner));
             bfd_get_filename (input_section->owner));
 
 
          return bfd_reloc_overflow;
          return bfd_reloc_overflow;
        }
        }
 
 
      /* If we don't have a register contents section, then $255 is the
      /* If we don't have a register contents section, then $255 is the
         first global register.  */
         first global register.  */
      if (regsec == NULL)
      if (regsec == NULL)
        first_global = 255;
        first_global = 255;
      else
      else
        {
        {
          first_global = bfd_get_section_vma (abfd, regsec) / 8;
          first_global = bfd_get_section_vma (abfd, regsec) / 8;
          if (strcmp (bfd_get_section_name (symsec->owner, symsec),
          if (strcmp (bfd_get_section_name (symsec->owner, symsec),
                      MMIX_REG_CONTENTS_SECTION_NAME) == 0)
                      MMIX_REG_CONTENTS_SECTION_NAME) == 0)
            {
            {
              if ((srel & 7) != 0 || srel < 32*8 || srel > 255*8)
              if ((srel & 7) != 0 || srel < 32*8 || srel > 255*8)
                /* The bfd_reloc_outofrange return value, though
                /* The bfd_reloc_outofrange return value, though
                   intuitively a better value, will not get us an error.  */
                   intuitively a better value, will not get us an error.  */
                return bfd_reloc_overflow;
                return bfd_reloc_overflow;
              srel /= 8;
              srel /= 8;
            }
            }
        }
        }
 
 
        if ((bfd_vma) srel >= first_global)
        if ((bfd_vma) srel >= first_global)
          {
          {
            /* FIXME: Better error message.  */
            /* FIXME: Better error message.  */
            (*_bfd_error_handler)
            (*_bfd_error_handler)
              (_("%s: LOCAL directive: Register $%ld is not a local register.  First global register is $%ld."),
              (_("%s: LOCAL directive: Register $%ld is not a local register.  First global register is $%ld."),
               bfd_get_filename (input_section->owner), (long) srel, (long) first_global);
               bfd_get_filename (input_section->owner), (long) srel, (long) first_global);
 
 
            return bfd_reloc_overflow;
            return bfd_reloc_overflow;
          }
          }
      }
      }
      r = bfd_reloc_ok;
      r = bfd_reloc_ok;
      break;
      break;
 
 
    default:
    default:
      r = _bfd_final_link_relocate (howto, input_section->owner, input_section,
      r = _bfd_final_link_relocate (howto, input_section->owner, input_section,
                                    contents, r_offset,
                                    contents, r_offset,
                                    relocation, r_addend);
                                    relocation, r_addend);
    }
    }
 
 
  return r;
  return r;
}
}


/* Return the section that should be marked against GC for a given
/* Return the section that should be marked against GC for a given
   relocation.  */
   relocation.  */
 
 
static asection *
static asection *
mmix_elf_gc_mark_hook (asection *sec,
mmix_elf_gc_mark_hook (asection *sec,
                       struct bfd_link_info *info,
                       struct bfd_link_info *info,
                       Elf_Internal_Rela *rel,
                       Elf_Internal_Rela *rel,
                       struct elf_link_hash_entry *h,
                       struct elf_link_hash_entry *h,
                       Elf_Internal_Sym *sym)
                       Elf_Internal_Sym *sym)
{
{
  if (h != NULL)
  if (h != NULL)
    switch (ELF64_R_TYPE (rel->r_info))
    switch (ELF64_R_TYPE (rel->r_info))
      {
      {
      case R_MMIX_GNU_VTINHERIT:
      case R_MMIX_GNU_VTINHERIT:
      case R_MMIX_GNU_VTENTRY:
      case R_MMIX_GNU_VTENTRY:
        return NULL;
        return NULL;
      }
      }
 
 
  return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
  return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
}
}
 
 
/* Update relocation info for a GC-excluded section.  We could supposedly
/* Update relocation info for a GC-excluded section.  We could supposedly
   perform the allocation after GC, but there's no suitable hook between
   perform the allocation after GC, but there's no suitable hook between
   GC (or section merge) and the point when all input sections must be
   GC (or section merge) and the point when all input sections must be
   present.  Better to waste some memory and (perhaps) a little time.  */
   present.  Better to waste some memory and (perhaps) a little time.  */
 
 
static bfd_boolean
static bfd_boolean
mmix_elf_gc_sweep_hook (bfd *abfd ATTRIBUTE_UNUSED,
mmix_elf_gc_sweep_hook (bfd *abfd ATTRIBUTE_UNUSED,
                        struct bfd_link_info *info ATTRIBUTE_UNUSED,
                        struct bfd_link_info *info ATTRIBUTE_UNUSED,
                        asection *sec,
                        asection *sec,
                        const Elf_Internal_Rela *relocs ATTRIBUTE_UNUSED)
                        const Elf_Internal_Rela *relocs ATTRIBUTE_UNUSED)
{
{
  struct bpo_reloc_section_info *bpodata
  struct bpo_reloc_section_info *bpodata
    = mmix_elf_section_data (sec)->bpo.reloc;
    = mmix_elf_section_data (sec)->bpo.reloc;
  asection *allocated_gregs_section;
  asection *allocated_gregs_section;
 
 
  /* If no bpodata here, we have nothing to do.  */
  /* If no bpodata here, we have nothing to do.  */
  if (bpodata == NULL)
  if (bpodata == NULL)
    return TRUE;
    return TRUE;
 
 
  allocated_gregs_section = bpodata->bpo_greg_section;
  allocated_gregs_section = bpodata->bpo_greg_section;
 
 
  mmix_elf_section_data (allocated_gregs_section)->bpo.greg->n_bpo_relocs
  mmix_elf_section_data (allocated_gregs_section)->bpo.greg->n_bpo_relocs
    -= bpodata->n_bpo_relocs_this_section;
    -= bpodata->n_bpo_relocs_this_section;
 
 
  return TRUE;
  return TRUE;
}
}


/* Sort register relocs to come before expanding relocs.  */
/* Sort register relocs to come before expanding relocs.  */
 
 
static int
static int
mmix_elf_sort_relocs (p1, p2)
mmix_elf_sort_relocs (p1, p2)
     const PTR p1;
     const PTR p1;
     const PTR p2;
     const PTR p2;
{
{
  const Elf_Internal_Rela *r1 = (const Elf_Internal_Rela *) p1;
  const Elf_Internal_Rela *r1 = (const Elf_Internal_Rela *) p1;
  const Elf_Internal_Rela *r2 = (const Elf_Internal_Rela *) p2;
  const Elf_Internal_Rela *r2 = (const Elf_Internal_Rela *) p2;
  int r1_is_reg, r2_is_reg;
  int r1_is_reg, r2_is_reg;
 
 
  /* Sort primarily on r_offset & ~3, so relocs are done to consecutive
  /* Sort primarily on r_offset & ~3, so relocs are done to consecutive
     insns.  */
     insns.  */
  if ((r1->r_offset & ~(bfd_vma) 3) > (r2->r_offset & ~(bfd_vma) 3))
  if ((r1->r_offset & ~(bfd_vma) 3) > (r2->r_offset & ~(bfd_vma) 3))
    return 1;
    return 1;
  else if ((r1->r_offset & ~(bfd_vma) 3) < (r2->r_offset & ~(bfd_vma) 3))
  else if ((r1->r_offset & ~(bfd_vma) 3) < (r2->r_offset & ~(bfd_vma) 3))
    return -1;
    return -1;
 
 
  r1_is_reg
  r1_is_reg
    = (ELF64_R_TYPE (r1->r_info) == R_MMIX_REG_OR_BYTE
    = (ELF64_R_TYPE (r1->r_info) == R_MMIX_REG_OR_BYTE
       || ELF64_R_TYPE (r1->r_info) == R_MMIX_REG);
       || ELF64_R_TYPE (r1->r_info) == R_MMIX_REG);
  r2_is_reg
  r2_is_reg
    = (ELF64_R_TYPE (r2->r_info) == R_MMIX_REG_OR_BYTE
    = (ELF64_R_TYPE (r2->r_info) == R_MMIX_REG_OR_BYTE
       || ELF64_R_TYPE (r2->r_info) == R_MMIX_REG);
       || ELF64_R_TYPE (r2->r_info) == R_MMIX_REG);
  if (r1_is_reg != r2_is_reg)
  if (r1_is_reg != r2_is_reg)
    return r2_is_reg - r1_is_reg;
    return r2_is_reg - r1_is_reg;
 
 
  /* Neither or both are register relocs.  Then sort on full offset.  */
  /* Neither or both are register relocs.  Then sort on full offset.  */
  if (r1->r_offset > r2->r_offset)
  if (r1->r_offset > r2->r_offset)
    return 1;
    return 1;
  else if (r1->r_offset < r2->r_offset)
  else if (r1->r_offset < r2->r_offset)
    return -1;
    return -1;
  return 0;
  return 0;
}
}
 
 
/* Subset of mmix_elf_check_relocs, common to ELF and mmo linking.  */
/* Subset of mmix_elf_check_relocs, common to ELF and mmo linking.  */
 
 
static bfd_boolean
static bfd_boolean
mmix_elf_check_common_relocs  (abfd, info, sec, relocs)
mmix_elf_check_common_relocs  (abfd, info, sec, relocs)
     bfd *abfd;
     bfd *abfd;
     struct bfd_link_info *info;
     struct bfd_link_info *info;
     asection *sec;
     asection *sec;
     const Elf_Internal_Rela *relocs;
     const Elf_Internal_Rela *relocs;
{
{
  bfd *bpo_greg_owner = NULL;
  bfd *bpo_greg_owner = NULL;
  asection *allocated_gregs_section = NULL;
  asection *allocated_gregs_section = NULL;
  struct bpo_greg_section_info *gregdata = NULL;
  struct bpo_greg_section_info *gregdata = NULL;
  struct bpo_reloc_section_info *bpodata = NULL;
  struct bpo_reloc_section_info *bpodata = NULL;
  const Elf_Internal_Rela *rel;
  const Elf_Internal_Rela *rel;
  const Elf_Internal_Rela *rel_end;
  const Elf_Internal_Rela *rel_end;
 
 
  /* We currently have to abuse this COFF-specific member, since there's
  /* We currently have to abuse this COFF-specific member, since there's
     no target-machine-dedicated member.  There's no alternative outside
     no target-machine-dedicated member.  There's no alternative outside
     the bfd_link_info struct; we can't specialize a hash-table since
     the bfd_link_info struct; we can't specialize a hash-table since
     they're different between ELF and mmo.  */
     they're different between ELF and mmo.  */
  bpo_greg_owner = (bfd *) info->base_file;
  bpo_greg_owner = (bfd *) info->base_file;
 
 
  rel_end = relocs + sec->reloc_count;
  rel_end = relocs + sec->reloc_count;
  for (rel = relocs; rel < rel_end; rel++)
  for (rel = relocs; rel < rel_end; rel++)
    {
    {
      switch (ELF64_R_TYPE (rel->r_info))
      switch (ELF64_R_TYPE (rel->r_info))
        {
        {
          /* This relocation causes a GREG allocation.  We need to count
          /* This relocation causes a GREG allocation.  We need to count
             them, and we need to create a section for them, so we need an
             them, and we need to create a section for them, so we need an
             object to fake as the owner of that section.  We can't use
             object to fake as the owner of that section.  We can't use
             the ELF dynobj for this, since the ELF bits assume lots of
             the ELF dynobj for this, since the ELF bits assume lots of
             DSO-related stuff if that member is non-NULL.  */
             DSO-related stuff if that member is non-NULL.  */
        case R_MMIX_BASE_PLUS_OFFSET:
        case R_MMIX_BASE_PLUS_OFFSET:
          /* We don't do anything with this reloc for a relocatable link.  */
          /* We don't do anything with this reloc for a relocatable link.  */
          if (info->relocatable)
          if (info->relocatable)
            break;
            break;
 
 
          if (bpo_greg_owner == NULL)
          if (bpo_greg_owner == NULL)
            {
            {
              bpo_greg_owner = abfd;
              bpo_greg_owner = abfd;
              info->base_file = (PTR) bpo_greg_owner;
              info->base_file = (PTR) bpo_greg_owner;
            }
            }
 
 
          if (allocated_gregs_section == NULL)
          if (allocated_gregs_section == NULL)
            allocated_gregs_section
            allocated_gregs_section
              = bfd_get_section_by_name (bpo_greg_owner,
              = bfd_get_section_by_name (bpo_greg_owner,
                                         MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME);
                                         MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME);
 
 
          if (allocated_gregs_section == NULL)
          if (allocated_gregs_section == NULL)
            {
            {
              allocated_gregs_section
              allocated_gregs_section
                = bfd_make_section_with_flags (bpo_greg_owner,
                = bfd_make_section_with_flags (bpo_greg_owner,
                                               MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME,
                                               MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME,
                                               (SEC_HAS_CONTENTS
                                               (SEC_HAS_CONTENTS
                                                | SEC_IN_MEMORY
                                                | SEC_IN_MEMORY
                                                | SEC_LINKER_CREATED));
                                                | SEC_LINKER_CREATED));
              /* Setting both SEC_ALLOC and SEC_LOAD means the section is
              /* Setting both SEC_ALLOC and SEC_LOAD means the section is
                 treated like any other section, and we'd get errors for
                 treated like any other section, and we'd get errors for
                 address overlap with the text section.  Let's set none of
                 address overlap with the text section.  Let's set none of
                 those flags, as that is what currently happens for usual
                 those flags, as that is what currently happens for usual
                 GREG allocations, and that works.  */
                 GREG allocations, and that works.  */
              if (allocated_gregs_section == NULL
              if (allocated_gregs_section == NULL
                  || !bfd_set_section_alignment (bpo_greg_owner,
                  || !bfd_set_section_alignment (bpo_greg_owner,
                                                 allocated_gregs_section,
                                                 allocated_gregs_section,
                                                 3))
                                                 3))
                return FALSE;
                return FALSE;
 
 
              gregdata = (struct bpo_greg_section_info *)
              gregdata = (struct bpo_greg_section_info *)
                bfd_zalloc (bpo_greg_owner, sizeof (struct bpo_greg_section_info));
                bfd_zalloc (bpo_greg_owner, sizeof (struct bpo_greg_section_info));
              if (gregdata == NULL)
              if (gregdata == NULL)
                return FALSE;
                return FALSE;
              mmix_elf_section_data (allocated_gregs_section)->bpo.greg
              mmix_elf_section_data (allocated_gregs_section)->bpo.greg
                = gregdata;
                = gregdata;
            }
            }
          else if (gregdata == NULL)
          else if (gregdata == NULL)
            gregdata
            gregdata
              = mmix_elf_section_data (allocated_gregs_section)->bpo.greg;
              = mmix_elf_section_data (allocated_gregs_section)->bpo.greg;
 
 
          /* Get ourselves some auxiliary info for the BPO-relocs.  */
          /* Get ourselves some auxiliary info for the BPO-relocs.  */
          if (bpodata == NULL)
          if (bpodata == NULL)
            {
            {
              /* No use doing a separate iteration pass to find the upper
              /* No use doing a separate iteration pass to find the upper
                 limit - just use the number of relocs.  */
                 limit - just use the number of relocs.  */
              bpodata = (struct bpo_reloc_section_info *)
              bpodata = (struct bpo_reloc_section_info *)
                bfd_alloc (bpo_greg_owner,
                bfd_alloc (bpo_greg_owner,
                           sizeof (struct bpo_reloc_section_info)
                           sizeof (struct bpo_reloc_section_info)
                           * (sec->reloc_count + 1));
                           * (sec->reloc_count + 1));
              if (bpodata == NULL)
              if (bpodata == NULL)
                return FALSE;
                return FALSE;
              mmix_elf_section_data (sec)->bpo.reloc = bpodata;
              mmix_elf_section_data (sec)->bpo.reloc = bpodata;
              bpodata->first_base_plus_offset_reloc
              bpodata->first_base_plus_offset_reloc
                = bpodata->bpo_index
                = bpodata->bpo_index
                = gregdata->n_max_bpo_relocs;
                = gregdata->n_max_bpo_relocs;
              bpodata->bpo_greg_section
              bpodata->bpo_greg_section
                = allocated_gregs_section;
                = allocated_gregs_section;
              bpodata->n_bpo_relocs_this_section = 0;
              bpodata->n_bpo_relocs_this_section = 0;
            }
            }
 
 
          bpodata->n_bpo_relocs_this_section++;
          bpodata->n_bpo_relocs_this_section++;
          gregdata->n_max_bpo_relocs++;
          gregdata->n_max_bpo_relocs++;
 
 
          /* We don't get another chance to set this before GC; we've not
          /* We don't get another chance to set this before GC; we've not
             set up any hook that runs before GC.  */
             set up any hook that runs before GC.  */
          gregdata->n_bpo_relocs
          gregdata->n_bpo_relocs
            = gregdata->n_max_bpo_relocs;
            = gregdata->n_max_bpo_relocs;
          break;
          break;
 
 
        case R_MMIX_PUSHJ_STUBBABLE:
        case R_MMIX_PUSHJ_STUBBABLE:
          mmix_elf_section_data (sec)->pjs.n_pushj_relocs++;
          mmix_elf_section_data (sec)->pjs.n_pushj_relocs++;
          break;
          break;
        }
        }
    }
    }
 
 
  /* Allocate per-reloc stub storage and initialize it to the max stub
  /* Allocate per-reloc stub storage and initialize it to the max stub
     size.  */
     size.  */
  if (mmix_elf_section_data (sec)->pjs.n_pushj_relocs != 0)
  if (mmix_elf_section_data (sec)->pjs.n_pushj_relocs != 0)
    {
    {
      size_t i;
      size_t i;
 
 
      mmix_elf_section_data (sec)->pjs.stub_size
      mmix_elf_section_data (sec)->pjs.stub_size
        = bfd_alloc (abfd, mmix_elf_section_data (sec)->pjs.n_pushj_relocs
        = bfd_alloc (abfd, mmix_elf_section_data (sec)->pjs.n_pushj_relocs
                     * sizeof (mmix_elf_section_data (sec)
                     * sizeof (mmix_elf_section_data (sec)
                               ->pjs.stub_size[0]));
                               ->pjs.stub_size[0]));
      if (mmix_elf_section_data (sec)->pjs.stub_size == NULL)
      if (mmix_elf_section_data (sec)->pjs.stub_size == NULL)
        return FALSE;
        return FALSE;
 
 
      for (i = 0; i < mmix_elf_section_data (sec)->pjs.n_pushj_relocs; i++)
      for (i = 0; i < mmix_elf_section_data (sec)->pjs.n_pushj_relocs; i++)
        mmix_elf_section_data (sec)->pjs.stub_size[i] = MAX_PUSHJ_STUB_SIZE;
        mmix_elf_section_data (sec)->pjs.stub_size[i] = MAX_PUSHJ_STUB_SIZE;
    }
    }
 
 
  return TRUE;
  return TRUE;
}
}
 
 
/* Look through the relocs for a section during the first phase.  */
/* Look through the relocs for a section during the first phase.  */
 
 
static bfd_boolean
static bfd_boolean
mmix_elf_check_relocs (abfd, info, sec, relocs)
mmix_elf_check_relocs (abfd, info, sec, relocs)
     bfd *abfd;
     bfd *abfd;
     struct bfd_link_info *info;
     struct bfd_link_info *info;
     asection *sec;
     asection *sec;
     const Elf_Internal_Rela *relocs;
     const Elf_Internal_Rela *relocs;
{
{
  Elf_Internal_Shdr *symtab_hdr;
  Elf_Internal_Shdr *symtab_hdr;
  struct elf_link_hash_entry **sym_hashes;
  struct elf_link_hash_entry **sym_hashes;
  const Elf_Internal_Rela *rel;
  const Elf_Internal_Rela *rel;
  const Elf_Internal_Rela *rel_end;
  const Elf_Internal_Rela *rel_end;
 
 
  symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
  symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
  sym_hashes = elf_sym_hashes (abfd);
  sym_hashes = elf_sym_hashes (abfd);
 
 
  /* First we sort the relocs so that any register relocs come before
  /* First we sort the relocs so that any register relocs come before
     expansion-relocs to the same insn.  FIXME: Not done for mmo.  */
     expansion-relocs to the same insn.  FIXME: Not done for mmo.  */
  qsort ((PTR) relocs, sec->reloc_count, sizeof (Elf_Internal_Rela),
  qsort ((PTR) relocs, sec->reloc_count, sizeof (Elf_Internal_Rela),
         mmix_elf_sort_relocs);
         mmix_elf_sort_relocs);
 
 
  /* Do the common part.  */
  /* Do the common part.  */
  if (!mmix_elf_check_common_relocs (abfd, info, sec, relocs))
  if (!mmix_elf_check_common_relocs (abfd, info, sec, relocs))
    return FALSE;
    return FALSE;
 
 
  if (info->relocatable)
  if (info->relocatable)
    return TRUE;
    return TRUE;
 
 
  rel_end = relocs + sec->reloc_count;
  rel_end = relocs + sec->reloc_count;
  for (rel = relocs; rel < rel_end; rel++)
  for (rel = relocs; rel < rel_end; rel++)
    {
    {
      struct elf_link_hash_entry *h;
      struct elf_link_hash_entry *h;
      unsigned long r_symndx;
      unsigned long r_symndx;
 
 
      r_symndx = ELF64_R_SYM (rel->r_info);
      r_symndx = ELF64_R_SYM (rel->r_info);
      if (r_symndx < symtab_hdr->sh_info)
      if (r_symndx < symtab_hdr->sh_info)
        h = NULL;
        h = NULL;
      else
      else
        {
        {
          h = sym_hashes[r_symndx - symtab_hdr->sh_info];
          h = sym_hashes[r_symndx - symtab_hdr->sh_info];
          while (h->root.type == bfd_link_hash_indirect
          while (h->root.type == bfd_link_hash_indirect
                 || h->root.type == bfd_link_hash_warning)
                 || h->root.type == bfd_link_hash_warning)
            h = (struct elf_link_hash_entry *) h->root.u.i.link;
            h = (struct elf_link_hash_entry *) h->root.u.i.link;
        }
        }
 
 
      switch (ELF64_R_TYPE (rel->r_info))
      switch (ELF64_R_TYPE (rel->r_info))
        {
        {
        /* This relocation describes the C++ object vtable hierarchy.
        /* This relocation describes the C++ object vtable hierarchy.
           Reconstruct it for later use during GC.  */
           Reconstruct it for later use during GC.  */
        case R_MMIX_GNU_VTINHERIT:
        case R_MMIX_GNU_VTINHERIT:
          if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
          if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
            return FALSE;
            return FALSE;
          break;
          break;
 
 
        /* This relocation describes which C++ vtable entries are actually
        /* This relocation describes which C++ vtable entries are actually
           used.  Record for later use during GC.  */
           used.  Record for later use during GC.  */
        case R_MMIX_GNU_VTENTRY:
        case R_MMIX_GNU_VTENTRY:
          BFD_ASSERT (h != NULL);
          BFD_ASSERT (h != NULL);
          if (h != NULL
          if (h != NULL
              && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
              && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
            return FALSE;
            return FALSE;
          break;
          break;
        }
        }
    }
    }
 
 
  return TRUE;
  return TRUE;
}
}
 
 
/* Wrapper for mmix_elf_check_common_relocs, called when linking to mmo.
/* Wrapper for mmix_elf_check_common_relocs, called when linking to mmo.
   Copied from elf_link_add_object_symbols.  */
   Copied from elf_link_add_object_symbols.  */
 
 
bfd_boolean
bfd_boolean
_bfd_mmix_check_all_relocs (abfd, info)
_bfd_mmix_check_all_relocs (abfd, info)
     bfd *abfd;
     bfd *abfd;
     struct bfd_link_info *info;
     struct bfd_link_info *info;
{
{
  asection *o;
  asection *o;
 
 
  for (o = abfd->sections; o != NULL; o = o->next)
  for (o = abfd->sections; o != NULL; o = o->next)
    {
    {
      Elf_Internal_Rela *internal_relocs;
      Elf_Internal_Rela *internal_relocs;
      bfd_boolean ok;
      bfd_boolean ok;
 
 
      if ((o->flags & SEC_RELOC) == 0
      if ((o->flags & SEC_RELOC) == 0
          || o->reloc_count == 0
          || o->reloc_count == 0
          || ((info->strip == strip_all || info->strip == strip_debugger)
          || ((info->strip == strip_all || info->strip == strip_debugger)
              && (o->flags & SEC_DEBUGGING) != 0)
              && (o->flags & SEC_DEBUGGING) != 0)
          || bfd_is_abs_section (o->output_section))
          || bfd_is_abs_section (o->output_section))
        continue;
        continue;
 
 
      internal_relocs
      internal_relocs
        = _bfd_elf_link_read_relocs (abfd, o, (PTR) NULL,
        = _bfd_elf_link_read_relocs (abfd, o, (PTR) NULL,
                                     (Elf_Internal_Rela *) NULL,
                                     (Elf_Internal_Rela *) NULL,
                                     info->keep_memory);
                                     info->keep_memory);
      if (internal_relocs == NULL)
      if (internal_relocs == NULL)
        return FALSE;
        return FALSE;
 
 
      ok = mmix_elf_check_common_relocs (abfd, info, o, internal_relocs);
      ok = mmix_elf_check_common_relocs (abfd, info, o, internal_relocs);
 
 
      if (! info->keep_memory)
      if (! info->keep_memory)
        free (internal_relocs);
        free (internal_relocs);
 
 
      if (! ok)
      if (! ok)
        return FALSE;
        return FALSE;
    }
    }
 
 
  return TRUE;
  return TRUE;
}
}


/* Change symbols relative to the reg contents section to instead be to
/* Change symbols relative to the reg contents section to instead be to
   the register section, and scale them down to correspond to the register
   the register section, and scale them down to correspond to the register
   number.  */
   number.  */
 
 
static int
static int
mmix_elf_link_output_symbol_hook (info, name, sym, input_sec, h)
mmix_elf_link_output_symbol_hook (info, name, sym, input_sec, h)
     struct bfd_link_info *info ATTRIBUTE_UNUSED;
     struct bfd_link_info *info ATTRIBUTE_UNUSED;
     const char *name ATTRIBUTE_UNUSED;
     const char *name ATTRIBUTE_UNUSED;
     Elf_Internal_Sym *sym;
     Elf_Internal_Sym *sym;
     asection *input_sec;
     asection *input_sec;
     struct elf_link_hash_entry *h ATTRIBUTE_UNUSED;
     struct elf_link_hash_entry *h ATTRIBUTE_UNUSED;
{
{
  if (input_sec != NULL
  if (input_sec != NULL
      && input_sec->name != NULL
      && input_sec->name != NULL
      && ELF_ST_TYPE (sym->st_info) != STT_SECTION
      && ELF_ST_TYPE (sym->st_info) != STT_SECTION
      && strcmp (input_sec->name, MMIX_REG_CONTENTS_SECTION_NAME) == 0)
      && strcmp (input_sec->name, MMIX_REG_CONTENTS_SECTION_NAME) == 0)
    {
    {
      sym->st_value /= 8;
      sym->st_value /= 8;
      sym->st_shndx = SHN_REGISTER;
      sym->st_shndx = SHN_REGISTER;
    }
    }
 
 
  return 1;
  return 1;
}
}
 
 
/* We fake a register section that holds values that are register numbers.
/* We fake a register section that holds values that are register numbers.
   Having a SHN_REGISTER and register section translates better to other
   Having a SHN_REGISTER and register section translates better to other
   formats (e.g. mmo) than for example a STT_REGISTER attribute.
   formats (e.g. mmo) than for example a STT_REGISTER attribute.
   This section faking is based on a construct in elf32-mips.c.  */
   This section faking is based on a construct in elf32-mips.c.  */
static asection mmix_elf_reg_section;
static asection mmix_elf_reg_section;
static asymbol mmix_elf_reg_section_symbol;
static asymbol mmix_elf_reg_section_symbol;
static asymbol *mmix_elf_reg_section_symbol_ptr;
static asymbol *mmix_elf_reg_section_symbol_ptr;
 
 
/* Handle the special section numbers that a symbol may use.  */
/* Handle the special section numbers that a symbol may use.  */
 
 
void
void
mmix_elf_symbol_processing (abfd, asym)
mmix_elf_symbol_processing (abfd, asym)
     bfd *abfd ATTRIBUTE_UNUSED;
     bfd *abfd ATTRIBUTE_UNUSED;
     asymbol *asym;
     asymbol *asym;
{
{
  elf_symbol_type *elfsym;
  elf_symbol_type *elfsym;
 
 
  elfsym = (elf_symbol_type *) asym;
  elfsym = (elf_symbol_type *) asym;
  switch (elfsym->internal_elf_sym.st_shndx)
  switch (elfsym->internal_elf_sym.st_shndx)
    {
    {
    case SHN_REGISTER:
    case SHN_REGISTER:
      if (mmix_elf_reg_section.name == NULL)
      if (mmix_elf_reg_section.name == NULL)
        {
        {
          /* Initialize the register section.  */
          /* Initialize the register section.  */
          mmix_elf_reg_section.name = MMIX_REG_SECTION_NAME;
          mmix_elf_reg_section.name = MMIX_REG_SECTION_NAME;
          mmix_elf_reg_section.flags = SEC_NO_FLAGS;
          mmix_elf_reg_section.flags = SEC_NO_FLAGS;
          mmix_elf_reg_section.output_section = &mmix_elf_reg_section;
          mmix_elf_reg_section.output_section = &mmix_elf_reg_section;
          mmix_elf_reg_section.symbol = &mmix_elf_reg_section_symbol;
          mmix_elf_reg_section.symbol = &mmix_elf_reg_section_symbol;
          mmix_elf_reg_section.symbol_ptr_ptr = &mmix_elf_reg_section_symbol_ptr;
          mmix_elf_reg_section.symbol_ptr_ptr = &mmix_elf_reg_section_symbol_ptr;
          mmix_elf_reg_section_symbol.name = MMIX_REG_SECTION_NAME;
          mmix_elf_reg_section_symbol.name = MMIX_REG_SECTION_NAME;
          mmix_elf_reg_section_symbol.flags = BSF_SECTION_SYM;
          mmix_elf_reg_section_symbol.flags = BSF_SECTION_SYM;
          mmix_elf_reg_section_symbol.section = &mmix_elf_reg_section;
          mmix_elf_reg_section_symbol.section = &mmix_elf_reg_section;
          mmix_elf_reg_section_symbol_ptr = &mmix_elf_reg_section_symbol;
          mmix_elf_reg_section_symbol_ptr = &mmix_elf_reg_section_symbol;
        }
        }
      asym->section = &mmix_elf_reg_section;
      asym->section = &mmix_elf_reg_section;
      break;
      break;
 
 
    default:
    default:
      break;
      break;
    }
    }
}
}
 
 
/* Given a BFD section, try to locate the corresponding ELF section
/* Given a BFD section, try to locate the corresponding ELF section
   index.  */
   index.  */
 
 
static bfd_boolean
static bfd_boolean
mmix_elf_section_from_bfd_section (abfd, sec, retval)
mmix_elf_section_from_bfd_section (abfd, sec, retval)
     bfd *                 abfd ATTRIBUTE_UNUSED;
     bfd *                 abfd ATTRIBUTE_UNUSED;
     asection *            sec;
     asection *            sec;
     int *                 retval;
     int *                 retval;
{
{
  if (strcmp (bfd_get_section_name (abfd, sec), MMIX_REG_SECTION_NAME) == 0)
  if (strcmp (bfd_get_section_name (abfd, sec), MMIX_REG_SECTION_NAME) == 0)
    *retval = SHN_REGISTER;
    *retval = SHN_REGISTER;
  else
  else
    return FALSE;
    return FALSE;
 
 
  return TRUE;
  return TRUE;
}
}
 
 
/* Hook called by the linker routine which adds symbols from an object
/* Hook called by the linker routine which adds symbols from an object
   file.  We must handle the special SHN_REGISTER section number here.
   file.  We must handle the special SHN_REGISTER section number here.
 
 
   We also check that we only have *one* each of the section-start
   We also check that we only have *one* each of the section-start
   symbols, since otherwise having two with the same value would cause
   symbols, since otherwise having two with the same value would cause
   them to be "merged", but with the contents serialized.  */
   them to be "merged", but with the contents serialized.  */
 
 
bfd_boolean
bfd_boolean
mmix_elf_add_symbol_hook (abfd, info, sym, namep, flagsp, secp, valp)
mmix_elf_add_symbol_hook (abfd, info, sym, namep, flagsp, secp, valp)
     bfd *abfd;
     bfd *abfd;
     struct bfd_link_info *info ATTRIBUTE_UNUSED;
     struct bfd_link_info *info ATTRIBUTE_UNUSED;
     Elf_Internal_Sym *sym;
     Elf_Internal_Sym *sym;
     const char **namep ATTRIBUTE_UNUSED;
     const char **namep ATTRIBUTE_UNUSED;
     flagword *flagsp ATTRIBUTE_UNUSED;
     flagword *flagsp ATTRIBUTE_UNUSED;
     asection **secp;
     asection **secp;
     bfd_vma *valp ATTRIBUTE_UNUSED;
     bfd_vma *valp ATTRIBUTE_UNUSED;
{
{
  if (sym->st_shndx == SHN_REGISTER)
  if (sym->st_shndx == SHN_REGISTER)
    {
    {
      *secp = bfd_make_section_old_way (abfd, MMIX_REG_SECTION_NAME);
      *secp = bfd_make_section_old_way (abfd, MMIX_REG_SECTION_NAME);
      (*secp)->flags |= SEC_LINKER_CREATED;
      (*secp)->flags |= SEC_LINKER_CREATED;
    }
    }
  else if ((*namep)[0] == '_' && (*namep)[1] == '_' && (*namep)[2] == '.'
  else if ((*namep)[0] == '_' && (*namep)[1] == '_' && (*namep)[2] == '.'
           && CONST_STRNEQ (*namep, MMIX_LOC_SECTION_START_SYMBOL_PREFIX))
           && CONST_STRNEQ (*namep, MMIX_LOC_SECTION_START_SYMBOL_PREFIX))
    {
    {
      /* See if we have another one.  */
      /* See if we have another one.  */
      struct bfd_link_hash_entry *h = bfd_link_hash_lookup (info->hash,
      struct bfd_link_hash_entry *h = bfd_link_hash_lookup (info->hash,
                                                            *namep,
                                                            *namep,
                                                            FALSE,
                                                            FALSE,
                                                            FALSE,
                                                            FALSE,
                                                            FALSE);
                                                            FALSE);
 
 
      if (h != NULL && h->type != bfd_link_hash_undefined)
      if (h != NULL && h->type != bfd_link_hash_undefined)
        {
        {
          /* How do we get the asymbol (or really: the filename) from h?
          /* How do we get the asymbol (or really: the filename) from h?
             h->u.def.section->owner is NULL.  */
             h->u.def.section->owner is NULL.  */
          ((*_bfd_error_handler)
          ((*_bfd_error_handler)
           (_("%s: Error: multiple definition of `%s'; start of %s is set in a earlier linked file\n"),
           (_("%s: Error: multiple definition of `%s'; start of %s is set in a earlier linked file\n"),
            bfd_get_filename (abfd), *namep,
            bfd_get_filename (abfd), *namep,
            *namep + strlen (MMIX_LOC_SECTION_START_SYMBOL_PREFIX)));
            *namep + strlen (MMIX_LOC_SECTION_START_SYMBOL_PREFIX)));
           bfd_set_error (bfd_error_bad_value);
           bfd_set_error (bfd_error_bad_value);
           return FALSE;
           return FALSE;
        }
        }
    }
    }
 
 
  return TRUE;
  return TRUE;
}
}
 
 
/* We consider symbols matching "L.*:[0-9]+" to be local symbols.  */
/* We consider symbols matching "L.*:[0-9]+" to be local symbols.  */
 
 
bfd_boolean
bfd_boolean
mmix_elf_is_local_label_name (abfd, name)
mmix_elf_is_local_label_name (abfd, name)
     bfd *abfd;
     bfd *abfd;
     const char *name;
     const char *name;
{
{
  const char *colpos;
  const char *colpos;
  int digits;
  int digits;
 
 
  /* Also include the default local-label definition.  */
  /* Also include the default local-label definition.  */
  if (_bfd_elf_is_local_label_name (abfd, name))
  if (_bfd_elf_is_local_label_name (abfd, name))
    return TRUE;
    return TRUE;
 
 
  if (*name != 'L')
  if (*name != 'L')
    return FALSE;
    return FALSE;
 
 
  /* If there's no ":", or more than one, it's not a local symbol.  */
  /* If there's no ":", or more than one, it's not a local symbol.  */
  colpos = strchr (name, ':');
  colpos = strchr (name, ':');
  if (colpos == NULL || strchr (colpos + 1, ':') != NULL)
  if (colpos == NULL || strchr (colpos + 1, ':') != NULL)
    return FALSE;
    return FALSE;
 
 
  /* Check that there are remaining characters and that they are digits.  */
  /* Check that there are remaining characters and that they are digits.  */
  if (colpos[1] == 0)
  if (colpos[1] == 0)
    return FALSE;
    return FALSE;
 
 
  digits = strspn (colpos + 1, "0123456789");
  digits = strspn (colpos + 1, "0123456789");
  return digits != 0 && colpos[1 + digits] == 0;
  return digits != 0 && colpos[1 + digits] == 0;
}
}
 
 
/* We get rid of the register section here.  */
/* We get rid of the register section here.  */
 
 
bfd_boolean
bfd_boolean
mmix_elf_final_link (abfd, info)
mmix_elf_final_link (abfd, info)
     bfd *abfd;
     bfd *abfd;
     struct bfd_link_info *info;
     struct bfd_link_info *info;
{
{
  /* We never output a register section, though we create one for
  /* We never output a register section, though we create one for
     temporary measures.  Check that nobody entered contents into it.  */
     temporary measures.  Check that nobody entered contents into it.  */
  asection *reg_section;
  asection *reg_section;
 
 
  reg_section = bfd_get_section_by_name (abfd, MMIX_REG_SECTION_NAME);
  reg_section = bfd_get_section_by_name (abfd, MMIX_REG_SECTION_NAME);
 
 
  if (reg_section != NULL)
  if (reg_section != NULL)
    {
    {
      /* FIXME: Pass error state gracefully.  */
      /* FIXME: Pass error state gracefully.  */
      if (bfd_get_section_flags (abfd, reg_section) & SEC_HAS_CONTENTS)
      if (bfd_get_section_flags (abfd, reg_section) & SEC_HAS_CONTENTS)
        _bfd_abort (__FILE__, __LINE__, _("Register section has contents\n"));
        _bfd_abort (__FILE__, __LINE__, _("Register section has contents\n"));
 
 
      /* Really remove the section, if it hasn't already been done.  */
      /* Really remove the section, if it hasn't already been done.  */
      if (!bfd_section_removed_from_list (abfd, reg_section))
      if (!bfd_section_removed_from_list (abfd, reg_section))
        {
        {
          bfd_section_list_remove (abfd, reg_section);
          bfd_section_list_remove (abfd, reg_section);
          --abfd->section_count;
          --abfd->section_count;
        }
        }
    }
    }
 
 
  if (! bfd_elf_final_link (abfd, info))
  if (! bfd_elf_final_link (abfd, info))
    return FALSE;
    return FALSE;
 
 
  /* Since this section is marked SEC_LINKER_CREATED, it isn't output by
  /* Since this section is marked SEC_LINKER_CREATED, it isn't output by
     the regular linker machinery.  We do it here, like other targets with
     the regular linker machinery.  We do it here, like other targets with
     special sections.  */
     special sections.  */
  if (info->base_file != NULL)
  if (info->base_file != NULL)
    {
    {
      asection *greg_section
      asection *greg_section
        = bfd_get_section_by_name ((bfd *) info->base_file,
        = bfd_get_section_by_name ((bfd *) info->base_file,
                                   MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME);
                                   MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME);
      if (!bfd_set_section_contents (abfd,
      if (!bfd_set_section_contents (abfd,
                                     greg_section->output_section,
                                     greg_section->output_section,
                                     greg_section->contents,
                                     greg_section->contents,
                                     (file_ptr) greg_section->output_offset,
                                     (file_ptr) greg_section->output_offset,
                                     greg_section->size))
                                     greg_section->size))
        return FALSE;
        return FALSE;
    }
    }
  return TRUE;
  return TRUE;
}
}
 
 
/* We need to include the maximum size of PUSHJ-stubs in the initial
/* We need to include the maximum size of PUSHJ-stubs in the initial
   section size.  This is expected to shrink during linker relaxation.  */
   section size.  This is expected to shrink during linker relaxation.  */
 
 
static void
static void
mmix_set_relaxable_size (abfd, sec, ptr)
mmix_set_relaxable_size (abfd, sec, ptr)
     bfd *abfd ATTRIBUTE_UNUSED;
     bfd *abfd ATTRIBUTE_UNUSED;
     asection *sec;
     asection *sec;
     void *ptr;
     void *ptr;
{
{
  struct bfd_link_info *info = ptr;
  struct bfd_link_info *info = ptr;
 
 
  /* Make sure we only do this for section where we know we want this,
  /* Make sure we only do this for section where we know we want this,
     otherwise we might end up resetting the size of COMMONs.  */
     otherwise we might end up resetting the size of COMMONs.  */
  if (mmix_elf_section_data (sec)->pjs.n_pushj_relocs == 0)
  if (mmix_elf_section_data (sec)->pjs.n_pushj_relocs == 0)
    return;
    return;
 
 
  sec->rawsize = sec->size;
  sec->rawsize = sec->size;
  sec->size += (mmix_elf_section_data (sec)->pjs.n_pushj_relocs
  sec->size += (mmix_elf_section_data (sec)->pjs.n_pushj_relocs
                * MAX_PUSHJ_STUB_SIZE);
                * MAX_PUSHJ_STUB_SIZE);
 
 
  /* For use in relocatable link, we start with a max stubs size.  See
  /* For use in relocatable link, we start with a max stubs size.  See
     mmix_elf_relax_section.  */
     mmix_elf_relax_section.  */
  if (info->relocatable && sec->output_section)
  if (info->relocatable && sec->output_section)
    mmix_elf_section_data (sec->output_section)->pjs.stubs_size_sum
    mmix_elf_section_data (sec->output_section)->pjs.stubs_size_sum
      += (mmix_elf_section_data (sec)->pjs.n_pushj_relocs
      += (mmix_elf_section_data (sec)->pjs.n_pushj_relocs
          * MAX_PUSHJ_STUB_SIZE);
          * MAX_PUSHJ_STUB_SIZE);
}
}
 
 
/* Initialize stuff for the linker-generated GREGs to match
/* Initialize stuff for the linker-generated GREGs to match
   R_MMIX_BASE_PLUS_OFFSET relocs seen by the linker.  */
   R_MMIX_BASE_PLUS_OFFSET relocs seen by the linker.  */
 
 
bfd_boolean
bfd_boolean
_bfd_mmix_before_linker_allocation (abfd, info)
_bfd_mmix_before_linker_allocation (abfd, info)
     bfd *abfd ATTRIBUTE_UNUSED;
     bfd *abfd ATTRIBUTE_UNUSED;
     struct bfd_link_info *info;
     struct bfd_link_info *info;
{
{
  asection *bpo_gregs_section;
  asection *bpo_gregs_section;
  bfd *bpo_greg_owner;
  bfd *bpo_greg_owner;
  struct bpo_greg_section_info *gregdata;
  struct bpo_greg_section_info *gregdata;
  size_t n_gregs;
  size_t n_gregs;
  bfd_vma gregs_size;
  bfd_vma gregs_size;
  size_t i;
  size_t i;
  size_t *bpo_reloc_indexes;
  size_t *bpo_reloc_indexes;
  bfd *ibfd;
  bfd *ibfd;
 
 
  /* Set the initial size of sections.  */
  /* Set the initial size of sections.  */
  for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
  for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
    bfd_map_over_sections (ibfd, mmix_set_relaxable_size, info);
    bfd_map_over_sections (ibfd, mmix_set_relaxable_size, info);
 
 
  /* The bpo_greg_owner bfd is supposed to have been set by
  /* The bpo_greg_owner bfd is supposed to have been set by
     mmix_elf_check_relocs when the first R_MMIX_BASE_PLUS_OFFSET is seen.
     mmix_elf_check_relocs when the first R_MMIX_BASE_PLUS_OFFSET is seen.
     If there is no such object, there was no R_MMIX_BASE_PLUS_OFFSET.  */
     If there is no such object, there was no R_MMIX_BASE_PLUS_OFFSET.  */
  bpo_greg_owner = (bfd *) info->base_file;
  bpo_greg_owner = (bfd *) info->base_file;
  if (bpo_greg_owner == NULL)
  if (bpo_greg_owner == NULL)
    return TRUE;
    return TRUE;
 
 
  bpo_gregs_section
  bpo_gregs_section
    = bfd_get_section_by_name (bpo_greg_owner,
    = bfd_get_section_by_name (bpo_greg_owner,
                               MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME);
                               MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME);
 
 
  if (bpo_gregs_section == NULL)
  if (bpo_gregs_section == NULL)
    return TRUE;
    return TRUE;
 
 
  /* We use the target-data handle in the ELF section data.  */
  /* We use the target-data handle in the ELF section data.  */
  gregdata = mmix_elf_section_data (bpo_gregs_section)->bpo.greg;
  gregdata = mmix_elf_section_data (bpo_gregs_section)->bpo.greg;
  if (gregdata == NULL)
  if (gregdata == NULL)
    return FALSE;
    return FALSE;
 
 
  n_gregs = gregdata->n_bpo_relocs;
  n_gregs = gregdata->n_bpo_relocs;
  gregdata->n_allocated_bpo_gregs = n_gregs;
  gregdata->n_allocated_bpo_gregs = n_gregs;
 
 
  /* When this reaches zero during relaxation, all entries have been
  /* When this reaches zero during relaxation, all entries have been
     filled in and the size of the linker gregs can be calculated.  */
     filled in and the size of the linker gregs can be calculated.  */
  gregdata->n_remaining_bpo_relocs_this_relaxation_round = n_gregs;
  gregdata->n_remaining_bpo_relocs_this_relaxation_round = n_gregs;
 
 
  /* Set the zeroth-order estimate for the GREGs size.  */
  /* Set the zeroth-order estimate for the GREGs size.  */
  gregs_size = n_gregs * 8;
  gregs_size = n_gregs * 8;
 
 
  if (!bfd_set_section_size (bpo_greg_owner, bpo_gregs_section, gregs_size))
  if (!bfd_set_section_size (bpo_greg_owner, bpo_gregs_section, gregs_size))
    return FALSE;
    return FALSE;
 
 
  /* Allocate and set up the GREG arrays.  They're filled in at relaxation
  /* Allocate and set up the GREG arrays.  They're filled in at relaxation
     time.  Note that we must use the max number ever noted for the array,
     time.  Note that we must use the max number ever noted for the array,
     since the index numbers were created before GC.  */
     since the index numbers were created before GC.  */
  gregdata->reloc_request
  gregdata->reloc_request
    = bfd_zalloc (bpo_greg_owner,
    = bfd_zalloc (bpo_greg_owner,
                  sizeof (struct bpo_reloc_request)
                  sizeof (struct bpo_reloc_request)
                  * gregdata->n_max_bpo_relocs);
                  * gregdata->n_max_bpo_relocs);
 
 
  gregdata->bpo_reloc_indexes
  gregdata->bpo_reloc_indexes
    = bpo_reloc_indexes
    = bpo_reloc_indexes
    = bfd_alloc (bpo_greg_owner,
    = bfd_alloc (bpo_greg_owner,
                 gregdata->n_max_bpo_relocs
                 gregdata->n_max_bpo_relocs
                 * sizeof (size_t));
                 * sizeof (size_t));
  if (bpo_reloc_indexes == NULL)
  if (bpo_reloc_indexes == NULL)
    return FALSE;
    return FALSE;
 
 
  /* The default order is an identity mapping.  */
  /* The default order is an identity mapping.  */
  for (i = 0; i < gregdata->n_max_bpo_relocs; i++)
  for (i = 0; i < gregdata->n_max_bpo_relocs; i++)
    {
    {
      bpo_reloc_indexes[i] = i;
      bpo_reloc_indexes[i] = i;
      gregdata->reloc_request[i].bpo_reloc_no = i;
      gregdata->reloc_request[i].bpo_reloc_no = i;
    }
    }
 
 
  return TRUE;
  return TRUE;
}
}


/* Fill in contents in the linker allocated gregs.  Everything is
/* Fill in contents in the linker allocated gregs.  Everything is
   calculated at this point; we just move the contents into place here.  */
   calculated at this point; we just move the contents into place here.  */
 
 
bfd_boolean
bfd_boolean
_bfd_mmix_after_linker_allocation (abfd, link_info)
_bfd_mmix_after_linker_allocation (abfd, link_info)
     bfd *abfd ATTRIBUTE_UNUSED;
     bfd *abfd ATTRIBUTE_UNUSED;
     struct bfd_link_info *link_info;
     struct bfd_link_info *link_info;
{
{
  asection *bpo_gregs_section;
  asection *bpo_gregs_section;
  bfd *bpo_greg_owner;
  bfd *bpo_greg_owner;
  struct bpo_greg_section_info *gregdata;
  struct bpo_greg_section_info *gregdata;
  size_t n_gregs;
  size_t n_gregs;
  size_t i, j;
  size_t i, j;
  size_t lastreg;
  size_t lastreg;
  bfd_byte *contents;
  bfd_byte *contents;
 
 
  /* The bpo_greg_owner bfd is supposed to have been set by mmix_elf_check_relocs
  /* The bpo_greg_owner bfd is supposed to have been set by mmix_elf_check_relocs
     when the first R_MMIX_BASE_PLUS_OFFSET is seen.  If there is no such
     when the first R_MMIX_BASE_PLUS_OFFSET is seen.  If there is no such
     object, there was no R_MMIX_BASE_PLUS_OFFSET.  */
     object, there was no R_MMIX_BASE_PLUS_OFFSET.  */
  bpo_greg_owner = (bfd *) link_info->base_file;
  bpo_greg_owner = (bfd *) link_info->base_file;
  if (bpo_greg_owner == NULL)
  if (bpo_greg_owner == NULL)
    return TRUE;
    return TRUE;
 
 
  bpo_gregs_section
  bpo_gregs_section
    = bfd_get_section_by_name (bpo_greg_owner,
    = bfd_get_section_by_name (bpo_greg_owner,
                               MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME);
                               MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME);
 
 
  /* This can't happen without DSO handling.  When DSOs are handled
  /* This can't happen without DSO handling.  When DSOs are handled
     without any R_MMIX_BASE_PLUS_OFFSET seen, there will be no such
     without any R_MMIX_BASE_PLUS_OFFSET seen, there will be no such
     section.  */
     section.  */
  if (bpo_gregs_section == NULL)
  if (bpo_gregs_section == NULL)
    return TRUE;
    return TRUE;
 
 
  /* We use the target-data handle in the ELF section data.  */
  /* We use the target-data handle in the ELF section data.  */
 
 
  gregdata = mmix_elf_section_data (bpo_gregs_section)->bpo.greg;
  gregdata = mmix_elf_section_data (bpo_gregs_section)->bpo.greg;
  if (gregdata == NULL)
  if (gregdata == NULL)
    return FALSE;
    return FALSE;
 
 
  n_gregs = gregdata->n_allocated_bpo_gregs;
  n_gregs = gregdata->n_allocated_bpo_gregs;
 
 
  bpo_gregs_section->contents
  bpo_gregs_section->contents
    = contents = bfd_alloc (bpo_greg_owner, bpo_gregs_section->size);
    = contents = bfd_alloc (bpo_greg_owner, bpo_gregs_section->size);
  if (contents == NULL)
  if (contents == NULL)
    return FALSE;
    return FALSE;
 
 
  /* Sanity check: If these numbers mismatch, some relocation has not been
  /* Sanity check: If these numbers mismatch, some relocation has not been
     accounted for and the rest of gregdata is probably inconsistent.
     accounted for and the rest of gregdata is probably inconsistent.
     It's a bug, but it's more helpful to identify it than segfaulting
     It's a bug, but it's more helpful to identify it than segfaulting
     below.  */
     below.  */
  if (gregdata->n_remaining_bpo_relocs_this_relaxation_round
  if (gregdata->n_remaining_bpo_relocs_this_relaxation_round
      != gregdata->n_bpo_relocs)
      != gregdata->n_bpo_relocs)
    {
    {
      (*_bfd_error_handler)
      (*_bfd_error_handler)
        (_("Internal inconsistency: remaining %u != max %u.\n\
        (_("Internal inconsistency: remaining %u != max %u.\n\
  Please report this bug."),
  Please report this bug."),
         gregdata->n_remaining_bpo_relocs_this_relaxation_round,
         gregdata->n_remaining_bpo_relocs_this_relaxation_round,
         gregdata->n_bpo_relocs);
         gregdata->n_bpo_relocs);
      return FALSE;
      return FALSE;
    }
    }
 
 
  for (lastreg = 255, i = 0, j = 0; j < n_gregs; i++)
  for (lastreg = 255, i = 0, j = 0; j < n_gregs; i++)
    if (gregdata->reloc_request[i].regindex != lastreg)
    if (gregdata->reloc_request[i].regindex != lastreg)
      {
      {
        bfd_put_64 (bpo_greg_owner, gregdata->reloc_request[i].value,
        bfd_put_64 (bpo_greg_owner, gregdata->reloc_request[i].value,
                    contents + j * 8);
                    contents + j * 8);
        lastreg = gregdata->reloc_request[i].regindex;
        lastreg = gregdata->reloc_request[i].regindex;
        j++;
        j++;
      }
      }
 
 
  return TRUE;
  return TRUE;
}
}
 
 
/* Sort valid relocs to come before non-valid relocs, then on increasing
/* Sort valid relocs to come before non-valid relocs, then on increasing
   value.  */
   value.  */
 
 
static int
static int
bpo_reloc_request_sort_fn (p1, p2)
bpo_reloc_request_sort_fn (p1, p2)
     const PTR p1;
     const PTR p1;
     const PTR p2;
     const PTR p2;
{
{
  const struct bpo_reloc_request *r1 = (const struct bpo_reloc_request *) p1;
  const struct bpo_reloc_request *r1 = (const struct bpo_reloc_request *) p1;
  const struct bpo_reloc_request *r2 = (const struct bpo_reloc_request *) p2;
  const struct bpo_reloc_request *r2 = (const struct bpo_reloc_request *) p2;
 
 
  /* Primary function is validity; non-valid relocs sorted after valid
  /* Primary function is validity; non-valid relocs sorted after valid
     ones.  */
     ones.  */
  if (r1->valid != r2->valid)
  if (r1->valid != r2->valid)
    return r2->valid - r1->valid;
    return r2->valid - r1->valid;
 
 
  /* Then sort on value.  Don't simplify and return just the difference of
  /* Then sort on value.  Don't simplify and return just the difference of
     the values: the upper bits of the 64-bit value would be truncated on
     the values: the upper bits of the 64-bit value would be truncated on
     a host with 32-bit ints.  */
     a host with 32-bit ints.  */
  if (r1->value != r2->value)
  if (r1->value != r2->value)
    return r1->value > r2->value ? 1 : -1;
    return r1->value > r2->value ? 1 : -1;
 
 
  /* As a last re-sort, use the relocation number, so we get a stable
  /* As a last re-sort, use the relocation number, so we get a stable
     sort.  The *addresses* aren't stable since items are swapped during
     sort.  The *addresses* aren't stable since items are swapped during
     sorting.  It depends on the qsort implementation if this actually
     sorting.  It depends on the qsort implementation if this actually
     happens.  */
     happens.  */
  return r1->bpo_reloc_no > r2->bpo_reloc_no
  return r1->bpo_reloc_no > r2->bpo_reloc_no
    ? 1 : (r1->bpo_reloc_no < r2->bpo_reloc_no ? -1 : 0);
    ? 1 : (r1->bpo_reloc_no < r2->bpo_reloc_no ? -1 : 0);
}
}
 
 
/* For debug use only.  Dumps the global register allocations resulting
/* For debug use only.  Dumps the global register allocations resulting
   from base-plus-offset relocs.  */
   from base-plus-offset relocs.  */
 
 
void
void
mmix_dump_bpo_gregs (link_info, pf)
mmix_dump_bpo_gregs (link_info, pf)
     struct bfd_link_info *link_info;
     struct bfd_link_info *link_info;
     bfd_error_handler_type pf;
     bfd_error_handler_type pf;
{
{
  bfd *bpo_greg_owner;
  bfd *bpo_greg_owner;
  asection *bpo_gregs_section;
  asection *bpo_gregs_section;
  struct bpo_greg_section_info *gregdata;
  struct bpo_greg_section_info *gregdata;
  unsigned int i;
  unsigned int i;
 
 
  if (link_info == NULL || link_info->base_file == NULL)
  if (link_info == NULL || link_info->base_file == NULL)
    return;
    return;
 
 
  bpo_greg_owner = (bfd *) link_info->base_file;
  bpo_greg_owner = (bfd *) link_info->base_file;
 
 
  bpo_gregs_section
  bpo_gregs_section
    = bfd_get_section_by_name (bpo_greg_owner,
    = bfd_get_section_by_name (bpo_greg_owner,
                               MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME);
                               MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME);
 
 
  if (bpo_gregs_section == NULL)
  if (bpo_gregs_section == NULL)
    return;
    return;
 
 
  gregdata = mmix_elf_section_data (bpo_gregs_section)->bpo.greg;
  gregdata = mmix_elf_section_data (bpo_gregs_section)->bpo.greg;
  if (gregdata == NULL)
  if (gregdata == NULL)
    return;
    return;
 
 
  if (pf == NULL)
  if (pf == NULL)
    pf = _bfd_error_handler;
    pf = _bfd_error_handler;
 
 
  /* These format strings are not translated.  They are for debug purposes
  /* These format strings are not translated.  They are for debug purposes
     only and never displayed to an end user.  Should they escape, we
     only and never displayed to an end user.  Should they escape, we
     surely want them in original.  */
     surely want them in original.  */
  (*pf) (" n_bpo_relocs: %u\n n_max_bpo_relocs: %u\n n_remain...round: %u\n\
  (*pf) (" n_bpo_relocs: %u\n n_max_bpo_relocs: %u\n n_remain...round: %u\n\
 n_allocated_bpo_gregs: %u\n", gregdata->n_bpo_relocs,
 n_allocated_bpo_gregs: %u\n", gregdata->n_bpo_relocs,
     gregdata->n_max_bpo_relocs,
     gregdata->n_max_bpo_relocs,
     gregdata->n_remaining_bpo_relocs_this_relaxation_round,
     gregdata->n_remaining_bpo_relocs_this_relaxation_round,
     gregdata->n_allocated_bpo_gregs);
     gregdata->n_allocated_bpo_gregs);
 
 
  if (gregdata->reloc_request)
  if (gregdata->reloc_request)
    for (i = 0; i < gregdata->n_max_bpo_relocs; i++)
    for (i = 0; i < gregdata->n_max_bpo_relocs; i++)
      (*pf) ("%4u (%4u)/%4u#%u: 0x%08lx%08lx  r: %3u o: %3u\n",
      (*pf) ("%4u (%4u)/%4u#%u: 0x%08lx%08lx  r: %3u o: %3u\n",
             i,
             i,
             (gregdata->bpo_reloc_indexes != NULL
             (gregdata->bpo_reloc_indexes != NULL
              ? gregdata->bpo_reloc_indexes[i] : (size_t) -1),
              ? gregdata->bpo_reloc_indexes[i] : (size_t) -1),
             gregdata->reloc_request[i].bpo_reloc_no,
             gregdata->reloc_request[i].bpo_reloc_no,
             gregdata->reloc_request[i].valid,
             gregdata->reloc_request[i].valid,
 
 
             (unsigned long) (gregdata->reloc_request[i].value >> 32),
             (unsigned long) (gregdata->reloc_request[i].value >> 32),
             (unsigned long) gregdata->reloc_request[i].value,
             (unsigned long) gregdata->reloc_request[i].value,
             gregdata->reloc_request[i].regindex,
             gregdata->reloc_request[i].regindex,
             gregdata->reloc_request[i].offset);
             gregdata->reloc_request[i].offset);
}
}
 
 
/* This links all R_MMIX_BASE_PLUS_OFFSET relocs into a special array, and
/* This links all R_MMIX_BASE_PLUS_OFFSET relocs into a special array, and
   when the last such reloc is done, an index-array is sorted according to
   when the last such reloc is done, an index-array is sorted according to
   the values and iterated over to produce register numbers (indexed by 0
   the values and iterated over to produce register numbers (indexed by 0
   from the first allocated register number) and offsets for use in real
   from the first allocated register number) and offsets for use in real
   relocation.  (N.B.: Relocatable runs are handled, not just punted.)
   relocation.  (N.B.: Relocatable runs are handled, not just punted.)
 
 
   PUSHJ stub accounting is also done here.
   PUSHJ stub accounting is also done here.
 
 
   Symbol- and reloc-reading infrastructure copied from elf-m10200.c.  */
   Symbol- and reloc-reading infrastructure copied from elf-m10200.c.  */
 
 
static bfd_boolean
static bfd_boolean
mmix_elf_relax_section (abfd, sec, link_info, again)
mmix_elf_relax_section (abfd, sec, link_info, again)
     bfd *abfd;
     bfd *abfd;
     asection *sec;
     asection *sec;
     struct bfd_link_info *link_info;
     struct bfd_link_info *link_info;
     bfd_boolean *again;
     bfd_boolean *again;
{
{
  Elf_Internal_Shdr *symtab_hdr;
  Elf_Internal_Shdr *symtab_hdr;
  Elf_Internal_Rela *internal_relocs;
  Elf_Internal_Rela *internal_relocs;
  Elf_Internal_Rela *irel, *irelend;
  Elf_Internal_Rela *irel, *irelend;
  asection *bpo_gregs_section = NULL;
  asection *bpo_gregs_section = NULL;
  struct bpo_greg_section_info *gregdata;
  struct bpo_greg_section_info *gregdata;
  struct bpo_reloc_section_info *bpodata
  struct bpo_reloc_section_info *bpodata
    = mmix_elf_section_data (sec)->bpo.reloc;
    = mmix_elf_section_data (sec)->bpo.reloc;
  /* The initialization is to quiet compiler warnings.  The value is to
  /* The initialization is to quiet compiler warnings.  The value is to
     spot a missing actual initialization.  */
     spot a missing actual initialization.  */
  size_t bpono = (size_t) -1;
  size_t bpono = (size_t) -1;
  size_t pjsno = 0;
  size_t pjsno = 0;
  bfd *bpo_greg_owner;
  bfd *bpo_greg_owner;
  Elf_Internal_Sym *isymbuf = NULL;
  Elf_Internal_Sym *isymbuf = NULL;
  bfd_size_type size = sec->rawsize ? sec->rawsize : sec->size;
  bfd_size_type size = sec->rawsize ? sec->rawsize : sec->size;
 
 
  mmix_elf_section_data (sec)->pjs.stubs_size_sum = 0;
  mmix_elf_section_data (sec)->pjs.stubs_size_sum = 0;
 
 
  /* Assume nothing changes.  */
  /* Assume nothing changes.  */
  *again = FALSE;
  *again = FALSE;
 
 
  /* We don't have to do anything if this section does not have relocs, or
  /* We don't have to do anything if this section does not have relocs, or
     if this is not a code section.  */
     if this is not a code section.  */
  if ((sec->flags & SEC_RELOC) == 0
  if ((sec->flags & SEC_RELOC) == 0
      || sec->reloc_count == 0
      || sec->reloc_count == 0
      || (sec->flags & SEC_CODE) == 0
      || (sec->flags & SEC_CODE) == 0
      || (sec->flags & SEC_LINKER_CREATED) != 0
      || (sec->flags & SEC_LINKER_CREATED) != 0
      /* If no R_MMIX_BASE_PLUS_OFFSET relocs and no PUSHJ-stub relocs,
      /* If no R_MMIX_BASE_PLUS_OFFSET relocs and no PUSHJ-stub relocs,
         then nothing to do.  */
         then nothing to do.  */
      || (bpodata == NULL
      || (bpodata == NULL
          && mmix_elf_section_data (sec)->pjs.n_pushj_relocs == 0))
          && mmix_elf_section_data (sec)->pjs.n_pushj_relocs == 0))
    return TRUE;
    return TRUE;
 
 
  symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
  symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
 
 
  bpo_greg_owner = (bfd *) link_info->base_file;
  bpo_greg_owner = (bfd *) link_info->base_file;
 
 
  if (bpodata != NULL)
  if (bpodata != NULL)
    {
    {
      bpo_gregs_section = bpodata->bpo_greg_section;
      bpo_gregs_section = bpodata->bpo_greg_section;
      gregdata = mmix_elf_section_data (bpo_gregs_section)->bpo.greg;
      gregdata = mmix_elf_section_data (bpo_gregs_section)->bpo.greg;
      bpono = bpodata->first_base_plus_offset_reloc;
      bpono = bpodata->first_base_plus_offset_reloc;
    }
    }
  else
  else
    gregdata = NULL;
    gregdata = NULL;
 
 
  /* Get a copy of the native relocations.  */
  /* Get a copy of the native relocations.  */
  internal_relocs
  internal_relocs
    = _bfd_elf_link_read_relocs (abfd, sec, (PTR) NULL,
    = _bfd_elf_link_read_relocs (abfd, sec, (PTR) NULL,
                                 (Elf_Internal_Rela *) NULL,
                                 (Elf_Internal_Rela *) NULL,
                                 link_info->keep_memory);
                                 link_info->keep_memory);
  if (internal_relocs == NULL)
  if (internal_relocs == NULL)
    goto error_return;
    goto error_return;
 
 
  /* Walk through them looking for relaxing opportunities.  */
  /* Walk through them looking for relaxing opportunities.  */
  irelend = internal_relocs + sec->reloc_count;
  irelend = internal_relocs + sec->reloc_count;
  for (irel = internal_relocs; irel < irelend; irel++)
  for (irel = internal_relocs; irel < irelend; irel++)
    {
    {
      bfd_vma symval;
      bfd_vma symval;
      struct elf_link_hash_entry *h = NULL;
      struct elf_link_hash_entry *h = NULL;
 
 
      /* We only process two relocs.  */
      /* We only process two relocs.  */
      if (ELF64_R_TYPE (irel->r_info) != (int) R_MMIX_BASE_PLUS_OFFSET
      if (ELF64_R_TYPE (irel->r_info) != (int) R_MMIX_BASE_PLUS_OFFSET
          && ELF64_R_TYPE (irel->r_info) != (int) R_MMIX_PUSHJ_STUBBABLE)
          && ELF64_R_TYPE (irel->r_info) != (int) R_MMIX_PUSHJ_STUBBABLE)
        continue;
        continue;
 
 
      /* We process relocs in a distinctly different way when this is a
      /* We process relocs in a distinctly different way when this is a
         relocatable link (for one, we don't look at symbols), so we avoid
         relocatable link (for one, we don't look at symbols), so we avoid
         mixing its code with that for the "normal" relaxation.  */
         mixing its code with that for the "normal" relaxation.  */
      if (link_info->relocatable)
      if (link_info->relocatable)
        {
        {
          /* The only transformation in a relocatable link is to generate
          /* The only transformation in a relocatable link is to generate
             a full stub at the location of the stub calculated for the
             a full stub at the location of the stub calculated for the
             input section, if the relocated stub location, the end of the
             input section, if the relocated stub location, the end of the
             output section plus earlier stubs, cannot be reached.  Thus
             output section plus earlier stubs, cannot be reached.  Thus
             relocatable linking can only lead to worse code, but it still
             relocatable linking can only lead to worse code, but it still
             works.  */
             works.  */
          if (ELF64_R_TYPE (irel->r_info) == R_MMIX_PUSHJ_STUBBABLE)
          if (ELF64_R_TYPE (irel->r_info) == R_MMIX_PUSHJ_STUBBABLE)
            {
            {
              /* If we can reach the end of the output-section and beyond
              /* If we can reach the end of the output-section and beyond
                 any current stubs, then we don't need a stub for this
                 any current stubs, then we don't need a stub for this
                 reloc.  The relaxed order of output stub allocation may
                 reloc.  The relaxed order of output stub allocation may
                 not exactly match the straightforward order, so we always
                 not exactly match the straightforward order, so we always
                 assume presence of output stubs, which will allow
                 assume presence of output stubs, which will allow
                 relaxation only on relocations indifferent to the
                 relaxation only on relocations indifferent to the
                 presence of output stub allocations for other relocations
                 presence of output stub allocations for other relocations
                 and thus the order of output stub allocation.  */
                 and thus the order of output stub allocation.  */
              if (bfd_check_overflow (complain_overflow_signed,
              if (bfd_check_overflow (complain_overflow_signed,
                                      19,
                                      19,
                                      0,
                                      0,
                                      bfd_arch_bits_per_address (abfd),
                                      bfd_arch_bits_per_address (abfd),
                                      /* Output-stub location.  */
                                      /* Output-stub location.  */
                                      sec->output_section->rawsize
                                      sec->output_section->rawsize
                                      + (mmix_elf_section_data (sec
                                      + (mmix_elf_section_data (sec
                                                               ->output_section)
                                                               ->output_section)
                                         ->pjs.stubs_size_sum)
                                         ->pjs.stubs_size_sum)
                                      /* Location of this PUSHJ reloc.  */
                                      /* Location of this PUSHJ reloc.  */
                                      - (sec->output_offset + irel->r_offset)
                                      - (sec->output_offset + irel->r_offset)
                                      /* Don't count *this* stub twice.  */
                                      /* Don't count *this* stub twice.  */
                                      - (mmix_elf_section_data (sec)
                                      - (mmix_elf_section_data (sec)
                                         ->pjs.stub_size[pjsno]
                                         ->pjs.stub_size[pjsno]
                                         + MAX_PUSHJ_STUB_SIZE))
                                         + MAX_PUSHJ_STUB_SIZE))
                  == bfd_reloc_ok)
                  == bfd_reloc_ok)
                mmix_elf_section_data (sec)->pjs.stub_size[pjsno] = 0;
                mmix_elf_section_data (sec)->pjs.stub_size[pjsno] = 0;
 
 
              mmix_elf_section_data (sec)->pjs.stubs_size_sum
              mmix_elf_section_data (sec)->pjs.stubs_size_sum
                += mmix_elf_section_data (sec)->pjs.stub_size[pjsno];
                += mmix_elf_section_data (sec)->pjs.stub_size[pjsno];
 
 
              pjsno++;
              pjsno++;
            }
            }
 
 
          continue;
          continue;
        }
        }
 
 
      /* Get the value of the symbol referred to by the reloc.  */
      /* Get the value of the symbol referred to by the reloc.  */
      if (ELF64_R_SYM (irel->r_info) < symtab_hdr->sh_info)
      if (ELF64_R_SYM (irel->r_info) < symtab_hdr->sh_info)
        {
        {
          /* A local symbol.  */
          /* A local symbol.  */
          Elf_Internal_Sym *isym;
          Elf_Internal_Sym *isym;
          asection *sym_sec;
          asection *sym_sec;
 
 
          /* Read this BFD's local symbols if we haven't already.  */
          /* Read this BFD's local symbols if we haven't already.  */
          if (isymbuf == NULL)
          if (isymbuf == NULL)
            {
            {
              isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
              isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
              if (isymbuf == NULL)
              if (isymbuf == NULL)
                isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
                isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
                                                symtab_hdr->sh_info, 0,
                                                symtab_hdr->sh_info, 0,
                                                NULL, NULL, NULL);
                                                NULL, NULL, NULL);
              if (isymbuf == 0)
              if (isymbuf == 0)
                goto error_return;
                goto error_return;
            }
            }
 
 
          isym = isymbuf + ELF64_R_SYM (irel->r_info);
          isym = isymbuf + ELF64_R_SYM (irel->r_info);
          if (isym->st_shndx == SHN_UNDEF)
          if (isym->st_shndx == SHN_UNDEF)
            sym_sec = bfd_und_section_ptr;
            sym_sec = bfd_und_section_ptr;
          else if (isym->st_shndx == SHN_ABS)
          else if (isym->st_shndx == SHN_ABS)
            sym_sec = bfd_abs_section_ptr;
            sym_sec = bfd_abs_section_ptr;
          else if (isym->st_shndx == SHN_COMMON)
          else if (isym->st_shndx == SHN_COMMON)
            sym_sec = bfd_com_section_ptr;
            sym_sec = bfd_com_section_ptr;
          else
          else
            sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
            sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
          symval = (isym->st_value
          symval = (isym->st_value
                    + sym_sec->output_section->vma
                    + sym_sec->output_section->vma
                    + sym_sec->output_offset);
                    + sym_sec->output_offset);
        }
        }
      else
      else
        {
        {
          unsigned long indx;
          unsigned long indx;
 
 
          /* An external symbol.  */
          /* An external symbol.  */
          indx = ELF64_R_SYM (irel->r_info) - symtab_hdr->sh_info;
          indx = ELF64_R_SYM (irel->r_info) - symtab_hdr->sh_info;
          h = elf_sym_hashes (abfd)[indx];
          h = elf_sym_hashes (abfd)[indx];
          BFD_ASSERT (h != NULL);
          BFD_ASSERT (h != NULL);
          if (h->root.type != bfd_link_hash_defined
          if (h->root.type != bfd_link_hash_defined
              && h->root.type != bfd_link_hash_defweak)
              && h->root.type != bfd_link_hash_defweak)
            {
            {
              /* This appears to be a reference to an undefined symbol.  Just
              /* This appears to be a reference to an undefined symbol.  Just
                 ignore it--it will be caught by the regular reloc processing.
                 ignore it--it will be caught by the regular reloc processing.
                 We need to keep BPO reloc accounting consistent, though
                 We need to keep BPO reloc accounting consistent, though
                 else we'll abort instead of emitting an error message.  */
                 else we'll abort instead of emitting an error message.  */
              if (ELF64_R_TYPE (irel->r_info) == R_MMIX_BASE_PLUS_OFFSET
              if (ELF64_R_TYPE (irel->r_info) == R_MMIX_BASE_PLUS_OFFSET
                  && gregdata != NULL)
                  && gregdata != NULL)
                {
                {
                  gregdata->n_remaining_bpo_relocs_this_relaxation_round--;
                  gregdata->n_remaining_bpo_relocs_this_relaxation_round--;
                  bpono++;
                  bpono++;
                }
                }
              continue;
              continue;
            }
            }
 
 
          symval = (h->root.u.def.value
          symval = (h->root.u.def.value
                    + h->root.u.def.section->output_section->vma
                    + h->root.u.def.section->output_section->vma
                    + h->root.u.def.section->output_offset);
                    + h->root.u.def.section->output_offset);
        }
        }
 
 
      if (ELF64_R_TYPE (irel->r_info) == (int) R_MMIX_PUSHJ_STUBBABLE)
      if (ELF64_R_TYPE (irel->r_info) == (int) R_MMIX_PUSHJ_STUBBABLE)
        {
        {
          bfd_vma value = symval + irel->r_addend;
          bfd_vma value = symval + irel->r_addend;
          bfd_vma dot
          bfd_vma dot
            = (sec->output_section->vma
            = (sec->output_section->vma
               + sec->output_offset
               + sec->output_offset
               + irel->r_offset);
               + irel->r_offset);
          bfd_vma stubaddr
          bfd_vma stubaddr
            = (sec->output_section->vma
            = (sec->output_section->vma
               + sec->output_offset
               + sec->output_offset
               + size
               + size
               + mmix_elf_section_data (sec)->pjs.stubs_size_sum);
               + mmix_elf_section_data (sec)->pjs.stubs_size_sum);
 
 
          if ((value & 3) == 0
          if ((value & 3) == 0
              && bfd_check_overflow (complain_overflow_signed,
              && bfd_check_overflow (complain_overflow_signed,
                                     19,
                                     19,
                                     0,
                                     0,
                                     bfd_arch_bits_per_address (abfd),
                                     bfd_arch_bits_per_address (abfd),
                                     value - dot
                                     value - dot
                                     - (value > dot
                                     - (value > dot
                                        ? mmix_elf_section_data (sec)
                                        ? mmix_elf_section_data (sec)
                                        ->pjs.stub_size[pjsno]
                                        ->pjs.stub_size[pjsno]
                                        : 0))
                                        : 0))
              == bfd_reloc_ok)
              == bfd_reloc_ok)
            /* If the reloc fits, no stub is needed.  */
            /* If the reloc fits, no stub is needed.  */
            mmix_elf_section_data (sec)->pjs.stub_size[pjsno] = 0;
            mmix_elf_section_data (sec)->pjs.stub_size[pjsno] = 0;
          else
          else
            /* Maybe we can get away with just a JMP insn?  */
            /* Maybe we can get away with just a JMP insn?  */
            if ((value & 3) == 0
            if ((value & 3) == 0
                && bfd_check_overflow (complain_overflow_signed,
                && bfd_check_overflow (complain_overflow_signed,
                                       27,
                                       27,
                                       0,
                                       0,
                                       bfd_arch_bits_per_address (abfd),
                                       bfd_arch_bits_per_address (abfd),
                                       value - stubaddr
                                       value - stubaddr
                                       - (value > dot
                                       - (value > dot
                                          ? mmix_elf_section_data (sec)
                                          ? mmix_elf_section_data (sec)
                                          ->pjs.stub_size[pjsno] - 4
                                          ->pjs.stub_size[pjsno] - 4
                                          : 0))
                                          : 0))
                == bfd_reloc_ok)
                == bfd_reloc_ok)
              /* Yep, account for a stub consisting of a single JMP insn.  */
              /* Yep, account for a stub consisting of a single JMP insn.  */
              mmix_elf_section_data (sec)->pjs.stub_size[pjsno] = 4;
              mmix_elf_section_data (sec)->pjs.stub_size[pjsno] = 4;
          else
          else
            /* Nope, go for the full insn stub.  It doesn't seem useful to
            /* Nope, go for the full insn stub.  It doesn't seem useful to
               emit the intermediate sizes; those will only be useful for
               emit the intermediate sizes; those will only be useful for
               a >64M program assuming contiguous code.  */
               a >64M program assuming contiguous code.  */
            mmix_elf_section_data (sec)->pjs.stub_size[pjsno]
            mmix_elf_section_data (sec)->pjs.stub_size[pjsno]
              = MAX_PUSHJ_STUB_SIZE;
              = MAX_PUSHJ_STUB_SIZE;
 
 
          mmix_elf_section_data (sec)->pjs.stubs_size_sum
          mmix_elf_section_data (sec)->pjs.stubs_size_sum
            += mmix_elf_section_data (sec)->pjs.stub_size[pjsno];
            += mmix_elf_section_data (sec)->pjs.stub_size[pjsno];
          pjsno++;
          pjsno++;
          continue;
          continue;
        }
        }
 
 
      /* We're looking at a R_MMIX_BASE_PLUS_OFFSET reloc.  */
      /* We're looking at a R_MMIX_BASE_PLUS_OFFSET reloc.  */
 
 
      gregdata->reloc_request[gregdata->bpo_reloc_indexes[bpono]].value
      gregdata->reloc_request[gregdata->bpo_reloc_indexes[bpono]].value
        = symval + irel->r_addend;
        = symval + irel->r_addend;
      gregdata->reloc_request[gregdata->bpo_reloc_indexes[bpono++]].valid = TRUE;
      gregdata->reloc_request[gregdata->bpo_reloc_indexes[bpono++]].valid = TRUE;
      gregdata->n_remaining_bpo_relocs_this_relaxation_round--;
      gregdata->n_remaining_bpo_relocs_this_relaxation_round--;
    }
    }
 
 
  /* Check if that was the last BPO-reloc.  If so, sort the values and
  /* Check if that was the last BPO-reloc.  If so, sort the values and
     calculate how many registers we need to cover them.  Set the size of
     calculate how many registers we need to cover them.  Set the size of
     the linker gregs, and if the number of registers changed, indicate
     the linker gregs, and if the number of registers changed, indicate
     that we need to relax some more because we have more work to do.  */
     that we need to relax some more because we have more work to do.  */
  if (gregdata != NULL
  if (gregdata != NULL
      && gregdata->n_remaining_bpo_relocs_this_relaxation_round == 0)
      && gregdata->n_remaining_bpo_relocs_this_relaxation_round == 0)
    {
    {
      size_t i;
      size_t i;
      bfd_vma prev_base;
      bfd_vma prev_base;
      size_t regindex;
      size_t regindex;
 
 
      /* First, reset the remaining relocs for the next round.  */
      /* First, reset the remaining relocs for the next round.  */
      gregdata->n_remaining_bpo_relocs_this_relaxation_round
      gregdata->n_remaining_bpo_relocs_this_relaxation_round
        = gregdata->n_bpo_relocs;
        = gregdata->n_bpo_relocs;
 
 
      qsort ((PTR) gregdata->reloc_request,
      qsort ((PTR) gregdata->reloc_request,
             gregdata->n_max_bpo_relocs,
             gregdata->n_max_bpo_relocs,
             sizeof (struct bpo_reloc_request),
             sizeof (struct bpo_reloc_request),
             bpo_reloc_request_sort_fn);
             bpo_reloc_request_sort_fn);
 
 
      /* Recalculate indexes.  When we find a change (however unlikely
      /* Recalculate indexes.  When we find a change (however unlikely
         after the initial iteration), we know we need to relax again,
         after the initial iteration), we know we need to relax again,
         since items in the GREG-array are sorted by increasing value and
         since items in the GREG-array are sorted by increasing value and
         stored in the relaxation phase.  */
         stored in the relaxation phase.  */
      for (i = 0; i < gregdata->n_max_bpo_relocs; i++)
      for (i = 0; i < gregdata->n_max_bpo_relocs; i++)
        if (gregdata->bpo_reloc_indexes[gregdata->reloc_request[i].bpo_reloc_no]
        if (gregdata->bpo_reloc_indexes[gregdata->reloc_request[i].bpo_reloc_no]
            != i)
            != i)
          {
          {
            gregdata->bpo_reloc_indexes[gregdata->reloc_request[i].bpo_reloc_no]
            gregdata->bpo_reloc_indexes[gregdata->reloc_request[i].bpo_reloc_no]
              = i;
              = i;
            *again = TRUE;
            *again = TRUE;
          }
          }
 
 
      /* Allocate register numbers (indexing from 0).  Stop at the first
      /* Allocate register numbers (indexing from 0).  Stop at the first
         non-valid reloc.  */
         non-valid reloc.  */
      for (i = 0, regindex = 0, prev_base = gregdata->reloc_request[0].value;
      for (i = 0, regindex = 0, prev_base = gregdata->reloc_request[0].value;
           i < gregdata->n_bpo_relocs;
           i < gregdata->n_bpo_relocs;
           i++)
           i++)
        {
        {
          if (gregdata->reloc_request[i].value > prev_base + 255)
          if (gregdata->reloc_request[i].value > prev_base + 255)
            {
            {
              regindex++;
              regindex++;
              prev_base = gregdata->reloc_request[i].value;
              prev_base = gregdata->reloc_request[i].value;
            }
            }
          gregdata->reloc_request[i].regindex = regindex;
          gregdata->reloc_request[i].regindex = regindex;
          gregdata->reloc_request[i].offset
          gregdata->reloc_request[i].offset
            = gregdata->reloc_request[i].value - prev_base;
            = gregdata->reloc_request[i].value - prev_base;
        }
        }
 
 
      /* If it's not the same as the last time, we need to relax again,
      /* If it's not the same as the last time, we need to relax again,
         because the size of the section has changed.  I'm not sure we
         because the size of the section has changed.  I'm not sure we
         actually need to do any adjustments since the shrinking happens
         actually need to do any adjustments since the shrinking happens
         at the start of this section, but better safe than sorry.  */
         at the start of this section, but better safe than sorry.  */
      if (gregdata->n_allocated_bpo_gregs != regindex + 1)
      if (gregdata->n_allocated_bpo_gregs != regindex + 1)
        {
        {
          gregdata->n_allocated_bpo_gregs = regindex + 1;
          gregdata->n_allocated_bpo_gregs = regindex + 1;
          *again = TRUE;
          *again = TRUE;
        }
        }
 
 
      bpo_gregs_section->size = (regindex + 1) * 8;
      bpo_gregs_section->size = (regindex + 1) * 8;
    }
    }
 
 
  if (isymbuf != NULL && (unsigned char *) isymbuf != symtab_hdr->contents)
  if (isymbuf != NULL && (unsigned char *) isymbuf != symtab_hdr->contents)
    {
    {
      if (! link_info->keep_memory)
      if (! link_info->keep_memory)
        free (isymbuf);
        free (isymbuf);
      else
      else
        {
        {
          /* Cache the symbols for elf_link_input_bfd.  */
          /* Cache the symbols for elf_link_input_bfd.  */
          symtab_hdr->contents = (unsigned char *) isymbuf;
          symtab_hdr->contents = (unsigned char *) isymbuf;
        }
        }
    }
    }
 
 
  if (internal_relocs != NULL
  if (internal_relocs != NULL
      && elf_section_data (sec)->relocs != internal_relocs)
      && elf_section_data (sec)->relocs != internal_relocs)
    free (internal_relocs);
    free (internal_relocs);
 
 
  if (sec->size < size + mmix_elf_section_data (sec)->pjs.stubs_size_sum)
  if (sec->size < size + mmix_elf_section_data (sec)->pjs.stubs_size_sum)
    abort ();
    abort ();
 
 
  if (sec->size > size + mmix_elf_section_data (sec)->pjs.stubs_size_sum)
  if (sec->size > size + mmix_elf_section_data (sec)->pjs.stubs_size_sum)
    {
    {
      sec->size = size + mmix_elf_section_data (sec)->pjs.stubs_size_sum;
      sec->size = size + mmix_elf_section_data (sec)->pjs.stubs_size_sum;
      *again = TRUE;
      *again = TRUE;
    }
    }
 
 
  return TRUE;
  return TRUE;
 
 
 error_return:
 error_return:
  if (isymbuf != NULL && (unsigned char *) isymbuf != symtab_hdr->contents)
  if (isymbuf != NULL && (unsigned char *) isymbuf != symtab_hdr->contents)
    free (isymbuf);
    free (isymbuf);
  if (internal_relocs != NULL
  if (internal_relocs != NULL
      && elf_section_data (sec)->relocs != internal_relocs)
      && elf_section_data (sec)->relocs != internal_relocs)
    free (internal_relocs);
    free (internal_relocs);
  return FALSE;
  return FALSE;
}
}


#define ELF_ARCH                bfd_arch_mmix
#define ELF_ARCH                bfd_arch_mmix
#define ELF_MACHINE_CODE        EM_MMIX
#define ELF_MACHINE_CODE        EM_MMIX
 
 
/* According to mmix-doc page 36 (paragraph 45), this should be (1LL << 48LL).
/* According to mmix-doc page 36 (paragraph 45), this should be (1LL << 48LL).
   However, that's too much for something somewhere in the linker part of
   However, that's too much for something somewhere in the linker part of
   BFD; perhaps the start-address has to be a non-zero multiple of this
   BFD; perhaps the start-address has to be a non-zero multiple of this
   number, or larger than this number.  The symptom is that the linker
   number, or larger than this number.  The symptom is that the linker
   complains: "warning: allocated section `.text' not in segment".  We
   complains: "warning: allocated section `.text' not in segment".  We
   settle for 64k; the page-size used in examples is 8k.
   settle for 64k; the page-size used in examples is 8k.
   #define ELF_MAXPAGESIZE 0x10000
   #define ELF_MAXPAGESIZE 0x10000
 
 
   Unfortunately, this causes excessive padding in the supposedly small
   Unfortunately, this causes excessive padding in the supposedly small
   for-education programs that are the expected usage (where people would
   for-education programs that are the expected usage (where people would
   inspect output).  We stick to 256 bytes just to have *some* default
   inspect output).  We stick to 256 bytes just to have *some* default
   alignment.  */
   alignment.  */
#define ELF_MAXPAGESIZE 0x100
#define ELF_MAXPAGESIZE 0x100
 
 
#define TARGET_BIG_SYM          bfd_elf64_mmix_vec
#define TARGET_BIG_SYM          bfd_elf64_mmix_vec
#define TARGET_BIG_NAME         "elf64-mmix"
#define TARGET_BIG_NAME         "elf64-mmix"
 
 
#define elf_info_to_howto_rel           NULL
#define elf_info_to_howto_rel           NULL
#define elf_info_to_howto               mmix_info_to_howto_rela
#define elf_info_to_howto               mmix_info_to_howto_rela
#define elf_backend_relocate_section    mmix_elf_relocate_section
#define elf_backend_relocate_section    mmix_elf_relocate_section
#define elf_backend_gc_mark_hook        mmix_elf_gc_mark_hook
#define elf_backend_gc_mark_hook        mmix_elf_gc_mark_hook
#define elf_backend_gc_sweep_hook       mmix_elf_gc_sweep_hook
#define elf_backend_gc_sweep_hook       mmix_elf_gc_sweep_hook
 
 
#define elf_backend_link_output_symbol_hook \
#define elf_backend_link_output_symbol_hook \
        mmix_elf_link_output_symbol_hook
        mmix_elf_link_output_symbol_hook
#define elf_backend_add_symbol_hook     mmix_elf_add_symbol_hook
#define elf_backend_add_symbol_hook     mmix_elf_add_symbol_hook
 
 
#define elf_backend_check_relocs        mmix_elf_check_relocs
#define elf_backend_check_relocs        mmix_elf_check_relocs
#define elf_backend_symbol_processing   mmix_elf_symbol_processing
#define elf_backend_symbol_processing   mmix_elf_symbol_processing
#define elf_backend_omit_section_dynsym \
#define elf_backend_omit_section_dynsym \
  ((bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *)) bfd_true)
  ((bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *)) bfd_true)
 
 
#define bfd_elf64_bfd_is_local_label_name \
#define bfd_elf64_bfd_is_local_label_name \
        mmix_elf_is_local_label_name
        mmix_elf_is_local_label_name
 
 
#define elf_backend_may_use_rel_p       0
#define elf_backend_may_use_rel_p       0
#define elf_backend_may_use_rela_p      1
#define elf_backend_may_use_rela_p      1
#define elf_backend_default_use_rela_p  1
#define elf_backend_default_use_rela_p  1
 
 
#define elf_backend_can_gc_sections     1
#define elf_backend_can_gc_sections     1
#define elf_backend_section_from_bfd_section \
#define elf_backend_section_from_bfd_section \
        mmix_elf_section_from_bfd_section
        mmix_elf_section_from_bfd_section
 
 
#define bfd_elf64_new_section_hook      mmix_elf_new_section_hook
#define bfd_elf64_new_section_hook      mmix_elf_new_section_hook
#define bfd_elf64_bfd_final_link        mmix_elf_final_link
#define bfd_elf64_bfd_final_link        mmix_elf_final_link
#define bfd_elf64_bfd_relax_section     mmix_elf_relax_section
#define bfd_elf64_bfd_relax_section     mmix_elf_relax_section
 
 
#include "elf64-target.h"
#include "elf64-target.h"
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.