summaryrefslogtreecommitdiff
path: root/gold/aarch64.cc
diff options
context:
space:
mode:
authorHan Shen <shenhan@google.com>2015-10-27 15:17:54 -0700
committerHan Shen <shenhan@google.com>2015-10-27 15:22:41 -0700
commit4d2f5d5824be99326c2c3e459c298e338856d8c8 (patch)
tree86315d04362705eafbd5d89d658908e94b02163f /gold/aarch64.cc
parentb80c3053162ec5533e120ee4e4ed30296d4c5fb2 (diff)
downloadbinutils-gdb-4d2f5d5824be99326c2c3e459c298e338856d8c8.tar.gz
Patch for PR gold/19042 - unsupported reloc 311/312.
gold/ * aarch64.cc (Target_aarch64::Scan::local): Add support for reloc 311/312.
Diffstat (limited to 'gold/aarch64.cc')
-rw-r--r--gold/aarch64.cc23
1 files changed, 23 insertions, 0 deletions
diff --git a/gold/aarch64.cc b/gold/aarch64.cc
index 2e3c42afdaa..275d94c308a 100644
--- a/gold/aarch64.cc
+++ b/gold/aarch64.cc
@@ -5987,6 +5987,29 @@ Target_aarch64<size, big_endian>::Scan::local(
case elfcpp::R_AARCH64_PREL16:
break;
+ case elfcpp::R_AARCH64_ADR_GOT_PAGE:
+ case elfcpp::R_AARCH64_LD64_GOT_LO12_NC:
+ // This pair of relocations is used to access a specific GOT entry.
+ {
+ bool is_new = false;
+ // This symbol requires a GOT entry.
+ if (is_ifunc)
+ is_new = got->add_local_plt(object, r_sym, GOT_TYPE_STANDARD);
+ else
+ is_new = got->add_local(object, r_sym, GOT_TYPE_STANDARD);
+ if (is_new && parameters->options().output_is_position_independent())
+ target->rela_dyn_section(layout)->
+ add_local_relative(object,
+ r_sym,
+ elfcpp::R_AARCH64_RELATIVE,
+ got,
+ object->local_got_offset(r_sym,
+ GOT_TYPE_STANDARD),
+ 0,
+ false);
+ }
+ break;
+
case elfcpp::R_AARCH64_LD_PREL_LO19: // 273
case elfcpp::R_AARCH64_ADR_PREL_LO21: // 274
case elfcpp::R_AARCH64_ADR_PREL_PG_HI21: // 275