X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=bfd%2Ftargets.c;h=fb0c669e7f7046409a97f16eabdee6671bf3899f;hb=d043f8c867f85f1c36cc957da8204fe2907b3aea;hp=6b85c6279805290507fe6dca9dd465d02afaa019;hpb=999d6dff80fab12d22c2a8d91923db6bde7fb3e5;p=deliverable%2Fbinutils-gdb.git diff --git a/bfd/targets.c b/bfd/targets.c index 6b85c62798..fb0c669e7f 100644 --- a/bfd/targets.c +++ b/bfd/targets.c @@ -179,7 +179,7 @@ DESCRIPTION .typedef struct bfd_target .{ . {* Identifies the kind of target, e.g., SunOS4, Ultrix, etc. *} -. char *name; +. const char *name; . . {* The "flavour" of a back end is a general indication about . the contents of a file. *} @@ -462,6 +462,7 @@ BFD_JUMP_TABLE macros. . NAME##_bfd_lookup_section_flags, \ . NAME##_bfd_merge_sections, \ . NAME##_bfd_is_group_section, \ +. NAME##_bfd_group_name, \ . NAME##_bfd_discard_group, \ . NAME##_section_already_linked, \ . NAME##_bfd_define_common_symbol, \ @@ -520,6 +521,9 @@ BFD_JUMP_TABLE macros. . {* Is this section a member of a group? *} . bfd_boolean (*_bfd_is_group_section) (bfd *, const struct bfd_section *); . +. {* The group name, if section is a member of a group. *} +. const char *(*_bfd_group_name) (bfd *, const struct bfd_section *); +. . {* Discard members of a group. *} . bfd_boolean (*_bfd_discard_group) (bfd *, struct bfd_section *); . @@ -580,6 +584,74 @@ to find an alternative output format that is suitable. . .} bfd_target; . +.static inline const char * +.bfd_get_target (const bfd *abfd) +.{ +. return abfd->xvec->name; +.} +. +.static inline enum bfd_flavour +.bfd_get_flavour (const bfd *abfd) +.{ +. return abfd->xvec->flavour; +.} +. +.static inline flagword +.bfd_applicable_file_flags (const bfd *abfd) +.{ +. return abfd->xvec->object_flags; +.} +. +.static inline bfd_boolean +.bfd_family_coff (const bfd *abfd) +.{ +. return (bfd_get_flavour (abfd) == bfd_target_coff_flavour +. || bfd_get_flavour (abfd) == bfd_target_xcoff_flavour); +.} +. +.static inline bfd_boolean +.bfd_big_endian (const bfd *abfd) +.{ +. return abfd->xvec->byteorder == BFD_ENDIAN_BIG; +.} +.static inline bfd_boolean +.bfd_little_endian (const bfd *abfd) +.{ +. return abfd->xvec->byteorder == BFD_ENDIAN_LITTLE; +.} +. +.static inline bfd_boolean +.bfd_header_big_endian (const bfd *abfd) +.{ +. return abfd->xvec->header_byteorder == BFD_ENDIAN_BIG; +.} +. +.static inline bfd_boolean +.bfd_header_little_endian (const bfd *abfd) +.{ +. return abfd->xvec->header_byteorder == BFD_ENDIAN_LITTLE; +.} +. +.static inline flagword +.bfd_applicable_section_flags (const bfd *abfd) +.{ +. return abfd->xvec->section_flags; +.} +. +.static inline char +.bfd_get_symbol_leading_char (const bfd *abfd) +.{ +. return abfd->xvec->symbol_leading_char; +.} +. +.static inline enum bfd_flavour +.bfd_asymbol_flavour (const asymbol *sy) +.{ +. if ((sy->flags & BSF_SYNTHETIC) != 0) +. return bfd_target_unknown_flavour; +. return sy->the_bfd->xvec->flavour; +.} +. */ /* All known xvecs (even those that don't compile on all systems). @@ -625,7 +697,6 @@ extern const bfd_target avr_elf32_vec; extern const bfd_target bfin_elf32_vec; extern const bfd_target bfin_elf32_fdpic_vec; extern const bfd_target cr16_elf32_vec; -extern const bfd_target cr16c_elf32_vec; extern const bfd_target cris_aout_vec; extern const bfd_target cris_elf32_vec; extern const bfd_target cris_elf32_us_vec; @@ -957,7 +1028,6 @@ static const bfd_target * const _bfd_target_vector[] = &bfin_elf32_fdpic_vec, &cr16_elf32_vec, - &cr16c_elf32_vec, &cris_aout_vec, &cris_elf32_vec,