public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
From: markus@noga.de
To: gcc-gnats@gcc.gnu.org
Subject: c++/7201: Multiple inheritance from classes without data members wastes memory
Date: Wed, 03 Jul 2002 11:06:00 -0000	[thread overview]
Message-ID: <20020703180429.10635.qmail@sources.redhat.com> (raw)


>Number:         7201
>Category:       c++
>Synopsis:       Multiple inheritance from classes without data members wastes memory
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Wed Jul 03 11:06:00 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Markus L. Noga
>Release:        2.96 20000731 (Red Hat Linux 7.3 2.96-110), 2.95.3-5 (cygwin special)
>Organization:
>Environment:
2.96 20000731 (Red Hat Linux 7.3 2.96-110) and
2.95.3-5 (Windows XP Professional, cygwin special)
>Description:
Classes without data members occupy at least one byte,
even if they do not require a vtable pointer:
  class X1 {};
  -> sizeof(X1)==1

When inheriting from classes without data member, the mysterious bytes add up:
  class X2 {};
  class X3 : public X1, public X2 {};
  -> sizeof(X3)==2

They even persist when finally inheriting from a class
with data members:
  class X4 { int i; };
  class X5 : public X3, public X4 {};
  -> sizeof(X5)==8 (due to alignment)

Forcing packed structures does not change this.
>How-To-Repeat:
#include <iostream>

class X1 {};
class X2 {};
class X3 : public X1, public X2 {};
class X4 { int i; };
class X5 : public X3, public X4 {};

int main(int argc, char **argv) {
  cout << sizeof(X1) << endl;
  cout << sizeof(X2) << endl;
  cout << sizeof(X3) << endl;
  cout << sizeof(X4) << endl;
  cout << sizeof(X5) << endl;
  return 0;
}
>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:


             reply	other threads:[~2002-07-03 18:06 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-07-03 11:06 markus [this message]
2002-07-03 12:30 nathan

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=20020703180429.10635.qmail@sources.redhat.com \
    --to=markus@noga.de \
    --cc=gcc-gnats@gcc.gnu.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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).