1999-05-03 07:29:11 +00:00
|
|
|
/* BFD PowerPC CPU definition
|
include/opcode/
* ppc.h: Add PPC_OPCODE_ALTIVEC2, PPC_OPCODE_E6500, PPC_OPCODE_TMR.
opcodes/
* ppc-dis.c (ppc_opts): Add entries for "e5500" and "e6500".
* ppc-opc.c (insert_ls, TMR, ESYNC, XSYNCLE_MASK): New.
(PPCVEC2, PPCTMR, E6500): New short names.
(powerpc_opcodes): Add vabsdub, vabsduh, vabsduw, dni, mvidsplt,
mviwsplt, icblq., mftmr, mttmr, dcblq., miso, lvexbx, lvexhx,
lvexwx, stvexbx, stvexhx, stvexwx, lvepx, lvepxl, stvepx, stvepxl,
lvtrx, lvtrxl, lvtlx, lvtlxl, stvfrx, stvfrxl, stvflx, stvflxl,
lvswx, lvswxl, stvswx, stvswxl, lvsm mnemonics. Accept LS, ESYNC
optional operands on sync instruction for E6500 target.
bfd/
* archures.c: Add bfd_mach_ppc_e5500 and bfd_mach_ppc_e6500.
* bfd-in2.h: Regenerate.
* cpu-powerpc.c (bfd_powerpc_archs): Add entryies for
bfd_mach_ppc_e5500 and bfd_mach_ppc_e6500.
gas/
* config/tc-ppc.c (md_show_usage): Document -me5500 and -me6500.
(ppc_handle_align): Add termination nop opcode for e500mc family.
* doc/as.texinfo: Document options -me5500 and -me6500.
* doc/c-ppc.texi: Likewise.
gas/testsuite/
* gas/ppc/e500mc64_nop.s: New test case for e500mc family
termination nops.
* gas/ppc/e500mc64_nop.d: Likewise.
* gas/ppc/e5500_nop.s: Likewise.
* gas/ppc/e5500_nop.d: Likewise.
* gas/ppc/e6500_nop.s: Likewise.
* gas/ppc/e6500_nop.d: Likewise.
* gas/ppc/e6500.s: New.
* gas/ppc/e6500.d: Likewise.
* gas/ppc/ppc.exp: Run e6500, e500mc64_nop, e5500_nop, and e6500_nop.
2012-03-09 23:39:06 +00:00
|
|
|
Copyright 1994, 1995, 1996, 2000, 2001, 2002, 2003, 2005, 2007, 2008,
|
|
|
|
2010, 2012 Free Software Foundation, Inc.
|
1999-05-03 07:29:11 +00:00
|
|
|
Contributed by Ian Lance Taylor, Cygnus Support.
|
|
|
|
|
2007-07-03 14:26:43 +00:00
|
|
|
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 3 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., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
#include "sysdep.h"
|
2007-04-26 14:47:00 +00:00
|
|
|
#include "bfd.h"
|
1999-05-03 07:29:11 +00:00
|
|
|
#include "libbfd.h"
|
|
|
|
|
|
|
|
/* 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:
|
2003-11-20 18:42:21 +00:00
|
|
|
if (b->mach == bfd_mach_rs6k)
|
1999-05-03 07:29:11 +00:00
|
|
|
return a;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
2002-02-05 03:35:19 +00:00
|
|
|
const bfd_arch_info_type bfd_powerpc_archs[] =
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2002-06-27 11:29:15 +00:00
|
|
|
#if BFD_DEFAULT_TARGET_SIZE == 64
|
|
|
|
/* Default arch must come first. */
|
2002-04-20 02:54:26 +00: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 08:39:46 +00:00
|
|
|
TRUE, /* default for 64 bit target */
|
2002-04-20 02:54:26 +00:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00:00
|
|
|
&bfd_powerpc_archs[1]
|
|
|
|
},
|
2002-06-27 11:29:15 +00:00
|
|
|
/* elf32-ppc:ppc_elf_object_p relies on the default 32 bit arch
|
|
|
|
being immediately after the 64 bit default. */
|
2002-04-20 02:54:26 +00: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 08:39:46 +00:00
|
|
|
FALSE,
|
2002-04-20 02:54:26 +00:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00:00
|
|
|
&bfd_powerpc_archs[2],
|
|
|
|
},
|
|
|
|
#else
|
2002-06-27 11:29:15 +00:00
|
|
|
/* Default arch must come first. */
|
2002-04-20 02:54:26 +00: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 08:39:46 +00:00
|
|
|
TRUE, /* default for 32 bit target */
|
2002-04-20 02:54:26 +00:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00:00
|
|
|
&bfd_powerpc_archs[1],
|
|
|
|
},
|
2002-06-27 11:29:15 +00:00
|
|
|
/* elf64-ppc:ppc64_elf_object_p relies on the default 64 bit arch
|
|
|
|
being immediately after the 32 bit default. */
|
2002-04-20 02:54:26 +00: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 08:39:46 +00:00
|
|
|
FALSE,
|
2002-04-20 02:54:26 +00:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00:00
|
|
|
&bfd_powerpc_archs[2]
|
|
|
|
},
|
|
|
|
#endif
|
1999-05-03 07:29:11 +00: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 20:45:33 +00:00
|
|
|
bfd_mach_ppc_603,
|
1999-05-03 07:29:11 +00:00
|
|
|
"powerpc",
|
|
|
|
"powerpc:603",
|
|
|
|
3,
|
2002-11-30 08:39:46 +00:00
|
|
|
FALSE, /* not the default */
|
2000-11-16 20:48:09 +00:00
|
|
|
powerpc_compatible,
|
1999-05-03 07:29:11 +00:00
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00:00
|
|
|
&bfd_powerpc_archs[3]
|
1999-05-03 07:29:11 +00: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 20:45:33 +00:00
|
|
|
bfd_mach_ppc_ec603e,
|
1999-05-03 07:29:11 +00:00
|
|
|
"powerpc",
|
2000-06-16 20:45:33 +00:00
|
|
|
"powerpc:EC603e",
|
1999-05-03 07:29:11 +00:00
|
|
|
3,
|
2002-11-30 08:39:46 +00:00
|
|
|
FALSE, /* not the default */
|
2000-11-16 20:48:09 +00:00
|
|
|
powerpc_compatible,
|
1999-05-03 07:29:11 +00:00
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00:00
|
|
|
&bfd_powerpc_archs[4]
|
1999-05-03 07:29:11 +00: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 20:45:33 +00:00
|
|
|
bfd_mach_ppc_604,
|
1999-05-03 07:29:11 +00:00
|
|
|
"powerpc",
|
2000-06-16 20:45:33 +00:00
|
|
|
"powerpc:604",
|
1999-05-03 07:29:11 +00:00
|
|
|
3,
|
2002-11-30 08:39:46 +00:00
|
|
|
FALSE, /* not the default */
|
2000-11-16 20:48:09 +00:00
|
|
|
powerpc_compatible,
|
1999-05-03 07:29:11 +00:00
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00:00
|
|
|
&bfd_powerpc_archs[5]
|
1999-05-03 07:29:11 +00: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 20:45:33 +00:00
|
|
|
bfd_mach_ppc_403,
|
1999-05-03 07:29:11 +00:00
|
|
|
"powerpc",
|
2000-06-16 20:45:33 +00:00
|
|
|
"powerpc:403",
|
1999-05-03 07:29:11 +00:00
|
|
|
3,
|
2002-11-30 08:39:46 +00:00
|
|
|
FALSE, /* not the default */
|
2000-11-16 20:48:09 +00:00
|
|
|
powerpc_compatible,
|
1999-05-03 07:29:11 +00:00
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00: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 15:09:44 +00:00
|
|
|
},
|
2000-06-16 20:45:33 +00: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 15:09:44 +00:00
|
|
|
32, /* 32 bits in a word */
|
2000-06-16 20:45:33 +00: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 08:39:46 +00:00
|
|
|
FALSE, /* not the default */
|
2000-11-16 20:48:09 +00:00
|
|
|
powerpc_compatible,
|
2000-06-16 20:45:33 +00:00
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00:00
|
|
|
&bfd_powerpc_archs[7]
|
2000-06-16 20:45:33 +00:00
|
|
|
},
|
2000-11-16 20:48:09 +00:00
|
|
|
{
|
2000-06-16 20:45:33 +00: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 15:09:44 +00:00
|
|
|
64, /* 64 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
2000-06-16 20:45:33 +00: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 15:09:44 +00:00
|
|
|
"powerpc",
|
|
|
|
"powerpc:620",
|
|
|
|
3,
|
2002-11-30 08:39:46 +00:00
|
|
|
FALSE, /* not the default */
|
2000-11-16 20:48:09 +00: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 15:09:44 +00:00
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00:00
|
|
|
&bfd_powerpc_archs[8]
|
2000-06-16 20:45:33 +00: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 08:39:46 +00:00
|
|
|
FALSE, /* not the default */
|
2000-06-16 20:45:33 +00:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00:00
|
|
|
&bfd_powerpc_archs[9]
|
2000-06-16 20:45:33 +00: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 08:39:46 +00:00
|
|
|
FALSE, /* not the default */
|
2000-06-16 20:45:33 +00:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00:00
|
|
|
&bfd_powerpc_archs[10]
|
2000-06-16 20:45:33 +00: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 08:39:46 +00:00
|
|
|
FALSE, /* not the default */
|
2000-06-16 20:45:33 +00:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00:00
|
|
|
&bfd_powerpc_archs[11]
|
2000-06-16 20:45:33 +00: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 08:39:46 +00:00
|
|
|
FALSE, /* not the default */
|
2000-06-16 20:45:33 +00:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00:00
|
|
|
&bfd_powerpc_archs[12]
|
2000-06-16 20:45:33 +00: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 08:39:46 +00:00
|
|
|
FALSE, /* not the default */
|
2000-06-16 20:45:33 +00:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-04-20 02:54:26 +00:00
|
|
|
&bfd_powerpc_archs[13]
|
2000-09-05 19:35:51 +00:00
|
|
|
},
|
2002-08-19 21:12:34 +00: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 08:39:46 +00:00
|
|
|
FALSE,
|
2002-08-19 21:12:34 +00:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2002-08-19 21:12:34 +00:00
|
|
|
&bfd_powerpc_archs[14]
|
|
|
|
},
|
2008-04-30 06:47:24 +00: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_e500mc,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:e500mc",
|
|
|
|
3,
|
|
|
|
FALSE, /* not the default */
|
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2008-04-30 06:47:24 +00:00
|
|
|
&bfd_powerpc_archs[15]
|
|
|
|
},
|
2010-01-04 02:32:56 +00: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_e500mc64,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:e500mc64",
|
|
|
|
3,
|
|
|
|
FALSE, /* not the default */
|
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2010-01-04 02:32:56 +00:00
|
|
|
&bfd_powerpc_archs[16]
|
|
|
|
},
|
2000-09-05 19:35:51 +00: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 08:39:46 +00:00
|
|
|
FALSE, /* not the default */
|
2000-09-05 19:35:51 +00:00
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2010-01-04 02:32:56 +00:00
|
|
|
&bfd_powerpc_archs[17]
|
2005-12-06 12:10:26 +00: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_750,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:750",
|
|
|
|
3,
|
|
|
|
FALSE, /* not the default */
|
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
2010-02-08 01:59:38 +00:00
|
|
|
&bfd_powerpc_archs[18]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc_titan,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:titan",
|
|
|
|
3,
|
|
|
|
FALSE, /* not the default */
|
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
2012-01-31 17:54:39 +00:00
|
|
|
bfd_arch_default_fill,
|
include/opcode/
* ppc.h: Add PPC_OPCODE_ALTIVEC2, PPC_OPCODE_E6500, PPC_OPCODE_TMR.
opcodes/
* ppc-dis.c (ppc_opts): Add entries for "e5500" and "e6500".
* ppc-opc.c (insert_ls, TMR, ESYNC, XSYNCLE_MASK): New.
(PPCVEC2, PPCTMR, E6500): New short names.
(powerpc_opcodes): Add vabsdub, vabsduh, vabsduw, dni, mvidsplt,
mviwsplt, icblq., mftmr, mttmr, dcblq., miso, lvexbx, lvexhx,
lvexwx, stvexbx, stvexhx, stvexwx, lvepx, lvepxl, stvepx, stvepxl,
lvtrx, lvtrxl, lvtlx, lvtlxl, stvfrx, stvfrxl, stvflx, stvflxl,
lvswx, lvswxl, stvswx, stvswxl, lvsm mnemonics. Accept LS, ESYNC
optional operands on sync instruction for E6500 target.
bfd/
* archures.c: Add bfd_mach_ppc_e5500 and bfd_mach_ppc_e6500.
* bfd-in2.h: Regenerate.
* cpu-powerpc.c (bfd_powerpc_archs): Add entryies for
bfd_mach_ppc_e5500 and bfd_mach_ppc_e6500.
gas/
* config/tc-ppc.c (md_show_usage): Document -me5500 and -me6500.
(ppc_handle_align): Add termination nop opcode for e500mc family.
* doc/as.texinfo: Document options -me5500 and -me6500.
* doc/c-ppc.texi: Likewise.
gas/testsuite/
* gas/ppc/e500mc64_nop.s: New test case for e500mc family
termination nops.
* gas/ppc/e500mc64_nop.d: Likewise.
* gas/ppc/e5500_nop.s: Likewise.
* gas/ppc/e5500_nop.d: Likewise.
* gas/ppc/e6500_nop.s: Likewise.
* gas/ppc/e6500_nop.d: Likewise.
* gas/ppc/e6500.s: New.
* gas/ppc/e6500.d: Likewise.
* gas/ppc/ppc.exp: Run e6500, e500mc64_nop, e5500_nop, and e6500_nop.
2012-03-09 23:39:06 +00:00
|
|
|
&bfd_powerpc_archs[19]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
64, /* 64 bits in a word */
|
|
|
|
64, /* 64 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc_e5500,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:e5500",
|
|
|
|
3,
|
|
|
|
FALSE, /* not the default */
|
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
|
|
|
bfd_arch_default_fill,
|
|
|
|
&bfd_powerpc_archs[20]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
64, /* 64 bits in a word */
|
|
|
|
64, /* 64 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_powerpc,
|
|
|
|
bfd_mach_ppc_e6500,
|
|
|
|
"powerpc",
|
|
|
|
"powerpc:e6500",
|
|
|
|
3,
|
|
|
|
FALSE, /* not the default */
|
|
|
|
powerpc_compatible,
|
|
|
|
bfd_default_scan,
|
|
|
|
bfd_arch_default_fill,
|
2002-02-05 03:35:19 +00:00
|
|
|
0
|
|
|
|
}
|
|
|
|
};
|