gdb/elfread.c: Enable ifunc support on ARM.
authorWill Newton <will.newton@linaro.org>
Mon, 16 Dec 2013 17:45:45 +0000 (17:45 +0000)
committerWill Newton <will.newton@linaro.org>
Mon, 10 Feb 2014 16:45:47 +0000 (16:45 +0000)
commit4b7d1f7fb496267f5ffb08effd1e18a3424eb9d8
tree8576d358fdeb389d5b6d58f5e29bbbe12b28a320
parentd6f6f455778b10037503bcc39352b5174bba5e45
gdb/elfread.c: Enable ifunc support on ARM.

There are two failures in the gnu-ifunc.exp test on ARM. These are
due to the failure to resolve the correct target function when
attempting to breakpoint a GNU ifunc resolved function:

(gdb) break gnu_ifunc
Breakpoint 4 at gnu-indirect-function resolver at 0x2aacb5a2

when gnu_ifunc has been resolved this should actually be:

(gdb) break gnu_ifunc
Breakpoint 4 at 0x868c

There are two reasons for this. The first is that ARM does not have a
separate .got.plt section so looking this up will always fail. The second
is that the Thumb bit needs to be stripped from the address to allow
it to be reliably compared when inserting into the ifunc cache.

Tested with no regressions on arm-linux-gnueabihf and
x86_64-unknown-linux-gnu.

gdb/ChangeLog:

2014-02-10  Will Newton  <will.newton@linaro.org>

* elfread.c (elf_rel_plt_read): Look for a .got section if
looking up .got.plt fails.
(elf_gnu_ifunc_resolve_by_got): Call gdbarch_addr_bits_remove
on address passed to elf_gnu_ifunc_record_cache.
(elf_gnu_ifunc_resolve_addr): Likewise.
(elf_gnu_ifunc_resolver_return_stop): Likewise.
gdb/ChangeLog
gdb/elfread.c
This page took 0.027831 seconds and 4 git commands to generate.