Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH 1/3] gdb/printcmd.c: Fix printing of Thumb minimal symbols.
@ 2013-06-05 10:34 Will Newton
  2013-06-05 15:21 ` Pedro Alves
  0 siblings, 1 reply; 3+ messages in thread
From: Will Newton @ 2013-06-05 10:34 UTC (permalink / raw)
  To: gdb-patches; +Cc: patches


In build_address_symbolic we call gdbarch_addr_bits_remove for
symbols in the symbol table but not for minimal symbols. This
causes a failure in gdb.cp/virtfunc.exp on ARM, as the address
of the virtual thunk is given an offset of 1 when in Thumb mode.

gdb/ChangeLog:

2013-06-05  Will Newton  <will.newton@linaro.org>

	* printcmd.c (build_address_symbolic): Call
	gdbarch_addr_bits_remove for text minimal symbols.
---
 gdb/printcmd.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/gdb/printcmd.c b/gdb/printcmd.c
index 7beb334..619e684 100644
--- a/gdb/printcmd.c
+++ b/gdb/printcmd.c
@@ -689,6 +689,16 @@ build_address_symbolic (struct gdbarch *gdbarch,
     {
       if (SYMBOL_VALUE_ADDRESS (msymbol) > name_location || symbol == NULL)
 	{
+	  /* If this is a function (i.e. a code address), strip out any
+	     non-address bits.  For instance, display a pointer to the
+	     first instruction of a Thumb function as <function>; the
+	     second instruction will be <function+2>, even though the
+	     pointer is <function+3>.  This matches the ISA behavior.  */
+	  if (MSYMBOL_TYPE (msymbol) == mst_text
+	      || MSYMBOL_TYPE (msymbol) == mst_text_gnu_ifunc
+	      || MSYMBOL_TYPE (msymbol) == mst_file_text)
+	    addr = gdbarch_addr_bits_remove (gdbarch, addr);
+
 	  /* The msymbol is closer to the address than the symbol;
 	     use the msymbol instead.  */
 	  symbol = 0;
-- 
1.8.1.4


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/3] gdb/printcmd.c: Fix printing of Thumb minimal symbols.
  2013-06-05 10:34 [PATCH 1/3] gdb/printcmd.c: Fix printing of Thumb minimal symbols Will Newton
@ 2013-06-05 15:21 ` Pedro Alves
  2013-06-05 15:27   ` Will Newton
  0 siblings, 1 reply; 3+ messages in thread
From: Pedro Alves @ 2013-06-05 15:21 UTC (permalink / raw)
  To: Will Newton; +Cc: gdb-patches, patches

On 06/05/2013 11:34 AM, Will Newton wrote:
> 
> In build_address_symbolic we call gdbarch_addr_bits_remove for
> symbols in the symbol table but not for minimal symbols. This
> causes a failure in gdb.cp/virtfunc.exp on ARM, as the address
> of the virtual thunk is given an offset of 1 when in Thumb mode.
> 
> gdb/ChangeLog:
> 
> 2013-06-05  Will Newton  <will.newton@linaro.org>
> 
> 	* printcmd.c (build_address_symbolic): Call
> 	gdbarch_addr_bits_remove for text minimal symbols.
> ---
>  gdb/printcmd.c | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/gdb/printcmd.c b/gdb/printcmd.c
> index 7beb334..619e684 100644
> --- a/gdb/printcmd.c
> +++ b/gdb/printcmd.c
> @@ -689,6 +689,16 @@ build_address_symbolic (struct gdbarch *gdbarch,
>      {
>        if (SYMBOL_VALUE_ADDRESS (msymbol) > name_location || symbol == NULL)
>  	{
> +	  /* If this is a function (i.e. a code address), strip out any
> +	     non-address bits.  For instance, display a pointer to the
> +	     first instruction of a Thumb function as <function>; the
> +	     second instruction will be <function+2>, even though the
> +	     pointer is <function+3>.  This matches the ISA behavior.  */
> +	  if (MSYMBOL_TYPE (msymbol) == mst_text
> +	      || MSYMBOL_TYPE (msymbol) == mst_text_gnu_ifunc
> +	      || MSYMBOL_TYPE (msymbol) == mst_file_text)
> +	    addr = gdbarch_addr_bits_remove (gdbarch, addr);

Shouldn't we do this for all text symbols, and thus for
mst_solib_trampoline too?

Not sure whether the if above that seems to be checking for
text symbols is missing it too:

  if (msymbol != NULL
      && MSYMBOL_HAS_SIZE (msymbol)
      && MSYMBOL_SIZE (msymbol) == 0
      && MSYMBOL_TYPE (msymbol) != mst_text
      && MSYMBOL_TYPE (msymbol) != mst_text_gnu_ifunc
      && MSYMBOL_TYPE (msymbol) != mst_file_text)
    msymbol = NULL;

(I wish this bit had a comment mentioning what's it about.)

> +
>  	  /* The msymbol is closer to the address than the symbol;
>  	     use the msymbol instead.  */
>  	  symbol = 0;
-- 
Pedro Alves


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/3] gdb/printcmd.c: Fix printing of Thumb minimal symbols.
  2013-06-05 15:21 ` Pedro Alves
