| Index: bfd/doc/archures.texi
|
| diff --git a/bfd/doc/archures.texi b/bfd/doc/archures.texi
|
| index dec9e010be71b5061d5584d7ea102eda12eb7ecb..726ba0ae9a993e2c864de45bd64adbf70c723586 100644
|
| --- a/bfd/doc/archures.texi
|
| +++ b/bfd/doc/archures.texi
|
| @@ -206,7 +206,10 @@ enum bfd_architecture
|
| #define bfd_mach_ppc_e500 500
|
| #define bfd_mach_ppc_e500mc 5001
|
| #define bfd_mach_ppc_e500mc64 5005
|
| +#define bfd_mach_ppc_e5500 5006
|
| +#define bfd_mach_ppc_e6500 5007
|
| #define bfd_mach_ppc_titan 83
|
| +#define bfd_mach_ppc_vle 84
|
| bfd_arch_rs6000, /* IBM RS/6000 */
|
| #define bfd_mach_rs6k 6000
|
| #define bfd_mach_rs6k_rs1 6001
|
| @@ -228,6 +231,8 @@ enum bfd_architecture
|
| #define bfd_mach_m6812_default 0
|
| #define bfd_mach_m6812 1
|
| #define bfd_mach_m6812s 2
|
| + bfd_arch_m9s12x, /* Freescale S12X */
|
| + bfd_arch_m9s12xg, /* Freescale XGATE */
|
| bfd_arch_z8k, /* Zilog Z8000 */
|
| #define bfd_mach_z8001 1
|
| #define bfd_mach_z8002 2
|
| @@ -403,7 +408,9 @@ enum bfd_architecture
|
| bfd_arch_xc16x, /* Infineon's XC16X Series. */
|
| #define bfd_mach_xc16x 1
|
| #define bfd_mach_xc16xl 2
|
| -#define bfd_mach_xc16xs 3
|
| +#define bfd_mach_xc16xs 3
|
| + bfd_arch_xgate, /* Freescale XGATE */
|
| +#define bfd_mach_xgate 1
|
| bfd_arch_xtensa, /* Tensilica's Xtensa cores. */
|
| #define bfd_mach_xtensa 1
|
| bfd_arch_z80,
|
| @@ -418,6 +425,7 @@ enum bfd_architecture
|
| bfd_arch_tilegx, /* Tilera TILE-Gx */
|
| #define bfd_mach_tilepro 1
|
| #define bfd_mach_tilegx 1
|
| +#define bfd_mach_tilegx32 2
|
| bfd_arch_last
|
| @};
|
| @end example
|
| @@ -449,6 +457,12 @@ typedef struct bfd_arch_info
|
|
|
| bfd_boolean (*scan) (const struct bfd_arch_info *, const char *);
|
|
|
| + /* Allocate via bfd_malloc and return a fill buffer of size COUNT. If
|
| + IS_BIGENDIAN is TRUE, the order of bytes is big endian. If CODE is
|
| + TRUE, the buffer contains code. */
|
| + void *(*fill) (bfd_size_type count, bfd_boolean is_bigendian,
|
| + bfd_boolean code);
|
| +
|
| const struct bfd_arch_info *next;
|
| @}
|
| bfd_arch_info_type;
|
| @@ -654,3 +668,16 @@ See bfd_octets_per_byte.
|
| This routine is provided for those cases where a bfd * is not
|
| available
|
|
|
| +@findex bfd_arch_default_fill
|
| +@subsubsection @code{bfd_arch_default_fill}
|
| +@strong{Synopsis}
|
| +@example
|
| +void *bfd_arch_default_fill (bfd_size_type count,
|
| + bfd_boolean is_bigendian,
|
| + bfd_boolean code);
|
| +@end example
|
| +@strong{Description}@*
|
| +Allocate via bfd_malloc and return a fill buffer of size COUNT.
|
| +If IS_BIGENDIAN is TRUE, the order of bytes is big endian. If
|
| +CODE is TRUE, the buffer contains code.
|
| +
|
|
|