public inbox for gdb@sourceware.org
 help / color / mirror / Atom feed
From: Andrew Cagney <ac131313@redhat.com>
To: Michael Elizabeth Chastain <mec@shout.net>
Cc: gdb@sources.redhat.com
Subject: Re: msym->info is wack
Date: Thu, 21 Aug 2003 22:50:00 -0000	[thread overview]
Message-ID: <3F454C8D.3060704@redhat.com> (raw)
In-Reply-To: <200308202328.h7KNS3cY014321@duracef.shout.net>

> Here are some notes on msym->info.  I am going to submit a couple
> of patches based on these notes.

Thanks for the reminder.

> === ARM-TDEP.C, M68HC11-TDEP.C, MIPS-TDEP.C, SH-TDEP.C
> 
> These *-tdep.c files use msym->info as a place to store flag bits.
> So, first, they are converting 'void *' to 'long' and back again.

Begs the question, is the field needed -> can bfd provide the info directly?

Arm, MIPS, SH, use it to determine the functions CPU mode.  Thing is, 
libopcodes (in the disassembler) must duplicate that exact same 
heuristic as otherwize the 'objdum -d' won't work.

That leaves m68hc11.  Perhaphs a more lazy approach and a symbol aux can 
be used?

> The straightforward solution is to provide msym->tdep_flags as
> an explicit place for tdep files to store flag bits.  Then they
> can store their bits without nasty casting.

Notice that arm defines/uses:

#define MSYMBOL_SET_SPECIAL(msym)                                       \
         MSYMBOL_INFO (msym) = (char *) (((long) MSYMBOL_INFO (msym))    \
                                         | 0x80000000)

#define MSYMBOL_IS_SPECIAL(msym)                                \
         (((long) MSYMBOL_INFO (msym) & 0x80000000) != 0)

#define MSYMBOL_SIZE(msym)                              \
         ((long) MSYMBOL_INFO (msym) & 0x7fffffff)

i.e., it is doing masking, while dbxread.c defines/uses:

#define MSYMBOL_SIZE(msym) ((long) MSYMBOL_INFO (msym))

i.e., there is no masking.  If Arm sets that top bit, dbxread.c would 
discover a very large size.

Guess that never happens.

Andrew


  reply	other threads:[~2003-08-21 22:50 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-08-20 23:28 Michael Elizabeth Chastain
2003-08-21 22:50 ` Andrew Cagney [this message]
2003-08-21 23:30 Michael Elizabeth Chastain
2003-08-22 14:51 ` Andrew Cagney

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3F454C8D.3060704@redhat.com \
    --to=ac131313@redhat.com \
    --cc=gdb@sources.redhat.com \
    --cc=mec@shout.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).