@ 2013-06-05 15:27   ` Will Newton
  0 siblings, 0 replies; 3+ messages in thread
From: Will Newton @ 2013-06-05 15:27 UTC (permalink / raw)
  To: Pedro Alves; +Cc: gdb-patches, Patch Tracking

On 5 June 2013 16:21, Pedro Alves <palves@redhat.com> wrote:
> On 06/05/2013 11:34 AM, Will Newton wrote:
>>
>> In build_address_symbolic we call gdbarch_addr_bits_remove for
>> symbols in the symbol table but not for minimal symbols. This
>> causes a failure in gdb.cp/virtfunc.exp on ARM, as the address
>> of the virtual thunk is given an offset of 1 when in Thumb mode.
>>
>> gdb/ChangeLog:
>>
>> 2013-06-05  Will Newton  <will.newton@linaro.org>
>>
>>       * printcmd.c (build_address_symbolic): Call
>>       gdbarch_addr_bits_remove for text minimal symbols.
>> ---
>>  gdb/printcmd.c | 10 ++++++++++
>>  1 file changed, 10 insertions(+)
>>
>> diff --git a/gdb/printcmd.c b/gdb/printcmd.c
>> index 7beb334..619e684 100644
>> --- a/gdb/printcmd.c
>> +++ b/gdb/printcmd.c
>> @@ -689,6 +689,16 @@ build_address_symbolic (struct gdbarch *gdbarch,
>>      {
>>        if (SYMBOL_VALUE_ADDRESS (msymbol) > name_location || symbol == NULL)
>>       {
>> +       /* If this is a function (i.e. a code address), strip out any
>> +          non-address bits.  For instance, display a pointer to the
>> +          first instruction of a Thumb function as <function>; the
>> +          second instruction will be <function+2>, even though the
>> +          pointer is <function+3>.  This matches the ISA behavior.  */
>> +       if (MSYMBOL_TYPE (msymbol) == mst_text
>> +           || MSYMBOL_TYPE (msymbol) == mst_text_gnu_ifunc
>> +           || MSYMBOL_TYPE (msymbol) == mst_file_text)
>> +         addr = gdbarch_addr_bits_remove (gdbarch, addr);
>
> Shouldn't we do this for all text symbols, and thus for
> mst_solib_trampoline too?

Sounds sensible. I'll respin the patch and retest.

--
Will Newton
Toolchain Working Group, Linaro


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-06-05 15:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-05 10:34 [PATCH 1/3] gdb/printcmd.c: Fix printing of Thumb minimal symbols Will Newton
2013-06-05 15:21 ` Pedro Alves
2013-06-05 15:27   ` Will Newton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox