1999-05-03 09:29:11 +02:00
|
|
|
/* BFD PowerPC CPU definition
|
2002-02-05 04:35:19 +01:00
|
|
|
Copyright 1994, 1995, 1996, 2000, 2001, 2002
|
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
Contributed by Ian Lance Taylor, Cygnus Support.
|
|
|
|
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
#include "bfd.h"
|
|
|
|
#include "sysdep.h"
|
|
|
|
#include "libbfd.h"
|
|
|
|
|
|
|
|
/* The common PowerPC architecture is compatible with the RS/6000. */
|
|
|
|
|
|
|
|
static const bfd_arch_info_type *powerpc_compatible
|
|
|
|
PARAMS ((const bfd_arch_info_type *, const bfd_arch_info_type *));
|
|
|
|
|
|
|
|
static const bfd_arch_info_type *
|
|
|
|
powerpc_compatible (a,b)
|
|
|
|
const bfd_arch_info_type *a;
|
|
|
|
const bfd_arch_info_type *b;
|
|
|
|
{
|
|
|
|
BFD_ASSERT (a->arch == bfd_arch_powerpc);
|
|
|
|
switch (b->arch)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
case bfd_arch_powerpc:
|
|
|
|
return bfd_default_compatible (a, b);
|
|
|
|
case bfd_arch_rs6000:
|
2002-08-30 10:11:44 +02:00
|
|
|
if (a->mach == bfd_mach_ppc)
|
1999-05-03 09:29:11 +02:00
|
|
|
return a;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
2002-02-05 04:35:19 +01:00
|
|
|
const bfd_arch_info_type bfd_powerpc_archs[] =
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2002-06-27 13:29:15 +02:00
|
|
|
#if BFD_DEFAULT_TARGET_SIZE == 64
|
|
|
|
/* Default arch must come first. */
|
2002-04-20 04:54:26 +02:00
|
|
|
{
|
|
|
|
64, /* 64 bits in a word */
|
|
|
|
64, /* 64 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc64,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:common64",
|
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
TRUE, /* default for 64 bit target */
|
2002-04-20 04:54:26 +02:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
|
|
|
&bfd_powerpc_archs[1]
|
|
|
|
},
|
2002-06-27 13:29:15 +02:00
|
|
|
/* elf32-ppc:ppc_elf_object_p relies on the default 32 bit arch
|
|
|
|
being immediately after the 64 bit default. */
|
2002-04-20 04:54:26 +02:00
|
|
|
{
|
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc, /* for the POWER/PowerPC common architecture */
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:common",
|
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE,
|
2002-04-20 04:54:26 +02:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
|
|
|
&bfd_powerpc_archs[2],
|
|
|
|
},
|
|
|
|
#else
|
2002-06-27 13:29:15 +02:00
|
|
|
/* Default arch must come first. */
|
2002-04-20 04:54:26 +02:00
|
|
|
{
|
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc, /* for the POWER/PowerPC common architecture */
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:common",
|
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
TRUE, /* default for 32 bit target */
|
2002-04-20 04:54:26 +02:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
|
|
|
&bfd_powerpc_archs[1],
|
|
|
|
},
|
2002-06-27 13:29:15 +02:00
|
|
|
/* elf64-ppc:ppc64_elf_object_p relies on the default 64 bit arch
|
|
|
|
being immediately after the 32 bit default. */
|
2002-04-20 04:54:26 +02:00
|
|
|
{
|
|
|
|
64, /* 64 bits in a word */
|
|
|
|
64, /* 64 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc64,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:common64",
|
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE,
|
2002-04-20 04:54:26 +02:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
|
|
|
&bfd_powerpc_archs[2]
|
|
|
|
},
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
2000-06-16 22:45:33 +02:00
|
|
|
bfd_mach_ppc_603,
|
1999-05-03 09:29:11 +02:00
|
|
|
"powerpc",
|
|
|
|
"powerpc:603",
|
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE, /* not the default */
|
2000-11-16 21:48:09 +01:00
|
|
|
powerpc_compatible,
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_default_scan,
|
2002-04-20 04:54:26 +02:00
|
|
|
&bfd_powerpc_archs[3]
|
1999-05-03 09:29:11 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
2000-06-16 22:45:33 +02:00
|
|
|
bfd_mach_ppc_ec603e,
|
1999-05-03 09:29:11 +02:00
|
|
|
"powerpc",
|
2000-06-16 22:45:33 +02:00
|
|
|
"powerpc:EC603e",
|
1999-05-03 09:29:11 +02:00
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE, /* not the default */
|
2000-11-16 21:48:09 +01:00
|
|
|
powerpc_compatible,
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_default_scan,
|
2002-04-20 04:54:26 +02:00
|
|
|
&bfd_powerpc_archs[4]
|
1999-05-03 09:29:11 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
2000-06-16 22:45:33 +02:00
|
|
|
bfd_mach_ppc_604,
|
1999-05-03 09:29:11 +02:00
|
|
|
"powerpc",
|
2000-06-16 22:45:33 +02:00
|
|
|
"powerpc:604",
|
1999-05-03 09:29:11 +02:00
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE, /* not the default */
|
2000-11-16 21:48:09 +01:00
|
|
|
powerpc_compatible,
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_default_scan,
|
2002-04-20 04:54:26 +02:00
|
|
|
&bfd_powerpc_archs[5]
|
1999-05-03 09:29:11 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
2000-06-16 22:45:33 +02:00
|
|
|
bfd_mach_ppc_403,
|
1999-05-03 09:29:11 +02:00
|
|
|
"powerpc",
|
2000-06-16 22:45:33 +02:00
|
|
|
"powerpc:403",
|
1999-05-03 09:29:11 +02:00
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE, /* not the default */
|
2000-11-16 21:48:09 +01:00
|
|
|
powerpc_compatible,
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_default_scan,
|
2002-04-20 04:54:26 +02:00
|
|
|
&bfd_powerpc_archs[6]
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
},
|
2000-06-16 22:45:33 +02:00
|
|
|
{
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
32, /* 32 bits in a word */
|
2000-06-16 22:45:33 +02:00
|
|
|
32, /* 32 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc_601,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:601",
|
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE, /* not the default */
|
2000-11-16 21:48:09 +01:00
|
|
|
powerpc_compatible,
|
2000-06-16 22:45:33 +02:00
|
|
|
bfd_default_scan,
|
2002-04-20 04:54:26 +02:00
|
|
|
&bfd_powerpc_archs[7]
|
2000-06-16 22:45:33 +02:00
|
|
|
},
|
2000-11-16 21:48:09 +01:00
|
|
|
{
|
2000-06-16 22:45:33 +02:00
|
|
|
64, /* 64 bits in a word */
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
64, /* 64 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
2000-06-16 22:45:33 +02:00
|
|
|
bfd_mach_ppc_620,
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
"powerpc",
|
|
|
|
"powerpc:620",
|
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE, /* not the default */
|
2000-11-16 21:48:09 +01:00
|
|
|
powerpc_compatible,
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
bfd_default_scan,
|
2002-04-20 04:54:26 +02:00
|
|
|
&bfd_powerpc_archs[8]
|
2000-06-16 22:45:33 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
64, /* 64 bits in a word */
|
|
|
|
64, /* 64 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc_630,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:630",
|
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE, /* not the default */
|
2000-06-16 22:45:33 +02:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2002-04-20 04:54:26 +02:00
|
|
|
&bfd_powerpc_archs[9]
|
2000-06-16 22:45:33 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
64, /* 64 bits in a word */
|
|
|
|
64, /* 64 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc_a35,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:a35",
|
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE, /* not the default */
|
2000-06-16 22:45:33 +02:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2002-04-20 04:54:26 +02:00
|
|
|
&bfd_powerpc_archs[10]
|
2000-06-16 22:45:33 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
64, /* 64 bits in a word */
|
|
|
|
64, /* 64 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc_rs64ii,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:rs64ii",
|
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE, /* not the default */
|
2000-06-16 22:45:33 +02:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2002-04-20 04:54:26 +02:00
|
|
|
&bfd_powerpc_archs[11]
|
2000-06-16 22:45:33 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
64, /* 64 bits in a word */
|
|
|
|
64, /* 64 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc_rs64iii,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:rs64iii",
|
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE, /* not the default */
|
2000-06-16 22:45:33 +02:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2002-04-20 04:54:26 +02:00
|
|
|
&bfd_powerpc_archs[12]
|
2000-06-16 22:45:33 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc_7400,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:7400",
|
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE, /* not the default */
|
2000-06-16 22:45:33 +02:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2002-04-20 04:54:26 +02:00
|
|
|
&bfd_powerpc_archs[13]
|
2000-09-05 21:35:51 +02:00
|
|
|
},
|
2002-08-19 23:12:34 +02:00
|
|
|
{
|
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc_e500,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:e500",
|
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE,
|
2002-08-19 23:12:34 +02:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
|
|
|
&bfd_powerpc_archs[14]
|
|
|
|
},
|
2000-09-05 21:35:51 +02:00
|
|
|
{
|
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc_860,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:MPC8XX",
|
|
|
|
3,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE, /* not the default */
|
2000-09-05 21:35:51 +02:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2002-02-05 04:35:19 +01:00
|
|
|
0
|
|
|
|
}
|
|
|
|
};
|