diff options
author | Tristan Gingold <gingold@adacore.com> | 2017-03-10 15:16:19 +0100 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2017-03-13 10:41:22 +0100 |
commit | d40e34db392f834793fb9af487121776b4cec6e7 (patch) | |
tree | 4d600d3859a51a310aa7663c6762b859326940d9 /ld/ldlang.c | |
parent | 4b5900d8b81522bd6ebe4d94d45dfb54d1982c62 (diff) | |
download | binutils-gdb-d40e34db392f834793fb9af487121776b4cec6e7.tar.gz |
ld: add an error in case of address space overflow.
ld/
* ldlang.c (lang_check_section_addresses): Check for address space
overflow.
* testsuite/ld-checks/checks.exp (overflow_check): New procedure
* testsuite/ld-checks/over.s: New test source.
* testsuite/ld-checks/over.d: New test.
* testsuite/ld-checks/over2.s: New test source.
* testsuite/ld-checks/over2.d: New test.
Diffstat (limited to 'ld/ldlang.c')
-rw-r--r-- | ld/ldlang.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ld/ldlang.c b/ld/ldlang.c index 6011a00cd5b..a0638eae235 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -4768,6 +4768,7 @@ lang_check_section_addresses (void) asection *s, *p; struct check_sec *sections; size_t i, count; + bfd_vma addr_mask; bfd_vma s_start; bfd_vma s_end; bfd_vma p_start = 0; @@ -4775,6 +4776,25 @@ lang_check_section_addresses (void) lang_memory_region_type *m; bfd_boolean overlays; + /* Detect address space overflow. */ + addr_mask = ((bfd_vma) 1 << + (bfd_arch_bits_per_address (link_info.output_bfd) - 1)) - 1; + addr_mask = (addr_mask << 1) + 1; + for (s = link_info.output_bfd->sections; s != NULL; s = s->next) + { + s_end = (s->vma + s->size) & addr_mask; + if (s_end != 0 && s_end < s->vma) + einfo (_("%X%P: section %s VMA wraps around address space\n"), + s->name); + else + { + s_end = (s->lma + s->size) & addr_mask; + if (s_end != 0 && s_end < s->lma) + einfo (_("%X%P: section %s LMA wraps around address space\n"), + s->name); + } + } + if (bfd_count_sections (link_info.output_bfd) <= 1) return; |