aboutsummaryrefslogtreecommitdiff
path: root/gold
diff options
context:
space:
mode:
authorJames Cowgill <james.cowgill@mips.com>2018-04-05 08:47:53 -0700
committerCary Coutant <ccoutant@gmail.com>2018-04-05 08:47:53 -0700
commit67faf1f4c206516837fa44f6b7d131966be6bf0f (patch)
tree12c5664c413c975cada0ca64fb7bb37f2bff1454 /gold
parent043e9508be0a4ea7ab56fd5716e4c06d609d13be (diff)
downloadgdb-67faf1f4c206516837fa44f6b7d131966be6bf0f.zip
gdb-67faf1f4c206516837fa44f6b7d131966be6bf0f.tar.gz
gdb-67faf1f4c206516837fa44f6b7d131966be6bf0f.tar.bz2
MIPS: Fix GOT page counter in multi-got links
The record_got_page_entry function records and updates the maximum number of GOT page entries which may be required by an object. In the case where an existing GOT page entry was expanded, only the entry belonging to output GOT would have its page count updated. This leaves the entry belonging to the object GOT with the num_pages count of 1 it was originally initialized with. Later on when GOTs are being merged in a multi-got link, this causes the value of entry->num_pages in add_got_page_entries to always be 1 and underestimates the number of pages required for the new entry. This in turn leads to an assertion failure in get_got_page_offset where we run out of pages. Fix by obtaining the object's GOT entry unconditionally and not just the first time it gets created. Now that entry2 is always valid, remove the useless NULL checks. gold/ PR gold/22770 * mips.cc (Mips_got_info::record_got_page_entry): Fetch existing page entries for the object's GOT.
Diffstat (limited to 'gold')
-rw-r--r--gold/ChangeLog6
-rw-r--r--gold/mips.cc19
2 files changed, 15 insertions, 10 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog
index 0e6ec0c..c1776b5 100644
--- a/gold/ChangeLog
+++ b/gold/ChangeLog
@@ -1,3 +1,9 @@
+2018-04-05 James Cowgill <james.cowgill@mips.com>
+
+ PR gold/22770
+ * mips.cc (Mips_got_info::record_got_page_entry): Fetch existing
+ page entries for the object's GOT.
+
2018-04-05 Alan Modra <amodra@gmail.com>
* powerpc.cc (Target_powerpc::make_brlt_section): Make .branch_lt relro.
diff --git a/gold/mips.cc b/gold/mips.cc
index ee2c037..5d0ae73 100644
--- a/gold/mips.cc
+++ b/gold/mips.cc
@@ -5795,13 +5795,14 @@ Mips_got_info<size, big_endian>::record_got_page_entry(
this->got_page_entries_.insert(entry);
// Add the same entry to the OBJECT's GOT.
- Got_page_entry* entry2 = NULL;
+ Got_page_entry* entry2 = new Got_page_entry(*entry);
Mips_got_info<size, big_endian>* g2 = object->get_or_create_got_info();
- if (g2->got_page_entries_.find(entry) == g2->got_page_entries_.end())
- {
- entry2 = new Got_page_entry(*entry);
- g2->got_page_entries_.insert(entry2);
- }
+ typename Got_page_entry_set::iterator it2 =
+ g2->got_page_entries_.find(entry);
+ if (it2 != g2->got_page_entries_.end())
+ entry2 = *it2;
+ else
+ g2->got_page_entries_.insert(entry2);
// Skip over ranges whose maximum extent cannot share a page entry
// with ADDEND.
@@ -5822,8 +5823,7 @@ Mips_got_info<size, big_endian>::record_got_page_entry(
*range_ptr = range;
++entry->num_pages;
- if (entry2 != NULL)
- ++entry2->num_pages;
+ ++entry2->num_pages;
++this->page_gotno_;
++g2->page_gotno_;
return;
@@ -5852,8 +5852,7 @@ Mips_got_info<size, big_endian>::record_got_page_entry(
if (old_pages != new_pages)
{
entry->num_pages += new_pages - old_pages;
- if (entry2 != NULL)
- entry2->num_pages += new_pages - old_pages;
+ entry2->num_pages += new_pages - old_pages;
this->page_gotno_ += new_pages - old_pages;
g2->page_gotno_ += new_pages - old_pages;
}