Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Doug Evans <xdje42@gmail.com>
To: gdb-patches@sourceware.org, gaius@glam.ac.uk
Subject: m2-typeprint.c:m2_range's use of TYPE_DOMAIN_TYPE: Eh?
Date: Mon, 19 Jan 2015 18:30:00 -0000	[thread overview]
Message-ID: <m361c2bp48.fsf@sspiff.org> (raw)

Hi.

Does anyone know why m2_range uses TYPE_DOMAIN_TYPE here?

AFAICT, use of TYPE_DOMAIN_TYPE is wrong here.
It is only used for TYPE_CODE_{MEMBERPTR,METHODPTR,METHOD}.

ref: gdbtypes.h:

  /* * For types with virtual functions (TYPE_CODE_STRUCT),
     VPTR_BASETYPE is the base class which defined the virtual
     function table pointer.

     For types that are pointer to member types (TYPE_CODE_METHODPTR,
     TYPE_CODE_MEMBERPTR), VPTR_BASETYPE is the type that this pointer
     is a member of.

     For method types (TYPE_CODE_METHOD), VPTR_BASETYPE is the aggregate
     type that contains the method.

     Unused otherwise.  */

  struct type *vptr_basetype;

I ask because one symbol table improvement I want to make
may be best implemented if I add a new field to struct main_type.
However, this struct is space-critical, so I'm trying to find
some cleanup that can be done.
Question: Why doesn't vptr_fieldno, vptr_basetype live in
type_specific.cplus_specific?

Alas, vptr_basetype is overloaded and is used also for TYPE_DOMAIN_TYPE:

#define TYPE_DOMAIN_TYPE(thistype) TYPE_MAIN_TYPE(thistype)->vptr_basetype

hence wondering why in the world m2_range is using it. :-)

For TYPE_CODE_{MEMBERPTR,METHODPTR,METHOD},
any reason why their "domain type" (I'll want to rename that)
cannot live in type_specific?

---

void
m2_range (struct type *type, struct ui_file *stream, int show,
	  int level, const struct type_print_options *flags)
{
  if (TYPE_HIGH_BOUND (type) == TYPE_LOW_BOUND (type))
    m2_print_type (TYPE_DOMAIN_TYPE (type), "", stream, show, level,
		   flags);
  else
    {
      struct type *target = TYPE_TARGET_TYPE (type);

      fprintf_filtered (stream, "[");
      print_type_scalar (target, TYPE_LOW_BOUND (type), stream);
      fprintf_filtered (stream, "..");
      print_type_scalar (target, TYPE_HIGH_BOUND (type), stream);
      fprintf_filtered (stream, "]");
    }
}


             reply	other threads:[~2015-01-19 18:30 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-19 18:30 Doug Evans [this message]
2015-01-20 22:25 ` Gaius Mulley
2015-01-21  4:15   ` Doug Evans
2015-01-21 11:05     ` Gaius Mulley

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=m361c2bp48.fsf@sspiff.org \
    --to=xdje42@gmail.com \
    --cc=gaius@glam.ac.uk \
    --cc=gdb-patches@sourceware.org \
    /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