diff options
Diffstat (limited to 'bfd/elf32-v850.c')
-rw-r--r-- | bfd/elf32-v850.c | 87 |
1 files changed, 24 insertions, 63 deletions
diff --git a/bfd/elf32-v850.c b/bfd/elf32-v850.c index ba98a18..26f479c 100644 --- a/bfd/elf32-v850.c +++ b/bfd/elf32-v850.c @@ -3024,93 +3024,54 @@ v850_elf_relax_section (bfd *abfd, goto finish; } -static struct bfd_elf_special_section const - v850_special_sections_c[]= +static struct bfd_elf_special_section const v850_elf_special_sections[] = { { ".call_table_data", 16, 0, SHT_PROGBITS, (SHF_ALLOC + SHF_WRITE) }, { ".call_table_text", 16, 0, SHT_PROGBITS, (SHF_ALLOC + SHF_WRITE + SHF_EXECINSTR) }, - { NULL, 0, 0, 0, 0 } -}; - -static struct bfd_elf_special_section const - v850_special_sections_r[]= -{ { ".rosdata", 8, -2, SHT_PROGBITS, (SHF_ALLOC + SHF_V850_GPREL) }, { ".rozdata", 8, -2, SHT_PROGBITS, (SHF_ALLOC + SHF_V850_R0REL) }, - { NULL, 0, 0, 0, 0 } -}; - -static struct bfd_elf_special_section const - v850_special_sections_s[]= -{ - { ".sdata", 6, -2, SHT_PROGBITS, (SHF_ALLOC + SHF_WRITE - + SHF_V850_GPREL) }, { ".sbss", 5, -2, SHT_NOBITS, (SHF_ALLOC + SHF_WRITE + SHF_V850_GPREL) }, { ".scommon", 8, -2, SHT_V850_SCOMMON, (SHF_ALLOC + SHF_WRITE + SHF_V850_GPREL) }, - { NULL, 0, 0, 0, 0 } -}; - -static struct bfd_elf_special_section const - v850_special_sections_t[]= -{ - { ".tdata", 6, -2, SHT_PROGBITS, (SHF_ALLOC + SHF_WRITE - + SHF_V850_EPREL) }, + { ".sdata", 6, -2, SHT_PROGBITS, (SHF_ALLOC + SHF_WRITE + + SHF_V850_GPREL) }, { ".tbss", 5, -2, SHT_NOBITS, (SHF_ALLOC + SHF_WRITE + SHF_V850_EPREL) }, { ".tcommon", 8, -2, SHT_V850_TCOMMON, (SHF_ALLOC + SHF_WRITE + SHF_V850_R0REL) }, - { NULL, 0, 0, 0, 0 } -}; - -static struct bfd_elf_special_section const - v850_special_sections_z[]= -{ - { ".zdata", 6, -2, SHT_PROGBITS, (SHF_ALLOC + SHF_WRITE - + SHF_V850_R0REL) }, + { ".tdata", 6, -2, SHT_PROGBITS, (SHF_ALLOC + SHF_WRITE + + SHF_V850_EPREL) }, { ".zbss", 5, -2, SHT_NOBITS, (SHF_ALLOC + SHF_WRITE + SHF_V850_R0REL) }, { ".zcommon", 8, -2, SHT_V850_ZCOMMON, (SHF_ALLOC + SHF_WRITE + SHF_V850_R0REL) }, + { ".zdata", 6, -2, SHT_PROGBITS, (SHF_ALLOC + SHF_WRITE + + SHF_V850_R0REL) }, { NULL, 0, 0, 0, 0 } }; -static struct bfd_elf_special_section const * - v850_elf_special_sections[27] = +static const struct bfd_elf_special_section * +v850_elf_get_sec_type_attr (bfd *abfd, asection *sec) { - NULL, /* 'a' */ - NULL, /* 'b' */ - v850_special_sections_c, /* 'c' */ - NULL, /* 'd' */ - NULL, /* 'e' */ - NULL, /* 'f' */ - NULL, /* 'g' */ - NULL, /* 'h' */ - NULL, /* 'i' */ - NULL, /* 'j' */ - NULL, /* 'k' */ - NULL, /* 'l' */ - NULL, /* 'm' */ - NULL, /* 'n' */ - NULL, /* 'o' */ - NULL, /* 'p' */ - NULL, /* 'q' */ - v850_special_sections_r, /* 'r' */ - v850_special_sections_s, /* 's' */ - v850_special_sections_t, /* 't' */ - NULL, /* 'u' */ - NULL, /* 'v' */ - NULL, /* 'w' */ - NULL, /* 'x' */ - NULL, /* 'y' */ - v850_special_sections_z, /* 'z' */ - NULL /* other */ -}; + const struct bfd_elf_special_section const *ssect; + + /* See if this is one of the special sections. */ + if (sec->name == NULL) + return NULL; + + ssect = _bfd_elf_get_special_section (sec->name, + v850_elf_special_sections, + sec->use_rela_p); + if (ssect != NULL) + return ssect; + + return _bfd_elf_get_sec_type_attr (abfd, sec); +} #define TARGET_LITTLE_SYM bfd_elf32_v850_vec #define TARGET_LITTLE_NAME "elf32-v850" @@ -3135,7 +3096,7 @@ static struct bfd_elf_special_section const * #define elf_backend_fake_sections v850_elf_fake_sections #define elf_backend_gc_mark_hook v850_elf_gc_mark_hook #define elf_backend_gc_sweep_hook v850_elf_gc_sweep_hook -#define elf_backend_special_sections v850_elf_special_sections +#define elf_backend_get_sec_type_attr v850_elf_get_sec_type_attr #define elf_backend_can_gc_sections 1 #define elf_backend_rela_normal 1 |